diff --git a/.github/workflows/packages-preview.yml b/.github/workflows/packages-preview.yml new file mode 100644 index 0000000000..80c74a384e --- /dev/null +++ b/.github/workflows/packages-preview.yml @@ -0,0 +1,38 @@ +name: Packages Preview + +on: + push: + branches-ignore: + - main + +jobs: + build: + name: FastStore + timeout-minutes: 15 + runs-on: ubuntu-latest + env: + TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} + TURBO_TEAM: ${{ vars.TURBO_TEAM }} + + steps: + - name: Check out code + uses: actions/checkout@v4 + with: + fetch-depth: 2 + + - name: Setup pnpm + uses: pnpm/action-setup@v4 + with: + version: 9.15.5 + + - name: Setup Node.js environment + uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: Install dependencies + run: pnpm i + + - name: Build + run: pnpm build + - run: pnpm dlx pkg-pr-new publish './packages/*' --no-compact --packageManager=yarn --commentWithSha diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ae6b36c93e..baea0703f9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,6 +6,7 @@ on: branches: - main - dev + - 3.x permissions: id-token: write # Required for OIDC @@ -71,7 +72,12 @@ jobs: if: github.ref_name == 'dev' run: pnpm release:dev + - name: Publish (3.x) + if: github.ref_name == '3.x' + run: pnpm release:v3 + - name: Publish to Chromatic + if: github.ref_name != '3.x' uses: chromaui/action@latest with: projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 429719444a..81af70c2ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,53 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.99.0-dev.7](https://github.com/vtex/faststore/compare/v3.99.0-dev.6...v3.99.0-dev.7) (2026-05-04) + +### Bug Fixes + +- fixing preview tag style ([#3058](https://github.com/vtex/faststore/issues/3058)) ([5084915](https://github.com/vtex/faststore/commit/50849157ac190a57fc151e7e6c9cb10df487bff6)) + +# 3.99.0-dev.6 (2026-05-04) + +### Bug Fixes + +- Base CMS schema ([#3290](https://github.com/vtex/faststore/issues/3290)) ([3455e89](https://github.com/vtex/faststore/commit/3455e89295e197f4bd18c0b5f84d7b01c0d67009)) + +# 3.99.0-dev.5 (2026-05-04) + +### Bug Fixes + +- Enhance session validation logic to skip token refresh in local … ([#3285](https://github.com/vtex/faststore/issues/3285)) ([41a330a](https://github.com/vtex/faststore/commit/41a330a9704a29369141e6e78b1f6d01e5a2e1a5)) + +# 3.99.0-dev.4 (2026-04-28) + +### Bug Fixes + +- Refactor token refresh logic in GraphQL API handler - SFS-3104 ([#3263](https://github.com/vtex/faststore/issues/3263)) ([695ab6a](https://github.com/vtex/faststore/commit/695ab6a9413eb53ef457cfc890c74e41c29c1ab8)) + +# 3.99.0-dev.3 (2026-04-23) + +### Features + +- add isGift field to StoreOffer type and resolvers - SFS-3040 ([#3220](https://github.com/vtex/faststore/issues/3220)) ([e10fc92](https://github.com/vtex/faststore/commit/e10fc92633a5296a5b03286028d31d9c280561c6)) +- Enhance session management with logout - SFS-3105 ([#3268](https://github.com/vtex/faststore/issues/3268)) ([9468e32](https://github.com/vtex/faststore/commit/9468e32a3531ca3c91c7f82a34ac1c750c6a26ef)) + +# [3.99.0-dev.2](https://github.com/vtex/faststore/compare/v3.99.0-dev.1...v3.99.0-dev.2) (2026-04-21) + +### Bug Fixes + +- Prevent IDB writes before store hydration completes - SFS-3121 ([#3267](https://github.com/vtex/faststore/issues/3267)) ([0b23e52](https://github.com/vtex/faststore/commit/0b23e526db23d7338c0eda75b673bb0bea05eef3)) + +# [3.99.0-dev.1](https://github.com/vtex/faststore/compare/v3.99.0-dev.0...v3.99.0-dev.1) (2026-04-15) + +**Note:** Version bump only for package faststore + +# [3.99.0-dev.0](https://github.com/vtex/faststore/compare/v3.98.1-dev.0...v3.99.0-dev.0) (2026-03-31) + +### Features + +- Add Shopping Assistant component to FastStore schema ([#3255](https://github.com/vtex/faststore/issues/3255)) ([f4c8ea6](https://github.com/vtex/faststore/commit/f4c8ea65da468d26acac198071882523a8a57215)) + ## [3.98.4](https://github.com/vtex/faststore/compare/v3.98.3...v3.98.4) (2026-04-15) **Note:** Version bump only for package faststore @@ -35,6 +82,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - version 2026 03 27 ([#3251](https://github.com/vtex/faststore/issues/3251)) ([f330a43](https://github.com/vtex/faststore/commit/f330a43661567ad8edb468acd3416bb7ffacd8b6)) +# [3.98.0-dev.10](https://github.com/vtex/faststore/compare/v3.98.0-dev.9...v3.98.0-dev.10) (2026-03-27) + +**Note:** Version bump only for package faststore + # [3.98.0-dev.9](https://github.com/vtex/faststore/compare/v3.98.0-dev.8...v3.98.0-dev.9) (2026-03-27) **Note:** Version bump only for package faststore diff --git a/lerna.json b/lerna.json index c0da05f8ad..beaf08d062 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.98.4", + "version": "3.99.0-dev.7", "npmClient": "pnpm", "command": { "publish": { diff --git a/package.json b/package.json index 28efd27cd5..81ff8e3ac6 100644 --- a/package.json +++ b/package.json @@ -19,6 +19,7 @@ "size": "turbo run size", "release": "lerna version --conventional-commits --conventional-graduate --yes && lerna publish from-git --yes", "release:dev": "lerna version --conventional-commits --conventional-prerelease --preid=dev --yes && lerna publish from-git --dist-tag=dev --yes", + "release:v3": "lerna version --conventional-commits --yes && lerna publish from-git --dist-tag=v3-latest --yes", "clean": "turbo run clean && rm -rf node_modules", "prepare": "husky" }, diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index 5eb5ff18d0..bf76147914 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -3,6 +3,30 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# 3.99.0-dev.6 (2026-05-04) + +**Note:** Version bump only for package @faststore/api + +# 3.99.0-dev.5 (2026-05-04) + +### Bug Fixes + +- Enhance session validation logic to skip token refresh in local … ([#3285](https://github.com/vtex/faststore/issues/3285)) ([41a330a](https://github.com/vtex/faststore/commit/41a330a9704a29369141e6e78b1f6d01e5a2e1a5)) + +# 3.99.0-dev.4 (2026-04-28) + +**Note:** Version bump only for package @faststore/api + +# 3.99.0-dev.3 (2026-04-23) + +### Features + +- add isGift field to StoreOffer type and resolvers - SFS-3040 ([#3220](https://github.com/vtex/faststore/issues/3220)) ([e10fc92](https://github.com/vtex/faststore/commit/e10fc92633a5296a5b03286028d31d9c280561c6)) + +## [3.98.1-dev.0](https://github.com/vtex/faststore/compare/v3.98.0-dev.10...v3.98.1-dev.0) (2026-03-27) + +**Note:** Version bump only for package @faststore/api + # 3.98.0 (2026-03-27) ### Bug Fixes @@ -39,6 +63,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @faststore/api +# [3.97.0](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0) (2026-02-03) + +**Note:** Version bump only for package @faststore/api + # [3.97.0-dev.3](https://github.com/vtex/faststore/compare/v3.97.0-dev.2...v3.97.0-dev.3) (2026-02-06) ### Features @@ -47,16 +75,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # 3.97.0-dev.2 (2026-02-06) -# [3.97.0](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0) (2026-02-03) - -**Note:** Version bump only for package @faststore/api - ## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) -# 3.96.0-dev.22 (2026-01-21) - -**Note:** Version bump only for package @faststore/api - ## [3.96.3](https://github.com/vtex/faststore/compare/v3.96.2...v3.96.3) (2026-01-21) **Note:** Version bump only for package @faststore/api @@ -81,6 +101,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # 3.96.0-dev.22 (2026-01-21) +**Note:** Version bump only for package @faststore/api + +# 3.96.0-dev.22 (2026-01-21) + ### Bug Fixes - Clear cart (get new orderForm) if there is no checkout cookie present ([#3178](https://github.com/vtex/faststore/issues/3178)) ([f3f69bc](https://github.com/vtex/faststore/commit/f3f69bca1c54f2859ad4c3ac9a52563a0e8c2571)) diff --git a/packages/api/package.json b/packages/api/package.json index 60c4d4376d..2a29e7ac16 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/api", - "version": "3.98.0", + "version": "3.99.0-dev.6", "license": "MIT", "main": "dist/cjs/src/index.js", "typings": "dist/esm/src/index.d.ts", diff --git a/packages/api/src/__generated__/schema.ts b/packages/api/src/__generated__/schema.ts index b30894d6c0..cbf9e2e7f8 100644 --- a/packages/api/src/__generated__/schema.ts +++ b/packages/api/src/__generated__/schema.ts @@ -1425,6 +1425,8 @@ export type StoreOffer = { __typename?: 'StoreOffer'; /** Offer item availability. */ availability: Scalars['String']; + /** Whether this offer is a gift (e.g. free promotional item). */ + isGift?: Maybe; /** Offer item condition. */ itemCondition: Scalars['String']; /** Information on the item being offered. */ diff --git a/packages/api/src/platforms/vtex/resolvers/offer.ts b/packages/api/src/platforms/vtex/resolvers/offer.ts index c15414eb06..813c873b0c 100644 --- a/packages/api/src/platforms/vtex/resolvers/offer.ts +++ b/packages/api/src/platforms/vtex/resolvers/offer.ts @@ -159,6 +159,13 @@ export const StoreOffer: Record> = { return root.quantity } + return null + }, + isGift: (root) => { + if (isOrderFormItem(root)) { + return root.isGift ?? false + } + return null }, } diff --git a/packages/api/src/typeDefs/offer.graphql b/packages/api/src/typeDefs/offer.graphql index a77582feb6..498a1f26e9 100644 --- a/packages/api/src/typeDefs/offer.graphql +++ b/packages/api/src/typeDefs/offer.graphql @@ -50,6 +50,10 @@ type StoreOffer { Number of items offered. """ quantity: Int! + """ + Whether this offer is a gift (e.g. free promotional item). + """ + isGift: Boolean } """ diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index e87e9d8bfc..a2f48304bc 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,42 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.99.0-dev.7](https://github.com/vtex/faststore/compare/v3.99.0-dev.6...v3.99.0-dev.7) (2026-05-04) + +**Note:** Version bump only for package @faststore/cli + +# 3.99.0-dev.6 (2026-05-04) + +**Note:** Version bump only for package @faststore/cli + +# 3.99.0-dev.5 (2026-05-04) + +### Bug Fixes + +- Enhance session validation logic to skip token refresh in local … ([#3285](https://github.com/vtex/faststore/issues/3285)) ([41a330a](https://github.com/vtex/faststore/commit/41a330a9704a29369141e6e78b1f6d01e5a2e1a5)) + +# 3.99.0-dev.4 (2026-04-28) + +**Note:** Version bump only for package @faststore/cli + +# 3.99.0-dev.3 (2026-04-23) + +### Features + +- add isGift field to StoreOffer type and resolvers - SFS-3040 ([#3220](https://github.com/vtex/faststore/issues/3220)) ([e10fc92](https://github.com/vtex/faststore/commit/e10fc92633a5296a5b03286028d31d9c280561c6)) + +# [3.99.0-dev.2](https://github.com/vtex/faststore/compare/v3.99.0-dev.1...v3.99.0-dev.2) (2026-04-21) + +**Note:** Version bump only for package @faststore/cli + +# [3.99.0-dev.1](https://github.com/vtex/faststore/compare/v3.99.0-dev.0...v3.99.0-dev.1) (2026-04-15) + +**Note:** Version bump only for package @faststore/cli + +# [3.99.0-dev.0](https://github.com/vtex/faststore/compare/v3.98.1-dev.0...v3.99.0-dev.0) (2026-03-31) + +**Note:** Version bump only for package @faststore/cli + ## [3.98.4](https://github.com/vtex/faststore/compare/v3.98.3...v3.98.4) (2026-04-15) **Note:** Version bump only for package @faststore/cli @@ -19,6 +55,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @faststore/cli +## [3.98.1-dev.0](https://github.com/vtex/faststore/compare/v3.98.0-dev.10...v3.98.1-dev.0) (2026-03-27) # 3.98.0 (2026-03-27) ### Bug Fixes @@ -29,6 +66,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - version 2026 03 27 ([#3251](https://github.com/vtex/faststore/issues/3251)) ([f330a43](https://github.com/vtex/faststore/commit/f330a43661567ad8edb468acd3416bb7ffacd8b6)) +# [3.98.0-dev.10](https://github.com/vtex/faststore/compare/v3.98.0-dev.9...v3.98.0-dev.10) (2026-03-27) + +**Note:** Version bump only for package @faststore/cli + # [3.98.0-dev.9](https://github.com/vtex/faststore/compare/v3.98.0-dev.8...v3.98.0-dev.9) (2026-03-27) **Note:** Version bump only for package @faststore/cli @@ -77,7 +118,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @faststore/cli -# [3.97.0-dev.6](https://github.com/vtex/faststore/compare/v3.97.0-dev.5...v3.97.0-dev.6) (2026-02-19) +# [3.97.0](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0) (2026-02-03) **Note:** Version bump only for package @faststore/cli @@ -103,10 +144,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @faststore/cli -# [3.97.0](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0) (2026-02-03) - -**Note:** Version bump only for package @faststore/cli - # [3.97.0-dev.1](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0-dev.1) (2026-02-03) # 3.97.0-dev.0 (2026-01-27) @@ -119,10 +156,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) -# 3.96.0-dev.22 (2026-01-21) - -**Note:** Version bump only for package @faststore/cli - ## [3.96.3](https://github.com/vtex/faststore/compare/v3.96.2...v3.96.3) (2026-01-21) **Note:** Version bump only for package @faststore/cli @@ -237,16 +270,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [3.95.1-dev.0](https://github.com/vtex/faststore/compare/v3.95.0...v3.95.1-dev.0) (2025-12-02) -# 3.95.0-dev.3 (2025-12-02) - -**Note:** Version bump only for package @faststore/cli - # 3.95.0 (2025-12-02) ### Features - release version 20250212 ([#3138](https://github.com/vtex/faststore/issues/3138)) ([5e51548](https://github.com/vtex/faststore/commit/5e5154898e3756aa8d95efd54d76db0c90248d8d)) +# 3.95.0-dev.3 (2025-12-02) + +**Note:** Version bump only for package @faststore/cli + # [3.95.0-dev.2](https://github.com/vtex/faststore/compare/v3.94.0...v3.95.0-dev.2) (2025-12-02) ### Features @@ -267,10 +300,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [3.94.1-dev.0](https://github.com/vtex/faststore/compare/v3.94.0...v3.94.1-dev.0) (2025-11-19) -# 3.93.0-dev.4 (2025-11-17) - -**Note:** Version bump only for package @faststore/cli - # 3.94.0 (2025-11-19) ### Features @@ -278,6 +307,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - release version 20251119 17 05 ([#3126](https://github.com/vtex/faststore/issues/3126)) ([9753c3f](https://github.com/vtex/faststore/commit/9753c3ff5ea760767978c41ec138b661a87ad731)) - update version to 3.93.0-dev.4 and clean up changelogs ([#3127](https://github.com/vtex/faststore/issues/3127)) ([0c29d74](https://github.com/vtex/faststore/commit/0c29d749dc2222d01d848ffda9c2ae95dfba22af)) +# 3.93.0-dev.4 (2025-11-17) + +**Note:** Version bump only for package @faststore/cli + # [3.93.0-dev.4](https://github.com/vtex/faststore/compare/v3.93.0-dev.3...v3.93.0-dev.4) (2025-11-17) **Note:** Version bump only for package @faststore/cli diff --git a/packages/cli/README.md b/packages/cli/README.md index a8a552e5b8..675abdba24 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -25,30 +25,35 @@ npm install -g @faststore/cli ``` + ```sh-session $ npm install -g @faststore/cli $ faststore COMMAND running command... $ faststore (--version) -@faststore/cli/3.98.4 linux-x64 node-v20.20.2 +@faststore/cli/3.99.0-dev.7 linux-x64 node-v20.20.2 $ faststore --help [COMMAND] USAGE $ faststore COMMAND ... ``` + ## Commands -* [`faststore build [ACCOUNT] [PATH]`](#faststore-build-account-path) -* [`faststore cms-sync [PATH]`](#faststore-cms-sync-path) -* [`faststore create [PATH]`](#faststore-create-path) -* [`faststore dev [ACCOUNT] [PATH] [PORT]`](#faststore-dev-account-path-port) -* [`faststore generate-graphql [PATH]`](#faststore-generate-graphql-path) -* [`faststore help [COMMANDS]`](#faststore-help-commands) -* [`faststore start [ACCOUNT] [PATH] [PORT]`](#faststore-start-account-path-port) -* [`faststore test [PATH]`](#faststore-test-path) + +- [Installation](#installation) +- [Commands](#commands) +- [`faststore build [ACCOUNT] [PATH]`](#faststore-build-account-path) +- [`faststore cms-sync [PATH]`](#faststore-cms-sync-path) +- [`faststore create [PATH]`](#faststore-create-path) +- [`faststore dev [ACCOUNT] [PATH] [PORT]`](#faststore-dev-account-path-port) +- [`faststore generate-graphql [PATH]`](#faststore-generate-graphql-path) +- [`faststore help [COMMANDS]`](#faststore-help-commands) +- [`faststore start [ACCOUNT] [PATH] [PORT]`](#faststore-start-account-path-port) +- [`faststore test [PATH]`](#faststore-test-path) ## `faststore build [ACCOUNT] [PATH]` @@ -65,7 +70,7 @@ FLAGS registry. ``` -_See code: [dist/commands/build.js](https://github.com/vtex/faststore/blob/v3.98.4/dist/commands/build.js)_ +_See code: [dist/commands/build.js](https://github.com/vtex/faststore/blob/v3.99.0-dev.7/dist/commands/build.js)_ ## `faststore cms-sync [PATH]` @@ -80,7 +85,7 @@ FLAGS -d, --dry-run ``` -_See code: [dist/commands/cms-sync.js](https://github.com/vtex/faststore/blob/v3.98.4/dist/commands/cms-sync.js)_ +_See code: [dist/commands/cms-sync.js](https://github.com/vtex/faststore/blob/v3.99.0-dev.7/dist/commands/cms-sync.js)_ ## `faststore create [PATH]` @@ -100,7 +105,7 @@ EXAMPLES $ yarn faststore create discovery ``` -_See code: [dist/commands/create.js](https://github.com/vtex/faststore/blob/v3.98.4/dist/commands/create.js)_ +_See code: [dist/commands/create.js](https://github.com/vtex/faststore/blob/v3.99.0-dev.7/dist/commands/create.js)_ ## `faststore dev [ACCOUNT] [PATH] [PORT]` @@ -117,7 +122,7 @@ FLAGS --watch-plugins Enable watching for plugin changes ``` -_See code: [dist/commands/dev.js](https://github.com/vtex/faststore/blob/v3.98.4/dist/commands/dev.js)_ +_See code: [dist/commands/dev.js](https://github.com/vtex/faststore/blob/v3.99.0-dev.7/dist/commands/dev.js)_ ## `faststore generate-graphql [PATH]` @@ -129,7 +134,7 @@ ARGUMENTS PATH The path where the FastStore GraphQL customization is. Defaults to cwd. ``` -_See code: [dist/commands/generate-graphql.js](https://github.com/vtex/faststore/blob/v3.98.4/dist/commands/generate-graphql.js)_ +_See code: [dist/commands/generate-graphql.js](https://github.com/vtex/faststore/blob/v3.99.0-dev.7/dist/commands/generate-graphql.js)_ ## `faststore help [COMMANDS]` @@ -163,7 +168,7 @@ ARGUMENTS PORT The port where FastStore should run. Defaults to 3000. ``` -_See code: [dist/commands/start.js](https://github.com/vtex/faststore/blob/v3.98.4/dist/commands/start.js)_ +_See code: [dist/commands/start.js](https://github.com/vtex/faststore/blob/v3.99.0-dev.7/dist/commands/start.js)_ ## `faststore test [PATH]` @@ -175,5 +180,6 @@ ARGUMENTS PATH The path where the FastStore being tested is. Defaults to cwd. ``` -_See code: [dist/commands/test.js](https://github.com/vtex/faststore/blob/v3.98.4/dist/commands/test.js)_ +_See code: [dist/commands/test.js](https://github.com/vtex/faststore/blob/v3.99.0-dev.7/dist/commands/test.js)_ + diff --git a/packages/cli/package.json b/packages/cli/package.json index 604634f8aa..f093b74d18 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/cli", - "version": "3.98.4", + "version": "3.99.0-dev.7", "description": "FastStore CLI", "author": "Emerson Laurentino @emersonlaurentino", "bin": { @@ -22,7 +22,7 @@ ], "dependencies": { "@antfu/ni": "^0.21.12", - "@faststore/core": "^3.98.4", + "@faststore/core": "^3.99.0-dev.7", "@inquirer/prompts": "^5.1.2", "@oclif/core": "^1.16.4", "@oclif/plugin-help": "^5", diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index 0ccf16eca9..dc5d854895 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -3,12 +3,50 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [Unreleased] + +### Features + +- Added `useCSVParser` hook for parsing CSV files in a web worker, with error handling and CSV template generation. +- Added `useFileUpload` hook to manage file upload errors, validation, and rejection reasons. +- Added `FileUploadCard` component for file selection, drag-and-drop, and template download, with error state and file validation. + +# 3.99.0-dev.6 (2026-05-04) + +**Note:** Version bump only for package @faststore/components + +# 3.99.0-dev.5 (2026-05-04) + +### Bug Fixes + +- Enhance session validation logic to skip token refresh in local … ([#3285](https://github.com/vtex/faststore/issues/3285)) ([41a330a](https://github.com/vtex/faststore/commit/41a330a9704a29369141e6e78b1f6d01e5a2e1a5)) + +# 3.99.0-dev.4 (2026-04-28) + +**Note:** Version bump only for package @faststore/components + +# 3.99.0-dev.3 (2026-04-23) + +### Features + +- add isGift field to StoreOffer type and resolvers - SFS-3040 ([#3220](https://github.com/vtex/faststore/issues/3220)) ([e10fc92](https://github.com/vtex/faststore/commit/e10fc92633a5296a5b03286028d31d9c280561c6)) + +# [3.99.0-dev.1](https://github.com/vtex/faststore/compare/v3.99.0-dev.0...v3.99.0-dev.1) (2026-04-15) + +**Note:** Version bump only for package @faststore/components + ## [3.98.1](https://github.com/vtex/faststore/compare/v3.98.0...v3.98.1) (2026-04-07) ### Bug Fixes - simplify city and postal code display logic in `RegionBar` and `RegionButton` ([#3259](https://github.com/vtex/faststore/issues/3259)) ([8944bee](https://github.com/vtex/faststore/commit/8944bee9cb92ccea2b6ca24309cfa5478b6f4d0d)) +## [3.98.1-dev.0](https://github.com/vtex/faststore/compare/v3.98.0-dev.10...v3.98.1-dev.0) (2026-03-27) + +**Note:** Version bump only for package @faststore/components + +# 3.98.0 (2026-03-27) + # 3.98.0 (2026-03-27) ### Bug Fixes @@ -35,31 +73,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @faststore/components -## [Unreleased] - -### Features - -- Added `useCSVParser` hook for parsing CSV files in a web worker, with error handling and CSV template generation. -- Added `useFileUpload` hook to manage file upload errors, validation, and rejection reasons. -- Added `FileUploadCard` component for file selection, drag-and-drop, and template download, with error state and file validation. - # [3.98.0-dev.0](https://github.com/vtex/faststore/compare/v3.97.0-dev.6...v3.98.0-dev.0) (2026-02-24) ### Features - release version 20260224 ([#3225](https://github.com/vtex/faststore/issues/3225)) ([7a52516](https://github.com/vtex/faststore/commit/7a5251677a8f67066a2e060191b896ae6d0b0d9a)) -# 3.97.0-dev.2 (2026-02-06) - # [3.97.0](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0) (2026-02-03) **Note:** Version bump only for package @faststore/components -## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) - -# 3.96.0-dev.22 (2026-01-21) +# 3.97.0-dev.2 (2026-02-06) -**Note:** Version bump only for package @faststore/components +## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) # [3.96.0](https://github.com/vtex/faststore/compare/v3.95.0...v3.96.0) (2025-12-24) diff --git a/packages/components/package.json b/packages/components/package.json index e3d92f177c..05c099b9b3 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/components", - "version": "3.98.1", + "version": "3.99.0-dev.6", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "typings": "dist/esm/index.d.ts", diff --git a/packages/core/@generated/gql.ts b/packages/core/@generated/gql.ts index 2912361a1b..67792d4f38 100644 --- a/packages/core/@generated/gql.ts +++ b/packages/core/@generated/gql.ts @@ -62,7 +62,7 @@ const documents = { types.ProcessOrderAuthorizationMutationDocument, '\n query ValidateUser {\n validateUser {\n isValid\n }\n }\n': types.ValidateUserDocument, - '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n shouldSplitItem\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n': + '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n shouldSplitItem\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n isGift\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n': types.ValidateCartMutationDocument, '\n query ClientPickupPointsQuery(\n $geoCoordinates: IStoreGeoCoordinates\n ) {\n pickupPoints(geoCoordinates: $geoCoordinates) {\n pickupPointDistances {\n pickupId\n distance\n pickupName\n isActive\n address {\n city\n state\n number\n postalCode\n street\n }\n }\n }\n }\n': types.ClientPickupPointsQueryDocument, @@ -250,7 +250,7 @@ export function gql( * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ export function gql( - source: '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n shouldSplitItem\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n' + source: '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n shouldSplitItem\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n isGift\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n' ): typeof import('./graphql').ValidateCartMutationDocument /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. diff --git a/packages/core/@generated/graphql.ts b/packages/core/@generated/graphql.ts index b61455def5..6e23ea4b89 100644 --- a/packages/core/@generated/graphql.ts +++ b/packages/core/@generated/graphql.ts @@ -1348,6 +1348,8 @@ export type StoreMarketingData = { export type StoreOffer = { /** Offer item availability. */ availability: Scalars['String']['output'] + /** Whether this offer is a gift (e.g. free promotional item). */ + isGift: Maybe /** Offer item condition. */ itemCondition: Scalars['String']['output'] /** Information on the item being offered. */ @@ -3143,6 +3145,7 @@ export type ValidateCartMutationMutation = { priceWithTaxes: number listPrice: number listPriceWithTaxes: number + isGift: boolean | null seller: { identifier: string } itemOffered: { sku: string @@ -3181,6 +3184,7 @@ export type CartItemFragment = { priceWithTaxes: number listPrice: number listPriceWithTaxes: number + isGift: boolean | null seller: { identifier: string } itemOffered: { sku: string @@ -4390,6 +4394,7 @@ export const CartItemFragmentDoc = new TypedDocumentString( priceWithTaxes listPrice listPriceWithTaxes + isGift itemOffered { ...CartProductItem } @@ -4536,7 +4541,7 @@ export const ValidateUserDocument = { export const ValidateCartMutationDocument = { __meta__: { operationName: 'ValidateCartMutation', - operationHash: 'c2b3f8bff73ebf6ac79d758c66cabbc21ba9fcc0', + operationHash: '32c15f8888ca34f223def7972b7f19090808435a', }, } as unknown as TypedDocumentString< ValidateCartMutationMutation, diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index d9a446ba13..929ce1fe84 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,59 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [Unreleased] + +### Features + +- Re-exported `useCSVParser` hook from `@faststore/components` (see components changelog for details). +- Re-exported `useFileUpload` hook from `@faststore/components` (see components changelog for details). +- Re-exported `FileUploadCard` component from `@faststore/components` (see components changelog for details). + +# [3.99.0-dev.7](https://github.com/vtex/faststore/compare/v3.99.0-dev.6...v3.99.0-dev.7) (2026-05-04) + +### Bug Fixes + +- fixing preview tag style ([#3058](https://github.com/vtex/faststore/issues/3058)) ([5084915](https://github.com/vtex/faststore/commit/50849157ac190a57fc151e7e6c9cb10df487bff6)) + +# 3.99.0-dev.6 (2026-05-04) + +### Bug Fixes + +- Base CMS schema ([#3290](https://github.com/vtex/faststore/issues/3290)) ([3455e89](https://github.com/vtex/faststore/commit/3455e89295e197f4bd18c0b5f84d7b01c0d67009)) + +# 3.99.0-dev.5 (2026-05-04) + +### Bug Fixes + +- Enhance session validation logic to skip token refresh in local … ([#3285](https://github.com/vtex/faststore/issues/3285)) ([41a330a](https://github.com/vtex/faststore/commit/41a330a9704a29369141e6e78b1f6d01e5a2e1a5)) + +# 3.99.0-dev.4 (2026-04-28) + +### Bug Fixes + +- Refactor token refresh logic in GraphQL API handler - SFS-3104 ([#3263](https://github.com/vtex/faststore/issues/3263)) ([695ab6a](https://github.com/vtex/faststore/commit/695ab6a9413eb53ef457cfc890c74e41c29c1ab8)) + +# 3.99.0-dev.3 (2026-04-23) + +### Features + +- add isGift field to StoreOffer type and resolvers - SFS-3040 ([#3220](https://github.com/vtex/faststore/issues/3220)) ([e10fc92](https://github.com/vtex/faststore/commit/e10fc92633a5296a5b03286028d31d9c280561c6)) +- Enhance session management with logout - SFS-3105 ([#3268](https://github.com/vtex/faststore/issues/3268)) ([9468e32](https://github.com/vtex/faststore/commit/9468e32a3531ca3c91c7f82a34ac1c750c6a26ef)) + +# [3.99.0-dev.2](https://github.com/vtex/faststore/compare/v3.99.0-dev.1...v3.99.0-dev.2) (2026-04-21) + +**Note:** Version bump only for package @faststore/core + +# [3.99.0-dev.1](https://github.com/vtex/faststore/compare/v3.99.0-dev.0...v3.99.0-dev.1) (2026-04-15) + +**Note:** Version bump only for package @faststore/core + +# [3.99.0-dev.0](https://github.com/vtex/faststore/compare/v3.98.1-dev.0...v3.99.0-dev.0) (2026-03-31) + +### Features + +- Add Shopping Assistant component to FastStore schema ([#3255](https://github.com/vtex/faststore/issues/3255)) ([f4c8ea6](https://github.com/vtex/faststore/commit/f4c8ea65da468d26acac198071882523a8a57215)) + ## [3.98.4](https://github.com/vtex/faststore/compare/v3.98.3...v3.98.4) (2026-04-15) **Note:** Version bump only for package @faststore/core @@ -25,6 +78,9 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - simplify city and postal code display logic in `RegionBar` and `RegionButton` ([#3259](https://github.com/vtex/faststore/issues/3259)) ([8944bee](https://github.com/vtex/faststore/commit/8944bee9cb92ccea2b6ca24309cfa5478b6f4d0d)) +## [3.98.1-dev.0](https://github.com/vtex/faststore/compare/v3.98.0-dev.10...v3.98.1-dev.0) (2026-03-27) + +**Note:** Version bump only for package @faststore/core # 3.98.0 (2026-03-27) ### Bug Fixes @@ -35,6 +91,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - version 2026 03 27 ([#3251](https://github.com/vtex/faststore/issues/3251)) ([f330a43](https://github.com/vtex/faststore/commit/f330a43661567ad8edb468acd3416bb7ffacd8b6)) +# [3.98.0-dev.10](https://github.com/vtex/faststore/compare/v3.98.0-dev.9...v3.98.0-dev.10) (2026-03-27) + +**Note:** Version bump only for package @faststore/core + # [3.98.0-dev.9](https://github.com/vtex/faststore/compare/v3.98.0-dev.8...v3.98.0-dev.9) (2026-03-27) **Note:** Version bump only for package @faststore/core @@ -45,14 +105,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Add Quick Order Full Feature ([#3197](https://github.com/vtex/faststore/issues/3197)) ([f5518d7](https://github.com/vtex/faststore/commit/f5518d7f205dccad99b6ea0a127fd09cf77d1edb)) -## [Unreleased] - -### Features - -- Re-exported `useCSVParser` hook from `@faststore/components` (see components changelog for details). -- Re-exported `useFileUpload` hook from `@faststore/components` (see components changelog for details). -- Re-exported `FileUploadCard` component from `@faststore/components` (see components changelog for details). - # [3.98.0-dev.7](https://github.com/vtex/faststore/compare/v3.98.0-dev.6...v3.98.0-dev.7) (2026-03-26) **Note:** Version bump only for package @faststore/core @@ -101,6 +153,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @faststore/core +# [3.97.0](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0) (2026-02-03) + +**Note:** Version bump only for package @faststore/core + # [3.97.0-dev.6](https://github.com/vtex/faststore/compare/v3.97.0-dev.5...v3.97.0-dev.6) (2026-02-19) ### Bug Fixes @@ -129,10 +185,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - reorder feature ([#3153](https://github.com/vtex/faststore/issues/3153)) ([d0fdeec](https://github.com/vtex/faststore/commit/d0fdeec77cd94e16f1b79dcc927487320983ba0e)) -# [3.97.0](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0) (2026-02-03) - -**Note:** Version bump only for package @faststore/core - # [3.97.0-dev.1](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0-dev.1) (2026-02-03) # 3.97.0-dev.0 (2026-01-27) @@ -145,12 +197,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Enable fraction digit formatting for SEO's `product:price:amount` meta tag ([#3179](https://github.com/vtex/faststore/issues/3179)) ([d6e6252](https://github.com/vtex/faststore/commit/d6e6252eb578d782505b8e505ee48cd9fd1526e3)) -## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) - -# 3.96.0-dev.22 (2026-01-21) - -**Note:** Version bump only for package @faststore/core - ## [3.96.5](https://github.com/vtex/faststore/compare/v3.96.4...v3.96.5) (2026-02-02) ### Bug Fixes @@ -163,6 +209,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - close filter on apply button click in FilterSlider component ([#3187](https://github.com/vtex/faststore/issues/3187)) ([f3c96eb](https://github.com/vtex/faststore/commit/f3c96eb5e73178d8c863a3e40ac576dc623a0624)) +## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) + ## [3.96.3](https://github.com/vtex/faststore/compare/v3.96.2...v3.96.3) (2026-01-21) **Note:** Version bump only for package @faststore/core diff --git a/packages/core/cms/faststore/base.jsonc b/packages/core/cms/faststore/base.jsonc index a2cfd34f6b..7c62771800 100644 --- a/packages/core/cms/faststore/base.jsonc +++ b/packages/core/cms/faststore/base.jsonc @@ -12,17 +12,8 @@ // Every component schema must extend this base schema. "base-component": { "type": "object", - "required": ["$componentKey", "$componentTitle"], - "properties": { - "$componentKey": { - "type": "string", - "description": "Unique identifier for the component" - }, - "$componentTitle": { - "type": "string", - "description": "Display title for the component" - } - } + "required": [], + "properties": {} }, "base-page-template": { "type": "object", diff --git a/packages/core/cms/faststore/components/cms_component__shoppingassistant.jsonc b/packages/core/cms/faststore/components/cms_component__shoppingassistant.jsonc new file mode 100644 index 0000000000..4e6085e932 --- /dev/null +++ b/packages/core/cms/faststore/components/cms_component__shoppingassistant.jsonc @@ -0,0 +1,9 @@ +{ + "$extends": ["#/$defs/base-component"], + "$componentKey": "ShoppingAssistant", + "$componentTitle": "Shopping Assistant", + "title": "Shopping Assistant", + "description": "To enable Shopping Assistant, make sure you have finished the setup at Agentic CX > Dashboard.", + "type": "object", + "properties": {} +} diff --git a/packages/core/cms/faststore/pages/cms_content_type__globalsections.jsonc b/packages/core/cms/faststore/pages/cms_content_type__globalsections.jsonc index fe3cc65ec6..dcc25b253c 100644 --- a/packages/core/cms/faststore/pages/cms_content_type__globalsections.jsonc +++ b/packages/core/cms/faststore/pages/cms_content_type__globalsections.jsonc @@ -361,6 +361,9 @@ }, { "$ref": "#/components/EmptyState" + }, + { + "$ref": "#/components/ShoppingAssistant" } ] } diff --git a/packages/core/cms/faststore/schema.json b/packages/core/cms/faststore/schema.json index 91f70cfbf7..e0e0335074 100644 --- a/packages/core/cms/faststore/schema.json +++ b/packages/core/cms/faststore/schema.json @@ -1,5 +1,4 @@ { - "$id": "vtex.faststore", "title": "FastStore Schema", "description": "Collection of default schemas for FastStore.", "content-types": { @@ -539,6 +538,9 @@ }, { "$ref": "#/components/EmptyState" + }, + { + "$ref": "#/components/ShoppingAssistant" } ] } @@ -3788,31 +3790,18 @@ } } } + }, + "ShoppingAssistant": { + "$extends": ["#/$defs/base-component"], + "$componentKey": "ShoppingAssistant", + "$componentTitle": "Shopping Assistant", + "title": "Shopping Assistant", + "description": "To enable Shopping Assistant, make sure you have finished the setup at Agentic CX > Dashboard.", + "type": "object", + "properties": {} } }, "$defs": { - "base-component": { - "type": "object", - "required": ["$componentKey", "$componentTitle"], - "properties": { - "$componentKey": { - "type": "string", - "description": "Unique identifier for the component" - }, - "$componentTitle": { - "type": "string", - "description": "Display title for the component" - } - } - }, - "base-page-template": { - "type": "object", - "properties": { - "sections": { - "$ref": "#/$defs/$ALLOW_ALL_COMPONENTS" - } - } - }, "$ALLOW_ALL_COMPONENTS": { "type": "array", "items": { @@ -3879,6 +3868,9 @@ }, { "$ref": "#/components/Search" + }, + { + "$ref": "#/components/ShoppingAssistant" } ] } diff --git a/packages/core/discovery.config.default.js b/packages/core/discovery.config.default.js index 9c3b894cc2..11f13ea627 100644 --- a/packages/core/discovery.config.default.js +++ b/packages/core/discovery.config.default.js @@ -148,6 +148,7 @@ module.exports = { enableRedirects: false, enableSearchSSR: false, enableFaststoreMyAccount: false, + useIsGiftFromOrderForm: false, graphqlCacheControl: { maxAge: 0, // 0 disables cache, 5 * 60 enable cache control maxAge 5 minutes staleWhileRevalidate: 60 * 60, // 1 hour diff --git a/packages/core/next.config.js b/packages/core/next.config.js index 00a81883a7..a66c99fcbf 100644 --- a/packages/core/next.config.js +++ b/packages/core/next.config.js @@ -29,6 +29,7 @@ const nextConfig = { }, // TODO: We won't need to enable this experimental feature when migrating to Next.js 13 experimental: { + instrumentationHook: true, scrollRestoration: !storeConfig.experimental.scrollRestoration, /* * The FastStore Discovery CLI will update this value to match the path where the diff --git a/packages/core/package.json b/packages/core/package.json index fe1e459f9b..98323a17e3 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/core", - "version": "3.98.4", + "version": "3.99.0-dev.7", "license": "MIT", "repository": { "type": "git", @@ -52,7 +52,7 @@ "@envelop/parser-cache": "^6.0.2", "@envelop/validation-cache": "^6.0.2", "@faststore/api": "workspace:*", - "@faststore/graphql-utils": "^3.98.0", + "@faststore/graphql-utils": "^3.99.0-dev.6", "@faststore/lighthouse": "workspace:*", "@faststore/sdk": "workspace:*", "@faststore/ui": "workspace:*", @@ -90,7 +90,9 @@ "isomorphic-unfetch": "^3.1.0", "lexical": "^0.34.0", "next": "^13.5.9", + "next-logger": "^5.0.2", "next-seo": "^6.6.0", + "pino": "^9.7.0", "postcss": "^8.4.4", "prettier": "^2.2.0", "react": "^18.2.0", diff --git a/packages/core/src/components/account/MyAccountDrawer/OrganizationDrawer/useReloadAfterLogoutReturn.ts b/packages/core/src/components/account/MyAccountDrawer/OrganizationDrawer/useReloadAfterLogoutReturn.ts index 4f7a7f78fa..3059933567 100644 --- a/packages/core/src/components/account/MyAccountDrawer/OrganizationDrawer/useReloadAfterLogoutReturn.ts +++ b/packages/core/src/components/account/MyAccountDrawer/OrganizationDrawer/useReloadAfterLogoutReturn.ts @@ -12,7 +12,10 @@ import { useEffect } from 'react' * We handle both: check the flag on mount (fresh load) and on pageshow (bfcache). */ -export const RELOAD_AFTER_LOGOUT_KEY = 'faststore_reload_after_logout_return' +import { + RELOAD_AFTER_LOGOUT_KEY, + SESSION_READY_KEY, +} from '../../../../sdk/session/storageKeys' /** * Call before redirecting to logout. When the user returns to the store, the app @@ -43,6 +46,8 @@ const checkAndReloadIfReturnedFromLogout = (): void => { try { if (sessionStorage.getItem(RELOAD_AFTER_LOGOUT_KEY)) { sessionStorage.removeItem(RELOAD_AFTER_LOGOUT_KEY) + // Pre-set session ready so the reloaded page starts without a skeleton. + sessionStorage.setItem(SESSION_READY_KEY, 'true') setTimeout(forceRefreshWithoutCache, RELOAD_DELAY_MS) } } catch { diff --git a/packages/core/src/components/common/PreviewTag/section.module.scss b/packages/core/src/components/common/PreviewTag/section.module.scss index f505baf6ea..4fa9ba5555 100644 --- a/packages/core/src/components/common/PreviewTag/section.module.scss +++ b/packages/core/src/components/common/PreviewTag/section.module.scss @@ -1,16 +1,52 @@ -@layer components { - .section { - @import "@faststore/ui/src/components/atoms/Badge/styles.scss"; - @import "@faststore/ui/src/components/atoms/Icon/styles.scss"; - @import "@faststore/ui/src/components/molecules/Tag/styles.scss"; +.section [data-fs-preview-tag] { + position: fixed; + inset: 1rem 1rem auto auto; + z-index: var(--fs-z-index-highest); + border-radius: var(--fs-border-radius-pill); + box-shadow: var(--fs-shadow-darker); + backdrop-filter: blur(var(--fs-spacing-1)); - [data-fs-preview-tag] { - position: fixed; - top: 1rem; - right: 1rem; - z-index: 10000; - box-shadow: var(--fs-shadow-darker); - backdrop-filter: blur(var(--fs-spacing-1)); + [data-fs-badge-wrapper="true"] { + position: relative; + display: flex; + align-items: center; + padding: var(--fs-spacing-1) var(--fs-spacing-6) var(--fs-spacing-1) var(--fs-spacing-2); + color: var(--fs-color-text); + text-transform: uppercase; + letter-spacing: 0.5px; + background: var(--fs-color-danger-bkg); + border-radius: var(--fs-border-radius-pill); + box-shadow: var(--fs-shadow-hover); + + [data-fs-tag-icon-button="true"] { + position: absolute; + right: calc(-1 * var(--fs-spacing-1)); + display: flex; + align-items: center; + justify-content: center; + width: var(--fs-spacing-7); + height: var(--fs-spacing-7); + cursor: pointer; + + [data-fs-icon] { + display: flex; + align-items: center; + justify-content: center; + width: 16px; + height: 16px; + background: var(--fs-color-danger-bkg); + border-radius: 50%; + transition: var(--fs-transition-property) var(--fs-transition-timing) var(--fs-transition-function); + } + + &:hover [data-fs-icon], + &:focus [data-fs-icon] { + filter: brightness(0.9); + } + + &:focus [data-fs-icon] { + border: var(--fs-border-width) solid currentColor; + } } } } diff --git a/packages/core/src/instrumentation.ts b/packages/core/src/instrumentation.ts new file mode 100644 index 0000000000..8ad4b2f4e3 --- /dev/null +++ b/packages/core/src/instrumentation.ts @@ -0,0 +1,11 @@ +export async function register() { + if (process.env.NEXT_RUNTIME === 'nodejs') { + const isProduction = process.env.NODE_ENV === 'production' + const isVercel = !!process.env.VERCEL + + if (isProduction && !isVercel) { + await require('pino') + await require('next-logger') + } + } +} diff --git a/packages/core/src/pages/api/graphql.ts b/packages/core/src/pages/api/graphql.ts index 17f0fa5cdb..b07bb84e3d 100644 --- a/packages/core/src/pages/api/graphql.ts +++ b/packages/core/src/pages/api/graphql.ts @@ -8,7 +8,8 @@ import { parse } from 'cookie' import type { NextApiHandler, NextApiRequest } from 'next' import discoveryConfig from 'discovery.config' -import { getJWTAutCookie, isExpired } from 'src/utils/getCookie' +import { getJWTAutCookie } from 'src/utils/getCookie' +import { shouldForceRefreshTokenForValidateSession } from 'src/utils/validateSessionRefreshToken' import { execute } from '../../server' const DEFAULT_MAX_AGE = 5 * 60 // 5 minutes @@ -160,7 +161,11 @@ const handler: NextApiHandler = async (request, response) => { // value is used to cache bust the request if there is a VtexIdclientAutCookie const { operation, variables, query, v: value } = parseRequest(request) + const hostname = request.headers.host?.split(':')[0] + const isLocal = hostname === 'localhost' || hostname === '127.0.0.1' + if ( + !isLocal && operation.__meta__.operationName === 'ValidateSession' && discoveryConfig.experimental?.refreshToken ) { @@ -169,27 +174,10 @@ const handler: NextApiHandler = async (request, response) => { account: discoveryConfig.api.storeId, }) - const tokenExpired = Boolean(jwt && isExpired(Number(jwt?.exp))) - - const refreshAfterExist = !!variables?.session?.refreshAfter - - const refreshAfterExpired = - refreshAfterExist && isExpired(Number(variables.session.refreshAfter)) - - const tokenExistAndIsFirstRefreshTokenRequest = - !!jwt && !refreshAfterExist - - // when token expired, browser clears the cookie, but we still have the refreshAfter in session and the refresh token cookie - const tokenNotExistAndRefreshAfterExistAndIsExpired = - !jwt && !!refreshAfterExist && refreshAfterExpired - - const tokenExpiredAndRefreshAfterIsNullOrExpired = - tokenExpired && (!refreshAfterExist || refreshAfterExpired) - - const shouldRefreshToken = - tokenExistAndIsFirstRefreshTokenRequest || - tokenNotExistAndRefreshAfterExistAndIsExpired || - tokenExpiredAndRefreshAfterIsNullOrExpired + const shouldRefreshToken = shouldForceRefreshTokenForValidateSession({ + jwt, + sessionRefreshAfter: variables?.session?.refreshAfter, + }) if (shouldRefreshToken) { throw new UnauthorizedError( diff --git a/packages/core/src/sdk/account/useRefreshToken.ts b/packages/core/src/sdk/account/useRefreshToken.ts index 2f94c9c3ed..21348e1027 100644 --- a/packages/core/src/sdk/account/useRefreshToken.ts +++ b/packages/core/src/sdk/account/useRefreshToken.ts @@ -1,5 +1,5 @@ import { useEffect, useState } from 'react' -import { sessionStore } from '../session' +import { logoutAndClearSession, sessionStore } from '../session' import { isRefreshTokenSuccessful, refreshTokenRequest } from './refreshToken' export const useRefreshToken = ( @@ -37,23 +37,12 @@ export const useRefreshToken = ( url.searchParams.set('_refresh', Date.now().toString()) window.location.href = url.toString() } else { - // If refresh token failed, set refreshAfter to now + 1 hour - sessionStore.set({ - ...currentSession, - refreshAfter: String(Math.floor(Date.now() / 1000) + 1 * 60 * 60), // now + 1 hour - }) - + await logoutAndClearSession(currentSession) setShouldShow403(true) } } catch (error) { console.error('Error during refresh token process:', error) - - // Set refreshAfter to postpone future requests and redirect to login - sessionStore.set({ - ...currentSession, - refreshAfter: String(Math.floor(Date.now() / 1000) + 1 * 60 * 60), // now + 1 hour - }) - + await logoutAndClearSession(currentSession) setShouldShow403(true) } } diff --git a/packages/core/src/sdk/cart/index.ts b/packages/core/src/sdk/cart/index.ts index 7868c24ba6..e5a2f8d878 100644 --- a/packages/core/src/sdk/cart/index.ts +++ b/packages/core/src/sdk/cart/index.ts @@ -16,7 +16,11 @@ import { request } from '../graphql/request' import { sessionStore } from '../session' import { createValidationStore, useStore } from '../useStore' -export interface CartItem extends SDKCartItem, CartItemFragment {} +export interface CartItem + extends SDKCartItem, + Omit { + isGift?: boolean | null +} export interface Cart extends SDKCart { messages?: CartMessageFragment[] @@ -53,6 +57,7 @@ export const ValidateCartMutation = gql(` priceWithTaxes listPrice listPriceWithTaxes + isGift itemOffered { ...CartProductItem } @@ -88,7 +93,12 @@ export const ValidateCartMutation = gql(` } `) -const isGift = (item: CartItem) => item.price === 0 +const isGift = (item: CartItem) => { + if (storeConfig.experimental?.useIsGiftFromOrderForm) { + return item?.isGift ?? false + } + return item.price === 0 +} const getItemId = (item: Pick) => [ diff --git a/packages/core/src/sdk/session/index.ts b/packages/core/src/sdk/session/index.ts index 52942887c7..73a68a7ca4 100644 --- a/packages/core/src/sdk/session/index.ts +++ b/packages/core/src/sdk/session/index.ts @@ -1,6 +1,6 @@ import type { Session } from '@faststore/sdk' import { createSessionStore } from '@faststore/sdk' -import { useEffect, useMemo, useRef, useState } from 'react' +import { useEffect, useMemo, useState } from 'react' import { gql } from '@generated' import type { @@ -17,8 +17,23 @@ import { cartStore } from '../cart' import { request } from '../graphql/request' import { createValidationStore, useStore } from '../useStore' import { getPostalCode } from '../userLocation/index' +import { RELOAD_AFTER_LOGOUT_KEY, SESSION_READY_KEY } from './storageKeys' -const SESSION_READY_KEY = 'faststore_session_ready' +const isLocalEnvironment = (): boolean => + typeof window !== 'undefined' && + (window.location.hostname === 'localhost' || + window.location.hostname === '127.0.0.1') + +const isReloadAfterLogoutPending = (): boolean => { + try { + return ( + typeof sessionStorage !== 'undefined' && + !!sessionStorage.getItem(RELOAD_AFTER_LOGOUT_KEY) + ) + } catch { + return false + } +} export const mutation = gql(` mutation ValidateSession($session: IStoreSession!, $search: String!) { @@ -77,7 +92,52 @@ export const mutation = gql(` } `) +async function handleRefreshToken(session: Session): Promise { + const result = await refreshTokenRequest() + + if (isRefreshTokenSuccessful(result)) { + return { + ...session, + refreshAfter: String( + Math.floor(new Date(result?.refreshAfter).getTime() / 1000) + ), + } + } + + await logoutAndClearSession(session) + return null +} + +function isRefreshAfterExpired(session: Session): boolean { + return ( + !!session.refreshAfter && + Math.floor(Date.now() / 1000) > Number(session.refreshAfter) + ) +} + export const validateSession = async (session: Session) => { + // Skip validation if the page is about to reload after logout — avoids an + // aborted-fetch TypeError when the forced reload navigates the page away. + if (isReloadAfterLogoutPending()) { + return null + } + + // If the refreshToken is enabled and the refreshAfter is expired, refresh the token. + // On success, continue to the validation flow with the refreshed session. + // On failure (logoutAndClearSession already triggered), bail out. + // Skipped in local environments where the refresh token infrastructure is unavailable. + if ( + !isLocalEnvironment() && + storeConfig.experimental?.refreshToken && + isRefreshAfterExpired(session) + ) { + const refreshed = await handleRefreshToken(session) + if (!refreshed) { + return null + } + session = refreshed + } + // If deliveryPromise is enabled and there is no postalCode in the session if ( storeConfig.deliveryPromise?.enabled && @@ -120,33 +180,21 @@ export const validateSession = async (session: Session) => { return data.validateSession } catch (error) { const shouldRefreshToken = - error?.status === 401 && storeConfig.experimental?.refreshToken + !isLocalEnvironment() && + error?.status === 401 && + storeConfig.experimental?.refreshToken if (shouldRefreshToken) { - const result = await refreshTokenRequest() - - if (isRefreshTokenSuccessful(result)) { - const refreshAfter = String( - Math.floor(new Date(result?.refreshAfter).getTime() / 1000) - ) - - sessionStore.set({ - ...session, - refreshAfter, - }) - } else { - // If the refresh token fails 3x, set the refreshAfter to now + 1 hour - // so that we can postpone refreshToken request and continue the ValidateSession request - sessionStore.set({ - ...session, - refreshAfter: String(Math.floor(Date.now() / 1000) + 1 * 60 * 60), // now + 1 hour - }) + const refreshed = await handleRefreshToken(session) + if (refreshed) { + sessionStore.set(refreshed) } } } } -const [validationStore, onValidate] = createValidationStore(validateSession) +const [validationStore, onValidate, hasValidatedStore] = + createValidationStore(validateSession) const defaultStore = createSessionStore(storeConfig.session, onValidate) @@ -162,6 +210,21 @@ export const sessionStore = { }, } +export async function logoutAndClearSession(session: Session) { + try { + await fetch('/api/fs/logout', { method: 'POST' }) + } catch (logoutError) { + console.error('Failed to call logout endpoint:', logoutError) + } + + sessionStore.set({ + ...session, + person: null, + b2b: null, + refreshAfter: null, + }) +} + interface SessionOptions { filter?: boolean } @@ -184,7 +247,8 @@ export const useSession = ({ filter }: SessionOptions = { filter: true }) => { const currentSessionStore = sessionStore.read() ?? sessionStore.readInitial() const resultSessionStore = useStore(sessionStore) const isValidating = useStore(validationStore) - const { isSessionReady } = useSessionReady({ isValidating }) + const hasValidated = useStore(hasValidatedStore) + const { isSessionReady } = useSessionReady({ isValidating, hasValidated }) let { channel, ...session } = resultSessionStore ?? currentSessionStore @@ -211,12 +275,21 @@ export const useSession = ({ filter }: SessionOptions = { filter: true }) => { * The session ready state is persisted in sessionStorage to maintain consistency across page navigations * and provide faster loading times on subsequent page visits. * + * Uses `hasValidated` (a reactive store value) instead of a ref-based transition tracker to avoid + * a React 18 automatic batching race condition where `isValidating` goes true→false so fast that + * the effect never observes the `true` state, leaving `isSessionReady` stuck at false. + * * @param isValidating - Whether the session is currently being validated + * @param hasValidated - Whether at least one validation cycle has ever completed * @returns An object containing the session readiness status */ export const useSessionReady = ({ isValidating, -}: { isValidating: boolean }) => { + hasValidated, +}: { + isValidating: boolean + hasValidated: boolean +}) => { // Initialize with persisted state from sessionStorage const [isSessionReady, setIsSessionReady] = useState(() => { if (typeof window === 'undefined') return false @@ -227,44 +300,18 @@ export const useSessionReady = ({ } }) - // Wait for session to be stable (not validating and has consistent data) - const hasValidatedRef = useRef(false) - useEffect(() => { - // Only run the effect if there has already been a change in isValidating (that is, validateSession has already been called at least once) - if (!hasValidatedRef.current && isValidating) { - hasValidatedRef.current = true - return - } - - if (!hasValidatedRef.current) { - return - } - - if (!isValidating) { - setIsSessionReady(true) - // Persist the ready state in sessionStorage - try { - sessionStorage.setItem(SESSION_READY_KEY, 'true') - } catch { - // Ignore storage errors - } - return - } + // Only mark ready once at least one full validation cycle has completed + // and validation is not currently in flight. + if (isValidating || !hasValidated) return - // Only set to false if we don't have a persisted ready state - if (typeof window !== 'undefined') { - try { - const persistedReady = - sessionStorage.getItem(SESSION_READY_KEY) === 'true' - if (!persistedReady) { - setIsSessionReady(false) - } - } catch { - setIsSessionReady(false) - } + setIsSessionReady(true) + try { + sessionStorage.setItem(SESSION_READY_KEY, 'true') + } catch { + // Ignore storage errors } - }, [isValidating]) + }, [isValidating, hasValidated]) return { isSessionReady } } diff --git a/packages/core/src/sdk/session/storageKeys.ts b/packages/core/src/sdk/session/storageKeys.ts new file mode 100644 index 0000000000..230294ab54 --- /dev/null +++ b/packages/core/src/sdk/session/storageKeys.ts @@ -0,0 +1,2 @@ +export const RELOAD_AFTER_LOGOUT_KEY = 'faststore_reload_after_logout_return' +export const SESSION_READY_KEY = 'faststore_session_ready' diff --git a/packages/core/src/sdk/useStore.ts b/packages/core/src/sdk/useStore.ts index fd1dfcde0c..41dddd90e4 100644 --- a/packages/core/src/sdk/useStore.ts +++ b/packages/core/src/sdk/useStore.ts @@ -9,6 +9,7 @@ type CB = (val: T) => Promise export const createValidationStore = (cb: CB) => { const store = createBaseStore(false) + const hasValidatedStore = createBaseStore(false) const onValidate = async (val: T) => { try { @@ -17,8 +18,13 @@ export const createValidationStore = (cb: CB) => { return await cb(val) } finally { store.set(false) + hasValidatedStore.set(true) } } - return [store, onValidate] as [Store, CB] + return [store, onValidate, hasValidatedStore] as [ + Store, + CB, + Store, + ] } diff --git a/packages/core/src/utils/validateSessionRefreshToken.ts b/packages/core/src/utils/validateSessionRefreshToken.ts new file mode 100644 index 0000000000..35e921681d --- /dev/null +++ b/packages/core/src/utils/validateSessionRefreshToken.ts @@ -0,0 +1,29 @@ +interface ShouldForceRefreshParams { + jwt: { exp: number } | null | undefined + sessionRefreshAfter: string | null | undefined + /** Defaults to `Math.floor(Date.now() / 1000)` — pass explicitly in tests. */ + nowSeconds?: number +} + +/** + * Decides whether the GraphQL handler should force a token-refresh 401 + * for a ValidateSession request. + * + * Two independent triggers: + * 1. JWT exists but the client has never received a refreshAfter + * → first refresh-token round-trip. + * 2. refreshAfter is set and already in the past + * → scheduled retry window elapsed. + */ +export function shouldForceRefreshTokenForValidateSession({ + jwt, + sessionRefreshAfter, + nowSeconds = Math.floor(Date.now() / 1000), +}: ShouldForceRefreshParams): boolean { + const refreshAfterExists = !!sessionRefreshAfter + const firstRefreshRequest = !!jwt && !refreshAfterExists + const refreshAfterExpired = + refreshAfterExists && nowSeconds > Number(sessionRefreshAfter) + + return firstRefreshRequest || refreshAfterExpired +} diff --git a/packages/core/test/utils/validateSessionRefreshToken.test.ts b/packages/core/test/utils/validateSessionRefreshToken.test.ts new file mode 100644 index 0000000000..4e92639875 --- /dev/null +++ b/packages/core/test/utils/validateSessionRefreshToken.test.ts @@ -0,0 +1,69 @@ +import { shouldForceRefreshTokenForValidateSession } from '../../src/utils/validateSessionRefreshToken' + +describe('shouldForceRefreshTokenForValidateSession', () => { + const now = 1_700_000_000 + + describe('when client has no refreshAfter yet', () => { + it('returns true if JWT exists (access token still valid)', () => { + expect( + shouldForceRefreshTokenForValidateSession({ + jwt: { exp: now + 3600 }, + sessionRefreshAfter: undefined, + nowSeconds: now, + }) + ).toBe(true) + }) + + it('returns true if JWT exists (access token already expired)', () => { + expect( + shouldForceRefreshTokenForValidateSession({ + jwt: { exp: now - 60 }, + sessionRefreshAfter: null, + nowSeconds: now, + }) + ).toBe(true) + }) + + it('returns false if there is no JWT and no refreshAfter', () => { + expect( + shouldForceRefreshTokenForValidateSession({ + jwt: null, + sessionRefreshAfter: undefined, + nowSeconds: now, + }) + ).toBe(false) + }) + }) + + describe('when session.refreshAfter is set', () => { + it('returns false if refreshAfter is in the future', () => { + expect( + shouldForceRefreshTokenForValidateSession({ + jwt: { exp: now + 3600 }, + sessionRefreshAfter: String(now + 100), + nowSeconds: now, + }) + ).toBe(false) + }) + + it('returns true if refreshAfter is in the past', () => { + expect( + shouldForceRefreshTokenForValidateSession({ + jwt: { exp: now + 3600 }, + sessionRefreshAfter: String(now - 1), + nowSeconds: now, + }) + ).toBe(true) + }) + + it('returns true if refreshAfter is past even without JWT', () => { + expect( + shouldForceRefreshTokenForValidateSession({ + jwt: null, + sessionRefreshAfter: String(now - 1), + nowSeconds: now, + }) + ).toBe(true) + }) + }) +}) diff --git a/packages/graphql-utils/CHANGELOG.md b/packages/graphql-utils/CHANGELOG.md index e63ff9c4b8..8b28af5c3b 100644 --- a/packages/graphql-utils/CHANGELOG.md +++ b/packages/graphql-utils/CHANGELOG.md @@ -3,6 +3,30 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# 3.99.0-dev.6 (2026-05-04) + +**Note:** Version bump only for package @faststore/graphql-utils + +# 3.99.0-dev.5 (2026-05-04) + +### Bug Fixes + +- Enhance session validation logic to skip token refresh in local … ([#3285](https://github.com/vtex/faststore/issues/3285)) ([41a330a](https://github.com/vtex/faststore/commit/41a330a9704a29369141e6e78b1f6d01e5a2e1a5)) + +# 3.99.0-dev.4 (2026-04-28) + +**Note:** Version bump only for package @faststore/graphql-utils + +# 3.99.0-dev.3 (2026-04-23) + +### Features + +- add isGift field to StoreOffer type and resolvers - SFS-3040 ([#3220](https://github.com/vtex/faststore/issues/3220)) ([e10fc92](https://github.com/vtex/faststore/commit/e10fc92633a5296a5b03286028d31d9c280561c6)) + +## [3.98.1-dev.0](https://github.com/vtex/faststore/compare/v3.98.0-dev.10...v3.98.1-dev.0) (2026-03-27) + +**Note:** Version bump only for package @faststore/graphql-utils + # 3.98.0 (2026-03-27) ### Bug Fixes @@ -23,17 +47,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - release version 20260224 ([#3225](https://github.com/vtex/faststore/issues/3225)) ([7a52516](https://github.com/vtex/faststore/commit/7a5251677a8f67066a2e060191b896ae6d0b0d9a)) -# 3.97.0-dev.2 (2026-02-06) - # [3.97.0](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0) (2026-02-03) **Note:** Version bump only for package @faststore/graphql-utils -## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) - -# 3.96.0-dev.22 (2026-01-21) +# 3.97.0-dev.2 (2026-02-06) -**Note:** Version bump only for package @faststore/graphql-utils +## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) # [3.96.0](https://github.com/vtex/faststore/compare/v3.95.0...v3.96.0) (2025-12-24) diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json index 38e9220f18..5eb6a3c60c 100644 --- a/packages/graphql-utils/package.json +++ b/packages/graphql-utils/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/graphql-utils", - "version": "3.98.0", + "version": "3.99.0-dev.6", "description": "GraphQL utilities", "repository": { "type": "git", diff --git a/packages/lighthouse/CHANGELOG.md b/packages/lighthouse/CHANGELOG.md index 17613df307..4d91875e84 100644 --- a/packages/lighthouse/CHANGELOG.md +++ b/packages/lighthouse/CHANGELOG.md @@ -3,6 +3,30 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# 3.99.0-dev.6 (2026-05-04) + +**Note:** Version bump only for package @faststore/lighthouse + +# 3.99.0-dev.5 (2026-05-04) + +### Bug Fixes + +- Enhance session validation logic to skip token refresh in local … ([#3285](https://github.com/vtex/faststore/issues/3285)) ([41a330a](https://github.com/vtex/faststore/commit/41a330a9704a29369141e6e78b1f6d01e5a2e1a5)) + +# 3.99.0-dev.4 (2026-04-28) + +**Note:** Version bump only for package @faststore/lighthouse + +# 3.99.0-dev.3 (2026-04-23) + +### Features + +- add isGift field to StoreOffer type and resolvers - SFS-3040 ([#3220](https://github.com/vtex/faststore/issues/3220)) ([e10fc92](https://github.com/vtex/faststore/commit/e10fc92633a5296a5b03286028d31d9c280561c6)) + +## [3.98.1-dev.0](https://github.com/vtex/faststore/compare/v3.98.0-dev.10...v3.98.1-dev.0) (2026-03-27) + +**Note:** Version bump only for package @faststore/lighthouse + # 3.98.0 (2026-03-27) ### Bug Fixes @@ -23,17 +47,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - release version 20260224 ([#3225](https://github.com/vtex/faststore/issues/3225)) ([7a52516](https://github.com/vtex/faststore/commit/7a5251677a8f67066a2e060191b896ae6d0b0d9a)) -# 3.97.0-dev.2 (2026-02-06) - # [3.97.0](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0) (2026-02-03) **Note:** Version bump only for package @faststore/lighthouse -## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) - -# 3.96.0-dev.22 (2026-01-21) +# 3.97.0-dev.2 (2026-02-06) -**Note:** Version bump only for package @faststore/lighthouse +## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) # [3.96.0](https://github.com/vtex/faststore/compare/v3.95.0...v3.96.0) (2025-12-24) diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json index b57cd125fa..d7242057c2 100644 --- a/packages/lighthouse/package.json +++ b/packages/lighthouse/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/lighthouse", - "version": "3.98.0", + "version": "3.99.0-dev.6", "author": "Emerson Laurentino", "license": "MIT", "repository": { diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index 5fe8e46b3d..95a03c7aad 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -3,6 +3,36 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# 3.99.0-dev.6 (2026-05-04) + +**Note:** Version bump only for package @faststore/sdk + +# 3.99.0-dev.5 (2026-05-04) + +### Bug Fixes + +- Enhance session validation logic to skip token refresh in local … ([#3285](https://github.com/vtex/faststore/issues/3285)) ([41a330a](https://github.com/vtex/faststore/commit/41a330a9704a29369141e6e78b1f6d01e5a2e1a5)) + +# 3.99.0-dev.4 (2026-04-28) + +**Note:** Version bump only for package @faststore/sdk + +# 3.99.0-dev.3 (2026-04-23) + +### Features + +- add isGift field to StoreOffer type and resolvers - SFS-3040 ([#3220](https://github.com/vtex/faststore/issues/3220)) ([e10fc92](https://github.com/vtex/faststore/commit/e10fc92633a5296a5b03286028d31d9c280561c6)) + +# [3.99.0-dev.2](https://github.com/vtex/faststore/compare/v3.99.0-dev.1...v3.99.0-dev.2) (2026-04-21) + +### Bug Fixes + +- Prevent IDB writes before store hydration completes - SFS-3121 ([#3267](https://github.com/vtex/faststore/issues/3267)) ([0b23e52](https://github.com/vtex/faststore/commit/0b23e526db23d7338c0eda75b673bb0bea05eef3)) + +## [3.98.1-dev.0](https://github.com/vtex/faststore/compare/v3.98.0-dev.10...v3.98.1-dev.0) (2026-03-27) + +**Note:** Version bump only for package @faststore/sdk + # 3.98.0 (2026-03-27) ### Bug Fixes @@ -23,17 +53,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - release version 20260224 ([#3225](https://github.com/vtex/faststore/issues/3225)) ([7a52516](https://github.com/vtex/faststore/commit/7a5251677a8f67066a2e060191b896ae6d0b0d9a)) -# 3.97.0-dev.2 (2026-02-06) - # [3.97.0](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0) (2026-02-03) **Note:** Version bump only for package @faststore/sdk -## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) - -# 3.96.0-dev.22 (2026-01-21) +# 3.97.0-dev.2 (2026-02-06) -**Note:** Version bump only for package @faststore/sdk +## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) # [3.96.0](https://github.com/vtex/faststore/compare/v3.95.0...v3.96.0) (2025-12-24) diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 3d1f642101..5faf2b9b52 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/sdk", - "version": "3.98.0", + "version": "3.99.0-dev.6", "description": "Hooks for creating your next component library", "license": "MIT", "repository": { diff --git a/packages/sdk/src/store/persisted.ts b/packages/sdk/src/store/persisted.ts index 8a6890c0f5..47c0008ba9 100644 --- a/packages/sdk/src/store/persisted.ts +++ b/packages/sdk/src/store/persisted.ts @@ -41,25 +41,42 @@ const debounce = any>( export const persisted = (key: string) => (store: Store) => { - const handler = async () => { + let hydrated = false + + const hydrateFromIDB = async () => { const payload = await getIDB(key) if (typeof document !== 'undefined') { store.set(payload ?? store.readInitial()) } + + hydrated = true } - const debouncedHandler = debounce(handler, 100) // 100ms debounce + hydrateFromIDB() - debouncedHandler() - globalThis.addEventListener?.('focus', () => debouncedHandler()) + // Cross-tab sync: when the user returns to this tab, unconditionally + // pull the latest value from IDB (another tab may have written it). + const syncFromIDB = async () => { + const payload = await getIDB(key) + + if (typeof document !== 'undefined' && payload !== undefined) { + store.set(payload) + } + } + + const debouncedSync = debounce(syncFromIDB, 100) + + globalThis.addEventListener?.('focus', () => debouncedSync()) globalThis.document?.addEventListener( 'visibilitychange', - () => document.visibilityState === 'visible' && debouncedHandler() + () => document.visibilityState === 'visible' && debouncedSync() ) store.subscribe((value) => { - setIDB(key, value) + if (hydrated) { + setIDB(key, value) + } }) return store diff --git a/packages/storybook/CHANGELOG.md b/packages/storybook/CHANGELOG.md index 5487eeb94b..f16e5b9745 100644 --- a/packages/storybook/CHANGELOG.md +++ b/packages/storybook/CHANGELOG.md @@ -3,10 +3,35 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# 3.99.0-dev.6 (2026-05-04) + +**Note:** Version bump only for package @faststore/storybook + +# 3.99.0-dev.5 (2026-05-04) + +### Bug Fixes + +- Enhance session validation logic to skip token refresh in local … ([#3285](https://github.com/vtex/faststore/issues/3285)) ([41a330a](https://github.com/vtex/faststore/commit/41a330a9704a29369141e6e78b1f6d01e5a2e1a5)) + +# 3.99.0-dev.4 (2026-04-28) + +**Note:** Version bump only for package @faststore/storybook + +# 3.99.0-dev.3 (2026-04-23) + +### Features + +- add isGift field to StoreOffer type and resolvers - SFS-3040 ([#3220](https://github.com/vtex/faststore/issues/3220)) ([e10fc92](https://github.com/vtex/faststore/commit/e10fc92633a5296a5b03286028d31d9c280561c6)) + +# [3.99.0-dev.1](https://github.com/vtex/faststore/compare/v3.99.0-dev.0...v3.99.0-dev.1) (2026-04-15) + +**Note:** Version bump only for package @faststore/storybook + ## [3.98.1](https://github.com/vtex/faststore/compare/v3.98.0...v3.98.1) (2026-04-07) **Note:** Version bump only for package @faststore/storybook +## [3.98.1-dev.0](https://github.com/vtex/faststore/compare/v3.98.0-dev.10...v3.98.1-dev.0) (2026-03-27) # 3.98.0 (2026-03-27) ### Bug Fixes @@ -45,21 +70,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @faststore/storybook -# [3.97.0-dev.5](https://github.com/vtex/faststore/compare/v3.97.0-dev.4...v3.97.0-dev.5) (2026-02-19) +# [3.97.0](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0) (2026-02-03) **Note:** Version bump only for package @faststore/storybook -# 3.97.0-dev.2 (2026-02-06) - -# [3.97.0](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0) (2026-02-03) +# [3.97.0-dev.5](https://github.com/vtex/faststore/compare/v3.97.0-dev.4...v3.97.0-dev.5) (2026-02-19) **Note:** Version bump only for package @faststore/storybook -## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) - -# 3.96.0-dev.22 (2026-01-21) +# 3.97.0-dev.2 (2026-02-06) -**Note:** Version bump only for package @faststore/storybook +## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) # [3.96.0](https://github.com/vtex/faststore/compare/v3.95.0...v3.96.0) (2025-12-24) diff --git a/packages/storybook/package.json b/packages/storybook/package.json index 71628aa6a3..b2e03d00cc 100644 --- a/packages/storybook/package.json +++ b/packages/storybook/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/storybook", - "version": "3.98.1", + "version": "3.99.0-dev.6", "private": true, "repository": { "type": "git", diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index db9ae3af76..610d4b8b9c 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -3,10 +3,35 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# 3.99.0-dev.6 (2026-05-04) + +**Note:** Version bump only for package @faststore/ui + +# 3.99.0-dev.5 (2026-05-04) + +### Bug Fixes + +- Enhance session validation logic to skip token refresh in local … ([#3285](https://github.com/vtex/faststore/issues/3285)) ([41a330a](https://github.com/vtex/faststore/commit/41a330a9704a29369141e6e78b1f6d01e5a2e1a5)) + +# 3.99.0-dev.4 (2026-04-28) + +**Note:** Version bump only for package @faststore/ui + +# 3.99.0-dev.3 (2026-04-23) + +### Features + +- add isGift field to StoreOffer type and resolvers - SFS-3040 ([#3220](https://github.com/vtex/faststore/issues/3220)) ([e10fc92](https://github.com/vtex/faststore/commit/e10fc92633a5296a5b03286028d31d9c280561c6)) + +# [3.99.0-dev.1](https://github.com/vtex/faststore/compare/v3.99.0-dev.0...v3.99.0-dev.1) (2026-04-15) + +**Note:** Version bump only for package @faststore/ui + ## [3.98.1](https://github.com/vtex/faststore/compare/v3.98.0...v3.98.1) (2026-04-07) **Note:** Version bump only for package @faststore/ui +## [3.98.1-dev.0](https://github.com/vtex/faststore/compare/v3.98.0-dev.10...v3.98.1-dev.0) (2026-03-27) # 3.98.0 (2026-03-27) ### Bug Fixes @@ -45,21 +70,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @faststore/ui -# [3.97.0-dev.5](https://github.com/vtex/faststore/compare/v3.97.0-dev.4...v3.97.0-dev.5) (2026-02-19) +# [3.97.0](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0) (2026-02-03) **Note:** Version bump only for package @faststore/ui -# 3.97.0-dev.2 (2026-02-06) - -# [3.97.0](https://github.com/vtex/faststore/compare/v3.96.5...v3.97.0) (2026-02-03) +# [3.97.0-dev.5](https://github.com/vtex/faststore/compare/v3.97.0-dev.4...v3.97.0-dev.5) (2026-02-19) **Note:** Version bump only for package @faststore/ui -## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) - -# 3.96.0-dev.22 (2026-01-21) +# 3.97.0-dev.2 (2026-02-06) -**Note:** Version bump only for package @faststore/ui +## [3.96.4-dev.0](https://github.com/vtex/faststore/compare/v3.96.3...v3.96.4-dev.0) (2026-01-21) # [3.96.0](https://github.com/vtex/faststore/compare/v3.95.0...v3.96.0) (2025-12-24) diff --git a/packages/ui/package.json b/packages/ui/package.json index 48b480b424..b3d8ce3b91 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/ui", - "version": "3.98.1", + "version": "3.99.0-dev.6", "description": "A lightweight, framework agnostic component library for React", "author": "emersonlaurentino", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c5b0e8a6fe..2f8f2c57de 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,7 +9,7 @@ importers: dependencies: axios: specifier: ^1.8.2 - version: 1.13.6 + version: 1.8.3 devDependencies: "@biomejs/biome": specifier: 1.9.4 @@ -19,13 +19,13 @@ importers: version: 9.1.7 lerna: specifier: ^9.0.3 - version: 9.0.5(@swc/core@1.15.18)(@types/node@22.19.13) + version: 9.0.7(@swc/core@1.15.30)(@types/node@20.14.9) lint-staged: specifier: 15.4.3 version: 15.4.3 prettier: specifier: ^3.1.0 - version: 3.8.1 + version: 3.3.3 stylelint: specifier: ^14.6.0 version: 14.16.1 @@ -37,16 +37,16 @@ importers: version: 24.0.0(stylelint@14.16.1) stylelint-config-standard-scss: specifier: ^3.0.0 - version: 3.0.0(postcss@8.5.8)(stylelint@14.16.1) + version: 3.0.0(postcss@8.5.1)(stylelint@14.16.1) stylelint-order: specifier: ^5.0.0 version: 5.0.0(stylelint@14.16.1) stylelint-scss: specifier: ^4.0.1 - version: 4.7.0(stylelint@14.16.1) + version: 4.3.0(stylelint@14.16.1) turbo: specifier: ^2.3.4 - version: 2.8.13 + version: 2.3.4 typescript: specifier: 5.3.2 version: 5.3.2 @@ -55,22 +55,22 @@ importers: dependencies: "@graphql-tools/load-files": specifier: ^7.0.0 - version: 7.0.1(graphql@15.10.1) + version: 7.0.0(graphql@15.8.0) "@graphql-tools/schema": specifier: ^9.0.0 - version: 9.0.19(graphql@15.10.1) + version: 9.0.19(graphql@15.8.0) "@graphql-tools/utils": specifier: ^10.2.0 - version: 10.11.0(graphql@15.10.1) + version: 10.2.0(graphql@15.8.0) "@rollup/plugin-graphql": specifier: ^1.0.0 - version: 1.1.0(graphql@15.10.1)(rollup@2.80.0) + version: 1.1.0(graphql@15.8.0)(rollup@2.79.2) cookie: specifier: ^0.7.0 version: 0.7.2 dataloader: specifier: ^2.1.0 - version: 2.2.3 + version: 2.2.2 fast-deep-equal: specifier: ^3.1.3 version: 3.1.3 @@ -82,29 +82,29 @@ importers: version: 3.1.0 sanitize-html: specifier: ^2.11.0 - version: 2.17.1 + version: 2.12.1 devDependencies: "@graphql-codegen/cli": specifier: 2.2.0 - version: 2.2.0(@babel/core@7.29.0)(@types/node@16.18.126)(encoding@0.1.13)(graphql@15.10.1) + version: 2.2.0(@babel/core@7.26.7)(@types/node@18.19.74)(encoding@0.1.13)(graphql@15.8.0) "@graphql-codegen/typescript": specifier: 2.2.2 - version: 2.2.2(encoding@0.1.13)(graphql@15.10.1) + version: 2.2.2(encoding@0.1.13)(graphql@15.8.0) "@parcel/watcher": specifier: ^2.4.0 - version: 2.5.6 + version: 2.5.1 "@types/cookie": specifier: ^0.6.0 version: 0.6.0 "@types/express": specifier: ^4.17.16 - version: 4.17.25 + version: 4.17.16 "@types/jest": specifier: 29.1.0 version: 29.1.0 "@types/sanitize-html": specifier: ^2.9.1 - version: 2.16.0 + version: 2.9.1 concurrently: specifier: ^6.2.1 version: 6.5.1 @@ -113,28 +113,28 @@ importers: version: 2.4.1 express: specifier: ^4.17.3 - version: 4.22.1 + version: 4.20.0 express-graphql: specifier: ^0.12.0 - version: 0.12.0(graphql@15.10.1) + version: 0.12.0(graphql@15.8.0) graphql: specifier: ^15.6.0 - version: 15.10.1 + version: 15.8.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)) + version: 29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)) nodemon: specifier: ^3.0.2 - version: 3.1.14 + version: 3.0.2 ts-jest: specifier: 29.1.1 - version: 29.1.1(@babel/core@7.29.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.0))(jest@29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)))(typescript@5.3.2) + version: 29.1.1(@babel/core@7.26.7)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.7))(jest@29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)))(typescript@5.4.5) tslib: specifier: ^2.3.1 version: 2.8.1 tsx: specifier: ^4.6.2 - version: 4.21.0 + version: 4.6.2 packages/cli: dependencies: @@ -142,32 +142,32 @@ importers: specifier: ^0.21.12 version: 0.21.12 "@faststore/core": - specifier: ^3.98.4 + specifier: ^3.99.0-dev.7 version: link:../core "@inquirer/prompts": specifier: ^5.1.2 - version: 5.5.0 + version: 5.1.2 "@oclif/core": specifier: ^1.16.4 - version: 1.26.2 + version: 1.23.1 "@oclif/plugin-help": specifier: ^5 - version: 5.2.20(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2) + version: 5.1.22 "@oclif/plugin-not-found": specifier: ^2.3.3 - version: 2.4.3(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2) + version: 2.3.13 chalk: specifier: ~4.1.2 version: 4.1.2 chokidar: specifier: ^3.5.3 - version: 3.6.0 + version: 3.5.3 degit: specifier: ^2.8.4 version: 2.8.4 dotenv: specifier: ^16.4.5 - version: 16.6.1 + version: 16.4.5 fs-extra: specifier: ^10.1.0 version: 10.1.0 @@ -180,7 +180,7 @@ importers: devDependencies: "@types/chai": specifier: ^4 - version: 4.3.20 + version: 4.3.4 "@types/degit": specifier: ^2.8.6 version: 2.8.6 @@ -192,25 +192,25 @@ importers: version: 29.1.0 "@types/node": specifier: ^16.11.63 - version: 16.18.126 + version: 16.18.57 chai: specifier: ^4 - version: 4.5.0 + version: 4.3.7 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)) + version: 29.7.0(@types/node@16.18.57)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)) oclif: specifier: ^3 - version: 3.17.2(@swc/core@1.15.18)(@types/node@16.18.126)(encoding@0.1.13)(mem-fs@2.3.0)(typescript@5.3.2) + version: 3.4.3(encoding@0.1.13)(mem-fs-editor@9.5.0(mem-fs@2.2.1))(mem-fs@2.2.1) shx: specifier: ^0.3.3 version: 0.3.4 ts-jest: specifier: ^29.1.2 - version: 29.4.6(@babel/core@7.29.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.0))(jest-util@29.7.0)(jest@29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)))(typescript@5.3.2) + version: 29.1.2(@babel/core@7.26.7)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.7))(jest@29.7.0(@types/node@16.18.57)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)))(typescript@5.4.5) ts-node: specifier: ^10.9.1 - version: 10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2) + version: 10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5) tslib: specifier: ^2.3.1 version: 2.8.1 @@ -234,7 +234,7 @@ importers: version: 8.34.0(react@18.3.1) react-swipeable: specifier: ^7.0.0 - version: 7.0.2(react@18.3.1) + version: 7.0.0(react@18.3.1) tabbable: specifier: ^5.2.1 version: 5.3.3 @@ -244,10 +244,10 @@ importers: version: 29.7.0 "@testing-library/jest-dom": specifier: ^6.5.0 - version: 6.9.1 + version: 6.5.0 "@testing-library/react": specifier: ^14.3.0 - version: 14.3.1(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@types/jest": specifier: 29.1.0 version: 29.1.0 @@ -259,16 +259,16 @@ importers: version: 5.5.2 "@types/react": specifier: ^18.2.42 - version: 18.3.28 + version: 18.2.42 "@types/react-dom": specifier: ^18.2.17 - version: 18.3.7(@types/react@18.3.28) + version: 18.2.21 "@types/tabbable": specifier: ^3.1.1 - version: 3.1.4 + version: 3.1.2 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)) + version: 29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)) jest-axe: specifier: ^9.0.0 version: 9.0.0 @@ -277,7 +277,7 @@ importers: version: 29.7.0 ts-jest: specifier: ^29.1.2 - version: 29.4.6(@babel/core@7.29.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.0))(jest-util@29.7.0)(jest@29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)))(typescript@5.3.2) + version: 29.1.2(@babel/core@7.26.7)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.7))(jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)))(typescript@5.4.5) tslib: specifier: ^2.3.1 version: 2.8.1 @@ -292,21 +292,21 @@ importers: version: 0.6.4 "@envelop/core": specifier: ^5.0.2 - version: 5.5.1 + version: 5.0.2 "@envelop/graphql-jit": specifier: ^8.0.3 - version: 8.0.4(@envelop/core@5.5.1)(graphql@15.10.1) + version: 8.0.3(@envelop/core@5.0.2)(graphql@15.8.0) "@envelop/parser-cache": specifier: ^6.0.2 - version: 6.0.4(@envelop/core@5.5.1)(graphql@15.10.1) + version: 6.0.4(@envelop/core@5.0.2)(graphql@15.8.0) "@envelop/validation-cache": specifier: ^6.0.2 - version: 6.0.4(@envelop/core@5.5.1)(graphql@15.10.1) + version: 6.0.4(@envelop/core@5.0.2)(graphql@15.8.0) "@faststore/api": specifier: workspace:* version: link:../api "@faststore/graphql-utils": - specifier: ^3.98.0 + specifier: ^3.99.0-dev.6 version: link:../graphql-utils "@faststore/lighthouse": specifier: workspace:* @@ -319,31 +319,31 @@ importers: version: link:../ui "@graphql-codegen/cli": specifier: 5.0.2 - version: 5.0.2(@parcel/watcher@2.5.6)(@types/node@22.19.13)(encoding@0.1.13)(enquirer@2.4.1)(graphql@15.10.1)(typescript@5.3.2) + version: 5.0.2(@parcel/watcher@2.5.1)(@types/node@20.14.9)(encoding@0.1.13)(enquirer@2.3.6)(graphql@15.8.0)(typescript@5.3.2) "@graphql-codegen/client-preset": specifier: 4.2.6 - version: 4.2.6(encoding@0.1.13)(graphql@15.10.1) + version: 4.2.6(encoding@0.1.13)(graphql@15.8.0) "@graphql-codegen/typescript": specifier: 4.0.7 - version: 4.0.7(encoding@0.1.13)(graphql@15.10.1) + version: 4.0.7(encoding@0.1.13)(graphql@15.8.0) "@graphql-codegen/typescript-operations": specifier: 4.2.1 - version: 4.2.1(encoding@0.1.13)(graphql@15.10.1) + version: 4.2.1(encoding@0.1.13)(graphql@15.8.0) "@graphql-tools/load-files": specifier: ^7.0.0 - version: 7.0.1(graphql@15.10.1) + version: 7.0.0(graphql@15.8.0) "@graphql-tools/merge": specifier: ^9.0.4 - version: 9.1.7(graphql@15.10.1) + version: 9.0.4(graphql@15.8.0) "@graphql-tools/schema": specifier: ^10.0.3 - version: 10.0.31(graphql@15.10.1) + version: 10.0.3(graphql@15.8.0) "@graphql-tools/utils": specifier: ^10.2.0 - version: 10.11.0(graphql@15.10.1) + version: 10.2.0(graphql@15.8.0) "@graphql-typed-document-node/core": specifier: ^3.2.0 - version: 3.2.0(graphql@15.10.1) + version: 3.2.0(graphql@15.8.0) "@lexical/code": specifier: ^0.34.0 version: 0.34.0 @@ -361,16 +361,16 @@ importers: version: 0.34.0 "@lexical/react": specifier: ^0.34.0 - version: 0.34.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(yjs@13.6.29) + version: 0.34.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(yjs@13.6.30) "@lexical/rich-text": specifier: ^0.34.0 version: 0.34.0 "@parcel/watcher": specifier: ^2.4.0 - version: 2.5.6 + version: 2.5.1 "@types/react": specifier: ^18.2.42 - version: 18.3.28 + version: 18.2.42 "@vtex/client-cms": specifier: ^0.2.16 version: 0.2.16(encoding@0.1.13) @@ -379,16 +379,16 @@ importers: version: 0.3.5 "@vtex/prettier-config": specifier: 1.0.0 - version: 1.0.0(prettier@2.8.8) + version: 1.0.0(prettier@2.8.3) autoprefixer: specifier: ^10.4.0 - version: 10.4.27(postcss@8.5.8) + version: 10.4.13(postcss@8.5.1) cookie: specifier: ^0.7.0 version: 0.7.2 css-loader: specifier: ^6.7.1 - version: 6.11.0(webpack@5.105.4(@swc/core@1.15.18)) + version: 6.11.0(webpack@5.97.1(@swc/core@1.15.30)) deepmerge: specifier: ^4.3.1 version: 4.3.1 @@ -403,7 +403,7 @@ importers: version: 10.1.0 graphql: specifier: ^15.6.0 - version: 15.10.1 + version: 15.8.0 idb-keyval: specifier: ^5.1.3 version: 5.1.5 @@ -418,16 +418,22 @@ importers: version: 0.34.0 next: specifier: ^13.5.9 - version: 13.5.11(@babel/core@7.29.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.97.3) + version: 13.5.11(@babel/core@7.26.7)(@opentelemetry/api@1.4.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4) + next-logger: + specifier: ^5.0.2 + version: 5.0.2(next@13.5.11(@babel/core@7.26.7)(@opentelemetry/api@1.4.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4))(pino@9.7.0) next-seo: specifier: ^6.6.0 - version: 6.8.0(next@13.5.11(@babel/core@7.29.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.97.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.6.0(next@13.5.11(@babel/core@7.26.7)(@opentelemetry/api@1.4.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + pino: + specifier: ^9.7.0 + version: 9.7.0 postcss: specifier: ^8.4.4 - version: 8.5.8 + version: 8.5.1 prettier: specifier: ^2.2.0 - version: 2.8.8 + version: 2.8.3 react: specifier: ^18.2.0 version: 18.3.1 @@ -439,29 +445,29 @@ importers: version: 8.34.0(react@18.3.1) sass: specifier: ^1.44.0 - version: 1.97.3 + version: 1.83.4 sass-loader: specifier: ^12.6.0 - version: 12.6.0(sass@1.97.3)(webpack@5.105.4(@swc/core@1.15.18)) + version: 12.6.0(sass@1.83.4)(webpack@5.97.1(@swc/core@1.15.30)) sharp: specifier: ^0.32.6 version: 0.32.6 style-loader: specifier: ^3.3.1 - version: 3.3.4(webpack@5.105.4(@swc/core@1.15.18)) + version: 3.3.1(webpack@5.97.1(@swc/core@1.15.30)) swr: specifier: ^2.2.5 - version: 2.4.1(react@18.3.1) + version: 2.3.1(react@18.3.1) tsx: specifier: ^4.6.2 - version: 4.21.0 + version: 4.6.2 devDependencies: "@cypress/code-coverage": specifier: ^3.12.1 - version: 3.14.7(@babel/core@7.29.0)(@babel/preset-env@7.29.0(@babel/core@7.29.0))(babel-loader@9.2.1(@babel/core@7.29.0)(webpack@5.105.4(@swc/core@1.15.18)))(cypress@12.17.4)(webpack@5.105.4(@swc/core@1.15.18)) + version: 3.12.1(@babel/core@7.26.7)(@babel/preset-env@7.26.7(@babel/core@7.26.7))(babel-loader@9.2.1(@babel/core@7.26.7)(webpack@5.97.1(@swc/core@1.15.30)))(cypress@12.17.4)(webpack@5.97.1(@swc/core@1.15.30)) "@envelop/testing": specifier: ^6.0.0 - version: 6.0.3(@envelop/core@5.5.1)(@envelop/types@5.2.1)(graphql@15.10.1) + version: 6.0.0(@envelop/core@5.0.2)(@envelop/types@5.0.0)(graphql@15.8.0) "@jest/globals": specifier: 29.7.0 version: 29.7.0 @@ -470,13 +476,13 @@ importers: version: 0.9.0(encoding@0.1.13) "@testing-library/cypress": specifier: ^10.0.1 - version: 10.1.0(cypress@12.17.4) + version: 10.0.1(cypress@12.17.4) "@types/cookie": specifier: ^0.6.0 version: 0.6.0 "@types/cypress": specifier: ^1.1.3 - version: 1.1.6 + version: 1.1.3 "@types/fs-extra": specifier: ^9.0.13 version: 9.0.13 @@ -485,13 +491,13 @@ importers: version: 29.1.0 axe-core: specifier: ^4.8.1 - version: 4.11.1 + version: 4.9.1 cypress: specifier: 12.17.4 version: 12.17.4 cypress-axe: specifier: ^1.5.0 - version: 1.7.0(axe-core@4.11.1)(cypress@12.17.4) + version: 1.5.0(axe-core@4.9.1)(cypress@12.17.4) cypress-wait-until: specifier: ^2.0.1 version: 2.0.1 @@ -503,10 +509,10 @@ importers: version: 3.0.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)) + version: 29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)) ts-jest: specifier: 29.1.1 - version: 29.1.1(@babel/core@7.29.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.0))(jest@29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)))(typescript@5.3.2) + version: 29.1.1(@babel/core@7.26.7)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.7))(jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)))(typescript@5.3.2) typescript: specifier: 5.3.2 version: 5.3.2 @@ -515,7 +521,7 @@ importers: dependencies: graphql: specifier: ^15.6.1 - version: 15.10.1 + version: 15.8.0 devDependencies: cross-env: specifier: ^7.0.2 @@ -525,13 +531,13 @@ importers: devDependencies: "@types/node": specifier: ^18.11.16 - version: 18.19.130 + version: 18.19.74 packages/sdk: dependencies: "@types/react": specifier: ^18.2.42 - version: 18.3.28 + version: 18.2.42 fast-deep-equal: specifier: ^3.1.3 version: 3.1.3 @@ -540,26 +546,26 @@ importers: version: 5.1.5 zustand: specifier: ^5.0.5 - version: 5.0.11(@types/react@18.3.28)(react@18.3.1)(use-sync-external-store@1.6.0(react@18.3.1)) + version: 5.0.5(@types/react@18.2.42)(react@18.3.1)(use-sync-external-store@1.4.0(react@18.3.1)) devDependencies: "@size-limit/preset-small-lib": specifier: ^7.0.8 version: 7.0.8(size-limit@7.0.8) "@testing-library/react": specifier: ^14.3.0 - version: 14.3.1(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@types/jest": specifier: 29.1.0 version: 29.1.0 "@types/node": specifier: ^18.11.16 - version: 18.19.130 + version: 18.19.74 fake-indexeddb: specifier: ^3.1.3 version: 3.1.8 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@18.19.130)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)) + version: 29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)) jest-environment-jsdom: specifier: ^29.7.0 version: 29.7.0 @@ -571,7 +577,7 @@ importers: version: 7.0.8 ts-jest: specifier: 29.1.1 - version: 29.1.1(@babel/core@7.29.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.0))(jest@29.7.0(@types/node@18.19.130)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)))(typescript@5.3.2) + version: 29.1.1(@babel/core@7.26.7)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.7))(jest@29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)))(typescript@5.4.5) tslib: specifier: ^2.3.1 version: 2.8.1 @@ -586,7 +592,7 @@ importers: version: link:../ui next: specifier: ^15.1.6 - version: 15.5.12(@babel/core@7.29.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.97.3) + version: 15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.4.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4) react: specifier: ^18.2.0 version: 18.3.1 @@ -596,43 +602,43 @@ importers: devDependencies: "@chromatic-com/storybook": specifier: ^3.2.4 - version: 3.2.7(react@18.3.1)(storybook@8.6.17(prettier@3.8.1)) + version: 3.2.4(react@18.3.1)(storybook@8.5.2(prettier@3.3.3)) "@storybook/addon-essentials": specifier: ^8.5.2 - version: 8.6.14(@types/react@18.3.28)(storybook@8.6.17(prettier@3.8.1)) + version: 8.5.2(@types/react@18.2.42)(storybook@8.5.2(prettier@3.3.3)) "@storybook/addon-interactions": specifier: ^8.5.2 - version: 8.6.14(storybook@8.6.17(prettier@3.8.1)) + version: 8.5.2(storybook@8.5.2(prettier@3.3.3)) "@storybook/addon-onboarding": specifier: ^8.5.2 - version: 8.6.17(storybook@8.6.17(prettier@3.8.1)) + version: 8.5.2(storybook@8.5.2(prettier@3.3.3)) "@storybook/addon-webpack5-compiler-swc": specifier: ^4.0.2 - version: 4.0.2(storybook@8.6.17(prettier@3.8.1))(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) + version: 4.0.3(storybook@8.5.2(prettier@3.3.3))(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) "@storybook/blocks": specifier: ^8.5.2 - version: 8.6.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.17(prettier@3.8.1)) + version: 8.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.2(prettier@3.3.3)) "@storybook/nextjs": specifier: ^8.5.2 - version: 8.6.17(@swc/core@1.15.18)(esbuild@0.25.12)(next@15.5.12(@babel/core@7.29.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.97.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.97.3)(storybook@8.6.17(prettier@3.8.1))(type-fest@4.41.0)(typescript@5.3.2)(webpack-hot-middleware@2.26.1)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) + version: 8.5.2(@swc/core@1.15.30)(esbuild@0.24.2)(next@15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.4.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4)(storybook@8.5.2(prettier@3.3.3))(type-fest@2.19.0)(typescript@5.4.5)(webpack-hot-middleware@2.26.1)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) "@storybook/react": specifier: ^8.5.2 - version: 8.6.17(@storybook/test@8.6.15(storybook@8.6.17(prettier@3.8.1)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.17(prettier@3.8.1))(typescript@5.3.2) + version: 8.5.2(@storybook/test@8.5.2(storybook@8.5.2(prettier@3.3.3)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.2(prettier@3.3.3))(typescript@5.4.5) "@storybook/test": specifier: ^8.5.2 - version: 8.6.15(storybook@8.6.17(prettier@3.8.1)) + version: 8.5.2(storybook@8.5.2(prettier@3.3.3)) "@types/react": specifier: ^18.2.42 - version: 18.3.28 + version: 18.2.42 "@types/react-dom": specifier: ^18.2.42 - version: 18.3.7(@types/react@18.3.28) + version: 18.3.7(@types/react@18.2.42) sass: specifier: ^1.83.4 - version: 1.97.3 + version: 1.83.4 storybook: specifier: ^8.5.2 - version: 8.6.17(prettier@3.8.1) + version: 8.5.2(prettier@3.3.3) packages/ui: dependencies: @@ -653,7 +659,7 @@ importers: version: 18.3.1(react@18.3.1) react-swipeable: specifier: ^7.0.0 - version: 7.0.2(react@18.3.1) + version: 7.0.0(react@18.3.1) tabbable: specifier: ^5.2.1 version: 5.3.3 @@ -663,16 +669,16 @@ importers: version: 7.0.8(size-limit@7.0.8) "@types/node": specifier: ^18.11.16 - version: 18.19.130 + version: 18.19.74 "@types/react": specifier: ^18.2.42 - version: 18.3.28 + version: 18.2.42 "@types/tabbable": specifier: ^3.1.1 - version: 3.1.4 + version: 3.1.2 babel-loader: specifier: ^8.2.5 - version: 8.4.1(@babel/core@7.29.0)(webpack@5.105.4(@swc/core@1.15.18)) + version: 8.3.0(@babel/core@7.26.7)(webpack@5.97.1(@swc/core@1.15.30)) size-limit: specifier: ^7.0.8 version: 7.0.8 @@ -681,32 +687,30 @@ importers: version: 2.8.1 packages: - "@adobe/css-tools@4.4.4": + "@adobe/css-tools@4.4.0": resolution: { - integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==, + integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==, } - "@antfu/ni@0.21.12": + "@ampproject/remapping@2.2.0": resolution: { - integrity: sha512-2aDL3WUv8hMJb2L3r/PIQWsTLyq7RQr3v9xD16fiz6O8ys1xEyLhhTOv8gxtZvJiTzjTF5pHoArvRdesGL1DMQ==, + integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==, } - hasBin: true + engines: { node: ">=6.0.0" } - "@ardatan/relay-compiler@12.0.0": + "@antfu/ni@0.21.12": resolution: { - integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==, + integrity: sha512-2aDL3WUv8hMJb2L3r/PIQWsTLyq7RQr3v9xD16fiz6O8ys1xEyLhhTOv8gxtZvJiTzjTF5pHoArvRdesGL1DMQ==, } hasBin: true - peerDependencies: - graphql: "*" - "@ardatan/relay-compiler@12.0.3": + "@ardatan/relay-compiler@12.0.0": resolution: { - integrity: sha512-mBDFOGvAoVlWaWqs3hm1AciGHSQE1rqFc/liZTyYz/Oek9yZdT5H26pH2zAFuEiTiBVPPyMuqf5VjOFPI2DGsQ==, + integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==, } hasBin: true peerDependencies: @@ -719,226 +723,219 @@ packages: } engines: { node: ">=14" } - "@babel/code-frame@7.29.0": + "@babel/code-frame@7.26.2": resolution: { - integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==, + integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==, } engines: { node: ">=6.9.0" } - "@babel/compat-data@7.29.0": + "@babel/compat-data@7.26.5": resolution: { - integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==, + integrity: sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==, } engines: { node: ">=6.9.0" } - "@babel/core@7.29.0": + "@babel/core@7.26.7": resolution: { - integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==, + integrity: sha512-SRijHmF0PSPgLIBYlWnG0hyeJLwXE2CgpsXaMOrtt2yp9/86ALw6oUlj9KYuZ0JN07T4eBMVIW4li/9S1j2BGA==, } engines: { node: ">=6.9.0" } - "@babel/generator@7.29.1": + "@babel/generator@7.26.5": resolution: { - integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==, + integrity: sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==, } engines: { node: ">=6.9.0" } - "@babel/helper-annotate-as-pure@7.27.3": + "@babel/helper-annotate-as-pure@7.25.9": resolution: { - integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==, + integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==, } engines: { node: ">=6.9.0" } - "@babel/helper-compilation-targets@7.28.6": + "@babel/helper-compilation-targets@7.26.5": resolution: { - integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==, + integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==, } engines: { node: ">=6.9.0" } - "@babel/helper-create-class-features-plugin@7.28.6": + "@babel/helper-create-class-features-plugin@7.25.9": resolution: { - integrity: sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==, + integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/helper-create-regexp-features-plugin@7.28.5": + "@babel/helper-create-regexp-features-plugin@7.26.3": resolution: { - integrity: sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==, + integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/helper-define-polyfill-provider@0.6.6": + "@babel/helper-define-polyfill-provider@0.6.3": resolution: { - integrity: sha512-mOAsxeeKkUKayvZR3HeTYD/fICpCPLJrU5ZjelT/PA6WHtNDBOE436YiaEUvHN454bRM3CebhDsIpieCc4texA==, + integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==, } peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - "@babel/helper-globals@7.28.0": - resolution: - { - integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-member-expression-to-functions@7.28.5": + "@babel/helper-member-expression-to-functions@7.25.9": resolution: { - integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==, + integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==, } engines: { node: ">=6.9.0" } - "@babel/helper-module-imports@7.28.6": + "@babel/helper-module-imports@7.25.9": resolution: { - integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==, + integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==, } engines: { node: ">=6.9.0" } - "@babel/helper-module-transforms@7.28.6": + "@babel/helper-module-transforms@7.26.0": resolution: { - integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==, + integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/helper-optimise-call-expression@7.27.1": + "@babel/helper-optimise-call-expression@7.25.9": resolution: { - integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==, + integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==, } engines: { node: ">=6.9.0" } - "@babel/helper-plugin-utils@7.28.6": + "@babel/helper-plugin-utils@7.26.5": resolution: { - integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==, + integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==, } engines: { node: ">=6.9.0" } - "@babel/helper-remap-async-to-generator@7.27.1": + "@babel/helper-remap-async-to-generator@7.25.9": resolution: { - integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==, + integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/helper-replace-supers@7.28.6": + "@babel/helper-replace-supers@7.26.5": resolution: { - integrity: sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==, + integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/helper-skip-transparent-expression-wrappers@7.27.1": + "@babel/helper-skip-transparent-expression-wrappers@7.25.9": resolution: { - integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==, + integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==, } engines: { node: ">=6.9.0" } - "@babel/helper-string-parser@7.27.1": + "@babel/helper-string-parser@7.25.9": resolution: { - integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==, + integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==, } engines: { node: ">=6.9.0" } - "@babel/helper-validator-identifier@7.28.5": + "@babel/helper-validator-identifier@7.25.9": resolution: { - integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==, + integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==, } engines: { node: ">=6.9.0" } - "@babel/helper-validator-option@7.27.1": + "@babel/helper-validator-option@7.25.9": resolution: { - integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==, + integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==, } engines: { node: ">=6.9.0" } - "@babel/helper-wrap-function@7.28.6": + "@babel/helper-wrap-function@7.25.9": resolution: { - integrity: sha512-z+PwLziMNBeSQJonizz2AGnndLsP2DeGHIxDAn+wdHOGuo4Fo1x1HBPPXeE9TAOPHNNWQKCSlA2VZyYyyibDnQ==, + integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==, } engines: { node: ">=6.9.0" } - "@babel/helpers@7.28.6": + "@babel/helpers@7.26.7": resolution: { - integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==, + integrity: sha512-8NHiL98vsi0mbPQmYAGWwfcFaOy4j2HY49fXJCfuDcdE7fMIsH9a7GdaeXpIBsbT7307WU8KCMp5pUVDNL4f9A==, } engines: { node: ">=6.9.0" } - "@babel/parser@7.29.0": + "@babel/parser@7.26.7": resolution: { - integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==, + integrity: sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w==, } engines: { node: ">=6.0.0" } hasBin: true - "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5": + "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9": resolution: { - integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==, + integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1": + "@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9": resolution: { - integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==, + integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1": + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9": resolution: { - integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==, + integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1": + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9": resolution: { - integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==, + integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.13.0 - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.6": + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9": resolution: { - integrity: sha512-a0aBScVTlNaiUe35UtfxAN7A/tehvvG4/ByO6+46VPKTRSlfnAFsgKy0FUh+qAkQrDTmhDkT+IBOKlOoMUxQ0g==, + integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==, } engines: { node: ">=6.9.0" } peerDependencies: @@ -997,15 +994,6 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-syntax-class-static-block@7.14.5": - resolution: - { - integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - "@babel/plugin-syntax-dynamic-import@7.8.3": resolution: { @@ -1014,28 +1002,28 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-syntax-flow@7.28.6": + "@babel/plugin-syntax-flow@7.18.6": resolution: { - integrity: sha512-D+OrJumc9McXNEBI/JmFnc/0uCM2/Y3PEBG3gfV3QIYkKv5pvnpzFrl1kYCrcHJP8nOeFB/SHi1IHz29pNGuew==, + integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-syntax-import-assertions@7.28.6": + "@babel/plugin-syntax-import-assertions@7.26.0": resolution: { - integrity: sha512-pSJUpFHdx9z5nqTSirOCMtYVP2wFgoWhP0p3g8ONK/4IHhLIBd0B9NYqAvIUAhq+OkhO4VM1tENCt0cjlsNShw==, + integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-syntax-import-attributes@7.28.6": + "@babel/plugin-syntax-import-attributes@7.26.0": resolution: { - integrity: sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==, + integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==, } engines: { node: ">=6.9.0" } peerDependencies: @@ -1057,10 +1045,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-syntax-jsx@7.28.6": + "@babel/plugin-syntax-jsx@7.25.9": resolution: { - integrity: sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==, + integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==, } engines: { node: ">=6.9.0" } peerDependencies: @@ -1114,15 +1102,6 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-syntax-private-property-in-object@7.14.5": - resolution: - { - integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - "@babel/plugin-syntax-top-level-await@7.14.5": resolution: { @@ -1132,10 +1111,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-syntax-typescript@7.28.6": + "@babel/plugin-syntax-typescript@7.25.9": resolution: { - integrity: sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==, + integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==, } engines: { node: ">=6.9.0" } peerDependencies: @@ -1150,532 +1129,523 @@ packages: peerDependencies: "@babel/core": ^7.0.0 - "@babel/plugin-transform-arrow-functions@7.27.1": + "@babel/plugin-transform-arrow-functions@7.25.9": resolution: { - integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==, + integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-async-generator-functions@7.29.0": + "@babel/plugin-transform-async-generator-functions@7.25.9": resolution: { - integrity: sha512-va0VdWro4zlBr2JsXC+ofCPB2iG12wPtVGTWFx2WLDOM3nYQZZIGP82qku2eW/JR83sD+k2k+CsNtyEbUqhU6w==, + integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-async-to-generator@7.28.6": + "@babel/plugin-transform-async-to-generator@7.25.9": resolution: { - integrity: sha512-ilTRcmbuXjsMmcZ3HASTe4caH5Tpo93PkTxF9oG2VZsSWsahydmcEHhix9Ik122RcTnZnUzPbmux4wh1swfv7g==, + integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-block-scoped-functions@7.27.1": + "@babel/plugin-transform-block-scoped-functions@7.26.5": resolution: { - integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==, + integrity: sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-block-scoping@7.28.6": + "@babel/plugin-transform-block-scoping@7.25.9": resolution: { - integrity: sha512-tt/7wOtBmwHPNMPu7ax4pdPz6shjFrmHDghvNC+FG9Qvj7D6mJcoRQIF5dy4njmxR941l6rgtvfSB2zX3VlUIw==, + integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-class-properties@7.28.6": + "@babel/plugin-transform-class-properties@7.25.9": resolution: { - integrity: sha512-dY2wS3I2G7D697VHndN91TJr8/AAfXQNt5ynCTI/MpxMsSzHp+52uNivYT5wCPax3whc47DR8Ba7cmlQMg24bw==, + integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-class-static-block@7.28.6": + "@babel/plugin-transform-class-static-block@7.26.0": resolution: { - integrity: sha512-rfQ++ghVwTWTqQ7w8qyDxL1XGihjBss4CmTgGRCTAC9RIbhVpyp4fOeZtta0Lbf+dTNIVJer6ych2ibHwkZqsQ==, + integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.12.0 - "@babel/plugin-transform-classes@7.28.6": + "@babel/plugin-transform-classes@7.25.9": resolution: { - integrity: sha512-EF5KONAqC5zAqT783iMGuM2ZtmEBy+mJMOKl2BCvPZ2lVrwvXnB6o+OBWCS+CoeCCpVRF2sA2RBKUxvT8tQT5Q==, + integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-computed-properties@7.28.6": + "@babel/plugin-transform-computed-properties@7.25.9": resolution: { - integrity: sha512-bcc3k0ijhHbc2lEfpFHgx7eYw9KNXqOerKWfzbxEHUGKnS3sz9C4CNL9OiFN1297bDNfUiSO7DaLzbvHQQQ1BQ==, + integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-destructuring@7.28.5": + "@babel/plugin-transform-destructuring@7.25.9": resolution: { - integrity: sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==, + integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-dotall-regex@7.28.6": + "@babel/plugin-transform-dotall-regex@7.25.9": resolution: { - integrity: sha512-SljjowuNKB7q5Oayv4FoPzeB74g3QgLt8IVJw9ADvWy3QnUb/01aw8I4AVv8wYnPvQz2GDDZ/g3GhcNyDBI4Bg==, + integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-duplicate-keys@7.27.1": + "@babel/plugin-transform-duplicate-keys@7.25.9": resolution: { - integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==, + integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.29.0": + "@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9": resolution: { - integrity: sha512-zBPcW2lFGxdiD8PUnPwJjag2J9otbcLQzvbiOzDxpYXyCuYX9agOwMPGn1prVH0a4qzhCKu24rlH4c1f7yA8rw==, + integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/plugin-transform-dynamic-import@7.27.1": + "@babel/plugin-transform-dynamic-import@7.25.9": resolution: { - integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==, + integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-explicit-resource-management@7.28.6": + "@babel/plugin-transform-exponentiation-operator@7.26.3": resolution: { - integrity: sha512-Iao5Konzx2b6g7EPqTy40UZbcdXE126tTxVFr/nAIj+WItNxjKSYTEw3RC+A2/ZetmdJsgueL1KhaMCQHkLPIg==, + integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-exponentiation-operator@7.28.6": + "@babel/plugin-transform-export-namespace-from@7.25.9": resolution: { - integrity: sha512-WitabqiGjV/vJ0aPOLSFfNY1u9U3R7W36B03r5I2KoNix+a3sOhJ3pKFB3R5It9/UiK78NiO0KE9P21cMhlPkw==, + integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-export-namespace-from@7.27.1": + "@babel/plugin-transform-flow-strip-types@7.19.0": resolution: { - integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==, + integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-flow-strip-types@7.27.1": + "@babel/plugin-transform-for-of@7.25.9": resolution: { - integrity: sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==, + integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-for-of@7.27.1": + "@babel/plugin-transform-function-name@7.25.9": resolution: { - integrity: sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==, + integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-function-name@7.27.1": + "@babel/plugin-transform-json-strings@7.25.9": resolution: { - integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==, + integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-json-strings@7.28.6": + "@babel/plugin-transform-literals@7.25.9": resolution: { - integrity: sha512-Nr+hEN+0geQkzhbdgQVPoqr47lZbm+5fCUmO70722xJZd0Mvb59+33QLImGj6F+DkK3xgDi1YVysP8whD6FQAw==, + integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-literals@7.27.1": + "@babel/plugin-transform-logical-assignment-operators@7.25.9": resolution: { - integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==, + integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-logical-assignment-operators@7.28.6": + "@babel/plugin-transform-member-expression-literals@7.25.9": resolution: { - integrity: sha512-+anKKair6gpi8VsM/95kmomGNMD0eLz1NQ8+Pfw5sAwWH9fGYXT50E55ZpV0pHUHWf6IUTWPM+f/7AAff+wr9A==, + integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-member-expression-literals@7.27.1": + "@babel/plugin-transform-modules-amd@7.25.9": resolution: { - integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==, + integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-modules-amd@7.27.1": + "@babel/plugin-transform-modules-commonjs@7.26.3": resolution: { - integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==, + integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-modules-commonjs@7.28.6": + "@babel/plugin-transform-modules-systemjs@7.25.9": resolution: { - integrity: sha512-jppVbf8IV9iWWwWTQIxJMAJCWBuuKx71475wHwYytrRGQ2CWiDvYlADQno3tcYpS/T2UUWFQp3nVtYfK/YBQrA==, + integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-modules-systemjs@7.29.0": + "@babel/plugin-transform-modules-umd@7.25.9": resolution: { - integrity: sha512-PrujnVFbOdUpw4UHiVwKvKRLMMic8+eC0CuNlxjsyZUiBjhFdPsewdXCkveh2KqBA9/waD0W1b4hXSOBQJezpQ==, + integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-modules-umd@7.27.1": + "@babel/plugin-transform-named-capturing-groups-regex@7.25.9": resolution: { - integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-named-capturing-groups-regex@7.29.0": - resolution: - { - integrity: sha512-1CZQA5KNAD6ZYQLPw7oi5ewtDNxH/2vuCh+6SmvgDfhumForvs8a1o9n0UrEoBD8HU4djO2yWngTQlXl1NDVEQ==, + integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/plugin-transform-new-target@7.27.1": + "@babel/plugin-transform-new-target@7.25.9": resolution: { - integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==, + integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-nullish-coalescing-operator@7.28.6": + "@babel/plugin-transform-nullish-coalescing-operator@7.26.6": resolution: { - integrity: sha512-3wKbRgmzYbw24mDJXT7N+ADXw8BC/imU9yo9c9X9NKaLF1fW+e5H1U5QjMUBe4Qo4Ox/o++IyUkl1sVCLgevKg==, + integrity: sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-numeric-separator@7.28.6": + "@babel/plugin-transform-numeric-separator@7.25.9": resolution: { - integrity: sha512-SJR8hPynj8outz+SlStQSwvziMN4+Bq99it4tMIf5/Caq+3iOc0JtKyse8puvyXkk3eFRIA5ID/XfunGgO5i6w==, + integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-object-rest-spread@7.28.6": + "@babel/plugin-transform-object-rest-spread@7.25.9": resolution: { - integrity: sha512-5rh+JR4JBC4pGkXLAcYdLHZjXudVxWMXbB6u6+E9lRL5TrGVbHt1TjxGbZ8CkmYw9zjkB7jutzOROArsqtncEA==, + integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-object-super@7.27.1": + "@babel/plugin-transform-object-super@7.25.9": resolution: { - integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==, + integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-optional-catch-binding@7.28.6": + "@babel/plugin-transform-optional-catch-binding@7.25.9": resolution: { - integrity: sha512-R8ja/Pyrv0OGAvAXQhSTmWyPJPml+0TMqXlO5w+AsMEiwb2fg3WkOvob7UxFSL3OIttFSGSRFKQsOhJ/X6HQdQ==, + integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-optional-chaining@7.28.6": + "@babel/plugin-transform-optional-chaining@7.25.9": resolution: { - integrity: sha512-A4zobikRGJTsX9uqVFdafzGkqD30t26ck2LmOzAuLL8b2x6k3TIqRiT2xVvA9fNmFeTX484VpsdgmKNA0bS23w==, + integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-parameters@7.27.7": + "@babel/plugin-transform-parameters@7.25.9": resolution: { - integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==, + integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-private-methods@7.28.6": + "@babel/plugin-transform-private-methods@7.25.9": resolution: { - integrity: sha512-piiuapX9CRv7+0st8lmuUlRSmX6mBcVeNQ1b4AYzJxfCMuBfB0vBXDiGSmm03pKJw1v6cZ8KSeM+oUnM6yAExg==, + integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-private-property-in-object@7.28.6": + "@babel/plugin-transform-private-property-in-object@7.25.9": resolution: { - integrity: sha512-b97jvNSOb5+ehyQmBpmhOCiUC5oVK4PMnpRvO7+ymFBoqYjeDHIU9jnrNUuwHOiL9RpGDoKBpSViarV+BU+eVA==, + integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-property-literals@7.27.1": + "@babel/plugin-transform-property-literals@7.25.9": resolution: { - integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==, + integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-react-display-name@7.28.0": + "@babel/plugin-transform-react-display-name@7.25.9": resolution: { - integrity: sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==, + integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-react-jsx-development@7.27.1": + "@babel/plugin-transform-react-jsx-development@7.25.9": resolution: { - integrity: sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==, + integrity: sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-react-jsx@7.28.6": + "@babel/plugin-transform-react-jsx@7.25.9": resolution: { - integrity: sha512-61bxqhiRfAACulXSLd/GxqmAedUSrRZIu/cbaT18T1CetkTmtDN15it7i80ru4DVqRK1WMxQhXs+Lf9kajm5Ow==, + integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-react-pure-annotations@7.27.1": + "@babel/plugin-transform-react-pure-annotations@7.25.9": resolution: { - integrity: sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==, + integrity: sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-regenerator@7.29.0": + "@babel/plugin-transform-regenerator@7.25.9": resolution: { - integrity: sha512-FijqlqMA7DmRdg/aINBSs04y8XNTYw/lr1gJ2WsmBnnaNw1iS43EPkJW+zK7z65auG3AWRFXWj+NcTQwYptUog==, + integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-regexp-modifiers@7.28.6": + "@babel/plugin-transform-regexp-modifiers@7.26.0": resolution: { - integrity: sha512-QGWAepm9qxpaIs7UM9FvUSnCGlb8Ua1RhyM4/veAxLwt3gMat/LSGrZixyuj4I6+Kn9iwvqCyPTtbdxanYoWYg==, + integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/plugin-transform-reserved-words@7.27.1": + "@babel/plugin-transform-reserved-words@7.25.9": resolution: { - integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==, + integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-runtime@7.29.0": + "@babel/plugin-transform-runtime@7.25.9": resolution: { - integrity: sha512-jlaRT5dJtMaMCV6fAuLbsQMSwz/QkvaHOHOSXRitGGwSpR1blCY4KUKoyP2tYO8vJcqYe8cEj96cqSztv3uF9w==, + integrity: sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-shorthand-properties@7.27.1": + "@babel/plugin-transform-shorthand-properties@7.25.9": resolution: { - integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==, + integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-spread@7.28.6": + "@babel/plugin-transform-spread@7.25.9": resolution: { - integrity: sha512-9U4QObUC0FtJl05AsUcodau/RWDytrU6uKgkxu09mLR9HLDAtUMoPuuskm5huQsoktmsYpI+bGmq+iapDcriKA==, + integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-sticky-regex@7.27.1": + "@babel/plugin-transform-sticky-regex@7.25.9": resolution: { - integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==, + integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-template-literals@7.27.1": + "@babel/plugin-transform-template-literals@7.25.9": resolution: { - integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==, + integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-typeof-symbol@7.27.1": + "@babel/plugin-transform-typeof-symbol@7.26.7": resolution: { - integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==, + integrity: sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-typescript@7.28.6": + "@babel/plugin-transform-typescript@7.26.7": resolution: { - integrity: sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==, + integrity: sha512-5cJurntg+AT+cgelGP9Bt788DKiAw9gIMSMU2NJrLAilnj0m8WZWUNZPSLOmadYsujHutpgElO+50foX+ib/Wg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-unicode-escapes@7.27.1": + "@babel/plugin-transform-unicode-escapes@7.25.9": resolution: { - integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==, + integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-unicode-property-regex@7.28.6": + "@babel/plugin-transform-unicode-property-regex@7.25.9": resolution: { - integrity: sha512-4Wlbdl/sIZjzi/8St0evF0gEZrgOswVO6aOzqxh1kDZOl9WmLrHq2HtGhnOJZmHZYKP8WZ1MDLCt5DAWwRo57A==, + integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-unicode-regex@7.27.1": + "@babel/plugin-transform-unicode-regex@7.25.9": resolution: { - integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==, + integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-unicode-sets-regex@7.28.6": + "@babel/plugin-transform-unicode-sets-regex@7.25.9": resolution: { - integrity: sha512-/wHc/paTUmsDYN7SZkpWxogTOBNnlx7nBQYfy6JJlCT7G3mVhltk3e++N7zV0XfgGsrqBxd4rJQt9H16I21Y1Q==, + integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/preset-env@7.29.0": + "@babel/preset-env@7.26.7": resolution: { - integrity: sha512-fNEdfc0yi16lt6IZo2Qxk3knHVdfMYX33czNb4v8yWhemoBhibCpQK/uYHtSKIiO+p/zd3+8fYVXhQdOVV608w==, + integrity: sha512-Ycg2tnXwixaXOVb29rana8HNPgLVBof8qqtNQ9LE22IoyZboQbGSxI6ZySMdW3K5nAe6gu35IaJefUJflhUFTQ==, } engines: { node: ">=6.9.0" } peerDependencies: @@ -1689,49 +1659,49 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 - "@babel/preset-react@7.28.5": + "@babel/preset-react@7.26.3": resolution: { - integrity: sha512-Z3J8vhRq7CeLjdC58jLv4lnZ5RKFUJWqH5emvxmv9Hv3BD1T9R/Im713R4MTKwvFaV74ejZ3sM01LyEKk4ugNQ==, + integrity: sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/preset-typescript@7.28.5": + "@babel/preset-typescript@7.26.0": resolution: { - integrity: sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g==, + integrity: sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/runtime@7.28.6": + "@babel/runtime@7.26.7": resolution: { - integrity: sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==, + integrity: sha512-AOPI3D+a8dXnja+iwsUqGRjr1BbZIe771sXdapOtYI531gSqpi92vXivKcq2asu/DFpdl1ceFAKZyRzK2PCVcQ==, } engines: { node: ">=6.9.0" } - "@babel/template@7.28.6": + "@babel/template@7.25.9": resolution: { - integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==, + integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==, } engines: { node: ">=6.9.0" } - "@babel/traverse@7.29.0": + "@babel/traverse@7.26.7": resolution: { - integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==, + integrity: sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA==, } engines: { node: ">=6.9.0" } - "@babel/types@7.29.0": + "@babel/types@7.26.7": resolution: { - integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==, + integrity: sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg==, } engines: { node: ">=6.9.0" } @@ -1826,13 +1796,13 @@ packages: { integrity: sha512-W6C7O0eSg6YNujHYZozXK5iJ+V69QVLLLRv+NlmYh1vFe0PUJ3kmAhRCx7rUqI3XAA/KpdyfdxLoopBg3GlfVA==, } - deprecated: Use @qwik.dev/partytown instead + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. hasBin: true - "@chromatic-com/storybook@3.2.7": + "@chromatic-com/storybook@3.2.4": resolution: { - integrity: sha512-fCGhk4cd3VA8RNg55MZL5CScdHqljsQcL9g6Ss7YuobHpSo9yytEWNdgMd5QxAHSPBlLGFHjnSmliM3G/BeBqw==, + integrity: sha512-5/bOOYxfwZ2BktXeqcCpOVAoR6UCoeART5t9FVy22hoo8F291zOuX4y3SDgm10B1GVU/ZTtJWPT2X9wZFlxYLg==, } engines: { node: ">=16.0.0", yarn: ">=1.22.18" } peerDependencies: @@ -1852,24 +1822,25 @@ packages: } engines: { node: ">=12" } - "@csstools/selector-specificity@2.2.0": + "@csstools/selector-specificity@2.1.1": resolution: { - integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==, + integrity: sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: + postcss: ^8.4 postcss-selector-parser: ^6.0.10 - "@cypress/code-coverage@3.14.7": + "@cypress/code-coverage@3.12.1": resolution: { - integrity: sha512-0qk2aNKmrB0AwJtYSyK2+MWl/3NqDgZQ1OBSEh6oFnJwl/H2u3NTatV+FTCap22HTm+uxUS6SarU8gP9gFZ6Tw==, + integrity: sha512-4gSVkgcTo8NSWrOwLO0NxyvD2apIZFM/2k9sxdmP3eR3ko8tZVYrWfTdfxSXLDSkNnzVh+oXv7utaOLn+yemUg==, } peerDependencies: "@babel/core": ^7.0.1 "@babel/preset-env": ^7.0.0 - babel-loader: ^8.3 || ^9 || ^10 + babel-loader: ^8.3 || ^9 cypress: "*" webpack: ^4 || ^5 @@ -1880,15 +1851,15 @@ packages: } engines: { node: ">= 6" } - "@cypress/webpack-preprocessor@6.0.4": + "@cypress/webpack-preprocessor@5.16.3": resolution: { - integrity: sha512-ly+EcabWWbhrSPr2J/njQX7Y3da+QqOmFg8Og/MVmLxhDLKIzr2WhTdgzDYviPTLx/IKsdb41cc2RLYp6mSBRA==, + integrity: sha512-juGT69ak9iShluyZYmjQnoKV3+ixIXpf/e/TdgB6qoueZHVLQbsqBDEwGsssq5juHhR8v//E4Drwfh0eYLWRNg==, } peerDependencies: - "@babel/core": ^7.25.2 - "@babel/preset-env": ^7.25.3 - babel-loader: ^8.3 || ^9 || ^10 + "@babel/core": ^7.0.1 + "@babel/preset-env": ^7.0.0 + babel-loader: ^8.0.2 || ^9 webpack: ^4 || ^5 "@cypress/xvfb@1.2.4": @@ -1897,48 +1868,41 @@ packages: integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==, } - "@emnapi/core@1.8.1": + "@emnapi/core@1.10.0": resolution: { - integrity: sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==, + integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==, } - "@emnapi/runtime@1.8.1": + "@emnapi/runtime@1.3.1": resolution: { - integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==, + integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==, } - "@emnapi/wasi-threads@1.1.0": + "@emnapi/wasi-threads@1.2.1": resolution: { - integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==, + integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==, } - "@envelop/core@5.5.1": + "@envelop/core@5.0.2": resolution: { - integrity: sha512-3DQg8sFskDo386TkL5j12jyRAdip/8yzK3x7YGbZBgobZ4aKXrvDU0GppU0SnmrpQnNaiTUsxBs9LKkwQ/eyvw==, + integrity: sha512-tVL6OrMe6UjqLosiE+EH9uxh2TQC0469GwF4tE014ugRaDDKKVWwFwZe0TBMlcyHKh5MD4ZxktWo/1hqUxIuhw==, } engines: { node: ">=18.0.0" } - "@envelop/graphql-jit@8.0.4": + "@envelop/graphql-jit@8.0.3": resolution: { - integrity: sha512-3vchsMVsPyCmBMDkRPvjAqhJjyunQW7wZ5zXx6q+gfiEVcaetDJZwK+0ODo+IOxO5eNHqQ9u4Z2QiRTCCuvXgA==, + integrity: sha512-IZnKc7dVOQV9jEi5s5RkG8fVKqc6Ss/mBN9PRt2iYFa9o6XkL/haPLJRfWFsS/CSJfFOQuzLyxYuALA8DaoOYw==, } engines: { node: ">=18.0.0" } peerDependencies: - "@envelop/core": ^5.0.2 + "@envelop/core": ^5.0.0 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 - "@envelop/instrumentation@1.0.0": - resolution: - { - integrity: sha512-cxgkB66RQB95H3X27jlnxCRNTmPuSTgmBAq6/4n2Dtv4hsk4yz8FadA1ggmd0uZzvKqWD6CR+WFgTjhDqg7eyw==, - } - engines: { node: ">=18.0.0" } - "@envelop/parser-cache@6.0.4": resolution: { @@ -1949,21 +1913,21 @@ packages: "@envelop/core": ^4.0.3 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 - "@envelop/testing@6.0.3": + "@envelop/testing@6.0.0": resolution: { - integrity: sha512-/FNMBLEqU+uem9QPkD3LQlAuIRzr98qZpcW40v9jrXDW/PqabjkiT1ni+22JNSPrObHQtN5s7SkCkulG2+w/qQ==, + integrity: sha512-uFX1XdYZ3GspOGchLSRQ5+UIrRo6LpHG8CT8Y4/WPJrImimTgmwd8OAgfhXznsag3z8aMui6ZzGPsdeL52Hw8Q==, } engines: { node: ">=16.0.0" } peerDependencies: - "@envelop/core": ^4.0.3 - "@envelop/types": ^4.0.1 + "@envelop/core": ^4.0.0 + "@envelop/types": ^4.0.0 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 - "@envelop/types@5.2.1": + "@envelop/types@5.0.0": resolution: { - integrity: sha512-CsFmA3u3c2QoLDTfEpGr4t25fjMU31nyvse7IzWTvb0ZycuPjMjb0fjlheh+PbhBYb9YLugnT2uY6Mwcg1o+Zg==, + integrity: sha512-IPjmgSc4KpQRlO4qbEDnBEixvtb06WDmjKfi/7fkZaryh5HuOmTtixe1EupQI5XfXO8joc3d27uUZ0QdC++euA==, } engines: { node: ">=18.0.0" } @@ -1977,199 +1941,190 @@ packages: "@envelop/core": ^4.0.3 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 - "@esbuild/aix-ppc64@0.25.12": + "@esbuild/aix-ppc64@0.24.2": resolution: { - integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==, + integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==, } engines: { node: ">=18" } cpu: [ppc64] os: [aix] - "@esbuild/aix-ppc64@0.27.3": + "@esbuild/android-arm64@0.18.20": resolution: { - integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==, + integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==, } - engines: { node: ">=18" } - cpu: [ppc64] - os: [aix] - - "@esbuild/android-arm64@0.25.12": - resolution: - { - integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==, - } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [arm64] os: [android] - "@esbuild/android-arm64@0.27.3": + "@esbuild/android-arm64@0.24.2": resolution: { - integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==, + integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==, } engines: { node: ">=18" } cpu: [arm64] os: [android] - "@esbuild/android-arm@0.25.12": + "@esbuild/android-arm@0.18.20": resolution: { - integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==, + integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [arm] os: [android] - "@esbuild/android-arm@0.27.3": + "@esbuild/android-arm@0.24.2": resolution: { - integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==, + integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==, } engines: { node: ">=18" } cpu: [arm] os: [android] - "@esbuild/android-x64@0.25.12": + "@esbuild/android-x64@0.18.20": resolution: { - integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==, + integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [x64] os: [android] - "@esbuild/android-x64@0.27.3": + "@esbuild/android-x64@0.24.2": resolution: { - integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==, + integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==, } engines: { node: ">=18" } cpu: [x64] os: [android] - "@esbuild/darwin-arm64@0.25.12": + "@esbuild/darwin-arm64@0.18.20": resolution: { - integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==, + integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [arm64] os: [darwin] - "@esbuild/darwin-arm64@0.27.3": + "@esbuild/darwin-arm64@0.24.2": resolution: { - integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==, + integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==, } engines: { node: ">=18" } cpu: [arm64] os: [darwin] - "@esbuild/darwin-x64@0.25.12": + "@esbuild/darwin-x64@0.18.20": resolution: { - integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==, + integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [x64] os: [darwin] - "@esbuild/darwin-x64@0.27.3": + "@esbuild/darwin-x64@0.24.2": resolution: { - integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==, + integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==, } engines: { node: ">=18" } cpu: [x64] os: [darwin] - "@esbuild/freebsd-arm64@0.25.12": + "@esbuild/freebsd-arm64@0.18.20": resolution: { - integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==, + integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [arm64] os: [freebsd] - "@esbuild/freebsd-arm64@0.27.3": + "@esbuild/freebsd-arm64@0.24.2": resolution: { - integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==, + integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==, } engines: { node: ">=18" } cpu: [arm64] os: [freebsd] - "@esbuild/freebsd-x64@0.25.12": + "@esbuild/freebsd-x64@0.18.20": resolution: { - integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==, + integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [x64] os: [freebsd] - "@esbuild/freebsd-x64@0.27.3": + "@esbuild/freebsd-x64@0.24.2": resolution: { - integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==, + integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==, } engines: { node: ">=18" } cpu: [x64] os: [freebsd] - "@esbuild/linux-arm64@0.25.12": + "@esbuild/linux-arm64@0.18.20": resolution: { - integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==, + integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [arm64] os: [linux] - "@esbuild/linux-arm64@0.27.3": + "@esbuild/linux-arm64@0.24.2": resolution: { - integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==, + integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==, } engines: { node: ">=18" } cpu: [arm64] os: [linux] - "@esbuild/linux-arm@0.25.12": + "@esbuild/linux-arm@0.18.20": resolution: { - integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==, + integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [arm] os: [linux] - "@esbuild/linux-arm@0.27.3": + "@esbuild/linux-arm@0.24.2": resolution: { - integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==, + integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==, } engines: { node: ">=18" } cpu: [arm] os: [linux] - "@esbuild/linux-ia32@0.25.12": + "@esbuild/linux-ia32@0.18.20": resolution: { - integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==, + integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [ia32] os: [linux] - "@esbuild/linux-ia32@0.27.3": + "@esbuild/linux-ia32@0.24.2": resolution: { - integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==, + integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==, } engines: { node: ">=18" } cpu: [ia32] @@ -2184,282 +2139,240 @@ packages: cpu: [loong64] os: [linux] - "@esbuild/linux-loong64@0.25.12": + "@esbuild/linux-loong64@0.18.20": resolution: { - integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==, + integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [loong64] os: [linux] - "@esbuild/linux-loong64@0.27.3": + "@esbuild/linux-loong64@0.24.2": resolution: { - integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==, + integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==, } engines: { node: ">=18" } cpu: [loong64] os: [linux] - "@esbuild/linux-mips64el@0.25.12": + "@esbuild/linux-mips64el@0.18.20": resolution: { - integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==, + integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [mips64el] os: [linux] - "@esbuild/linux-mips64el@0.27.3": + "@esbuild/linux-mips64el@0.24.2": resolution: { - integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==, + integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==, } engines: { node: ">=18" } cpu: [mips64el] os: [linux] - "@esbuild/linux-ppc64@0.25.12": + "@esbuild/linux-ppc64@0.18.20": resolution: { - integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==, + integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [ppc64] os: [linux] - "@esbuild/linux-ppc64@0.27.3": + "@esbuild/linux-ppc64@0.24.2": resolution: { - integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==, + integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==, } engines: { node: ">=18" } cpu: [ppc64] os: [linux] - "@esbuild/linux-riscv64@0.25.12": + "@esbuild/linux-riscv64@0.18.20": resolution: { - integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==, + integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [riscv64] os: [linux] - "@esbuild/linux-riscv64@0.27.3": + "@esbuild/linux-riscv64@0.24.2": resolution: { - integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==, + integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==, } engines: { node: ">=18" } cpu: [riscv64] os: [linux] - "@esbuild/linux-s390x@0.25.12": + "@esbuild/linux-s390x@0.18.20": resolution: { - integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==, + integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [s390x] os: [linux] - "@esbuild/linux-s390x@0.27.3": + "@esbuild/linux-s390x@0.24.2": resolution: { - integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==, + integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==, } engines: { node: ">=18" } cpu: [s390x] os: [linux] - "@esbuild/linux-x64@0.25.12": + "@esbuild/linux-x64@0.18.20": resolution: { - integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==, + integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [x64] os: [linux] - "@esbuild/linux-x64@0.27.3": + "@esbuild/linux-x64@0.24.2": resolution: { - integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==, + integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==, } engines: { node: ">=18" } cpu: [x64] os: [linux] - "@esbuild/netbsd-arm64@0.25.12": - resolution: - { - integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [netbsd] - - "@esbuild/netbsd-arm64@0.27.3": + "@esbuild/netbsd-arm64@0.24.2": resolution: { - integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==, + integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==, } engines: { node: ">=18" } cpu: [arm64] os: [netbsd] - "@esbuild/netbsd-x64@0.25.12": + "@esbuild/netbsd-x64@0.18.20": resolution: { - integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==, + integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [x64] os: [netbsd] - "@esbuild/netbsd-x64@0.27.3": + "@esbuild/netbsd-x64@0.24.2": resolution: { - integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==, + integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==, } engines: { node: ">=18" } cpu: [x64] os: [netbsd] - "@esbuild/openbsd-arm64@0.25.12": + "@esbuild/openbsd-arm64@0.24.2": resolution: { - integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==, + integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==, } engines: { node: ">=18" } cpu: [arm64] os: [openbsd] - "@esbuild/openbsd-arm64@0.27.3": + "@esbuild/openbsd-x64@0.18.20": resolution: { - integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==, + integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==, } - engines: { node: ">=18" } - cpu: [arm64] - os: [openbsd] - - "@esbuild/openbsd-x64@0.25.12": - resolution: - { - integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==, - } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [x64] os: [openbsd] - "@esbuild/openbsd-x64@0.27.3": + "@esbuild/openbsd-x64@0.24.2": resolution: { - integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==, + integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==, } engines: { node: ">=18" } cpu: [x64] os: [openbsd] - "@esbuild/openharmony-arm64@0.25.12": - resolution: - { - integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [openharmony] - - "@esbuild/openharmony-arm64@0.27.3": - resolution: - { - integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [openharmony] - - "@esbuild/sunos-x64@0.25.12": + "@esbuild/sunos-x64@0.18.20": resolution: { - integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==, + integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [x64] os: [sunos] - "@esbuild/sunos-x64@0.27.3": + "@esbuild/sunos-x64@0.24.2": resolution: { - integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==, + integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==, } engines: { node: ">=18" } cpu: [x64] os: [sunos] - "@esbuild/win32-arm64@0.25.12": + "@esbuild/win32-arm64@0.18.20": resolution: { - integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==, + integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [arm64] os: [win32] - "@esbuild/win32-arm64@0.27.3": + "@esbuild/win32-arm64@0.24.2": resolution: { - integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==, + integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==, } engines: { node: ">=18" } cpu: [arm64] os: [win32] - "@esbuild/win32-ia32@0.25.12": + "@esbuild/win32-ia32@0.18.20": resolution: { - integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==, + integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [ia32] os: [win32] - "@esbuild/win32-ia32@0.27.3": + "@esbuild/win32-ia32@0.24.2": resolution: { - integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==, + integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==, } engines: { node: ">=18" } cpu: [ia32] os: [win32] - "@esbuild/win32-x64@0.25.12": + "@esbuild/win32-x64@0.18.20": resolution: { - integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==, + integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==, } - engines: { node: ">=18" } + engines: { node: ">=12" } cpu: [x64] os: [win32] - "@esbuild/win32-x64@0.27.3": + "@esbuild/win32-x64@0.24.2": resolution: { - integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==, + integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==, } engines: { node: ">=18" } cpu: [x64] os: [win32] - "@fastify/busboy@3.2.0": - resolution: - { - integrity: sha512-m9FVDXU3GT2ITSe0UaMA5rU3QkfC/UXtCU8y0gSN/GugTqtVldOBWIB5V6V3sbmenVZUIpU6f+mPEO2+m5iTaA==, - } - "@fastify/merge-json-schemas@0.1.1": resolution: { @@ -2502,10 +2415,10 @@ packages: integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==, } - "@gar/promise-retry@1.0.2": + "@gar/promise-retry@1.0.3": resolution: { - integrity: sha512-Lm/ZLhDZcBECta3TmCQSngiQykFdfw+QtI1/GYMsZd4l3nG+P8WLB16XuS7WaBGLQ+9E+cOcWQsth9cayuGt8g==, + integrity: sha512-GmzA9ckNokPypTg10pgpeHNQe7ph+iIKKmhKu3Ob9ANkswreCx7R3cKmY781K8QK3AqVL3xVh9A42JvIAbkkSA==, } engines: { node: ^20.17.0 || >=22.9.0 } @@ -2515,10 +2428,10 @@ packages: integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==, } - "@graphql-codegen/add@5.0.3": + "@graphql-codegen/add@5.0.2": resolution: { - integrity: sha512-SxXPmramkth8XtBlAHu4H4jYcYXM/o3p01+psU+0NADQowA8jtYkK6MW5rV6T+CxkEaNZItfSmZRPgIuypcqnA==, + integrity: sha512-ouBkSvMFUhda5VoKumo/ZvsZM9P5ZTyDsI8LW18VxSNWOjrTeLXBWHG8Gfaai0HwhflPtCYVABbriEcOmrRShQ==, } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -2585,29 +2498,27 @@ packages: peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - "@graphql-codegen/plugin-helpers@5.1.1": + "@graphql-codegen/plugin-helpers@5.0.4": resolution: { - integrity: sha512-28GHODK2HY1NhdyRcPP3sCz0Kqxyfiz7boIZ8qIxFYmpLYnlDgiYok5fhFLVSZihyOpCs4Fa37gVHf/Q4I2FEg==, + integrity: sha512-MOIuHFNWUnFnqVmiXtrI+4UziMTYrcquljaI5f/T/Bc7oO7sXcfkAvgkNWEEi9xWreYwvuer3VHCuPI/lAFWbw==, } - engines: { node: ">=16" } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - "@graphql-codegen/schema-ast@4.1.0": + "@graphql-codegen/schema-ast@4.0.2": resolution: { - integrity: sha512-kZVn0z+th9SvqxfKYgztA6PM7mhnSZaj4fiuBWvMTqA+QqQ9BBed6Pz41KuD/jr0gJtnlr2A4++/0VlpVbCTmQ==, + integrity: sha512-5mVAOQQK3Oz7EtMl/l3vOQdc2aYClUzVDHHkMvZlunc+KlGgl81j8TLa+X7ANIllqU4fUEsQU3lJmk4hXP6K7Q==, } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - "@graphql-codegen/typed-document-node@5.1.2": + "@graphql-codegen/typed-document-node@5.0.7": resolution: { - integrity: sha512-jaxfViDqFRbNQmfKwUY8hDyjnLTw2Z7DhGutxoOiiAI0gE/LfPe0LYaVFKVmVOOD7M3bWxoWfu4slrkbWbUbEw==, + integrity: sha512-rgFh96hAbNwPUxLVlRcNhGaw2+y7ZGx7giuETtdO8XzPasTQGWGRkZ3wXQ5UUiTX4X3eLmjnuoXYKT7HoxSznQ==, } - engines: { node: ">=16" } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -2651,22 +2562,6 @@ packages: peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - "@graphql-codegen/visitor-plugin-common@5.8.0": - resolution: - { - integrity: sha512-lC1E1Kmuzi3WZUlYlqB4fP6+CvbKH9J+haU1iWmgsBx5/sO2ROeXJG4Dmt8gP03bI2BwjiwV5WxCEMlyeuzLnA==, - } - engines: { node: ">=16" } - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - "@graphql-hive/signal@1.0.0": - resolution: - { - integrity: sha512-RiwLMc89lTjvyLEivZ/qxAC5nBHoS2CtsWFSOsN35sxG9zoo5Z+JsFHM8MlvmO9yt+MJNIyC5MLE1rsbOphlag==, - } - engines: { node: ">=18.0.0" } - "@graphql-tools/apollo-engine-loader@7.3.26": resolution: { @@ -2675,10 +2570,10 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/apollo-engine-loader@8.0.28": + "@graphql-tools/apollo-engine-loader@8.0.1": resolution: { - integrity: sha512-MzgDrUuoxp6dZeo54zLBL3cEJKJtM3N/2RqK0rbPxPq5X2z6TUA7EGg8vIFTUkt5xelAsUrm8/4ai41ZDdxOng==, + integrity: sha512-NaPeVjtrfbPXcl+MLQCJLWtqe2/E4bbAqcauEOQ+3sizw1Fc2CNmhHRF8a6W4D0ekvTRRXAMptXYgA2uConbrA==, } engines: { node: ">=16.0.0" } peerDependencies: @@ -2692,12 +2587,12 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/batch-execute@9.0.19": + "@graphql-tools/batch-execute@9.0.4": resolution: { - integrity: sha512-VGamgY4PLzSx48IHPoblRw0oTaBa7S26RpZXt0Y4NN90ytoE0LutlpB2484RbkfcTjv9wa64QD474+YP1kEgGA==, + integrity: sha512-kkebDLXgDrep5Y0gK1RN3DMUlLqNhg60OAz0lTCqrYeja6DshxLtLkj+zV4mVbBA4mQOEoBmw6g1LZs3dA84/w==, } - engines: { node: ">=18.0.0" } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -2709,21 +2604,21 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/code-file-loader@8.1.28": + "@graphql-tools/code-file-loader@8.1.2": resolution: { - integrity: sha512-BL3Ft/PFlXDE5nNuqA36hYci7Cx+8bDrPDc8X3VSpZy9iKFBY+oQ+IwqnEHCkt8OSp2n2V0gqTg4u3fcQP1Kwg==, + integrity: sha512-GrLzwl1QV2PT4X4TEEfuTmZYzIZHLqoTGBjczdUzSqgCCcqwWzLB3qrJxFQfI8e5s1qZ1bhpsO9NoMn7tvpmyA==, } engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/delegate@10.2.23": + "@graphql-tools/delegate@10.0.10": resolution: { - integrity: sha512-xrPtl7f1LxS+B6o+W7ueuQh67CwRkfl+UKJncaslnqYdkxKmNBB4wnzVcW8ZsRdwbsla/v43PtwAvSlzxCzq2w==, + integrity: sha512-OOqsPRfGatQG0qMKG3sxtxHiRg7cA6OWMTuETDvwZCoOuxqCc17K+nt8GvaqptNJi2/wBgeH7pi7wA5QzgiG1g==, } - engines: { node: ">=18.0.0" } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -2735,33 +2630,15 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/documents@1.0.1": + "@graphql-tools/documents@1.0.0": resolution: { - integrity: sha512-aweoMH15wNJ8g7b2r4C4WRuJxZ0ca8HtNO54rkye/3duxTkW4fGBEutCx03jCIr5+a1l+4vFJNP859QnAVBVCA==, + integrity: sha512-rHGjX1vg/nZ2DKqRGfDPNC55CWZBMldEVcH+91BThRa6JeT80NqXknffLLEZLRUxyikCfkwMsk6xR3UNMqG0Rg==, } engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/executor-common@0.0.4": - resolution: - { - integrity: sha512-SEH/OWR+sHbknqZyROCFHcRrbZeUAyjCsgpVWCRjqjqRbiJiXq6TxNIIOmpXgkrXWW/2Ev4Wms6YSGJXjdCs6Q==, - } - engines: { node: ">=18.0.0" } - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - "@graphql-tools/executor-common@0.0.6": - resolution: - { - integrity: sha512-JAH/R1zf77CSkpYATIJw+eOJwsbWocdDjY+avY7G+P5HCXxwQjAjWVkJI1QJBQYjPQDVxwf1fmTZlIN3VOadow==, - } - engines: { node: ">=18.0.0" } - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/executor-graphql-ws@0.0.14": resolution: { @@ -2770,12 +2647,12 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/executor-graphql-ws@2.0.7": + "@graphql-tools/executor-graphql-ws@1.1.2": resolution: { - integrity: sha512-J27za7sKF6RjhmvSOwOQFeNhNHyP4f4niqPnerJmq73OtLx9Y2PGOhkXOEB0PjhvPJceuttkD2O1yMgEkTGs3Q==, + integrity: sha512-+9ZK0rychTH1LUv4iZqJ4ESbmULJMTsv3XlFooPUngpxZkk00q6LqHKJRrsLErmQrVaC7cwQCaRBJa0teK17Lg==, } - engines: { node: ">=18.0.0" } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -2787,12 +2664,12 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/executor-http@1.3.3": + "@graphql-tools/executor-http@1.0.9": resolution: { - integrity: sha512-LIy+l08/Ivl8f8sMiHW2ebyck59JzyzO/yF9SFS4NH6MJZUezA1xThUXCDIKhHiD56h/gPojbkpcFvM2CbNE7A==, + integrity: sha512-+NXaZd2MWbbrWHqU4EhXcrDbogeiCDmEbrAN+rMn4Nu2okDjn2MTFDbTIab87oEubQCH4Te1wDkWPKrzXup7+Q==, } - engines: { node: ">=18.0.0" } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -2804,10 +2681,10 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/executor-legacy-ws@1.1.25": + "@graphql-tools/executor-legacy-ws@1.0.6": resolution: { - integrity: sha512-6uf4AEXO0QMxJ7AWKVPqEZXgYBJaiz5vf29X0boG8QtcqWy8mqkXKWLND2Swdx0SbEx0efoGFcjuKufUcB0ASQ==, + integrity: sha512-lDSxz9VyyquOrvSuCCnld3256Hmd+QI2lkmkEv7d4mdzkxkK4ddAWW1geQiWrQvWmdsmcnGGlZ7gDGbhEExwqg==, } engines: { node: ">=16.0.0" } peerDependencies: @@ -2821,10 +2698,10 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/executor@1.5.1": + "@graphql-tools/executor@1.2.6": resolution: { - integrity: sha512-n94Qcu875Mji9GQ52n5UbgOTxlgvFJicBPYD+FRks9HKIQpdNPjkkrKZUYNG51XKa+bf03rxNflm4+wXhoHHrA==, + integrity: sha512-+1kjfqzM5T2R+dCw7F4vdJ3CqG+fY/LYJyhNiWEFtq0ToLwYzR/KKyD8YuzTirEjSxWTVlcBh7endkx5n5F6ew==, } engines: { node: ">=16.0.0" } peerDependencies: @@ -2838,10 +2715,10 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/git-loader@8.0.32": + "@graphql-tools/git-loader@8.0.6": resolution: { - integrity: sha512-H5HTp2vevv0rRMEnCJBVmVF8md3LpJI1C1+d6OtzvmuONJ8mOX2mkf9rtoqwiztynVegaDUekvMFsc9k5iE2WA==, + integrity: sha512-FQFO4H5wHAmHVyuUQrjvPE8re3qJXt50TWHuzrK3dEaief7JosmlnkLMDMbMBwtwITz9u1Wpl6doPhT2GwKtlw==, } engines: { node: ">=16.0.0" } peerDependencies: @@ -2855,10 +2732,10 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/github-loader@8.0.22": + "@graphql-tools/github-loader@8.0.1": resolution: { - integrity: sha512-uQ4JNcNPsyMkTIgzeSbsoT9hogLjYrZooLUYd173l5eUGUi49EAcsGdiBCKaKfEjanv410FE8hjaHr7fjSRkJw==, + integrity: sha512-W4dFLQJ5GtKGltvh/u1apWRFKBQOsDzFxO9cJkOYZj1VzHCpRF43uLST4VbCfWve+AwBqOuKr7YgkHoxpRMkcg==, } engines: { node: ">=16.0.0" } peerDependencies: @@ -2872,10 +2749,10 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/graphql-file-loader@8.1.9": + "@graphql-tools/graphql-file-loader@8.0.1": resolution: { - integrity: sha512-rkLK46Q62Zxift8B6Kfw6h8SH3pCR3DPCfNeC/lpLwYReezZz+2ARuLDFZjQGjW+4lpMwiAw8CIxDyQAUgqU6A==, + integrity: sha512-7gswMqWBabTSmqbaNyWSmRRpStWlcCkBc73E6NZNlh4YNuiyKOwbvSkOUYFOqFMfEL+cFsXgAvr87Vz4XrYSbA==, } engines: { node: ">=16.0.0" } peerDependencies: @@ -2889,10 +2766,10 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/graphql-tag-pluck@8.3.27": + "@graphql-tools/graphql-tag-pluck@8.3.1": resolution: { - integrity: sha512-CJ0WVXhGYsfFngpRrAAcjRHyxSDHx4dEz2W15bkwvt9he/AWhuyXm07wuGcoLrl0q0iQp1BiRjU7D8SxWZo3JQ==, + integrity: sha512-ujits9tMqtWQQq4FI4+qnVPpJvSEn7ogKtyN/gfNT+ErIn6z1e4gyVGQpTK5sgAUXq1lW4gU/5fkFFC5/sL2rQ==, } engines: { node: ">=16.0.0" } peerDependencies: @@ -2906,10 +2783,10 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/import@7.1.9": + "@graphql-tools/import@7.0.1": resolution: { - integrity: sha512-mHzOgyfzsAgstaZPIFEtKg4GVH4FbDHeHYrSs73mAPKS5F59/FlRuUJhAoRnxbVnc3qIZ6EsWBjOjNbnPK8viA==, + integrity: sha512-935uAjAS8UAeXThqHfYVr4HEAp6nHJ2sximZKO1RzUTq5WoALMAhhGARl0+ecm6X+cqNUwIChJbjtaa6P/ML0w==, } engines: { node: ">=16.0.0" } peerDependencies: @@ -2923,19 +2800,19 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/json-file-loader@8.0.26": + "@graphql-tools/json-file-loader@8.0.1": resolution: { - integrity: sha512-kwy9IFi5QtXXTLBgWkvA1RqsZeJDn0CxsTbhNlziCzmga9fNo7qtZ18k9FYIq3EIoQQlok+b7W7yeyJATA2xhw==, + integrity: sha512-lAy2VqxDAHjVyqeJonCP6TUemrpYdDuKt25a10X6zY2Yn3iFYGnuIDQ64cv3ytyGY6KPyPB+Kp+ZfOkNDG3FQA==, } engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/load-files@7.0.1": + "@graphql-tools/load-files@7.0.0": resolution: { - integrity: sha512-oTNIENc9To9u8Gc3kY82C74caW6kXa8ya2GyxWRXp8gP4zK/7PmvlWJK0/GFCUH0cU3t9jM7k59zXz1+ZfP3Mw==, + integrity: sha512-P98amERIwI7FD8Bsq6xUbz9Mj63W8qucfrE/WQjad5jFMZYdFFt46a99FFdfx8S/ZYgpAlj/AZbaTtWLitMgNQ==, } engines: { node: ">=16.0.0" } peerDependencies: @@ -2949,10 +2826,10 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/load@8.1.8": + "@graphql-tools/load@8.0.2": resolution: { - integrity: sha512-gxO662b64qZSToK3N6XUxWG5E6HOUjlg5jEnmGvD4bMtGJ0HwEe/BaVZbBQemCfLkxYjwRIBiVfOY9o0JyjZJg==, + integrity: sha512-S+E/cmyVmJ3CuCNfDuNF2EyovTwdWfQScXv/2gmvJOti2rGD8jTt9GYVzXaxhblLivQR9sBUCNZu/w7j7aXUCA==, } engines: { node: ">=16.0.0" } peerDependencies: @@ -2974,10 +2851,10 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/merge@9.1.7": + "@graphql-tools/merge@9.0.4": resolution: { - integrity: sha512-Y5E1vTbTabvcXbkakdFUt4zUIzB1fyaEnVmIWN0l0GMed2gdD01TpZWLUm4RNAxpturvolrb24oGLQrBbPLSoQ==, + integrity: sha512-MivbDLUQ+4Q8G/Hp/9V72hbn810IJDEZQ57F01sHnlrrijyadibfVhaQfW/pNH+9T/l8ySZpaR/DpL5i+ruZ+g==, } engines: { node: ">=16.0.0" } peerDependencies: @@ -3005,17 +2882,15 @@ packages: { integrity: sha512-0a7uV7Fky6yDqd0tI9+XMuvgIo6GAqiVzzzFV4OSLry4AwiQlI3igYseBV7ZVOGhedOTqj/URxjpiv07hRcwag==, } - deprecated: 'This package was intended to be used with an older versions of Prisma.\nThe newer versions of Prisma has a different approach to GraphQL integration.\nTherefore, this package is no longer needed and has been deprecated and removed.\nLearn more: https://www.prisma.io/graphql' peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/prisma-loader@8.0.17": + "@graphql-tools/prisma-loader@8.0.4": resolution: { - integrity: sha512-fnuTLeQhqRbA156pAyzJYN0KxCjKYRU5bz1q/SKOwElSnAU4k7/G1kyVsWLh7fneY78LoMNH5n+KlFV8iQlnyg==, + integrity: sha512-hqKPlw8bOu/GRqtYr0+dINAI13HinTVYBDqhwGAPIFmLr5s+qKskzgCiwbsckdrb5LWVFmVZc+UXn80OGiyBzg==, } engines: { node: ">=16.0.0" } - deprecated: 'This package was intended to be used with an older versions of Prisma.\nThe newer versions of Prisma has a different approach to GraphQL integration.\nTherefore, this package is no longer needed and has been deprecated and removed.\nLearn more: https://www.prisma.io/graphql' peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -3027,19 +2902,19 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/relay-operation-optimizer@7.0.27": + "@graphql-tools/relay-operation-optimizer@7.0.0": resolution: { - integrity: sha512-rdkL1iDMFaGDiHWd7Bwv7hbhrhnljkJaD0MXeqdwQlZVgVdUDlMot2WuF7CEKVgijpH6eSC6AxXMDeqVgSBS2g==, + integrity: sha512-UNlJi5y3JylhVWU4MBpL0Hun4Q7IoJwv9xYtmAz+CgRa066szzY7dcuPfxrA7cIGgG/Q6TVsKsYaiF4OHPs1Fw==, } engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/schema@10.0.31": + "@graphql-tools/schema@10.0.3": resolution: { - integrity: sha512-ZewRgWhXef6weZ0WiP7/MV47HXiuFbFpiDUVLQl6mgXsWSsGELKFxQsyUCBos60Qqy1JEFAIu3Ns6GGYjGkqkQ==, + integrity: sha512-p28Oh9EcOna6i0yLaCFOnkcBDQECVf3SCexT6ktb86QNj9idnkhI+tCxnwZDh58Qvjd2nURdkbevvoZkvxzCog==, } engines: { node: ">=16.0.0" } peerDependencies: @@ -3069,28 +2944,19 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/url-loader@8.0.33": - resolution: - { - integrity: sha512-Fu626qcNHcqAj8uYd7QRarcJn5XZ863kmxsg1sm0fyjyfBJnsvC7ddFt6Hayz5kxVKfsnjxiDfPMXanvsQVBKw==, - } - engines: { node: ">=16.0.0" } - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - "@graphql-tools/utils@10.11.0": + "@graphql-tools/url-loader@8.0.2": resolution: { - integrity: sha512-iBFR9GXIs0gCD+yc3hoNswViL1O5josI33dUqiNStFI/MHLCEPduasceAcazRH77YONKNiviHBV8f7OgcT4o2Q==, + integrity: sha512-1dKp2K8UuFn7DFo1qX5c1cyazQv2h2ICwA9esHblEqCYrgf69Nk8N7SODmsfWg94OEaI74IqMoM12t7eIGwFzQ==, } engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/utils@11.0.0": + "@graphql-tools/utils@10.2.0": resolution: { - integrity: sha512-bM1HeZdXA2C3LSIeLOnH/bcqSgbQgKEDrjxODjqi3y58xai2TkNrtYcQSoWzGbt9VMN1dORGjR7Vem8SPnUFQA==, + integrity: sha512-HYV7dO6pNA2nGKawygaBpk8y+vXOUjjzzO43W/Kb7EPRmXUEQKjHxPYRvQbiF72u1N3XxwGK5jnnFk9WVhUwYw==, } engines: { node: ">=16.0.0" } peerDependencies: @@ -3128,12 +2994,12 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@graphql-tools/wrap@10.1.4": + "@graphql-tools/wrap@10.0.5": resolution: { - integrity: sha512-7pyNKqXProRjlSdqOtrbnFRMQAVamCmEREilOXtZujxY6kYit3tvWWSjUrcIOheltTffoRh7EQSjpy2JDCzasg==, + integrity: sha512-Cbr5aYjr3HkwdPvetZp1cpDWTGdD1Owgsb3z/ClzhmrboiK86EnQDxDvOJiQkDCPWE9lNBwj8Y4HfxroY0D9DQ==, } - engines: { node: ">=18.0.0" } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -3160,13 +3026,6 @@ packages: } engines: { node: ">=6.9.0" } - "@img/colour@1.1.0": - resolution: - { - integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==, - } - engines: { node: ">=18" } - "@img/sharp-darwin-arm64@0.33.5": resolution: { @@ -3176,15 +3035,6 @@ packages: cpu: [arm64] os: [darwin] - "@img/sharp-darwin-arm64@0.34.5": - resolution: - { - integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [arm64] - os: [darwin] - "@img/sharp-darwin-x64@0.33.5": resolution: { @@ -3194,15 +3044,6 @@ packages: cpu: [x64] os: [darwin] - "@img/sharp-darwin-x64@0.34.5": - resolution: - { - integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [x64] - os: [darwin] - "@img/sharp-libvips-darwin-arm64@1.0.4": resolution: { @@ -3211,14 +3052,6 @@ packages: cpu: [arm64] os: [darwin] - "@img/sharp-libvips-darwin-arm64@1.2.4": - resolution: - { - integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==, - } - cpu: [arm64] - os: [darwin] - "@img/sharp-libvips-darwin-x64@1.0.4": resolution: { @@ -3227,14 +3060,6 @@ packages: cpu: [x64] os: [darwin] - "@img/sharp-libvips-darwin-x64@1.2.4": - resolution: - { - integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==, - } - cpu: [x64] - os: [darwin] - "@img/sharp-libvips-linux-arm64@1.0.4": resolution: { @@ -3243,231 +3068,95 @@ packages: cpu: [arm64] os: [linux] - "@img/sharp-libvips-linux-arm64@1.2.4": + "@img/sharp-libvips-linux-arm@1.0.5": resolution: { - integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==, + integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==, } - cpu: [arm64] + cpu: [arm] os: [linux] - "@img/sharp-libvips-linux-arm@1.0.5": + "@img/sharp-libvips-linux-s390x@1.0.4": resolution: { - integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==, + integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==, } - cpu: [arm] + cpu: [s390x] os: [linux] - "@img/sharp-libvips-linux-arm@1.2.4": + "@img/sharp-libvips-linux-x64@1.0.4": resolution: { - integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==, + integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==, } - cpu: [arm] + cpu: [x64] os: [linux] - "@img/sharp-libvips-linux-ppc64@1.2.4": + "@img/sharp-libvips-linuxmusl-arm64@1.0.4": resolution: { - integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==, + integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==, } - cpu: [ppc64] + cpu: [arm64] os: [linux] - "@img/sharp-libvips-linux-riscv64@1.2.4": + "@img/sharp-libvips-linuxmusl-x64@1.0.4": resolution: { - integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==, + integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==, } - cpu: [riscv64] + cpu: [x64] os: [linux] - "@img/sharp-libvips-linux-s390x@1.0.4": + "@img/sharp-linux-arm64@0.33.5": resolution: { - integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==, + integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==, } - cpu: [s390x] + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [arm64] os: [linux] - "@img/sharp-libvips-linux-s390x@1.2.4": + "@img/sharp-linux-arm@0.33.5": resolution: { - integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==, + integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==, } - cpu: [s390x] + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [arm] os: [linux] - "@img/sharp-libvips-linux-x64@1.0.4": + "@img/sharp-linux-s390x@0.33.5": resolution: { - integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==, + integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==, } - cpu: [x64] + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [s390x] os: [linux] - "@img/sharp-libvips-linux-x64@1.2.4": + "@img/sharp-linux-x64@0.33.5": resolution: { - integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==, + integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==, } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } cpu: [x64] os: [linux] - "@img/sharp-libvips-linuxmusl-arm64@1.0.4": + "@img/sharp-linuxmusl-arm64@0.33.5": resolution: { - integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==, + integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==, } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } cpu: [arm64] os: [linux] - "@img/sharp-libvips-linuxmusl-arm64@1.2.4": + "@img/sharp-linuxmusl-x64@0.33.5": resolution: { - integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==, - } - cpu: [arm64] - os: [linux] - - "@img/sharp-libvips-linuxmusl-x64@1.0.4": - resolution: - { - integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==, - } - cpu: [x64] - os: [linux] - - "@img/sharp-libvips-linuxmusl-x64@1.2.4": - resolution: - { - integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==, - } - cpu: [x64] - os: [linux] - - "@img/sharp-linux-arm64@0.33.5": - resolution: - { - integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [arm64] - os: [linux] - - "@img/sharp-linux-arm64@0.34.5": - resolution: - { - integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [arm64] - os: [linux] - - "@img/sharp-linux-arm@0.33.5": - resolution: - { - integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [arm] - os: [linux] - - "@img/sharp-linux-arm@0.34.5": - resolution: - { - integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [arm] - os: [linux] - - "@img/sharp-linux-ppc64@0.34.5": - resolution: - { - integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [ppc64] - os: [linux] - - "@img/sharp-linux-riscv64@0.34.5": - resolution: - { - integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [riscv64] - os: [linux] - - "@img/sharp-linux-s390x@0.33.5": - resolution: - { - integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [s390x] - os: [linux] - - "@img/sharp-linux-s390x@0.34.5": - resolution: - { - integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [s390x] - os: [linux] - - "@img/sharp-linux-x64@0.33.5": - resolution: - { - integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [x64] - os: [linux] - - "@img/sharp-linux-x64@0.34.5": - resolution: - { - integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [x64] - os: [linux] - - "@img/sharp-linuxmusl-arm64@0.33.5": - resolution: - { - integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [arm64] - os: [linux] - - "@img/sharp-linuxmusl-arm64@0.34.5": - resolution: - { - integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [arm64] - os: [linux] - - "@img/sharp-linuxmusl-x64@0.33.5": - resolution: - { - integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [x64] - os: [linux] - - "@img/sharp-linuxmusl-x64@0.34.5": - resolution: - { - integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==, + integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==, } engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } cpu: [x64] @@ -3481,23 +3170,6 @@ packages: engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } cpu: [wasm32] - "@img/sharp-wasm32@0.34.5": - resolution: - { - integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [wasm32] - - "@img/sharp-win32-arm64@0.34.5": - resolution: - { - integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [arm64] - os: [win32] - "@img/sharp-win32-ia32@0.33.5": resolution: { @@ -3507,15 +3179,6 @@ packages: cpu: [ia32] os: [win32] - "@img/sharp-win32-ia32@0.34.5": - resolution: - { - integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [ia32] - os: [win32] - "@img/sharp-win32-x64@0.33.5": resolution: { @@ -3525,15 +3188,6 @@ packages: cpu: [x64] os: [win32] - "@img/sharp-win32-x64@0.34.5": - resolution: - { - integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - cpu: [x64] - os: [win32] - "@inquirer/ansi@1.0.2": resolution: { @@ -3541,10 +3195,10 @@ packages: } engines: { node: ">=18" } - "@inquirer/checkbox@2.5.0": + "@inquirer/checkbox@2.3.10": resolution: { - integrity: sha512-sMgdETOfi2dUHT8r7TT1BTKOwNvdDGFDXYWtQ2J69SvlYNntk9I/gJe7r5yvMwwsuKnYbuRs3pNhx4tgNck5aA==, + integrity: sha512-CTc864M2/523rKc9AglIzAcUCuPXDZENgc5S2KZFVRbnMzpXcYTsUWmbqSeL0XLvtlvEtNevkkVbfVhJpruOyQ==, } engines: { node: ">=18" } @@ -3560,10 +3214,10 @@ packages: "@types/node": optional: true - "@inquirer/confirm@3.2.0": + "@inquirer/confirm@3.1.14": resolution: { - integrity: sha512-oOIwPs0Dvq5220Z8lGL/6LHRTEr9TgLHmiI99Rj1PJ1p1czTys+olrgBqZk4E2qC0YTzeHprxSQmoHioVdJ7Lw==, + integrity: sha512-nbLSX37b2dGPtKWL3rPuR/5hOuD30S+pqJ/MuFiUEgN6GiMs8UMxiurKAMDzKt6C95ltjupa8zH6+3csXNHWpA==, } engines: { node: ">=18" } @@ -3591,17 +3245,17 @@ packages: "@types/node": optional: true - "@inquirer/core@9.2.1": + "@inquirer/core@9.0.2": resolution: { - integrity: sha512-F2VBt7W/mwqEU4bL0RnHNZmC/OxzNx9cOYxHqnXX3MP6ruYvZUZAW9imgN9+h/uBT/oP8Gh888J2OZSbjSeWcg==, + integrity: sha512-nguvH3TZar3ACwbytZrraRTzGqyxJfYJwv+ZwqZNatAosdWQMP1GV8zvmkNlBe2JeZSaw0WYBHZk52pDpWC9qA==, } engines: { node: ">=18" } - "@inquirer/editor@2.2.0": + "@inquirer/editor@2.1.14": resolution: { - integrity: sha512-9KHOpJ+dIL5SZli8lJ6xdaYLPPzB8xB9GZItg39MBybzhxA16vxmszmQFrRwbOA918WA2rvu8xhDEg/p6LXKbw==, + integrity: sha512-6nWpoJyVAKwAcv67bkbBmmi3f32xua79fP7TRmNUoR4K+B1GiOBsHO1YdvET/jvC+nTlBZL7puKAKyM7G+Lkzw==, } engines: { node: ">=18" } @@ -3617,10 +3271,10 @@ packages: "@types/node": optional: true - "@inquirer/expand@2.3.0": + "@inquirer/expand@2.1.14": resolution: { - integrity: sha512-qnJsUcOGCSG1e5DTOErmv2BPQqrtT6uzqn1vI/aYGiPKq+FgslGZmtdnXbhuI7IlT7OByDoEEqdnhUnVR2hhLw==, + integrity: sha512-JcxsLajwPykF2kq6biIUdoOzTQ3LXqb8XMVrWkCprG/pFeU1SsxcSSFbF1T5jJGvvlTVcsE+JdGjbQ8ZRZ82RA==, } engines: { node: ">=18" } @@ -3655,10 +3309,17 @@ packages: } engines: { node: ">=18" } - "@inquirer/input@2.3.0": + "@inquirer/figures@1.0.3": + resolution: + { + integrity: sha512-ErXXzENMH5pJt5/ssXV0DfWUZqly8nGzf0UcBV9xTnP+KyffE2mqyxIMBrZ8ijQck2nU0TQm40EQB53YreyWHw==, + } + engines: { node: ">=18" } + + "@inquirer/input@2.2.1": resolution: { - integrity: sha512-XfnpCStx2xgh1LIRqPXrTNEEByqQWoxsWYzNRSEUxJ5c6EQlhMogJ3vHKu8aXuTacebtaZzMAHwEL0kAflKOBw==, + integrity: sha512-Yl1G6h7qWydzrJwqN777geeJVaAFL5Ly83aZlw4xHf8Z/BoTMfKRheyuMaQwOG7LQ4e5nQP7PxXdEg4SzQ+OKw==, } engines: { node: ">=18" } @@ -3674,10 +3335,10 @@ packages: "@types/node": optional: true - "@inquirer/number@1.1.0": + "@inquirer/number@1.0.2": resolution: { - integrity: sha512-ilUnia/GZUtfSZy3YEErXLJ2Sljo/mf9fiKc08n18DdwdmDbOzRcTv65H1jjDvlsAuvdFXf4Sa/aL7iw/NanVA==, + integrity: sha512-GcoK+Phxcln0Qw9e73S5a8B2Ejg3HgSTvNfDegIcS5/BKwUm8t5rejja1l09WXjZM9vrVbRDf9RzWtSUiWVYRQ==, } engines: { node: ">=18" } @@ -3693,10 +3354,10 @@ packages: "@types/node": optional: true - "@inquirer/password@2.2.0": + "@inquirer/password@2.1.14": resolution: { - integrity: sha512-5otqIpgsPYIshqhgtEwSspBQE40etouR8VIxzpJkv9i0dVHIpyhiivbkH9/dGiMLdyamT54YRdGJLfl8TFnLHg==, + integrity: sha512-sPzOkXLhWJQ96K6nPZFnF8XB8tsDrcCRobd1d3EDz81F+4hp8BbdmsnsQcqZ7oYDIOVM/mWJyIUtJ35TrssJxQ==, } engines: { node: ">=18" } @@ -3712,10 +3373,10 @@ packages: "@types/node": optional: true - "@inquirer/prompts@5.5.0": + "@inquirer/prompts@5.1.2": resolution: { - integrity: sha512-BHDeL0catgHdcHbSFFUddNzvx/imzJMft+tWDPwTm3hfu8/tApk1HrooNngB2Mb4qY+KaRWF+iZqoVUPeslEog==, + integrity: sha512-E+ndnfwtVQtcmPt888Hc/HAxJUHSaA6OIvyvLAQ5BLQv+t20GbYdFSjXeLgb47OpMU+aRsKA/ys+Zoylw3kTVg==, } engines: { node: ">=18" } @@ -3731,10 +3392,10 @@ packages: "@types/node": optional: true - "@inquirer/rawlist@2.3.0": + "@inquirer/rawlist@2.1.14": resolution: { - integrity: sha512-zzfNuINhFF7OLAtGHfhwOW2TlYJyli7lOUoJUXw/uyklcwalV6WRXBXtFIicN8rTRK1XTiPWB4UY+YuW8dsnLQ==, + integrity: sha512-pLpEzhKNQ/ugFAFfgCNaXljB+dcCwmXwR1jOxAbVeFIdB3l02E5gjI+h1rb136tq0T8JO6P5KFR1oTeld/wdrA==, } engines: { node: ">=18" } @@ -3750,13 +3411,6 @@ packages: "@types/node": optional: true - "@inquirer/search@1.1.0": - resolution: - { - integrity: sha512-h+/5LSj51dx7hp5xOn4QFnUaKeARwUCLs6mIhtkJ0JYPBLmEYjdHSYh7I6GrLg9LwpJ3xeX0FZgAG1q0QdCpVQ==, - } - engines: { node: ">=18" } - "@inquirer/search@3.2.2": resolution: { @@ -3769,10 +3423,10 @@ packages: "@types/node": optional: true - "@inquirer/select@2.5.0": + "@inquirer/select@2.3.10": resolution: { - integrity: sha512-YmDobTItPP3WcEI86GvPo+T2sRHkxxOq/kXmsBjHS5BVXUgvgZ5AfJjkvQvZr03T81NnI3KrrRuMzeuYUQRFOA==, + integrity: sha512-rr7iR0Zj1YFfgM8IUGimPD9Yukd+n/U63CnYT9kdum6DbRXtMxR45rrreP+EA9ixCnShr+W4xj7suRxC1+8t9g==, } engines: { node: ">=18" } @@ -3788,17 +3442,10 @@ packages: "@types/node": optional: true - "@inquirer/type@1.5.5": + "@inquirer/type@1.4.0": resolution: { - integrity: sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==, - } - engines: { node: ">=18" } - - "@inquirer/type@2.0.0": - resolution: - { - integrity: sha512-XvJRx+2KR3YXyYtPUUy+qd9i7p+GO9Ko6VIIpWlBrpWwXDv8WLFeHTxz35CfQFUiBMLXlGHhGzys7lqit9gWag==, + integrity: sha512-AjOqykVyjdJQvtfkNDGUyMYGF8xN50VUxftCQWsOyIo4DFRLr6VQhW0VItGI1JIyQGCGgIpKa7hMMwNhZb4OIw==, } engines: { node: ">=18" } @@ -3814,13 +3461,6 @@ packages: "@types/node": optional: true - "@isaacs/cliui@8.0.2": - resolution: - { - integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==, - } - engines: { node: ">=12" } - "@isaacs/cliui@9.0.0": resolution: { @@ -3874,10 +3514,10 @@ packages: node-notifier: optional: true - "@jest/diff-sequences@30.0.1": + "@jest/diff-sequences@30.3.0": resolution: { - integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==, + integrity: sha512-cG51MVnLq1ecVUaQ3fr6YuuAOitHK1S4WUJHnsPFE/quQr33ADUx1FfrTCpMCRxvy0Yr9BThKpDjSlcTi91tMA==, } engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } @@ -3984,41 +3624,50 @@ packages: } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - "@jridgewell/gen-mapping@0.3.13": + "@jridgewell/gen-mapping@0.1.1": + resolution: + { + integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==, + } + engines: { node: ">=6.0.0" } + + "@jridgewell/gen-mapping@0.3.5": resolution: { - integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==, + integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==, } + engines: { node: ">=6.0.0" } - "@jridgewell/remapping@2.3.5": + "@jridgewell/resolve-uri@3.1.0": resolution: { - integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==, + integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==, } + engines: { node: ">=6.0.0" } - "@jridgewell/resolve-uri@3.1.2": + "@jridgewell/set-array@1.2.1": resolution: { - integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==, + integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==, } engines: { node: ">=6.0.0" } - "@jridgewell/source-map@0.3.11": + "@jridgewell/source-map@0.3.6": resolution: { - integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==, + integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==, } - "@jridgewell/sourcemap-codec@1.5.5": + "@jridgewell/sourcemap-codec@1.5.0": resolution: { - integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==, + integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==, } - "@jridgewell/trace-mapping@0.3.31": + "@jridgewell/trace-mapping@0.3.25": resolution: { - integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==, + integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==, } "@jridgewell/trace-mapping@0.3.9": @@ -4027,13 +3676,11 @@ packages: integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==, } - "@lerna/create@9.0.5": + "@kamilkisiela/fast-url-parser@1.1.4": resolution: { - integrity: sha512-Gwd6ooSqXMdkdhiCGvHAfLRstj7W3ttr72WQB3Jf9HPP1A6mWtw0O80D0X+T/2hakqfe7lNLuKrEid4f7C0qbg==, + integrity: sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==, } - engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 } - deprecated: This package is an implementation detail of Lerna and is no longer published separately. "@lexical/clipboard@0.34.0": resolution: @@ -4188,10 +3835,10 @@ packages: integrity: sha512-uHpGX71Mqay4XLxkuMdZhH+goKKygTW9Uc2s2SewRW64TLjUNRSMn2L6wG9cZx6gntD4zBdKFZWoF+dg2yx9MA==, } - "@mdx-js/react@3.1.1": + "@mdx-js/react@3.1.0": resolution: { - integrity: sha512-f++rKLQgUVYDAtECQ6fn/is15GkEH9+nZPM3MS0RcxVqoTfawHvDlSCH7JbMhAM6uJ32v3eXLvLmLvjGu7PTQw==, + integrity: sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==, } peerDependencies: "@types/react": ">=16" @@ -4209,10 +3856,10 @@ packages: integrity: sha512-fbb2C7HChgM7CemdCY+y3N1n8pcTKdqtQLbC7/EQtPdLvlMUT9JX/dBYl8MMZAtYG4uVMyPFHXckb68q/NRwqg==, } - "@next/env@15.5.12": + "@next/env@15.1.6": resolution: { - integrity: sha512-pUvdJN1on574wQHjaBfNGDt9Mz5utDSZFsIIQkMzPgNS8ZvT4H2mwOrOIClwsQOb6EGx5M76/CZr6G8i6pSpLg==, + integrity: sha512-d9AFQVPEYNr+aqokIiPLNK/MTyt3DWa/dpKveiAaVccUadFbhFEvY6FXYX2LJO2Hv7PHnLBu2oWwB4uBuHjr/w==, } "@next/swc-darwin-arm64@13.5.9": @@ -4224,10 +3871,10 @@ packages: cpu: [arm64] os: [darwin] - "@next/swc-darwin-arm64@15.5.12": + "@next/swc-darwin-arm64@15.1.6": resolution: { - integrity: sha512-RnRjBtH8S8eXCpUNkQ+543DUc7ys8y15VxmFU9HRqlo9BG3CcBUiwNtF8SNoi2xvGCVJq1vl2yYq+3oISBS0Zg==, + integrity: sha512-u7lg4Mpl9qWpKgy6NzEkz/w0/keEHtOybmIl0ykgItBxEM5mYotS5PmqTpo+Rhg8FiOiWgwr8USxmKQkqLBCrw==, } engines: { node: ">= 10" } cpu: [arm64] @@ -4242,10 +3889,10 @@ packages: cpu: [x64] os: [darwin] - "@next/swc-darwin-x64@15.5.12": + "@next/swc-darwin-x64@15.1.6": resolution: { - integrity: sha512-nqa9/7iQlboF1EFtNhWxQA0rQstmYRSBGxSM6g3GxvxHxcoeqVXfGNr9stJOme674m2V7r4E3+jEhhGvSQhJRA==, + integrity: sha512-x1jGpbHbZoZ69nRuogGL2MYPLqohlhnT9OCU6E6QFewwup+z+M6r8oU47BTeJcWsF2sdBahp5cKiAcDbwwK/lg==, } engines: { node: ">= 10" } cpu: [x64] @@ -4260,10 +3907,10 @@ packages: cpu: [arm64] os: [linux] - "@next/swc-linux-arm64-gnu@15.5.12": + "@next/swc-linux-arm64-gnu@15.1.6": resolution: { - integrity: sha512-dCzAjqhDHwmoB2M4eYfVKqXs99QdQxNQVpftvP1eGVppamXh/OkDAwV737Zr0KPXEqRUMN4uCjh6mjO+XtF3Mw==, + integrity: sha512-jar9sFw0XewXsBzPf9runGzoivajeWJUc/JkfbLTC4it9EhU8v7tCRLH7l5Y1ReTMN6zKJO0kKAGqDk8YSO2bg==, } engines: { node: ">= 10" } cpu: [arm64] @@ -4278,10 +3925,10 @@ packages: cpu: [arm64] os: [linux] - "@next/swc-linux-arm64-musl@15.5.12": + "@next/swc-linux-arm64-musl@15.1.6": resolution: { - integrity: sha512-+fpGWvQiITgf7PUtbWY1H7qUSnBZsPPLyyq03QuAKpVoTy/QUx1JptEDTQMVvQhvizCEuNLEeghrQUyXQOekuw==, + integrity: sha512-+n3u//bfsrIaZch4cgOJ3tXCTbSxz0s6brJtU3SzLOvkJlPQMJ+eHVRi6qM2kKKKLuMY+tcau8XD9CJ1OjeSQQ==, } engines: { node: ">= 10" } cpu: [arm64] @@ -4296,10 +3943,10 @@ packages: cpu: [x64] os: [linux] - "@next/swc-linux-x64-gnu@15.5.12": + "@next/swc-linux-x64-gnu@15.1.6": resolution: { - integrity: sha512-jSLvgdRRL/hrFAPqEjJf1fFguC719kmcptjNVDJl26BnJIpjL3KH5h6mzR4mAweociLQaqvt4UyzfbFjgAdDcw==, + integrity: sha512-SpuDEXixM3PycniL4iVCLyUyvcl6Lt0mtv3am08sucskpG0tYkW1KlRhTgj4LI5ehyxriVVcfdoxuuP8csi3kQ==, } engines: { node: ">= 10" } cpu: [x64] @@ -4314,10 +3961,10 @@ packages: cpu: [x64] os: [linux] - "@next/swc-linux-x64-musl@15.5.12": + "@next/swc-linux-x64-musl@15.1.6": resolution: { - integrity: sha512-/uaF0WfmYqQgLfPmN6BvULwxY0dufI2mlN2JbOKqqceZh1G4hjREyi7pg03zjfyS6eqNemHAZPSoP84x17vo6w==, + integrity: sha512-L4druWmdFSZIIRhF+G60API5sFB7suTbDRhYWSjiw0RbE+15igQvE2g2+S973pMGvwN3guw7cJUjA/TmbPWTHQ==, } engines: { node: ">= 10" } cpu: [x64] @@ -4332,10 +3979,10 @@ packages: cpu: [arm64] os: [win32] - "@next/swc-win32-arm64-msvc@15.5.12": + "@next/swc-win32-arm64-msvc@15.1.6": resolution: { - integrity: sha512-xhsL1OvQSfGmlL5RbOmU+FV120urrgFpYLq+6U8C6KIym32gZT6XF/SDE92jKzzlPWskkbjOKCpqk5m4i8PEfg==, + integrity: sha512-s8w6EeqNmi6gdvM19tqKKWbCyOBvXFbndkGHl+c9YrzsLARRdCHsD9S1fMj8gsXm9v8vhC8s3N8rjuC/XrtkEg==, } engines: { node: ">= 10" } cpu: [arm64] @@ -4359,10 +4006,10 @@ packages: cpu: [x64] os: [win32] - "@next/swc-win32-x64-msvc@15.5.12": + "@next/swc-win32-x64-msvc@15.1.6": resolution: { - integrity: sha512-Z1Dh6lhFkxvBDH1FoW6OU/L6prYwPSlwjLiZkExIAh8fbP6iI/M7iGTQAJPYJ9YFlWobCZ1PHbchFhFYb2ADkw==, + integrity: sha512-6xomMuu54FAFxttYr5PJbEfu96godcxBTRk1OhAvJq0/EnmFU/Ybiax30Snis4vdWZ9LGpf7Roy5fSs7v/5ROQ==, } engines: { node: ">= 10" } cpu: [x64] @@ -4425,13 +4072,6 @@ packages: } engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } - "@npmcli/fs@3.1.1": - resolution: - { - integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - "@npmcli/fs@4.0.0": resolution: { @@ -4452,13 +4092,6 @@ packages: integrity: sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw==, } - "@npmcli/git@4.1.0": - resolution: - { - integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - "@npmcli/git@6.0.3": resolution: { @@ -4481,14 +4114,6 @@ packages: engines: { node: ">= 10" } hasBin: true - "@npmcli/installed-package-contents@2.1.0": - resolution: - { - integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - hasBin: true - "@npmcli/installed-package-contents@3.0.0": resolution: { @@ -4575,13 +4200,6 @@ packages: integrity: sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA==, } - "@npmcli/node-gyp@3.0.0": - resolution: - { - integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - "@npmcli/node-gyp@4.0.0": resolution: { @@ -4615,13 +4233,6 @@ packages: integrity: sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg==, } - "@npmcli/promise-spawn@6.0.2": - resolution: - { - integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - "@npmcli/promise-spawn@8.0.3": resolution: { @@ -4650,125 +4261,126 @@ packages: } engines: { node: ^18.17.0 || >=20.5.0 } - "@npmcli/run-script@10.0.3": + "@npmcli/redact@4.0.0": resolution: { - integrity: sha512-ER2N6itRkzWbbtVmZ9WKaWxVlKlOeBFF1/7xx+KA5J1xKa4JjUwBdb6tDpk0v1qA+d+VDwHI9qmLcXSWcmi+Rw==, + integrity: sha512-gOBg5YHMfZy+TfHArfVogwgfBeQnKbbGo3pSUyK/gSI0AVu+pEiDVcKlQb0D8Mg1LNRZILZ6XG8I5dJ4KuAd9Q==, } engines: { node: ^20.17.0 || >=22.9.0 } - "@npmcli/run-script@2.0.0": + "@npmcli/run-script@10.0.3": resolution: { - integrity: sha512-fSan/Pu11xS/TdaTpTB0MRn9guwGU8dye+x56mEVgBEd/QsybBbYcAL0phPXi8SGWFEChkQd6M9qL4y6VOpFig==, + integrity: sha512-ER2N6itRkzWbbtVmZ9WKaWxVlKlOeBFF1/7xx+KA5J1xKa4JjUwBdb6tDpk0v1qA+d+VDwHI9qmLcXSWcmi+Rw==, } + engines: { node: ^20.17.0 || >=22.9.0 } - "@npmcli/run-script@6.0.2": + "@npmcli/run-script@2.0.0": resolution: { - integrity: sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==, + integrity: sha512-fSan/Pu11xS/TdaTpTB0MRn9guwGU8dye+x56mEVgBEd/QsybBbYcAL0phPXi8SGWFEChkQd6M9qL4y6VOpFig==, } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - "@nx/devkit@22.5.4": + "@nx/devkit@22.6.5": resolution: { - integrity: sha512-+QCmpQZQmEGvi8IurC6bOgUTk+Q0dQo7wkp6V04lskXBztSyasBS0BGy5ic90kY05UlQUd++zRA1VY0jc+Yz5Q==, + integrity: sha512-9kvAI+kk2pfEXLqS8OyjI9XvWmp+Gdn7jPfxDAz8BOqxMyPy3p5hYl+jc4TIsLOWunAFl8azqrcYsHzEpaWCIA==, } peerDependencies: nx: ">= 21 <= 23 || ^22.0.0-0" - "@nx/nx-darwin-arm64@22.5.4": + "@nx/nx-darwin-arm64@22.6.5": resolution: { - integrity: sha512-Ib9znwSLQZSZ/9hhg5ODplpNhE/RhGVXzdfRj6YonTuWSj/kH3dLMio+4JEkjRdTQVm06cDW0KdwSgnwovqMGg==, + integrity: sha512-qT77Omkg5xQuL2+pDbneX2tI+XW5ZeayMylu7UUgK8OhTrAkJLKjpuYRH4xT5XBipxbDtlxmO3aLS3Ib1pKzJQ==, } cpu: [arm64] os: [darwin] - "@nx/nx-darwin-x64@22.5.4": + "@nx/nx-darwin-x64@22.6.5": resolution: { - integrity: sha512-DjyXuQMc93MPU2XdRsJYjzbv1tgCzMi+zm7O0gc4x3h+ECFjKkjzQBg67pqGdhE3TV27MAlVRKrgHStyK9iigg==, + integrity: sha512-9jICxb7vfJ56y/7Yuh3b/n1QJqWxO9xnXKYEs6SO8xPoW/KomVckILGc1C6RQSs6/3ixVJC7k1Dh1wm5tKPFrg==, } cpu: [x64] os: [darwin] - "@nx/nx-freebsd-x64@22.5.4": + "@nx/nx-freebsd-x64@22.6.5": resolution: { - integrity: sha512-DhxdP8AhIfN0yCtFhZQcbp32MVN3L7UiTotYqqnOgwW922NRGSd5e+KEAWiJVrIO6TdgnI7prxpg1hfQQK0WDw==, + integrity: sha512-6B1wEKpqz5dI3AGMqttAVnA6M3DB/besAtuGyQiymK9ROlta1iuWgCcIYwcCQyhLn2Rx7vqj447KKcgCa8HlVw==, } cpu: [x64] os: [freebsd] - "@nx/nx-linux-arm-gnueabihf@22.5.4": + "@nx/nx-linux-arm-gnueabihf@22.6.5": resolution: { - integrity: sha512-pv1x1afTaLAOxPxVhQneLeXgjclp11f9ORxR7jA4E86bSgc9OL92dLSCkXtLQzqPNOej6SZ2fO+PPHVMZwtaPQ==, + integrity: sha512-xV50B8mnDPboct7JkAHftajI02s+8FszA8WTzhore+YGR+lEKHTLpucwGEaQuMlSdLplH7pQix4B4uK5pcMhZw==, } cpu: [arm] os: [linux] - "@nx/nx-linux-arm64-gnu@22.5.4": + "@nx/nx-linux-arm64-gnu@22.6.5": resolution: { - integrity: sha512-mPji9PzleWPvXpmFDKaXpTymRgZkk/hW8JHGhvEZpKHHXMYgTGWC+BqOEM2A4dYC4bu4fi9RrteL7aouRRWJoQ==, + integrity: sha512-2JkWuMGj+HpW6oPAvU5VdAx1afTnEbiM10Y3YOrl3fipWV4BiP5VDx762QTrfCraP4hl6yqTgvTe7F9xaby+jQ==, } cpu: [arm64] os: [linux] - "@nx/nx-linux-arm64-musl@22.5.4": + "@nx/nx-linux-arm64-musl@22.6.5": resolution: { - integrity: sha512-hF/HvEhbCjcFpTgY7RbP1tUTbp0M1adZq4ckyW8mwhDWQ/MDsc8FnOHwCO3Bzy9ZeJM0zQUES6/m0Onz8geaEA==, + integrity: sha512-Z/zMqFClnEyqDXouJKEPoWVhMQIif5F0YuECWBYjd3ZLwQsXGTItoh+6Wm3XF/nGMA2uLOHyTq/X7iFXQY3RzA==, } cpu: [arm64] os: [linux] - "@nx/nx-linux-x64-gnu@22.5.4": + "@nx/nx-linux-x64-gnu@22.6.5": resolution: { - integrity: sha512-1+vicSYEOtc7CNMoRCjo59no4gFe8w2nGIT127wk1yeW3EJzRVNlOA7Deu10NUUbzLeOvHc8EFOaU7clT+F7XQ==, + integrity: sha512-FlotSyqNnaXSn0K+yWw+hRdYBwusABrPgKLyixfJIYRzsy+xPKN6pON6vZfqGwzuWF/9mEGReRz+iM8PiW0XSg==, } cpu: [x64] os: [linux] - "@nx/nx-linux-x64-musl@22.5.4": + "@nx/nx-linux-x64-musl@22.6.5": resolution: { - integrity: sha512-/KjndxVB14yU0SJOhqADHOWoTy4Y45h5RjW3cxcXlPSJZz7ar1FnlLne1rWMMMUttepc8ku+3T//SGKi2eu+Nw==, + integrity: sha512-RVOe2qcwhoIx6mxQURPjUfAW5SEOmT2gdhewvdcvX9ICq1hj5B2VarmkhTg0qroO7xiyqOqwq26mCzoV2I3NgQ==, } cpu: [x64] os: [linux] - "@nx/nx-win32-arm64-msvc@22.5.4": + "@nx/nx-win32-arm64-msvc@22.6.5": resolution: { - integrity: sha512-CrYt9FwhjOI6ZNy/G6YHLJmZuXCFJ24BCxugPXiZ7knDx7eGrr7owGgfht4SSiK3KCX40CvWCBJfqR4ZSgaSUA==, + integrity: sha512-ZqurqI8VuYnsr2Kn4K4t+Gx6j/BZdf6qz/6Tv4A7XQQ6oNYVQgTqoNEFj+CCkVaIe6aIdCWpousFLqs+ZgBqYQ==, } cpu: [arm64] os: [win32] - "@nx/nx-win32-x64-msvc@22.5.4": + "@nx/nx-win32-x64-msvc@22.6.5": resolution: { - integrity: sha512-g5YByv4XsYwsYZvFe24A9bvfhZA+mwtIQt6qZtEVduZTT1hfhIsq0LXGHhkGoFLYwRMXSracWOqkalY0KT4IQw==, + integrity: sha512-i2QFBJIuaYg9BHxrrnBV4O7W9rVL2k0pSIdk/rRp3EYJEU93iUng+qbZiY9wh1xvmXuUCE2G7TRd+8/SG/RFKg==, } cpu: [x64] os: [win32] - "@oclif/core@1.26.2": + "@oclif/color@1.0.3": resolution: { - integrity: sha512-6jYuZgXvHfOIc9GIaS4T3CIKGTjPmfAxuMcbCbMRKJJl4aq/4xeRlEz0E8/hz8HxvxZBGvN2GwAUHlrGWQVrVw==, + integrity: sha512-E+KKAE5CKhXRBZEoZLe5yNR0VHmba1m1fxz8HlpcWjHF5Pdhhf6W/0XMmed6vwQCmyzL/YLwdspCRfu0A1cgGA==, } - engines: { node: ">=14.0.0" } + engines: { node: ">=12.0.0" } + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - "@oclif/core@2.16.0": + "@oclif/core@1.23.1": resolution: { - integrity: sha512-dL6atBH0zCZl1A1IXCKJgLPrM/wR7K+Wi401E/IvqsK8m2iCHW+0TEOGrans/cuN3oTW+uxIyJFHJ8Im0k4qBw==, + integrity: sha512-nz7wVGesJ1Qg74p1KNKluZpQ3Z042mqdaRlczEI4Xwqj5s9jjdDBCDHNkiGzV4UAKzicVzipNj6qqhyUWKYnaA==, } engines: { node: ">=14.0.0" } @@ -4778,34 +4390,34 @@ packages: integrity: sha512-Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw==, } - "@oclif/plugin-help@5.2.20": + "@oclif/plugin-help@5.1.22": resolution: { - integrity: sha512-u+GXX/KAGL9S10LxAwNUaWdzbEBARJ92ogmM7g3gDVud2HioCmvWQCDohNRVZ9GYV9oKwZ/M8xwd6a1d95rEKQ==, + integrity: sha512-gflrCqV3c7nd1UgknuZZTX6Th9CTkvVyTjL76UNHrea3kCZEpPzsMGhwP989R+j3KSGJGeZVrq2i9g2QXI9tZA==, } engines: { node: ">=12.0.0" } - "@oclif/plugin-not-found@2.4.3": + "@oclif/plugin-not-found@2.3.13": resolution: { - integrity: sha512-nIyaR4y692frwh7wIHZ3fb+2L6XEecQwRDIb4zbEam0TvaVmBQWZoColQyWA84ljFBPZ8XWiQyTz+ixSwdRkqg==, + integrity: sha512-xadWMsIL9bHdzwdnj8c4q9xE6KZcVETwmFuoVuZkhbAJGA9E7tB67ULhxWMQbm/pYmzzC6h296mjf+fiHq0hqg==, } engines: { node: ">=12.0.0" } - "@oclif/plugin-warn-if-update-available@2.1.1": + "@oclif/plugin-warn-if-update-available@2.0.18": resolution: { - integrity: sha512-y7eSzT6R5bmTIJbiMMXgOlbBpcWXGlVhNeQJBLBCCy1+90Wbjyqf6uvY0i2WcO4sh/THTJ20qCW80j3XUlgDTA==, + integrity: sha512-FmfMpsC/lhWgtUpN++LxKiWYhnTwDjeJPsENzZHi49opkzol2oT45Cw2tFYA8qW+CngRBrHWI72tTJ1KSsRbEA==, } engines: { node: ">=12.0.0" } - "@oclif/screen@3.0.8": + "@oclif/screen@3.0.4": resolution: { - integrity: sha512-yx6KAqlt3TAHBduS2fMQtJDL2ufIHnDRArrJEOoTTuizxqmjLT+psGYOHpmMl3gvQpFJ11Hs76guUUktzAF9Bg==, + integrity: sha512-IMsTN1dXEXaOSre27j/ywGbBjrzx0FNd1XmuhCWCB9NTPrhWI1Ifbz+YLSEcstfQfocYsrbrIessxXb2oon4lA==, } engines: { node: ">=12.0.0" } - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + deprecated: Deprecated in favor of @oclif/core "@octokit/auth-token@2.5.0": resolution: @@ -4979,134 +4591,141 @@ packages: integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==, } - "@parcel/watcher-android-arm64@2.5.6": + "@opentelemetry/api@1.4.1": + resolution: + { + integrity: sha512-O2yRJce1GOc6PAy3QxFM4NzFiWzvScDC1/5ihYBL6BUEVdq0XMWN01sppE+H6bBXbaFYipjwFLEWLg5PaSOThA==, + } + engines: { node: ">=8.0.0" } + + "@parcel/watcher-android-arm64@2.5.1": resolution: { - integrity: sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==, + integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==, } engines: { node: ">= 10.0.0" } cpu: [arm64] os: [android] - "@parcel/watcher-darwin-arm64@2.5.6": + "@parcel/watcher-darwin-arm64@2.5.1": resolution: { - integrity: sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==, + integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==, } engines: { node: ">= 10.0.0" } cpu: [arm64] os: [darwin] - "@parcel/watcher-darwin-x64@2.5.6": + "@parcel/watcher-darwin-x64@2.5.1": resolution: { - integrity: sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==, + integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==, } engines: { node: ">= 10.0.0" } cpu: [x64] os: [darwin] - "@parcel/watcher-freebsd-x64@2.5.6": + "@parcel/watcher-freebsd-x64@2.5.1": resolution: { - integrity: sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==, + integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==, } engines: { node: ">= 10.0.0" } cpu: [x64] os: [freebsd] - "@parcel/watcher-linux-arm-glibc@2.5.6": + "@parcel/watcher-linux-arm-glibc@2.5.1": resolution: { - integrity: sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==, + integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==, } engines: { node: ">= 10.0.0" } cpu: [arm] os: [linux] - "@parcel/watcher-linux-arm-musl@2.5.6": + "@parcel/watcher-linux-arm-musl@2.5.1": resolution: { - integrity: sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==, + integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==, } engines: { node: ">= 10.0.0" } cpu: [arm] os: [linux] - "@parcel/watcher-linux-arm64-glibc@2.5.6": + "@parcel/watcher-linux-arm64-glibc@2.5.1": resolution: { - integrity: sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==, + integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==, } engines: { node: ">= 10.0.0" } cpu: [arm64] os: [linux] - "@parcel/watcher-linux-arm64-musl@2.5.6": + "@parcel/watcher-linux-arm64-musl@2.5.1": resolution: { - integrity: sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==, + integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==, } engines: { node: ">= 10.0.0" } cpu: [arm64] os: [linux] - "@parcel/watcher-linux-x64-glibc@2.5.6": + "@parcel/watcher-linux-x64-glibc@2.5.1": resolution: { - integrity: sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==, + integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==, } engines: { node: ">= 10.0.0" } cpu: [x64] os: [linux] - "@parcel/watcher-linux-x64-musl@2.5.6": + "@parcel/watcher-linux-x64-musl@2.5.1": resolution: { - integrity: sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==, + integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==, } engines: { node: ">= 10.0.0" } cpu: [x64] os: [linux] - "@parcel/watcher-win32-arm64@2.5.6": + "@parcel/watcher-win32-arm64@2.5.1": resolution: { - integrity: sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==, + integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==, } engines: { node: ">= 10.0.0" } cpu: [arm64] os: [win32] - "@parcel/watcher-win32-ia32@2.5.6": + "@parcel/watcher-win32-ia32@2.5.1": resolution: { - integrity: sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==, + integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==, } engines: { node: ">= 10.0.0" } cpu: [ia32] os: [win32] - "@parcel/watcher-win32-x64@2.5.6": + "@parcel/watcher-win32-x64@2.5.1": resolution: { - integrity: sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==, + integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==, } engines: { node: ">= 10.0.0" } cpu: [x64] os: [win32] - "@parcel/watcher@2.5.6": + "@parcel/watcher@2.5.1": resolution: { - integrity: sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==, + integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==, } engines: { node: ">= 10.0.0" } - "@peculiar/asn1-schema@2.6.0": + "@peculiar/asn1-schema@2.3.3": resolution: { - integrity: sha512-xNLYLBFTBKkCzEZIw842BxytQQATQv+lDTCEMZ8C196iJcJJMBUZxrhSTxLaohMyKK8QlzRNTRkUmanucnDSqg==, + integrity: sha512-6GptMYDMyWBHTUKndHaDsRZUO/XMSgIns2krxcm2L7SEExRHwawFvSwNBhqNPR9HJwv3MruAiF1bhN0we6j6GQ==, } "@peculiar/json-schema@1.1.12": @@ -5116,24 +4735,17 @@ packages: } engines: { node: ">=8.0.0" } - "@peculiar/webcrypto@1.5.0": + "@peculiar/webcrypto@1.4.1": resolution: { - integrity: sha512-BRs5XUAwiyCDQMsVA9IDvDa7UBR9gAvPHgugOeGng3YN6vJ9JYonyDc0lNczErgtCWtucjR5N7VtaonboD/ezg==, + integrity: sha512-eK4C6WTNYxoI7JOabMoZICiyqRRtJB220bh0Mbj5RwRycleZf9BPyZoxsTvpP0FpmVS2aS13NKOuh5/tN3sIRw==, } engines: { node: ">=10.12.0" } - "@pkgjs/parseargs@0.11.0": - resolution: - { - integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, - } - engines: { node: ">=14" } - - "@pmmmwh/react-refresh-webpack-plugin@0.5.17": + "@pmmmwh/react-refresh-webpack-plugin@0.5.15": resolution: { - integrity: sha512-tXDyE1/jzFsHXjhRZQ3hMl0IVhYe5qula43LDWIhVfjp9G/nT5OQY5AORVOrkEGAUltBJOfOWeETbmhm6kHhuQ==, + integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==, } engines: { node: ">= 10.13" } peerDependencies: @@ -5165,12 +4777,6 @@ packages: integrity: sha512-AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA==, } - "@repeaterjs/repeater@3.0.6": - resolution: - { - integrity: sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==, - } - "@rollup/plugin-graphql@1.1.0": resolution: { @@ -5202,13 +4808,6 @@ packages: zen-observable: optional: true - "@sigstore/bundle@1.1.0": - resolution: - { - integrity: sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - "@sigstore/bundle@4.0.0": resolution: { @@ -5216,52 +4815,31 @@ packages: } engines: { node: ^20.17.0 || >=22.9.0 } - "@sigstore/core@3.1.0": + "@sigstore/core@3.2.0": resolution: { - integrity: sha512-o5cw1QYhNQ9IroioJxpzexmPjfCe7gzafd2RY3qnMpxr4ZEja+Jad/U8sgFpaue6bOaF+z7RVkyKVV44FN+N8A==, + integrity: sha512-kxHrDQ9YgfrWUSXU0cjsQGv8JykOFZQ9ErNKbFPWzk3Hgpwu8x2hHrQ9IdA8yl+j9RTLTC3sAF3Tdq1IQCP4oA==, } engines: { node: ^20.17.0 || >=22.9.0 } - "@sigstore/protobuf-specs@0.2.1": - resolution: - { - integrity: sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - "@sigstore/protobuf-specs@0.5.0": + "@sigstore/protobuf-specs@0.5.1": resolution: { - integrity: sha512-MM8XIwUjN2bwvCg1QvrMtbBmpcSHrkhFSCu1D11NyPvDQ25HEc4oG5/OcQfd/Tlf/OxmKWERDj0zGE23jQaMwA==, + integrity: sha512-/ScWUhhoFasJsSRGTVBwId1loQjjnjAfE4djL6ZhrXRpNCmPTnUKF5Jokd58ILseOMjzET3UrMOtJPS9sYeI0g==, } engines: { node: ^18.17.0 || >=20.5.0 } - "@sigstore/sign@1.0.0": - resolution: - { - integrity: sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - "@sigstore/sign@4.1.0": + "@sigstore/sign@4.1.1": resolution: { - integrity: sha512-Vx1RmLxLGnSUqx/o5/VsCjkuN5L7y+vxEEwawvc7u+6WtX2W4GNa7b9HEjmcRWohw/d6BpATXmvOwc78m+Swdg==, + integrity: sha512-Hf4xglukg0XXQ2RiD5vSoLjdPe8OBUPA8XeVjUObheuDcWdYWrnH/BNmxZCzkAy68MzmNCxXLeurJvs6hcP2OQ==, } engines: { node: ^20.17.0 || >=22.9.0 } - "@sigstore/tuf@1.0.3": - resolution: - { - integrity: sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - "@sigstore/tuf@4.0.1": + "@sigstore/tuf@4.0.2": resolution: { - integrity: sha512-OPZBg8y5Vc9yZjmWCHrlWPMBqW5yd8+wFNl+thMdtcWz3vjVSoJQutF8YkrzI0SLGnkuFof4HSsWUhXrf219Lw==, + integrity: sha512-TCAzTy0xzdP79EnxSjq9KQ3eaR7+FmudLC6eRKknVKZbV7ZNlGLClAAQb/HMNJ5n2OBNk2GT1tEmU0xuPr+SLQ==, } engines: { node: ^20.17.0 || >=22.9.0 } @@ -5272,16 +4850,16 @@ packages: } engines: { node: ^20.17.0 || >=22.9.0 } - "@sinclair/typebox@0.27.10": + "@sinclair/typebox@0.27.8": resolution: { - integrity: sha512-MTBk/3jGLNB2tVxv6uLlFh1iu64iYOQ2PbdOSK3NW8JZsmlaOh2q6sdtKowBhfw8QFLmYNzTW4/oK4uATIi6ZA==, + integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==, } - "@sinclair/typebox@0.34.48": + "@sinclair/typebox@0.34.49": resolution: { - integrity: sha512-kKJTNuK3AQOrgjjotVxMrCn1sUJwM76wMszfq1kdU4uYVJjvEWuFQ6HgvLt4Xz3fSmZlTOxJ/Ie13KnIcWQXFA==, + integrity: sha512-brySQQs7Jtn0joV8Xh9ZV/hZb9Ozb0pmazDIASBkYKCjXrXU3mpcFahmK/z4YDhGkQvP9mWJbVyahdtU5wQA+A==, } "@sindresorhus/is@0.14.0": @@ -5298,10 +4876,10 @@ packages: } engines: { node: ">=10" } - "@sinonjs/commons@3.0.1": + "@sinonjs/commons@3.0.0": resolution: { - integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==, + integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==, } "@sinonjs/fake-timers@10.3.0": @@ -5336,158 +4914,158 @@ packages: peerDependencies: size-limit: 7.0.8 - "@storybook/addon-actions@8.6.14": + "@storybook/addon-actions@8.5.2": resolution: { - integrity: sha512-mDQxylxGGCQSK7tJPkD144J8jWh9IU9ziJMHfB84PKpI/V5ZgqMDnpr2bssTrUaGDqU5e1/z8KcRF+Melhs9pQ==, + integrity: sha512-g0gLesVSFgstUq5QphsLeC1vEdwNHgqo2TE0m+STM47832xbxBwmK6uvBeqi416xZvnt1TTKaaBr4uCRRQ64Ww==, } peerDependencies: - storybook: ^8.6.14 + storybook: ^8.5.2 - "@storybook/addon-backgrounds@8.6.14": + "@storybook/addon-backgrounds@8.5.2": resolution: { - integrity: sha512-l9xS8qWe5n4tvMwth09QxH2PmJbCctEvBAc1tjjRasAfrd69f7/uFK4WhwJAstzBTNgTc8VXI4w8ZR97i1sFbg==, + integrity: sha512-l9WkI4QHfINeFQkW9K0joaM7WweKktwIIyUPEvyoupHT4n9ccJHAlWjH4SBmzwI1j1Zt0G3t+bq8mVk/YK6Fsg==, } peerDependencies: - storybook: ^8.6.14 + storybook: ^8.5.2 - "@storybook/addon-controls@8.6.14": + "@storybook/addon-controls@8.5.2": resolution: { - integrity: sha512-IiQpkNJdiRyA4Mq9mzjZlvQugL/aE7hNgVxBBGPiIZG6wb6Ht9hNnBYpap5ZXXFKV9p2qVI0FZK445ONmAa+Cw==, + integrity: sha512-wkzw2vRff4zkzdvC/GOlB2PlV0i973u8igSLeg34TWNEAa4bipwVHnFfIojRuP9eN1bZL/0tjuU5pKnbTqH7aQ==, } peerDependencies: - storybook: ^8.6.14 + storybook: ^8.5.2 - "@storybook/addon-docs@8.6.14": + "@storybook/addon-docs@8.5.2": resolution: { - integrity: sha512-Obpd0OhAF99JyU5pp5ci17YmpcQtMNgqW2pTXV8jAiiipWpwO++hNDeQmLmlSXB399XjtRDOcDVkoc7rc6JzdQ==, + integrity: sha512-pRLJ/Qb/3XHpjS7ZAMaOZYtqxOuI8wPxVKYQ6n5rfMSj2jFwt5tdDsEJdhj2t5lsY8HrzEZi8ExuW5I5RoUoIQ==, } peerDependencies: - storybook: ^8.6.14 + storybook: ^8.5.2 - "@storybook/addon-essentials@8.6.14": + "@storybook/addon-essentials@8.5.2": resolution: { - integrity: sha512-5ZZSHNaW9mXMOFkoPyc3QkoNGdJHETZydI62/OASR0lmPlJ1065TNigEo5dJddmZNn0/3bkE8eKMAzLnO5eIdA==, + integrity: sha512-MfojJKxDg0bnjOE0MfLSaPweAud1Esjaf1D9M8EYnpeFnKGZApcGJNRpHCDiHrS5BMr8hHa58RDVc7ObFTI4Dw==, } peerDependencies: - storybook: ^8.6.14 + storybook: ^8.5.2 - "@storybook/addon-highlight@8.6.14": + "@storybook/addon-highlight@8.5.2": resolution: { - integrity: sha512-4H19OJlapkofiE9tM6K/vsepf4ir9jMm9T+zw5L85blJZxhKZIbJ6FO0TCG9PDc4iPt3L6+aq5B0X29s9zicNQ==, + integrity: sha512-QjJfY+8e1bi6FeGfVlgxzv/I8DUyC83lZq8zfTY7nDUCVdmKi8VzmW0KgDo5PaEOFKs8x6LKJa+s5O0gFQaJMw==, } peerDependencies: - storybook: ^8.6.14 + storybook: ^8.5.2 - "@storybook/addon-interactions@8.6.14": + "@storybook/addon-interactions@8.5.2": resolution: { - integrity: sha512-8VmElhm2XOjh22l/dO4UmXxNOolGhNiSpBcls2pqWSraVh4a670EyYBZsHpkXqfNHo2YgKyZN3C91+9zfH79qQ==, + integrity: sha512-Gn9Egk2OS0BkkHd671Y0pIqBr4noAOLUfnpxhHE8r0Tt7FmJFeVSN+dqK7hQeUmKL5jdSY25FTYROg65JmtGOA==, } peerDependencies: - storybook: ^8.6.14 + storybook: ^8.5.2 - "@storybook/addon-measure@8.6.14": + "@storybook/addon-measure@8.5.2": resolution: { - integrity: sha512-1Tlyb72NX8aAqm6I6OICsUuGOP6hgnXcuFlXucyhKomPa6j3Eu2vKu561t/f0oGtAK2nO93Z70kVaEh5X+vaGw==, + integrity: sha512-g7Kvrx8dqzeYWetpWYVVu4HaRzLAZVlOAlZYNfCH/aJHcFKp/p5zhPXnZh8aorxeCLHW1QSKcliaA4BNPEvTeg==, } peerDependencies: - storybook: ^8.6.14 + storybook: ^8.5.2 - "@storybook/addon-onboarding@8.6.17": + "@storybook/addon-onboarding@8.5.2": resolution: { - integrity: sha512-RNNWDxy9IjWMjlnKnOigOBOjNE3w8yfeZuTOVrpueKB+qNSc3zxM0uS569/+M0zgx1WYAApV69jD2MWnqWstDg==, + integrity: sha512-IViKQdBTuF2KSOrhyyq2soT0Je90AZbAAM5SLrVF7Q4H/Pc2lbf1JX8WwAOW2RKH2o7/U2Mvl0SXqNNcwLZC1A==, } peerDependencies: - storybook: ^8.6.17 + storybook: ^8.5.2 - "@storybook/addon-outline@8.6.14": + "@storybook/addon-outline@8.5.2": resolution: { - integrity: sha512-CW857JvN6OxGWElqjlzJO2S69DHf+xO3WsEfT5mT3ZtIjmsvRDukdWfDU9bIYUFyA2lFvYjncBGjbK+I91XR7w==, + integrity: sha512-laMVLT1xluSqMa2mMzmS1kdKcjX0HI9Fw+7pM3r4drtGWtxpyBT32YFqKfWFIBhcd364ti2tDUz9FlygGQ1rKw==, } peerDependencies: - storybook: ^8.6.14 + storybook: ^8.5.2 - "@storybook/addon-toolbars@8.6.14": + "@storybook/addon-toolbars@8.5.2": resolution: { - integrity: sha512-W/wEXT8h3VyZTVfWK/84BAcjAxTdtRiAkT2KAN0nbSHxxB5KEM1MjKpKu2upyzzMa3EywITqbfy4dP6lpkVTwQ==, + integrity: sha512-gHQtVCiq7HRqdYQLOmX8nhtV1Lqz4tOCj4BVodwwf8fUcHyNor+2FvGlQjngV2pIeCtxiM/qmG63UpTBp57ZMA==, } peerDependencies: - storybook: ^8.6.14 + storybook: ^8.5.2 - "@storybook/addon-viewport@8.6.14": + "@storybook/addon-viewport@8.5.2": resolution: { - integrity: sha512-gNzVQbMqRC+/4uQTPI2ZrWuRHGquTMZpdgB9DrD88VTEjNudP+J6r8myLfr2VvGksBbUMHkGHMXHuIhrBEnXYA==, + integrity: sha512-W+7nrMQmxHcUNGsXjmb/fak1mD0a5vf4y1hBhSM7/131t8KBsvEu4ral8LTUhc4ZzuU1eIUM0Qth7SjqHqm5bA==, } peerDependencies: - storybook: ^8.6.14 + storybook: ^8.5.2 - "@storybook/addon-webpack5-compiler-swc@4.0.2": + "@storybook/addon-webpack5-compiler-swc@4.0.3": resolution: { - integrity: sha512-I/B4zXnpk+wLs2YA/VcCzUjF/TtB26X4zIoXw3xaPPUvk5aPc76/dhmZHLMXkICQEur5FkFQv0YGHNxWHbhnfw==, + integrity: sha512-REJZBArIBcqzxmhQY9R1br9hjfcFYdl4FeWD/okx1eRwPZkl49aUhTYqZPrA+MWXfKJkuuNQ5vnfSoR0c9HyvA==, } engines: { node: ">=18" } peerDependencies: - storybook: ^9.0.0 || ^10.0.0-0 || ^10.1.0-0 || ^10.2.0-0 || ^10.3.0-0 + storybook: ^9.0.0 || ^10.0.0-0 || ^10.1.0-0 || ^10.2.0-0 || ^10.3.0-0 || ^10.4.0-0 - "@storybook/blocks@8.6.14": + "@storybook/blocks@8.5.2": resolution: { - integrity: sha512-rBMHAfA39AGHgkrDze4RmsnQTMw1ND5fGWobr9pDcJdnDKWQWNRD7Nrlxj0gFlN3n4D9lEZhWGdFrCbku7FVAQ==, + integrity: sha512-C6Bz/YTG5ZuyAzglqgqozYUWaS39j1PnkVuMNots6S3Fp8ZJ6iZOlQ+rpumiuvnbfD5rkEZG+614RWNyNlFy7g==, } peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - storybook: ^8.6.14 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + storybook: ^8.5.2 peerDependenciesMeta: react: optional: true react-dom: optional: true - "@storybook/builder-webpack5@8.6.17": + "@storybook/builder-webpack5@8.5.2": resolution: { - integrity: sha512-QK0HuTLn/doWQNu/tBC8tP0DrQLqyZk/IeYaxYh43G3igsYHI+yTIG//lHLSRFqkJM6tFT2SIJO8xExE/MCMGQ==, + integrity: sha512-P4zpavhy9cL1GtITlFp1amTgNSfaQyi60jJwi7joUj0z4RRyBr8YpGi5il9PlaxiY2HROsCdKJftTNzWn058yA==, } peerDependencies: - storybook: ^8.6.17 + storybook: ^8.5.2 typescript: "*" peerDependenciesMeta: typescript: optional: true - "@storybook/components@8.6.17": + "@storybook/components@8.5.2": resolution: { - integrity: sha512-0b8xkkuPCNbM8LTOzyfxuo2KdJCHIfu3+QxWBFllXap0eYNHwVeSxE5KERQ/bk2GDCiRzaUbwH9PeLorxOzJJQ==, + integrity: sha512-o5vNN30sGLTJBeGk5SKyekR4RfTpBTGs2LDjXGAmpl2MRhzd62ix8g+KIXSR0rQ55TCvKUl5VR2i99ttlRcEKw==, } peerDependencies: storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 - "@storybook/core-webpack@8.6.17": + "@storybook/core-webpack@8.5.2": resolution: { - integrity: sha512-q8acHGExmDdqUyzYoPrxp52bUQ3pEskXlcZIETReb3++pATv7zlSghPVA283O9jgj9jYfz9VYyRjW3vqzIzi0A==, + integrity: sha512-r+s3zNojxl370CCCmvj0A+N27fW6zjRODQ7jsHWGSQzTDIz5Vj68rJBIOffr/27nN9r/JtbXbwxuO2UfqMqcqA==, } peerDependencies: - storybook: ^8.6.17 + storybook: ^8.5.2 - "@storybook/core@8.6.17": + "@storybook/core@8.5.2": resolution: { - integrity: sha512-lndZDYIvUddWk54HmgYwE4h2B0JtWt8ztIRAzHRt6ReZZ9QQbmM5b85Qpa+ng4dyQEKc2JAtYD3Du7RRFcpHlw==, + integrity: sha512-rCOpXZo2XbdKVnZiv8oC9FId/gLkStpKGGL7hhdg/RyjcyUyTfhsvaf7LXKZH2A0n/UpwFxhF3idRfhgc1XiSg==, } peerDependencies: prettier: ^2 || ^3 @@ -5495,73 +5073,63 @@ packages: prettier: optional: true - "@storybook/csf-plugin@8.6.14": + "@storybook/csf-plugin@8.5.2": resolution: { - integrity: sha512-dErtc9teAuN+eelN8FojzFE635xlq9cNGGGEu0WEmMUQ4iJ8pingvBO1N8X3scz4Ry7KnxX++NNf3J3gpxS8qQ==, + integrity: sha512-EEQ3Vc9qIUbLH8tunzN/GSoyP3zPpNPKegZooYQbgVqA582Pel4Jnpn4uxGaOWtFCLhXMETV05X/7chGZtEujA==, } peerDependencies: - storybook: ^8.6.14 + storybook: ^8.5.2 - "@storybook/global@5.0.0": + "@storybook/csf@0.1.12": resolution: { - integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==, - } - - "@storybook/icons@1.6.0": - resolution: - { - integrity: sha512-hcFZIjW8yQz8O8//2WTIXylm5Xsgc+lW9ISLgUk1xGmptIJQRdlhVIXCpSyLrQaaRiyhQRaVg7l3BD9S216BHw==, + integrity: sha512-9/exVhabisyIVL0VxTCxo01Tdm8wefIXKXfltAPTSr8cbLn5JAxGQ6QV3mjdecLGEOucfoVhAKtJfVHxEK1iqw==, } - engines: { node: ">=14.0.0" } - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - "@storybook/instrumenter@8.6.14": + "@storybook/global@5.0.0": resolution: { - integrity: sha512-iG4MlWCcz1L7Yu8AwgsnfVAmMbvyRSk700Mfy2g4c8y5O+Cv1ejshE1LBBsCwHgkuqU0H4R0qu4g23+6UnUemQ==, + integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==, } - peerDependencies: - storybook: ^8.6.14 - "@storybook/instrumenter@8.6.15": + "@storybook/icons@1.3.2": resolution: { - integrity: sha512-TvHR/+yyIAOp/1bLulFai2kkhIBtAlBw7J6Jd9DKyInoGhTWNE1G1Y61jD5GWXX29AlwaHfzGUaX5NL1K+FJpg==, + integrity: sha512-t3xcbCKkPvqyef8urBM0j/nP6sKtnlRkVgC+8JTbTAZQjaTmOjes3byEgzs89p4B/K6cJsg9wLW2k3SknLtYJw==, } + engines: { node: ">=14.0.0" } peerDependencies: - storybook: ^8.6.15 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - "@storybook/instrumenter@8.6.17": + "@storybook/instrumenter@8.5.2": resolution: { - integrity: sha512-uPqC0sPY2tYGkEVi1x+L4hvhkTwxT16B/LB8xIXh68co3gR8vY6wVskoBp2tM7LSUGl08U2ksZWxyTo1DaQY5Q==, + integrity: sha512-BbaUw9GXVzRg3Km95t2mRu4W6C1n1erjzll5maBaVe2+lV9MbCvBcdYwGUgjFNlQ/ETgq6vLfLOEtziycq/B6g==, } peerDependencies: - storybook: ^8.6.17 + storybook: ^8.5.2 - "@storybook/manager-api@8.6.17": + "@storybook/manager-api@8.5.2": resolution: { - integrity: sha512-sPJytvClNrw5GgKcPletMTxDOAYcTRA8VRt9E+ncKvPSYHtPDqLfGTgWajXmt0hRsiBUN5bOgLS9bmNjNQWhrw==, + integrity: sha512-Cn+oINA6BOO2GmGHinGsOWnEpoBnurlZ9ekMq7H/c1SYMvQWNg5RlELyrhsnyhNd83fqFZy9Asb0RXI8oqz7DQ==, } peerDependencies: storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 - "@storybook/nextjs@8.6.17": + "@storybook/nextjs@8.5.2": resolution: { - integrity: sha512-e81LGqZKVHIAPJBfkk/35YjUPTqmH+q8EZ1+qxeSM9bh+qa1PtSMBvUbOlAwMaRR21bnf8uAAncJJIdAY4ffTg==, + integrity: sha512-dvpoTWhVqeKAWDbCJtiH3oTLIw68Dn1v3PJsrJLRj8OFYEAAOQuUI8OlzVEz9R88d0D560y8F7xWJ7MGpo6Ifw==, } engines: { node: ">=18.0.0" } peerDependencies: next: ^13.5.0 || ^14.0.0 || ^15.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - storybook: ^8.6.17 + storybook: ^8.5.2 typescript: "*" webpack: ^5.0.0 peerDependenciesMeta: @@ -5570,25 +5138,25 @@ packages: webpack: optional: true - "@storybook/preset-react-webpack@8.6.17": + "@storybook/preset-react-webpack@8.5.2": resolution: { - integrity: sha512-gMEc6BL8hQIXwOK6yeDc9PMgHKJO6wNM2c8Cttmk9oZeq1YzwIdrQjcLVdKYINGVaQRqLFBvLTmCzz/qPtI5qg==, + integrity: sha512-CpRunaOl4tB7Z+1dQEG/LSAdwnCZCaKdfn+Q71k6Pk1vpR6aFlhVbbVP5kgt47vimHDKYKYBQKudP+5IjJNvFA==, } engines: { node: ">=18.0.0" } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - storybook: ^8.6.17 + storybook: ^8.5.2 typescript: "*" peerDependenciesMeta: typescript: optional: true - "@storybook/preview-api@8.6.17": + "@storybook/preview-api@8.5.2": resolution: { - integrity: sha512-vpTCTkw11wXerYnlG5Q0y4SbFqG9O6GhR0hlYgCn3Z9kcHlNjK/xuwd3h4CvwNXxRNWZGT8qYYCLn5gSSrX6fA==, + integrity: sha512-AOOaBjwnkFU40Fi68fvAnK0gMWPz6o/AmH44yDGsHgbI07UgqxLBKCTpjCGPlyQd5ezEjmGwwFTmcmq5dG8DKA==, } peerDependencies: storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 @@ -5602,37 +5170,27 @@ packages: typescript: ">= 4.x" webpack: ">= 4" - "@storybook/react-dom-shim@8.6.14": - resolution: - { - integrity: sha512-0hixr3dOy3f3M+HBofp3jtMQMS+sqzjKNgl7Arfuj3fvjmyXOks/yGjDImySR4imPtEllvPZfhiQNlejheaInw==, - } - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - storybook: ^8.6.14 - - "@storybook/react-dom-shim@8.6.17": + "@storybook/react-dom-shim@8.5.2": resolution: { - integrity: sha512-bHLsR9b/tiwm9lXbN8kp9XlOgkRXeg84UFwXaWBPu3pOO7vRXukk23SQUpLW+HhjKtCJ3xClSi5uMpse5MpkVQ==, + integrity: sha512-lt7XoaeWI8iPlWnWzIm/Wam9TpRFhlqP0KZJoKwDyHiCByqkeMrw5MJREyWq626nf34bOW8D6vkuyTzCHGTxKg==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - storybook: ^8.6.17 + storybook: ^8.5.2 - "@storybook/react@8.6.17": + "@storybook/react@8.5.2": resolution: { - integrity: sha512-yoOzgyZ2VXPJBmvcKS4EVoAf7SJxXbMBcLjWGvmWdDnS+hd7S9cHG/SbgQ+9/vgiLUc+uEuvQjiKrwY3iOA5rg==, + integrity: sha512-hWzw9ZllfzsaBJdAoEqPQ2GdVNV4c7PkvIWM6z67epaOHqsdsKScbTMe+YAvFMPtLtOO8KblIrtU5PeD4KyMgw==, } engines: { node: ">=18.0.0" } peerDependencies: - "@storybook/test": 8.6.17 + "@storybook/test": 8.5.2 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - storybook: ^8.6.17 + storybook: ^8.5.2 typescript: ">= 4.2.x" peerDependenciesMeta: "@storybook/test": @@ -5640,132 +5198,134 @@ packages: typescript: optional: true - "@storybook/test@8.6.14": - resolution: - { - integrity: sha512-GkPNBbbZmz+XRdrhMtkxPotCLOQ1BaGNp/gFZYdGDk2KmUWBKmvc5JxxOhtoXM2703IzNFlQHSSNnhrDZYuLlw==, - } - peerDependencies: - storybook: ^8.6.14 - - "@storybook/test@8.6.15": - resolution: - { - integrity: sha512-EwquDRUDVvWcZds3T2abmB5wSN/Vattal4YtZ6fpBlIUqONV4o/cOBX39cFfQSUCBrIXIjQ6RmapQCHK/PvBYw==, - } - peerDependencies: - storybook: ^8.6.15 - - "@storybook/test@8.6.17": + "@storybook/test@8.5.2": resolution: { - integrity: sha512-VTuCylXGQrFDZXqZ29+yvJ+A4TZ69jG72rLjiic8hI0SOt87AC/8X1NaYvd2NS4TY0G0PwqtxmKeig8qRDrhNg==, + integrity: sha512-F5WfD75m25ZRS19cSxCzHWJ/rH8jWwIjhBlhU+UW+5xjnTS1cJuC1yPT/5Jw0/0Aj9zG1atyfBUYnNHYtsBDYQ==, } peerDependencies: - storybook: ^8.6.17 + storybook: ^8.5.2 - "@storybook/theming@8.6.17": + "@storybook/theming@8.5.2": resolution: { - integrity: sha512-IttFvRqozpuzN5MlQEWGOzUA2rZg86688Dyv1d+bjpYcFHtY1X4XyTCGwv1BPTaTsB959oM8R2yoNYWQkABbBA==, + integrity: sha512-vro8vJx16rIE0UehawEZbxFFA4/VGYS20PMKP6Y6Fpsce0t2/cF/U9qg3jOzVb/XDwfx+ne3/V+8rjfWx8wwJw==, } peerDependencies: storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 - "@swc/core-darwin-arm64@1.15.18": + "@swc/core-darwin-arm64@1.15.30": resolution: { - integrity: sha512-+mIv7uBuSaywN3C9LNuWaX1jJJ3SKfiJuE6Lr3bd+/1Iv8oMU7oLBjYMluX1UrEPzwN2qCdY6Io0yVicABoCwQ==, + integrity: sha512-VvpP+vq08HmGYewMWvrdsxh9s2lthz/808zXm8Yu5kaqeR8Yia2b0eYXleHQ3VAjoStUDk6LzTheBW9KXYQdMA==, } engines: { node: ">=10" } cpu: [arm64] os: [darwin] - "@swc/core-darwin-x64@1.15.18": + "@swc/core-darwin-x64@1.15.30": resolution: { - integrity: sha512-wZle0eaQhnzxWX5V/2kEOI6Z9vl/lTFEC6V4EWcn+5pDjhemCpQv9e/TDJ0GIoiClX8EDWRvuZwh+Z3dhL1NAg==, + integrity: sha512-WiJA0hiZI3nwQAO6mu5RqigtWGDtth4Hiq6rbZxAaQyhIcqKIg5IoMRc1Y071lrNJn29eEDMC86Rq58xgUxlDg==, } engines: { node: ">=10" } cpu: [x64] os: [darwin] - "@swc/core-linux-arm-gnueabihf@1.15.18": + "@swc/core-linux-arm-gnueabihf@1.15.30": resolution: { - integrity: sha512-ao61HGXVqrJFHAcPtF4/DegmwEkVCo4HApnotLU8ognfmU8x589z7+tcf3hU+qBiU1WOXV5fQX6W9Nzs6hjxDw==, + integrity: sha512-YANuFUo48kIT6plJgCD0keae9HFXfjxsbvsgevqc0hr/07X/p7sAWTFOGYEc2SXcASaK7UvuQqzlbW8pr7R79g==, } engines: { node: ">=10" } cpu: [arm] os: [linux] - "@swc/core-linux-arm64-gnu@1.15.18": + "@swc/core-linux-arm64-gnu@1.15.30": resolution: { - integrity: sha512-3xnctOBLIq3kj8PxOCgPrGjBLP/kNOddr6f5gukYt/1IZxsITQaU9TDyjeX6jG+FiCIHjCuWuffsyQDL5Ew1bg==, + integrity: sha512-VndG8jaR4ugY6u+iVOT0Q+d2fZd7sLgjPgN8W/Le+3EbZKl+cRfFxV7Eoz4gfLqhmneZPdcIzf9T3LkgkmqNLg==, } engines: { node: ">=10" } cpu: [arm64] os: [linux] - "@swc/core-linux-arm64-musl@1.15.18": + "@swc/core-linux-arm64-musl@1.15.30": resolution: { - integrity: sha512-0a+Lix+FSSHBSBOA0XznCcHo5/1nA6oLLjcnocvzXeqtdjnPb+SvchItHI+lfeiuj1sClYPDvPMLSLyXFaiIKw==, + integrity: sha512-1SYGs2l0Yyyi0pR/P/NKz/x0kqxkoiw+BXeJjLUdecSk/KasncWlJrc6hOvFSgKHOBrzgM5jwuluKtlT8dnrcA==, } engines: { node: ">=10" } cpu: [arm64] os: [linux] - "@swc/core-linux-x64-gnu@1.15.18": + "@swc/core-linux-ppc64-gnu@1.15.30": resolution: { - integrity: sha512-wG9J8vReUlpaHz4KOD/5UE1AUgirimU4UFT9oZmupUDEofxJKYb1mTA/DrMj0s78bkBiNI+7Fo2EgPuvOJfuAA==, + integrity: sha512-TXREtiXeRhbfDFbmhnkIsXpKfzbfT73YkV2ZF6w0sfxgjC5zI2ZAbaCOq25qxvegofj2K93DtOpm9RLaBgqR2g==, + } + engines: { node: ">=10" } + cpu: [ppc64] + os: [linux] + + "@swc/core-linux-s390x-gnu@1.15.30": + resolution: + { + integrity: sha512-DCR2YYeyd6DQE4OuDhImouuNcjXEiEdnn1Y0DyGteugPEDvVuvYk8Xddi+4o2SgWH6jiW8/I+3emZvbep1NC+g==, + } + engines: { node: ">=10" } + cpu: [s390x] + os: [linux] + + "@swc/core-linux-x64-gnu@1.15.30": + resolution: + { + integrity: sha512-5Pizw3NgfOJ5BJOBK8TIRa59xFW2avESTOBDPTAYwZYa1JNDs+KMF9lUfjJiJLM5HiMs/wPheA9eiT0q9m2AoA==, } engines: { node: ">=10" } cpu: [x64] os: [linux] - "@swc/core-linux-x64-musl@1.15.18": + "@swc/core-linux-x64-musl@1.15.30": resolution: { - integrity: sha512-4nwbVvCphKzicwNWRmvD5iBaZj8JYsRGa4xOxJmOyHlMDpsvvJ2OR2cODlvWyGFH6BYL1MfIAK3qph3hp0Az6g==, + integrity: sha512-qyqydP/wyH8alcIP4a2hnGSjHLJjm9H7yDFup+CPy9oTahFgLLwnNcv5UHXqO2Qs3AIND+cls5f/Bb6hqpxdgA==, } engines: { node: ">=10" } cpu: [x64] os: [linux] - "@swc/core-win32-arm64-msvc@1.15.18": + "@swc/core-win32-arm64-msvc@1.15.30": resolution: { - integrity: sha512-zk0RYO+LjiBCat2RTMHzAWaMky0cra9loH4oRrLKLLNuL+jarxKLFDA8xTZWEkCPLjUTwlRN7d28eDLLMgtUcQ==, + integrity: sha512-CaQENgDHVGOg1mSF5sQVgvfFHG9kjMor2rkLMLeLOkfZYNj13ppnJ9+lfaBZLZUMMbnlGQnavCJb8PVBUOso7Q==, } engines: { node: ">=10" } cpu: [arm64] os: [win32] - "@swc/core-win32-ia32-msvc@1.15.18": + "@swc/core-win32-ia32-msvc@1.15.30": resolution: { - integrity: sha512-yVuTrZ0RccD5+PEkpcLOBAuPbYBXS6rslENvIXfvJGXSdX5QGi1ehC4BjAMl5FkKLiam4kJECUI0l7Hq7T1vwg==, + integrity: sha512-30VdLeGk6fugiUs/kUdJ/pAg7z/zpvVbR11RH60jZ0Z42WIeIniYx0rLEWN7h/pKJ3CopqsQ3RsogCAkRKiA2g==, } engines: { node: ">=10" } cpu: [ia32] os: [win32] - "@swc/core-win32-x64-msvc@1.15.18": + "@swc/core-win32-x64-msvc@1.15.30": resolution: { - integrity: sha512-7NRmE4hmUQNCbYU3Hn9Tz57mK9Qq4c97ZS+YlamlK6qG9Fb5g/BB3gPDe0iLlJkns/sYv2VWSkm8c3NmbEGjbg==, + integrity: sha512-4iObHPR+Q4oDY110EF5SF5eIaaVJNpMdG9C0q3Q92BsJ5y467uHz7sYQhP60WYlLFsLQ1el2YrIPUItUAQGOKg==, } engines: { node: ">=10" } cpu: [x64] os: [win32] - "@swc/core@1.15.18": + "@swc/core@1.15.30": resolution: { - integrity: sha512-z87aF9GphWp//fnkRsqvtY+inMVPgYW3zSlXH1kJFvRT5H/wiAn+G32qW5l3oEk63KSF1x3Ov0BfHCObAmT8RA==, + integrity: sha512-R8VQbQY1BZcbIF2p3gjlTCwAQzx1A194ugWfwld5y+WgVVWqVKm7eURGGOVbQVubgKWzidP2agomBbg96rZilQ==, } engines: { node: ">=10" } peerDependencies: @@ -5792,10 +5352,10 @@ packages: integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==, } - "@swc/types@0.1.25": + "@swc/types@0.1.26": resolution: { - integrity: sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g==, + integrity: sha512-lyMwd7WGgG79RS7EERZV3T8wMdmPq3xwyg+1nmAM64kIhx5yl+juO2PYIHb7vTiPgPCj8LYjsNV2T5wiQHUEaw==, } "@szmarczak/http-timer@1.1.2": @@ -5812,14 +5372,14 @@ packages: } engines: { node: ">=10" } - "@testing-library/cypress@10.1.0": + "@testing-library/cypress@10.0.1": resolution: { - integrity: sha512-tNkNtYRqPQh71xXKuMizr146zlellawUfDth7A/urYU4J66g0VGZ063YsS0gqS79Z58u1G/uo9UxN05qvKXMag==, + integrity: sha512-e8uswjTZIBhaIXjzEcrQQ8nHRWHgZH7XBxKuIWxZ/T7FxfWhCR48nFhUX5nfPizjVOKSThEfOSv67jquc1ASkw==, } engines: { node: ">=12", npm: ">=6" } peerDependencies: - cypress: ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 + cypress: ^12.0.0 || ^13.0.0 "@testing-library/dom@10.4.0": resolution: @@ -5828,17 +5388,10 @@ packages: } engines: { node: ">=18" } - "@testing-library/dom@10.4.1": - resolution: - { - integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==, - } - engines: { node: ">=18" } - - "@testing-library/dom@9.3.4": + "@testing-library/dom@9.3.3": resolution: { - integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==, + integrity: sha512-fB0R+fa3AUqbLHWyxXa2kGVtf1Fe1ZZFr0Zp6AIbIAzXb2mKbEXl+PCQNUOaq5lbTab5tfctfXRNsWXxa2f7Aw==, } engines: { node: ">=14" } @@ -5849,13 +5402,6 @@ packages: } engines: { node: ">=14", npm: ">=6", yarn: ">=1" } - "@testing-library/jest-dom@6.9.1": - resolution: - { - integrity: sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==, - } - engines: { node: ">=14", npm: ">=6", yarn: ">=1" } - "@testing-library/react@14.3.1": resolution: { @@ -5875,15 +5421,6 @@ packages: peerDependencies: "@testing-library/dom": ">=7.21.4" - "@theguild/federation-composition@0.21.3": - resolution: - { - integrity: sha512-+LlHTa4UbRpZBog3ggAxjYIFvdfH3UMvvBUptur19TMWkqU4+n3GmN+mDjejU+dyBXIG27c25RsiQP1HyvM99g==, - } - engines: { node: ">=18" } - peerDependencies: - graphql: ^16.0.0 - "@tootallnate/once@1.1.2": resolution: { @@ -5898,10 +5435,10 @@ packages: } engines: { node: ">= 10" } - "@tsconfig/node10@1.0.12": + "@tsconfig/node10@1.0.9": resolution: { - integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==, + integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==, } "@tsconfig/node12@1.0.11": @@ -5916,18 +5453,11 @@ packages: integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==, } - "@tsconfig/node16@1.0.4": - resolution: - { - integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==, - } - - "@tufjs/canonical-json@1.0.0": + "@tsconfig/node16@1.0.3": resolution: { - integrity: sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==, + integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==, } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } "@tufjs/canonical-json@2.0.0": resolution: @@ -5936,13 +5466,6 @@ packages: } engines: { node: ^16.14.0 || >=18.0.0 } - "@tufjs/models@1.0.4": - resolution: - { - integrity: sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - "@tufjs/models@4.1.0": resolution: { @@ -5956,10 +5479,10 @@ packages: integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==, } - "@types/aria-query@5.0.4": + "@types/aria-query@5.0.1": resolution: { - integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==, + integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==, } "@types/babel__core@7.20.5": @@ -5968,28 +5491,28 @@ packages: integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==, } - "@types/babel__generator@7.27.0": + "@types/babel__generator@7.6.4": resolution: { - integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==, + integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==, } - "@types/babel__template@7.4.4": + "@types/babel__template@7.4.1": resolution: { - integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==, + integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==, } - "@types/babel__traverse@7.28.0": + "@types/babel__traverse@7.20.6": resolution: { - integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==, + integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==, } - "@types/body-parser@1.19.6": + "@types/body-parser@1.19.2": resolution: { - integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==, + integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==, } "@types/cacheable-request@6.0.3": @@ -5998,22 +5521,16 @@ packages: integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==, } - "@types/chai@4.3.20": + "@types/chai@4.3.4": resolution: { - integrity: sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ==, + integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==, } - "@types/cli-progress@3.11.6": + "@types/connect@3.4.35": resolution: { - integrity: sha512-cE3+jb9WRlu+uOSAugewNpITJDt1VF8dHOopPO4IABFc3SXYL5WE/+PTz/FCdZRRfIujiWW3n3aMbv1eIGVRWA==, - } - - "@types/connect@3.4.38": - resolution: - { - integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==, + integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==, } "@types/cookie@0.6.0": @@ -6022,12 +5539,12 @@ packages: integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==, } - "@types/cypress@1.1.6": + "@types/cypress@1.1.3": resolution: { - integrity: sha512-CfeLLD3+6vIWe2AO5hR63f1c8EbRzrp/j1ExubAwOTpwZFZvF3Nm9cOPQiUwzNmAUmZuhO0QVH98Qlujni6nPw==, + integrity: sha512-OXe0Gw8LeCflkG1oPgFpyrYWJmEKqYncBsD/J0r17r0ETx/TnIGDNLwXt/pFYSYuYTpzcq1q3g62M9DrfsBL4g==, } - deprecated: This is a stub types definition. cypress provides its own type definitions, so you do not need this installed. + deprecated: This is a stub types definition for cypress (https://cypress.io). cypress provides its own type definitions, so you don't need @types/cypress installed! "@types/degit@2.8.6": resolution: @@ -6053,10 +5570,10 @@ packages: integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==, } - "@types/estree@1.0.8": + "@types/estree@1.0.6": resolution: { - integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==, + integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==, } "@types/expect@1.20.4": @@ -6065,16 +5582,16 @@ packages: integrity: sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==, } - "@types/express-serve-static-core@4.19.8": + "@types/express-serve-static-core@4.17.33": resolution: { - integrity: sha512-02S5fmqeoKzVZCHPZid4b8JH2eM5HzQLZWN2FohQEy/0eXTq8VXZfSN6Pcr3F6N9R/vNrj7cpgbhjie6m/1tCA==, + integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==, } - "@types/express@4.17.25": + "@types/express@4.17.16": resolution: { - integrity: sha512-dVd04UKsfpINUnK0yBoYHDF3xu7xVH4BuDotC/xGuycx4CgbP48X/KF/586bcObxT0HENHXEU8Nqtu6NR+eKhw==, + integrity: sha512-LkKpqRZ7zqXJuvoELakaFYuETHjZkSol8EV6cNnyishutDBCCdv6+dsKPbKkCcIk57qRphOLY5sEgClw1bO3gA==, } "@types/fs-extra@9.0.13": @@ -6083,10 +5600,10 @@ packages: integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==, } - "@types/graceful-fs@4.1.9": + "@types/graceful-fs@4.1.6": resolution: { - integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==, + integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==, } "@types/html-minifier-terser@6.1.0": @@ -6095,34 +5612,28 @@ packages: integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==, } - "@types/http-cache-semantics@4.2.0": - resolution: - { - integrity: sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q==, - } - - "@types/http-errors@2.0.5": + "@types/http-cache-semantics@4.0.1": resolution: { - integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==, + integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==, } - "@types/istanbul-lib-coverage@2.0.6": + "@types/istanbul-lib-coverage@2.0.4": resolution: { - integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==, + integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==, } - "@types/istanbul-lib-report@3.0.3": + "@types/istanbul-lib-report@3.0.0": resolution: { - integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==, + integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==, } - "@types/istanbul-reports@3.0.4": + "@types/istanbul-reports@3.0.1": resolution: { - integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==, + integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==, } "@types/jest-axe@3.5.9": @@ -6137,10 +5648,10 @@ packages: integrity: sha512-CqlKkMNaUhFSRvqVKniNhbcy9fc/Rj2cmFD5t8Jtu4HlHzSit27h7XKfP5kkxBeROQ8WAvQQmy93FIz9or8jKg==, } - "@types/js-yaml@4.0.9": + "@types/js-yaml@4.0.5": resolution: { - integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==, + integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==, } "@types/jsdom@20.0.1": @@ -6155,12 +5666,11 @@ packages: integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==, } - "@types/json-stable-stringify@1.2.0": + "@types/json-stable-stringify@1.0.36": resolution: { - integrity: sha512-PEHY3ohqolHqAzDyB1+31tFaAMnoLN7x/JgdcGmNZ2uvtEJ6rlFCUYNQc0Xe754xxCYLNGZbLUGydSE6tS4S9A==, + integrity: sha512-b7bq23s4fgBB76n34m2b3RBf6M369B0Z9uRR8aHTMd8kZISRkmDEpPD8hhpYvDFzr3bJCPES96cm3Q6qRNDbQw==, } - deprecated: This is a stub types definition. json-stable-stringify provides its own type definitions, so you do not need this installed. "@types/keyv@3.1.4": resolution: @@ -6168,16 +5678,16 @@ packages: integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==, } - "@types/mdx@2.0.13": + "@types/mdx@2.0.3": resolution: { - integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==, + integrity: sha512-IgHxcT3RC8LzFLhKwP3gbMPeaK7BM9eBH46OdapPA7yvuIUJ8H6zHZV53J8hGZcTSnt95jANt+rTBNUUc22ACQ==, } - "@types/mime@1.3.5": + "@types/mime@3.0.1": resolution: { - integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==, + integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==, } "@types/minimatch@3.0.5": @@ -6204,22 +5714,22 @@ packages: integrity: sha512-qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==, } - "@types/node@16.18.126": + "@types/node@16.18.57": resolution: { - integrity: sha512-OTcgaiwfGFBKacvfwuHzzn1KLxH/er8mluiy8/uM3sGXHaRe73RrSIj01jow9t4kJEW633Ov+cOexXeiApTyAw==, + integrity: sha512-piPoDozdPaX1hNWFJQzzgWqE40gh986VvVx/QO9RU4qYRE55ld7iepDVgZ3ccGUw0R4wge0Oy1dd+3xOQNkkUQ==, } - "@types/node@18.19.130": + "@types/node@18.19.74": resolution: { - integrity: sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg==, + integrity: sha512-HMwEkkifei3L605gFdV+/UwtpxP6JSzM+xFk2Ia6DNFSwSVBRh9qp5Tgf4lNFOMfPVuU0WnkcWpXZpgn5ufO4A==, } - "@types/node@22.19.13": + "@types/node@20.14.9": resolution: { - integrity: sha512-akNQMv0wW5uyRpD2v2IEyRSZiR+BeGuoB6L310EgGObO44HSMNT8z1xzio28V8qOrgYaopIDNA18YgdXd+qTiw==, + integrity: sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==, } "@types/normalize-package-data@2.4.4": @@ -6234,28 +5744,34 @@ packages: integrity: sha512-gFnFp/JMzLHCwRf7tQHrNnfhN4eYBVYYI897CGX4MY1tzY9l2aLkVyx2IlKZ/SAqDbB3I1AOZW5gTMGGsqWliA==, } - "@types/parse-json@4.0.2": + "@types/parse-json@4.0.0": resolution: { - integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==, + integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==, } - "@types/prop-types@15.7.15": + "@types/prop-types@15.7.5": resolution: { - integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==, + integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==, } - "@types/qs@6.14.0": + "@types/qs@6.9.7": resolution: { - integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==, + integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==, } - "@types/range-parser@1.2.7": + "@types/range-parser@1.2.4": resolution: { - integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==, + integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==, + } + + "@types/react-dom@18.2.21": + resolution: + { + integrity: sha512-gnvBA/21SA4xxqNXEwNiVcP0xSGHh/gi1VhWv9Bl46a0ItbTT5nFY+G9VSQpaG/8N/qdJpJ+vftQ4zflTtnjLw==, } "@types/react-dom@18.3.7": @@ -6266,10 +5782,10 @@ packages: peerDependencies: "@types/react": ^18.0.0 - "@types/react@18.3.28": + "@types/react@18.2.42": resolution: { - integrity: sha512-z9VXpC7MWrhfWipitjNdgCauoMLRdIILQsAEV+ZesIzBq/oUlxk0m3ApZuMFCXdnS4U7KrI+l3WRUEGQ8K1QKw==, + integrity: sha512-c1zEr96MjakLYus/wPnuWDo1/zErfdU9rNsIGmE+NV71nx88FG9Ttgo5dqorXTu/LImX2f63WBP986gJkMPNbA==, } "@types/resolve@1.20.6": @@ -6278,40 +5794,34 @@ packages: integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==, } - "@types/responselike@1.0.3": - resolution: - { - integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==, - } - - "@types/sanitize-html@2.16.0": + "@types/responselike@1.0.0": resolution: { - integrity: sha512-l6rX1MUXje5ztPT0cAFtUayXF06DqPhRyfVXareEN5gGCFaP/iwsxIyKODr9XDhfxPpN6vXUFNfo5kZMXCxBtw==, + integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==, } - "@types/semver@7.7.1": + "@types/sanitize-html@2.9.1": resolution: { - integrity: sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==, + integrity: sha512-XSLD0a9P8c+rKUM09KIi5Nd8mOHLHNgXb1G04rpXWa/GqQVpM+knrS9KR9ptj1CeC3gXWGZn75ApH3H6qNbhYA==, } - "@types/send@0.17.6": + "@types/scheduler@0.16.2": resolution: { - integrity: sha512-Uqt8rPBE8SY0RK8JB1EzVOIZ32uqy8HwdxCnoCOsYrvnswqmFZ/k+9Ikidlk/ImhsdvBsloHbAlewb2IEBV/Og==, + integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==, } - "@types/send@1.2.1": + "@types/semver@7.5.8": resolution: { - integrity: sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==, + integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==, } - "@types/serve-static@1.15.10": + "@types/serve-static@1.15.0": resolution: { - integrity: sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw==, + integrity: sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==, } "@types/sinonjs__fake-timers@8.1.1": @@ -6320,22 +5830,22 @@ packages: integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==, } - "@types/sizzle@2.3.10": + "@types/sizzle@2.3.3": resolution: { - integrity: sha512-TC0dmN0K8YcWEAEfiPi5gJP14eJe30TTGjkvek3iM/1NdHHsdCA/Td6GvNndMOo/iSnIsZ4HuuhrYPDAmbxzww==, + integrity: sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==, } - "@types/stack-utils@2.0.3": + "@types/stack-utils@2.0.1": resolution: { - integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==, + integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==, } - "@types/tabbable@3.1.4": + "@types/tabbable@3.1.2": resolution: { - integrity: sha512-jvvxX2fT0OKV8M+0Ny6wdvcqrev3o/8n1E93VPCAdQ8Qj0FdixXMQQ78ugYfPQ72L97VEadvljjkg+3WBwFM+w==, + integrity: sha512-Yp+M5IjNZxYjsflBbSalyjUAIqiJyEISg++gLAstGrZlp9lzVi5KAsZvJqThT2qeoqGYnFqdZXorPEYtaVBAkg==, } "@types/tough-cookie@4.0.5": @@ -6362,28 +5872,28 @@ packages: integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==, } - "@types/ws@8.18.1": + "@types/ws@8.5.4": resolution: { - integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==, + integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==, } - "@types/yargs-parser@21.0.3": + "@types/yargs-parser@21.0.0": resolution: { - integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==, + integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==, } - "@types/yargs@17.0.35": + "@types/yargs@17.0.24": resolution: { - integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==, + integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==, } - "@types/yauzl@2.10.3": + "@types/yauzl@2.10.0": resolution: { - integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==, + integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==, } "@vitest/expect@2.0.5": @@ -6398,10 +5908,10 @@ packages: integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==, } - "@vitest/pretty-format@2.1.9": + "@vitest/pretty-format@2.1.8": resolution: { - integrity: sha512-KhRIdGV2U9HOUzxfiHmY8IFHTdqtOhIzCpd8WRdJiE7D/HUcZVD0EgQCVjm+Q9gkUXWgBvMmTtZgIG48wq7sOQ==, + integrity: sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==, } "@vitest/spy@2.0.5": @@ -6416,10 +5926,10 @@ packages: integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==, } - "@vitest/utils@2.1.9": + "@vitest/utils@2.1.8": resolution: { - integrity: sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ==, + integrity: sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==, } "@vtex/client-cms@0.2.16": @@ -6533,25 +6043,18 @@ packages: integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==, } - "@whatwg-node/disposablestack@0.0.6": - resolution: - { - integrity: sha512-LOtTn+JgJvX8WfBVJtF08TGrdjuFzGJc4mkP8EdDI8ADbvO7kiexYep1o8dwnt0okb0jYclCDXF13xU7Ge4zSw==, - } - engines: { node: ">=18.0.0" } - "@whatwg-node/events@0.0.3": resolution: { integrity: sha512-IqnKIDWfXBJkvy/k6tzskWTc2NK3LcqHlb+KHGCrjOCH4jfQckRX0NAiIcC/vIqQkzLYw2r2CTSwAxcrtcD6lA==, } - "@whatwg-node/fetch@0.10.13": + "@whatwg-node/events@0.1.1": resolution: { - integrity: sha512-b4PhJ+zYj4357zwk4TTuF2nEe0vVtOrwdsrNo5hL+u1ojXNhh1FgJ6pg1jzDlwlT4oBdzfSwaBwMCtFCsIWg8Q==, + integrity: sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==, } - engines: { node: ">=18.0.0" } + engines: { node: ">=16.0.0" } "@whatwg-node/fetch@0.8.8": resolution: @@ -6559,23 +6062,23 @@ packages: integrity: sha512-CdcjGC2vdKhc13KKxgsc6/616BQ7ooDIgPeTuAiE8qfCnS0mGzcfCOoZXypQSz73nxI+GWc7ZReIAVhxoE1KCg==, } - "@whatwg-node/node-fetch@0.3.6": + "@whatwg-node/fetch@0.9.17": resolution: { - integrity: sha512-w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA==, + integrity: sha512-TDYP3CpCrxwxpiNY0UMNf096H5Ihf67BK1iKGegQl5u9SlpEDYrvnV71gWBGJm+Xm31qOy8ATgma9rm8Pe7/5Q==, } + engines: { node: ">=16.0.0" } - "@whatwg-node/node-fetch@0.8.5": + "@whatwg-node/node-fetch@0.3.6": resolution: { - integrity: sha512-4xzCl/zphPqlp9tASLVeUhB5+WJHbuWGYpfoC2q1qh5dw0AqZBW7L27V5roxYWijPxj4sspRAAoOH3d2ztaHUQ==, + integrity: sha512-w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA==, } - engines: { node: ">=18.0.0" } - "@whatwg-node/promise-helpers@1.3.2": + "@whatwg-node/node-fetch@0.5.11": resolution: { - integrity: sha512-Nst5JdK47VIl9UcGwtv2Rcgyn5lWtZ0/mhRQ4G8NN2isxpq2TO30iqHzmwoJycjWuyUfg3GFXqP/gFHXeV57IA==, + integrity: sha512-LS8tSomZa3YHnntpWt3PP43iFEEl6YeIsvDakczHBKlay5LdkXFr8w7v8H6akpG5nRrzydyB0k1iE2eoL6aKIQ==, } engines: { node: ">=16.0.0" } @@ -6665,26 +6168,17 @@ packages: integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==, } - acorn-import-phases@1.0.4: - resolution: - { - integrity: sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==, - } - engines: { node: ">=10.13.0" } - peerDependencies: - acorn: ^8.14.0 - - acorn-walk@8.3.5: + acorn-walk@8.3.1: resolution: { - integrity: sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==, + integrity: sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==, } engines: { node: ">=0.4.0" } - acorn@8.16.0: + acorn@8.14.0: resolution: { - integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==, + integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==, } engines: { node: ">=0.4.0" } hasBin: true @@ -6709,17 +6203,24 @@ packages: } engines: { node: ">= 6.0.0" } - agent-base@7.1.4: + agent-base@7.1.1: + resolution: + { + integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==, + } + engines: { node: ">= 14" } + + agent-base@7.1.3: resolution: { - integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==, + integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==, } engines: { node: ">= 14" } - agentkeepalive@4.6.0: + agentkeepalive@4.5.0: resolution: { - integrity: sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==, + integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==, } engines: { node: ">= 8.0.0" } @@ -6768,16 +6269,16 @@ packages: peerDependencies: ajv: ^8.8.2 - ajv@6.14.0: + ajv@6.12.6: resolution: { - integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==, + integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, } - ajv@8.18.0: + ajv@8.17.1: resolution: { - integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==, + integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==, } ansi-align@3.0.1: @@ -6807,10 +6308,10 @@ packages: } engines: { node: ">=8" } - ansi-escapes@7.3.0: + ansi-escapes@7.0.0: resolution: { - integrity: sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==, + integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==, } engines: { node: ">=18" } @@ -6858,10 +6359,10 @@ packages: } engines: { node: ">=8" } - ansi-regex@6.2.2: + ansi-regex@6.0.1: resolution: { - integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==, + integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==, } engines: { node: ">=12" } @@ -6893,10 +6394,10 @@ packages: } engines: { node: ">=10" } - ansi-styles@6.2.3: + ansi-styles@6.2.1: resolution: { - integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==, + integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==, } engines: { node: ">=12" } @@ -6941,12 +6442,6 @@ packages: integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==, } - aproba@2.1.0: - resolution: - { - integrity: sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==, - } - arch@2.2.0: resolution: { @@ -7005,20 +6500,6 @@ packages: integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==, } - aria-query@5.3.2: - resolution: - { - integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==, - } - engines: { node: ">= 0.4" } - - array-buffer-byte-length@1.0.2: - resolution: - { - integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==, - } - engines: { node: ">= 0.4" } - array-differ@3.0.0: resolution: { @@ -7077,10 +6558,10 @@ packages: integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==, } - asn1js@3.0.7: + asn1js@3.0.5: resolution: { - integrity: sha512-uLvq6KJu04qoQM6gvBfKFjlh6Gl0vOKQuR5cJMDHQkmwfMOQeN3F3SHCv9SNYSL+CRoHvOGFfllDlVz03GQjvQ==, + integrity: sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==, } engines: { node: ">=12.0.0" } @@ -7124,16 +6605,10 @@ packages: } engines: { node: ">=8" } - async-retry@1.3.3: - resolution: - { - integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==, - } - - async@3.2.6: + async@3.2.4: resolution: { - integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==, + integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==, } asynckit@0.4.0: @@ -7149,6 +6624,13 @@ packages: } engines: { node: ">= 4.0.0" } + atomic-sleep@1.0.0: + resolution: + { + integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==, + } + engines: { node: ">=8.0.0" } + attr-accept@2.2.5: resolution: { @@ -7163,30 +6645,29 @@ packages: } engines: { node: ">=8" } - autoprefixer@10.4.27: + autoprefixer@10.4.13: resolution: { - integrity: sha512-NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==, + integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==, } engines: { node: ^10 || ^12 || >=14 } hasBin: true peerDependencies: postcss: ^8.1.0 - available-typed-arrays@1.0.7: + available-typed-arrays@1.0.5: resolution: { - integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==, + integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==, } engines: { node: ">= 0.4" } - aws-sdk@2.1693.0: + aws-sdk@2.1288.0: resolution: { - integrity: sha512-cJmb8xEnVLT+R6fBS5sn/EFJiX7tUnDaPtOPZ1vFbOJtd0fnZn/Ky2XGgsvvoeliWeH7mL3TWSX5zXXGSQV6gQ==, + integrity: sha512-5ALCke6yp+QP5VEnotLw7tF3ipII2+j7+ZjJg7s5OFgqJ9p0XNOBb6V+0teOTpbQarkfefwOLHj5oir3i6OMsA==, } engines: { node: ">= 10.0.0" } - deprecated: The AWS SDK for JavaScript (v2) has reached end-of-support, and no longer receives updates. Please migrate your code to use AWS SDK for JavaScript (v3). More info https://a.co/cUPnyil aws-sign2@0.7.0: resolution: @@ -7194,10 +6675,10 @@ packages: integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==, } - aws4@1.13.2: + aws4@1.11.0: resolution: { - integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==, + integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==, } axe-core@3.5.6: @@ -7207,13 +6688,6 @@ packages: } engines: { node: ">=4" } - axe-core@4.11.1: - resolution: - { - integrity: sha512-BASOg+YwO2C+346x3LZOeoovTIoTrRqEsqMa6fmfAV0P+U9mFr9NsyOEpiYvFjbc64NMrSswhV50WdXzdb/Z5A==, - } - engines: { node: ">=4" } - axe-core@4.3.5: resolution: { @@ -7228,22 +6702,29 @@ packages: } engines: { node: ">=4" } - axios@1.13.6: + axios@1.15.0: resolution: { - integrity: sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==, + integrity: sha512-wWyJDlAatxk30ZJer+GeCWS209sA42X+N5jU2jy6oHTp7ufw8uzUTVFBX9+wTfAlhiJXGS0Bq7X6efruWjuK9Q==, } - b4a@1.8.0: + axios@1.8.3: resolution: { - integrity: sha512-qRuSmNSkGQaHwNbM7J78Wwy+ghLEYF1zNrSeMxj4Kgw6y33O3mXcQ6Ie9fRvfU/YnxWkOchPXbaLb73TkIsfdg==, + integrity: sha512-iP4DebzoNlP/YN2dpwCgb8zoCmhtkajzS48JvwmkSkXvPI3DHc7m+XYL5tGnSlJtR6nImXZmdCuN5aP8dh1d8A==, + } + + axios@1.9.0: + resolution: + { + integrity: sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==, + } + + b4a@1.6.4: + resolution: + { + integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==, } - peerDependencies: - react-native-b4a: "*" - peerDependenciesMeta: - react-native-b4a: - optional: true babel-jest@29.7.0: resolution: @@ -7254,10 +6735,10 @@ packages: peerDependencies: "@babel/core": ^7.8.0 - babel-loader@8.4.1: + babel-loader@8.3.0: resolution: { - integrity: sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==, + integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==, } engines: { node: ">= 8.9" } peerDependencies: @@ -7288,34 +6769,26 @@ packages: } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - babel-plugin-polyfill-corejs2@0.4.15: - resolution: - { - integrity: sha512-hR3GwrRwHUfYwGfrisXPIDP3JcYfBrW7wKE7+Au6wDYl7fm/ka1NEII6kORzxNU556JjfidZeBsO10kYvtV1aw==, - } - peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - - babel-plugin-polyfill-corejs3@0.13.0: + babel-plugin-polyfill-corejs2@0.4.12: resolution: { - integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==, + integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==, } peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-corejs3@0.14.0: + babel-plugin-polyfill-corejs3@0.10.6: resolution: { - integrity: sha512-AvDcMxJ34W4Wgy4KBIIePQTAOP1Ie2WFwkQp3dB7FQ/f0lI5+nM96zUnYEOE1P9sEg0es5VCP0HxiWu5fUHZAQ==, + integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==, } peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-regenerator@0.6.6: + babel-plugin-polyfill-regenerator@0.6.3: resolution: { - integrity: sha512-hYm+XLYRMvupxiQzrvXUj7YyvFFVfv5gI0R71AJzudg1g2AI2vyCPPIFEBjk162/wFzti3inBHo7isWFuEVS/A==, + integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==, } peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 @@ -7326,13 +6799,13 @@ packages: integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==, } - babel-preset-current-node-syntax@1.2.0: + babel-preset-current-node-syntax@1.0.1: resolution: { - integrity: sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==, + integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==, } peerDependencies: - "@babel/core": ^7.0.0 || ^8.0.0-0 + "@babel/core": ^7.0.0 babel-preset-fbjs@3.4.0: resolution: @@ -7370,62 +6843,6 @@ packages: } engines: { node: 18 || 20 || >=22 } - bare-events@2.8.2: - resolution: - { - integrity: sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==, - } - peerDependencies: - bare-abort-controller: "*" - peerDependenciesMeta: - bare-abort-controller: - optional: true - - bare-fs@4.5.5: - resolution: - { - integrity: sha512-XvwYM6VZqKoqDll8BmSww5luA5eflDzY0uEFfBJtFKe4PAAtxBjU3YIxzIBzhyaEQBy1VXEQBto4cpN5RZJw+w==, - } - engines: { bare: ">=1.16.0" } - peerDependencies: - bare-buffer: "*" - peerDependenciesMeta: - bare-buffer: - optional: true - - bare-os@3.7.1: - resolution: - { - integrity: sha512-ebvMaS5BgZKmJlvuWh14dg9rbUI84QeV3WlWn6Ph6lFI8jJoh7ADtVTyD2c93euwbe+zgi0DVrl4YmqXeM9aIA==, - } - engines: { bare: ">=1.14.0" } - - bare-path@3.0.0: - resolution: - { - integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==, - } - - bare-stream@2.8.0: - resolution: - { - integrity: sha512-reUN0M2sHRqCdG4lUK3Fw8w98eeUIZHL5c3H7Mbhk2yVBL+oofgaIp0ieLfD5QXwPCypBpmEEKU2WZKzbAk8GA==, - } - peerDependencies: - bare-buffer: "*" - bare-events: "*" - peerDependenciesMeta: - bare-buffer: - optional: true - bare-events: - optional: true - - bare-url@2.3.2: - resolution: - { - integrity: sha512-ZMq4gd9ngV5aTMa5p9+UfY0b3skwhHELaDkhEHetMdX0LRkW9kzaym4oo/Eh+Ghm0CCDuMTsRIGM/ytUc1ZYmw==, - } - base64-arraybuffer-es6@0.7.0: resolution: { @@ -7439,14 +6856,6 @@ packages: integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, } - baseline-browser-mapping@2.10.0: - resolution: - { - integrity: sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==, - } - engines: { node: ">=6.0.0" } - hasBin: true - bcrypt-pbkdf@1.0.2: resolution: { @@ -7486,13 +6895,20 @@ packages: } engines: { node: ^18.17.0 || >=20.5.0 } - binary-extensions@2.3.0: + binary-extensions@2.2.0: resolution: { - integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==, + integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==, } engines: { node: ">=8" } + binaryextensions@4.18.0: + resolution: + { + integrity: sha512-PQu3Kyv9dM4FnwB7XGj1+HucW+ShvJzJqjuw1JkKVs1mWdwOKVcRjOi+pV9X52A0tNvrPCsPkbFFQb+wE1EAXw==, + } + engines: { node: ">=0.8" } + binaryextensions@4.19.0: resolution: { @@ -7524,22 +6940,22 @@ packages: integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==, } - bn.js@4.12.3: + bn.js@4.12.1: resolution: { - integrity: sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==, + integrity: sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==, } - bn.js@5.2.3: + bn.js@5.2.1: resolution: { - integrity: sha512-EAcmnPkxpntVL+DS7bO1zhcZNvCkxqtkd0ZY53h06GNQ3DEkkGZ/gKgmDv6DdZQGj9BgfSPKtJJ7Dp1GPP8f7w==, + integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==, } - body-parser@1.20.4: + body-parser@1.20.3: resolution: { - integrity: sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==, + integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==, } engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } @@ -7556,22 +6972,22 @@ packages: } engines: { node: ">=6" } - brace-expansion@1.1.12: + brace-expansion@1.1.11: resolution: { - integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==, + integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, } - brace-expansion@2.0.2: + brace-expansion@2.0.1: resolution: { - integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==, + integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, } - brace-expansion@5.0.4: + brace-expansion@5.0.5: resolution: { - integrity: sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==, + integrity: sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==, } engines: { node: 18 || 20 || >=22 } @@ -7619,12 +7035,12 @@ packages: } engines: { node: ">= 0.10" } - browserify-sign@4.2.5: + browserify-sign@4.2.3: resolution: { - integrity: sha512-C2AUdAJg6rlM2W5QMp2Q4KGQMVBwR1lIimTsUnutJ8bMpW5B52pGpR2gEnNBNwijumDo5FojQ0L9JrXA8m4YEw==, + integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==, } - engines: { node: ">= 0.10" } + engines: { node: ">= 0.12" } browserify-zlib@0.2.0: resolution: @@ -7632,10 +7048,10 @@ packages: integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==, } - browserslist@4.28.1: + browserslist@4.24.4: resolution: { - integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==, + integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==, } engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true @@ -7722,6 +7138,13 @@ packages: } engines: { node: ">= 0.8" } + bytes@3.0.0: + resolution: + { + integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==, + } + engines: { node: ">= 0.8" } + bytes@3.1.2: resolution: { @@ -7743,17 +7166,10 @@ packages: } engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } - cacache@17.1.4: - resolution: - { - integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - cacache@20.0.3: + cacache@20.0.4: resolution: { - integrity: sha512-3pUp4e8hv07k1QlijZu6Kn7c9+ZpWWk4j3F8N3xPuCExULobqJydKYOTj1FTq58srkJsXvO7LbGAH4C0ZU3WGw==, + integrity: sha512-M3Lab8NPYlZU2exsL3bMVvMrMqgwCnMWfdZbK28bn3pK6APT/Te/I8hjRPNu1uwORY9a1eEQoifXbKPQMfMTOA==, } engines: { node: ^20.17.0 || >=22.9.0 } @@ -7771,17 +7187,17 @@ packages: } engines: { node: ">=8" } - cacheable-request@7.0.4: + cacheable-request@7.0.2: resolution: { - integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==, + integrity: sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==, } engines: { node: ">=8" } - cachedir@2.4.0: + cachedir@2.3.0: resolution: { - integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==, + integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==, } engines: { node: ">=6" } @@ -7792,6 +7208,13 @@ packages: } engines: { node: ">=8" } + call-bind-apply-helpers@1.0.1: + resolution: + { + integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==, + } + engines: { node: ">= 0.4" } + call-bind-apply-helpers@1.0.2: resolution: { @@ -7799,17 +7222,17 @@ packages: } engines: { node: ">= 0.4" } - call-bind@1.0.8: + call-bind@1.0.7: resolution: { - integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==, + integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==, } engines: { node: ">= 0.4" } - call-bound@1.0.4: + call-bound@1.0.3: resolution: { - integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==, + integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==, } engines: { node: ">= 0.4" } @@ -7847,10 +7270,10 @@ packages: } engines: { node: ">=10" } - caniuse-lite@1.0.30001776: + caniuse-lite@1.0.30001696: resolution: { - integrity: sha512-sg01JDPzZ9jGshqKSckOQthXnYwOEP50jeVFhaSFbZcOy05TiuuaffDOfcwtCisJ9kNQuLBFibYywv2Bgm9osw==, + integrity: sha512-pDCPkvzfa39ehJtJ+OwGT/2yvT2SbjfHhiIW2LWOAcMQ7BzwxT/XuyUp4OTOd0XFWA6BKw0JalnBHgSi5DGJBQ==, } capital-case@1.0.4: @@ -7879,19 +7302,19 @@ packages: integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==, } - chai@4.5.0: + chai@4.3.7: resolution: { - integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==, + integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==, } engines: { node: ">=4" } - chai@5.3.3: + chai@5.1.2: resolution: { - integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==, + integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==, } - engines: { node: ">=18" } + engines: { node: ">=12" } chalk@1.1.3: resolution: @@ -7928,10 +7351,10 @@ packages: } engines: { node: ">=10" } - chalk@5.6.2: + chalk@5.4.1: resolution: { - integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==, + integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==, } engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } @@ -7978,16 +7401,16 @@ packages: integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==, } - check-error@1.0.3: + check-error@1.0.2: resolution: { - integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==, + integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==, } - check-error@2.1.3: + check-error@2.1.1: resolution: { - integrity: sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==, + integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==, } engines: { node: ">= 16" } @@ -7998,10 +7421,10 @@ packages: } engines: { node: ">= 0.8.0" } - chokidar@3.6.0: + chokidar@3.5.3: resolution: { - integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==, + integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==, } engines: { node: ">= 8.10.0" } @@ -8032,10 +7455,10 @@ packages: } engines: { node: ">=18" } - chromatic@11.29.0: + chromatic@11.25.1: resolution: { - integrity: sha512-yisBlntp9hHVj19lIQdpTlcYIXuU9H/DbFuu6tyWHmj6hWT2EtukCCcxYXL78XdQt1vm2GfIrtgtKpj/Rzmo4A==, + integrity: sha512-D0NdcGOSy84hqgNnSY7FM4TzB77RymRTowjm4hb1CV4wbk1djKTV4SJbbYVCzHFD+n/NOg/wtZ9Y7sjiRdy8dA==, } hasBin: true peerDependencies: @@ -8053,10 +7476,10 @@ packages: integrity: sha512-nnzXiDbGKjDSK6t2I+35OAPBy5Pw/39bgkb/ZAFwMhwJbdYBp6aH+vW28ZgtjdU890Q7D+3wN/tB8N66q5Gi2A==, } - chrome-launcher@0.15.2: + chrome-launcher@0.15.1: resolution: { - integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==, + integrity: sha512-UugC8u59/w2AyX5sHLZUHoxBAiSiunUhZa3zZwMH6zPVis0C3dDKiRWyUGIo14tTbZHGVviWxv3PQWZ7taZ4fg==, } engines: { node: ">=12.13.0" } hasBin: true @@ -8074,17 +7497,17 @@ packages: integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==, } - ci-info@3.9.0: + ci-info@3.7.1: resolution: { - integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==, + integrity: sha512-4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w==, } engines: { node: ">=8" } - ci-info@4.4.0: + ci-info@4.3.1: resolution: { - integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==, + integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==, } engines: { node: ">=8" } @@ -8094,17 +7517,17 @@ packages: integrity: sha512-CLOGsVDrVamzv8sXJGaILUVI6dsuAkouJP/n6t+OxLPeeA4DDby7zn9SB6EUpa1H7oIKoE+rMmkW80zYsFfUjA==, } - cipher-base@1.0.7: + cipher-base@1.0.6: resolution: { - integrity: sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA==, + integrity: sha512-3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw==, } engines: { node: ">= 0.10" } - cjs-module-lexer@1.4.3: + cjs-module-lexer@1.4.1: resolution: { - integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==, + integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==, } clean-css@5.3.3: @@ -8128,6 +7551,13 @@ packages: } engines: { node: ">=10" } + cli-boxes@1.0.0: + resolution: + { + integrity: sha512-3Fo5wu8Ytle8q9iCzS4D2MWVL2X7JVWRiS1BnXbTFDhS9c/REkM9vd1AmabsoZoY5/dGi5TT9iKL8Kb6DeBRQg==, + } + engines: { node: ">=0.10.0" } + cli-boxes@2.2.1: resolution: { @@ -8156,10 +7586,10 @@ packages: } engines: { node: ">=18" } - cli-progress@3.12.0: + cli-progress@3.11.2: resolution: { - integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==, + integrity: sha512-lCPoS6ncgX4+rJu5bS3F/iCz17kZ9MPZ6dpuTtI0KXKABkhyXIdYB3Inby1OpaGti3YlI3EeEkM9AuWpelJrVA==, } engines: { node: ">=4" } @@ -8177,10 +7607,10 @@ packages: } engines: { node: ">=6" } - cli-table3@0.6.5: + cli-table3@0.6.3: resolution: { - integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==, + integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==, } engines: { node: 10.* || >= 12.* } @@ -8331,10 +7761,10 @@ packages: } engines: { node: ">=0.10.0" } - collect-v8-coverage@1.0.3: + collect-v8-coverage@1.0.1: resolution: { - integrity: sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==, + integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==, } color-convert@1.9.3: @@ -8487,10 +7917,10 @@ packages: } engines: { node: ">= 0.6" } - compression@1.8.1: + compression@1.7.4: resolution: { - integrity: sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==, + integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==, } engines: { node: ">= 0.8.0" } @@ -8639,10 +8069,10 @@ packages: integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, } - cookie-signature@1.0.7: + cookie-signature@1.0.6: resolution: { - integrity: sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==, + integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==, } cookie@0.3.1: @@ -8652,6 +8082,13 @@ packages: } engines: { node: ">= 0.6" } + cookie@0.6.0: + resolution: + { + integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==, + } + engines: { node: ">= 0.6" } + cookie@0.7.2: resolution: { @@ -8666,22 +8103,22 @@ packages: } hasBin: true - core-js-compat@3.48.0: + core-js-compat@3.40.0: resolution: { - integrity: sha512-OM4cAF3D6VtH/WkLtWvyNC56EZVXsZdU3iqaMG2B4WvYrlqU831pc4UtG5yp0sE9z8Y02wVN7PjW5Zf9Gt0f1Q==, + integrity: sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ==, } - core-js-pure@3.48.0: + core-js-pure@3.40.0: resolution: { - integrity: sha512-1slJgk89tWC51HQ1AEqG+s2VuwpTRr8ocu4n20QUcH1v9lAN0RXen0Q0AABa/DK1I7RrNWLucplOHMx8hfTGTw==, + integrity: sha512-AtDzVIgRrmRKQai62yuSIN5vNiQjcJakJb4fbhVw3ehxx7Lohphvw9SGNWKhLFqSxC4ilD0g/L1huAYFQU3Q6A==, } - core-js@3.48.0: + core-js@3.27.1: resolution: { - integrity: sha512-zpEHTy1fjTMZCKLHUZoVeylt9XrzaIN2rbPXEt0k+q7JE5CkCZdo6bNq55bn24a69CH7ErAVLKijxJja4fw+UQ==, + integrity: sha512-GutwJLBChfGCpwwhbYoqfv03LAfmiz7e7D/BNxzeMxwQf10GRSzqiOjx7AmtEk+heiD/JWmBuyBPgFtx0Sg1ww==, } core-util-is@1.0.2: @@ -8734,18 +8171,6 @@ packages: typescript: optional: true - cosmiconfig@9.0.1: - resolution: - { - integrity: sha512-hr4ihw+DBqcvrsEDioRO31Z17x71pUYoNe/4h6Z0wB72p7MU7/9gH8Q3s12NFhHPfYBBOV3qyfUxmr/Yn3shnQ==, - } - engines: { node: ">=14" } - peerDependencies: - typescript: ">=4.9.5" - peerDependenciesMeta: - typescript: - optional: true - create-ecdh@4.0.4: resolution: { @@ -8786,16 +8211,16 @@ packages: engines: { node: ">=10.14", npm: ">=6", yarn: ">=1" } hasBin: true - cross-fetch@3.2.0: + cross-fetch@3.1.5: resolution: { - integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==, + integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==, } - cross-inspect@1.0.1: + cross-inspect@1.0.0: resolution: { - integrity: sha512-Pcw1JTvZLSJH83iiGWt6fRcT+BjZlCDRVwYLbUcHzv/CRpB7r0MlSrGbIyQvVSNyGnbt7G4AXuyCiDR3POvZ1A==, + integrity: sha512-4PFfn4b5ZN6FMNGSZlyb7wUhuN8wvj8t/VQHZdM4JsDcruGJ8L2kf9zao98QIrBPFCpdk27qst/AGTl7pL3ypQ==, } engines: { node: ">=16.0.0" } @@ -8805,6 +8230,20 @@ packages: integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==, } + cross-spawn@6.0.5: + resolution: + { + integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==, + } + engines: { node: ">=4.8" } + + cross-spawn@7.0.3: + resolution: + { + integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, + } + engines: { node: ">= 8" } + cross-spawn@7.0.6: resolution: { @@ -8845,12 +8284,12 @@ packages: integrity: sha512-TcB+ZH9wZBG314jAUpKHPl1oYbRJV+nAT2YwZ9y4fmUN0FkEJa8e/hKZoOgzLYp1Z/CJdFhbhhGIGh0XG8W54Q==, } - css-functions-list@3.3.3: + css-functions-list@3.1.0: resolution: { - integrity: sha512-8HFEBPKhOpJPEPu70wJJetjKta86Gw9+CCyCnB3sui2qQfOvRyqBy4IKLKKAwdMpWb2lHXWk9Wb4Z6AmaUT1Pg==, + integrity: sha512-/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w==, } - engines: { node: ">=12" } + engines: { node: ">=12.22" } css-loader@6.11.0: resolution: @@ -8873,10 +8312,10 @@ packages: integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==, } - css-what@6.2.2: + css-what@6.1.0: resolution: { - integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==, + integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==, } engines: { node: ">= 6" } @@ -8919,21 +8358,21 @@ packages: } engines: { node: ">=8" } - csstype@3.2.3: + csstype@3.1.1: resolution: { - integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==, + integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==, } - cypress-axe@1.7.0: + cypress-axe@1.5.0: resolution: { - integrity: sha512-zzJpvAAjauEB3GZl0KYXb8i3w6MztWAt2WM3czYTFyNVC30alDmqCm9E7GwZ4bgkldZJlmHakaVEyu73R5St4w==, + integrity: sha512-Hy/owCjfj+25KMsecvDgo4fC/781ccL+e8p+UUYoadGVM2ogZF9XIKbiM6KI8Y3cEaSreymdD6ZzccbI2bY0lQ==, } engines: { node: ">=10" } peerDependencies: axe-core: ^3 || ^4 - cypress: ^10 || ^11 || ^12 || ^13 || ^14 || ^15 + cypress: ^10 || ^11 || ^12 || ^13 cypress-wait-until@2.0.1: resolution: @@ -8963,24 +8402,17 @@ packages: } engines: { node: ">=0.10" } - data-uri-to-buffer@4.0.1: + data-urls@3.0.2: resolution: { - integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==, + integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==, } - engines: { node: ">= 12" } + engines: { node: ">=12" } - data-urls@3.0.2: - resolution: - { - integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==, - } - engines: { node: ">=12" } - - dataloader@2.2.3: + dataloader@2.2.2: resolution: { - integrity: sha512-y2krtASINtPFS1rSDjacrFgn1dcUuoREVabwlOGOe4SdxenREqwjwjElAdwvbGM7kgZz9a3KVicWR7vcz8rnzA==, + integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==, } date-fns@1.30.1: @@ -8989,10 +8421,10 @@ packages: integrity: sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==, } - date-fns@2.30.0: + date-fns@2.29.3: resolution: { - integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==, + integrity: sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==, } engines: { node: ">=0.11" } @@ -9008,16 +8440,10 @@ packages: integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==, } - dayjs@1.11.13: - resolution: - { - integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==, - } - - dayjs@1.11.19: + dayjs@1.11.9: resolution: { - integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==, + integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==, } debounce@1.2.1: @@ -9048,6 +8474,18 @@ packages: supports-color: optional: true + debug@4.3.4: + resolution: + { + integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, + } + engines: { node: ">=6.0" } + peerDependencies: + supports-color: "*" + peerDependenciesMeta: + supports-color: + optional: true + debug@4.4.0: resolution: { @@ -9093,10 +8531,10 @@ packages: } engines: { node: ">=0.10.0" } - decimal.js@10.6.0: + decimal.js@10.4.3: resolution: { - integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==, + integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==, } decompress-response@3.3.0: @@ -9130,21 +8568,10 @@ packages: babel-plugin-macros: optional: true - dedent@1.7.2: - resolution: - { - integrity: sha512-WzMx3mW98SN+zn3hgemf4OzdmyNhhhKz5Ay0pUfQiMQ3e1g+xmTJWp/pKdwKVXhdSkAEGIIzqeuWrL3mV/AXbA==, - } - peerDependencies: - babel-plugin-macros: ^3.1.0 - peerDependenciesMeta: - babel-plugin-macros: - optional: true - - deep-eql@4.1.4: + deep-eql@4.1.3: resolution: { - integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==, + integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==, } engines: { node: ">=6" } @@ -9155,12 +8582,11 @@ packages: } engines: { node: ">=6" } - deep-equal@2.2.3: + deep-equal@2.2.0: resolution: { - integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==, + integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==, } - engines: { node: ">= 0.4" } deep-extend@0.6.0: resolution: @@ -9216,10 +8642,10 @@ packages: } engines: { node: ">=8" } - define-properties@1.2.1: + define-properties@1.1.4: resolution: { - integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==, + integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==, } engines: { node: ">= 0.4" } @@ -9291,24 +8717,25 @@ packages: } engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } - detect-indent@5.0.0: + detect-indent@6.1.0: resolution: { - integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==, + integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, } - engines: { node: ">=4" } + engines: { node: ">=8" } - detect-indent@6.1.0: + detect-libc@1.0.3: resolution: { - integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, + integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==, } - engines: { node: ">=8" } + engines: { node: ">=0.10" } + hasBin: true - detect-libc@2.1.2: + detect-libc@2.0.3: resolution: { - integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==, + integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==, } engines: { node: ">=8" } @@ -9332,17 +8759,17 @@ packages: } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - diff@4.0.4: + diff@4.0.2: resolution: { - integrity: sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ==, + integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==, } engines: { node: ">=0.3.1" } - diff@5.2.2: + diff@5.1.0: resolution: { - integrity: sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A==, + integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==, } engines: { node: ">=0.3.1" } @@ -9444,10 +8871,10 @@ packages: integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==, } - domutils@3.2.2: + domutils@3.1.0: resolution: { - integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==, + integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==, } dot-case@3.0.4: @@ -9477,17 +8904,10 @@ packages: } engines: { node: ">=12" } - dotenv@16.4.7: + dotenv@16.4.5: resolution: { - integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==, - } - engines: { node: ">=12" } - - dotenv@16.6.1: - resolution: - { - integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==, + integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==, } engines: { node: ">=12" } @@ -9524,12 +8944,6 @@ packages: integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==, } - eastasianwidth@0.2.0: - resolution: - { - integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, - } - ecc-jsbn@0.1.2: resolution: { @@ -9550,10 +8964,18 @@ packages: engines: { node: ">=0.10.0" } hasBin: true - electron-to-chromium@1.5.307: + ejs@5.0.1: + resolution: + { + integrity: sha512-COqBPFMxuPTPspXl2DkVYaDS3HtrD1GpzOGkNTJ1IYkifq/r9h8SVEFrjA3D9/VJGOEoMQcrlhpntcSUrM8k6A==, + } + engines: { node: ">=0.12.18" } + hasBin: true + + electron-to-chromium@1.5.90: resolution: { - integrity: sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==, + integrity: sha512-C3PN4aydfW91Natdyd449Kw+BzhLmof6tzy5W1pFC5SpQxVXT+oyiyOG9AgYYSN9OdA/ik3YkCrpwqI8ug5Tug==, } elegant-spinner@1.0.1: @@ -9576,10 +8998,10 @@ packages: } engines: { node: ">=12" } - emoji-regex@10.6.0: + emoji-regex@10.3.0: resolution: { - integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==, + integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==, } emoji-regex@7.0.3: @@ -9594,18 +9016,19 @@ packages: integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, } - emoji-regex@9.2.2: + emojis-list@3.0.0: resolution: { - integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, + integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==, } + engines: { node: ">= 4" } - emojis-list@3.0.0: + encodeurl@1.0.2: resolution: { - integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==, + integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==, } - engines: { node: ">= 4" } + engines: { node: ">= 0.8" } encodeurl@2.0.0: resolution: @@ -9620,10 +9043,10 @@ packages: integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==, } - end-of-stream@1.4.5: + end-of-stream@1.4.4: resolution: { - integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==, + integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==, } endent@2.1.0: @@ -9632,10 +9055,10 @@ packages: integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==, } - enhanced-resolve@5.20.0: + enhanced-resolve@5.18.0: resolution: { - integrity: sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==, + integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==, } engines: { node: ">=10.13.0" } @@ -9646,13 +9069,6 @@ packages: } engines: { node: ">=8.6" } - enquirer@2.4.1: - resolution: - { - integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==, - } - engines: { node: ">=8.6" } - entities@2.2.0: resolution: { @@ -9666,13 +9082,6 @@ packages: } engines: { node: ">=0.12" } - entities@6.0.1: - resolution: - { - integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==, - } - engines: { node: ">=0.12" } - env-paths@2.2.1: resolution: { @@ -9701,10 +9110,10 @@ packages: integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==, } - error-ex@1.3.4: + error-ex@1.3.2: resolution: { - integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==, + integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, } error-stack-parser@2.1.4: @@ -9739,17 +9148,18 @@ packages: integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==, } - es-module-lexer@1.7.0: + es-module-lexer@1.6.0: resolution: { - integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==, + integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==, } - es-module-lexer@2.0.0: + es-object-atoms@1.0.0: resolution: { - integrity: sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==, + integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==, } + engines: { node: ">= 0.4" } es-object-atoms@1.1.1: resolution: @@ -9967,18 +9377,18 @@ packages: engines: { node: ">=12" } hasBin: true - esbuild@0.25.12: + esbuild@0.18.20: resolution: { - integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==, + integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==, } - engines: { node: ">=18" } + engines: { node: ">=12" } hasBin: true - esbuild@0.27.3: + esbuild@0.24.2: resolution: { - integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==, + integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==, } engines: { node: ">=18" } hasBin: true @@ -10106,16 +9516,10 @@ packages: integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==, } - eventemitter3@5.0.4: - resolution: - { - integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==, - } - - events-universal@1.0.1: + eventemitter3@5.0.1: resolution: { - integrity: sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==, + integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==, } events@1.1.1: @@ -10201,10 +9605,10 @@ packages: } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - exponential-backoff@3.1.3: + exponential-backoff@3.1.2: resolution: { - integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==, + integrity: sha512-8QxYTVXUkuy7fIIoitQkPwGonB8F3Zj8eEO8Sqg9Zv/bkI7RJAzowee4gr81Hak/dUTpA2Z7VfQgoijjPNlUZA==, } express-graphql@0.12.0: @@ -10217,10 +9621,10 @@ packages: peerDependencies: graphql: ^14.7.0 || ^15.3.0 - express@4.22.1: + express@4.20.0: resolution: { - integrity: sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==, + integrity: sha512-pLdae7I6QqShF5PnNTCVn4hI91Dx0Grkn2+IAsMTgMIKuQVte2dN9PeGSSAME2FR8anOhVA62QDIUaWVfEXVLw==, } engines: { node: ">= 0.10.0" } @@ -10259,6 +9663,13 @@ packages: } engines: { "0": node >=0.6.0 } + extsprintf@1.4.1: + resolution: + { + integrity: sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==, + } + engines: { "0": node >=0.6.0 } + fake-indexeddb@3.1.8: resolution: { @@ -10283,10 +9694,10 @@ packages: integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==, } - fast-glob@3.3.3: + fast-glob@3.2.12: resolution: { - integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==, + integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==, } engines: { node: ">=8.6.0" } @@ -10320,16 +9731,23 @@ packages: integrity: sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==, } + fast-redact@3.5.0: + resolution: + { + integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==, + } + engines: { node: ">=6" } + fast-uri@2.4.0: resolution: { integrity: sha512-ypuAmmMKInk5q7XcepxlnUWDLWv4GFtaJqAzWKqn62IpQ3pejtr5dTVbt3vwqVaMKmkNR55sTT+CqUKIaT21BA==, } - fast-uri@3.1.0: + fast-uri@3.0.2: resolution: { - integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==, + integrity: sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==, } fast-url-parser@1.1.3: @@ -10345,10 +9763,10 @@ packages: } engines: { node: ">= 4.9.1" } - fastq@1.20.1: + fastq@1.15.0: resolution: { - integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==, + integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, } fb-watchman@2.0.2: @@ -10363,10 +9781,10 @@ packages: integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==, } - fbjs@3.0.5: + fbjs@3.0.4: resolution: { - integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==, + integrity: sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==, } fd-slicer@1.1.0: @@ -10387,13 +9805,6 @@ packages: picomatch: optional: true - fetch-blob@3.2.0: - resolution: - { - integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==, - } - engines: { node: ^12.20 || >= 14.13 } - fetch-retry@4.1.1: resolution: { @@ -10435,10 +9846,10 @@ packages: } engines: { node: ">= 12" } - filelist@1.0.6: + filelist@1.0.4: resolution: { - integrity: sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA==, + integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==, } filesize@10.1.6: @@ -10462,10 +9873,10 @@ packages: } engines: { node: ">=8" } - finalhandler@1.3.2: + finalhandler@1.2.0: resolution: { - integrity: sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==, + integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==, } engines: { node: ">= 0.8" } @@ -10530,10 +9941,10 @@ packages: } engines: { node: ">=0.10.0" } - flat-cache@3.2.0: + flat-cache@3.0.4: resolution: { - integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==, + integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==, } engines: { node: ^10.12.0 || >=12.0.0 } @@ -10544,16 +9955,16 @@ packages: } hasBin: true - flatted@3.3.4: + flatted@3.2.7: resolution: { - integrity: sha512-3+mMldrTAPdta5kjX2G2J7iX4zxtnwpdA8Tr2ZSjkyPSanvbZAcy6flmtnXbEybHrDcU9641lxrMfFuUxVz9vA==, + integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==, } - follow-redirects@1.15.11: + follow-redirects@1.15.6: resolution: { - integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==, + integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==, } engines: { node: ">=4.0" } peerDependencies: @@ -10562,12 +9973,35 @@ packages: debug: optional: true - for-each@0.3.5: + follow-redirects@1.15.9: resolution: { - integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==, + integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==, + } + engines: { node: ">=4.0" } + peerDependencies: + debug: "*" + peerDependenciesMeta: + debug: + optional: true + + follow-redirects@1.16.0: + resolution: + { + integrity: sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==, + } + engines: { node: ">=4.0" } + peerDependencies: + debug: "*" + peerDependenciesMeta: + debug: + optional: true + + for-each@0.3.3: + resolution: + { + integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, } - engines: { node: ">= 0.4" } foreground-child@2.0.0: resolution: @@ -10606,19 +10040,26 @@ packages: } engines: { node: ">= 0.12" } - form-data@4.0.5: + form-data@4.0.0: resolution: { - integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==, + integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==, } engines: { node: ">= 6" } - formdata-polyfill@4.0.10: + form-data@4.0.3: resolution: { - integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==, + integrity: sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==, } - engines: { node: ">=12.20.0" } + engines: { node: ">= 6" } + + form-data@4.0.5: + resolution: + { + integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==, + } + engines: { node: ">= 6" } forwarded@0.2.0: resolution: @@ -10627,10 +10068,10 @@ packages: } engines: { node: ">= 0.6" } - fraction.js@5.3.4: + fraction.js@4.2.0: resolution: { - integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==, + integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==, } fresh@0.5.2: @@ -10665,10 +10106,10 @@ packages: } engines: { node: ">=12" } - fs-extra@11.3.4: + fs-extra@11.2.0: resolution: { - integrity: sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==, + integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==, } engines: { node: ">=14.14" } @@ -10700,10 +10141,10 @@ packages: } engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - fs-monkey@1.1.0: + fs-monkey@1.0.6: resolution: { - integrity: sha512-QMUezzXWII9EV5aTFXW1UBVUO77wYPpjqIF8/AviUCThNeSYZykpoTixUeaNNBwmCev0AMDWMAni+f8Hxb1IFw==, + integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==, } fs.realpath@1.0.0: @@ -10754,13 +10195,6 @@ packages: integrity: sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==, } - generator-function@2.0.1: - resolution: - { - integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==, - } - engines: { node: ">= 0.4" } - gensync@1.0.0-beta.2: resolution: { @@ -10775,10 +10209,10 @@ packages: } engines: { node: 6.* || 8.* || >= 10.* } - get-east-asian-width@1.5.0: + get-east-asian-width@1.2.0: resolution: { - integrity: sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==, + integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==, } engines: { node: ">=18" } @@ -10788,6 +10222,13 @@ packages: integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==, } + get-intrinsic@1.2.6: + resolution: + { + integrity: sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==, + } + engines: { node: ">= 0.4" } + get-intrinsic@1.3.0: resolution: { @@ -10810,19 +10251,19 @@ packages: engines: { node: ">=6.9.0" } hasBin: true - get-port@5.1.1: + get-proto@1.0.1: resolution: { - integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==, + integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==, } - engines: { node: ">=8" } + engines: { node: ">= 0.4" } - get-proto@1.0.1: + get-stdin@4.0.1: resolution: { - integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==, + integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==, } - engines: { node: ">= 0.4" } + engines: { node: ">=0.10.0" } get-stream@3.0.0: resolution: @@ -10866,10 +10307,10 @@ packages: } engines: { node: ">=16" } - get-tsconfig@4.13.6: + get-tsconfig@4.7.2: resolution: { - integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==, + integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==, } getos@3.2.1: @@ -10966,14 +10407,6 @@ packages: integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==, } - glob@10.5.0: - resolution: - { - integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==, - } - deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me - hasBin: true - glob@11.1.0: resolution: { @@ -10995,7 +10428,7 @@ packages: { integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, } - deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me + deprecated: Glob versions prior to v9 are no longer supported glob@8.1.0: resolution: @@ -11003,7 +10436,7 @@ packages: integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==, } engines: { node: ">=12" } - deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me + deprecated: Glob versions prior to v9 are no longer supported global-dirs@0.1.1: resolution: @@ -11033,6 +10466,20 @@ packages: } engines: { node: ">=6" } + globals@11.12.0: + resolution: + { + integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, + } + engines: { node: ">=4" } + + globby@11.0.4: + resolution: + { + integrity: sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==, + } + engines: { node: ">=10" } + globby@11.1.0: resolution: { @@ -11086,10 +10533,10 @@ packages: cosmiconfig-toml-loader: optional: true - graphql-config@5.1.5: + graphql-config@5.0.3: resolution: { - integrity: sha512-mG2LL1HccpU8qg5ajLROgdsBzx/o2M6kgI3uAmoaXiSH9PCUbtIyLomLqUtCFaAeG2YCFsl0M5cfQ9rKmDoMVA==, + integrity: sha512-BNGZaoxIBkv9yy6Y7omvsaBUHOzfFcII3UN++tpH8MGOKFPFkCPZuwx09ggANMt8FgyWP1Od8SWPmrUEZca4NQ==, } engines: { node: ">= 16.0.0" } peerDependencies: @@ -11099,10 +10546,10 @@ packages: cosmiconfig-toml-loader: optional: true - graphql-jit@0.8.7: + graphql-jit@0.8.6: resolution: { - integrity: sha512-KGzCrsxQPfEiXOUIJCexWKiWF6ycjO89kAO6SdO8OWRGwYXbG0hsLuTnbFfMq0gj7d7/ib/Gh7jtst7FHZEEjw==, + integrity: sha512-oVJteh/uYDpIA/M4UHrI+DmzPnX1zTD0a7Je++JA8q8P68L/KbuepimDyrT5FhL4HAq3filUxaFvfsL6/A4msw==, } peerDependencies: graphql: ">=15" @@ -11133,36 +10580,26 @@ packages: peerDependencies: graphql: ">=0.11 <=16" - graphql-ws@6.0.7: + graphql-ws@5.16.0: resolution: { - integrity: sha512-yoLRW+KRlDmnnROdAu7sX77VNLC0bsFoZyGQJLy1cF+X/SkLg/fWkRGrEEYQK8o2cafJ2wmEaMqMEZB3U3DYDg==, + integrity: sha512-Ju2RCU2dQMgSKtArPbEtsK5gNLnsQyTNIo/T7cZNp96niC1x0KdJNZV0TIoilceBPQwfb5itrGl8pkFeOUMl4A==, } - engines: { node: ">=20" } + engines: { node: ">=10" } peerDependencies: - "@fastify/websocket": ^10 || ^11 - crossws: ~0.3 - graphql: ^15.10.1 || ^16 - ws: ^8 - peerDependenciesMeta: - "@fastify/websocket": - optional: true - crossws: - optional: true - ws: - optional: true + graphql: ">=0.11 <=16" - graphql@15.10.1: + graphql@15.8.0: resolution: { - integrity: sha512-BL/Xd/T9baO6NFzoMpiMD7YUZ62R6viR5tp/MULVEnbYJXZA//kRNW7J0j1w/wXArgL0sCxhDfK5dczSKn3+cg==, + integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==, } engines: { node: ">= 10.x" } - grouped-queue@2.1.0: + grouped-queue@2.0.0: resolution: { - integrity: sha512-c5NDCWO0XiXuJAhOegMiNotkDmgORN+VNo3+YHMhWpoWG/u2+8im8byqsOe3/myI9YcC//plRdqGa2AE3Qsdjw==, + integrity: sha512-/PiFUa7WIsl48dUeCvhIHnwNmAAzlI/eHoJl0vu3nsFA366JleY7Ff8EVTplZu5kO0MIdZjKTTnzItL61ahbnw==, } engines: { node: ">=8.0.0" } @@ -11188,12 +10625,11 @@ packages: } engines: { node: ">=0.10.0" } - has-bigints@1.1.0: + has-bigints@1.0.2: resolution: { - integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==, + integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, } - engines: { node: ">= 0.4" } has-flag@3.0.0: resolution: @@ -11222,6 +10658,13 @@ packages: } engines: { node: ">= 0.4" } + has-tostringtag@1.0.0: + resolution: + { + integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, + } + engines: { node: ">= 0.4" } + has-tostringtag@1.0.2: resolution: { @@ -11242,6 +10685,13 @@ packages: } engines: { node: ">=8" } + has@1.0.3: + resolution: + { + integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, + } + engines: { node: ">= 0.4.0" } + hash-base@3.0.5: resolution: { @@ -11249,17 +10699,17 @@ packages: } engines: { node: ">= 0.10" } - hash-base@3.1.2: + hash-base@3.1.0: resolution: { - integrity: sha512-Bb33KbowVTIj5s7Ked1OsqHUeCpz//tPwR+E2zJgJKo9Z5XolZ9b6bdUgjmYlwnWhoOQKoTd1TYToZGn5mAYOg==, + integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==, } - engines: { node: ">= 0.8" } + engines: { node: ">=4" } - hash-it@6.0.1: + hash-it@6.0.0: resolution: { - integrity: sha512-qhl8+l4Zwi1eLlL3lja5ywmDQnBzLEJxd0QJoAVIgZpgQbdtVZrN5ypB0y3VHwBlvAalpcbM2/A6x7oUks5zNg==, + integrity: sha512-KHzmSFx1KwyMPw0kXeeUD752q/Kfbzhy6dAZrjXV9kAIXGqzGvv8vhkUqj+2MGZldTo0IBpw6v7iWE7uxsvH0w==, } hash.js@1.1.7: @@ -11314,13 +10764,6 @@ packages: } engines: { node: ">=10" } - hosted-git-info@6.1.3: - resolution: - { - integrity: sha512-HVJyzUrLIL1c0QmviVh5E8VGyUS7xCFPS6yydaVd1UegW+ibV/CohqTH9MkOLDp5o+rb82DMo77PTuc9F/8GKw==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - hosted-git-info@8.1.0: resolution: { @@ -11342,10 +10785,10 @@ packages: } engines: { node: ">=12" } - html-entities@2.6.0: + html-entities@2.5.2: resolution: { - integrity: sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==, + integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==, } html-escaper@2.0.2: @@ -11362,17 +10805,17 @@ packages: engines: { node: ">=12" } hasBin: true - html-tags@3.3.1: + html-tags@3.2.0: resolution: { - integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==, + integrity: sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==, } engines: { node: ">=8" } - html-webpack-plugin@5.6.6: + html-webpack-plugin@5.6.3: resolution: { - integrity: sha512-bLjW01UTrvoWTJQL5LsMRo1SypHW80FTm12OJRSnr3v6YHNhfe+1r0MYUZJMACxnCHURVnBWRwAsWs2yPU9Ezw==, + integrity: sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==, } engines: { node: ">=10.13.0" } peerDependencies: @@ -11396,10 +10839,10 @@ packages: integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==, } - http-cache-semantics@4.2.0: + http-cache-semantics@4.1.1: resolution: { - integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==, + integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==, } http-call@5.3.0: @@ -11416,10 +10859,10 @@ packages: } engines: { node: ">= 0.6" } - http-errors@2.0.1: + http-errors@2.0.0: resolution: { - integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==, + integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==, } engines: { node: ">= 0.8" } @@ -11491,6 +10934,13 @@ packages: } engines: { node: ">= 14" } + https-proxy-agent@7.0.4: + resolution: + { + integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==, + } + engines: { node: ">= 14" } + https-proxy-agent@7.0.6: resolution: { @@ -11601,13 +11051,6 @@ packages: } engines: { node: ">=10" } - ignore-walk@6.0.5: - resolution: - { - integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - ignore-walk@8.0.0: resolution: { @@ -11615,10 +11058,10 @@ packages: } engines: { node: ^20.17.0 || >=22.9.0 } - ignore@5.3.2: + ignore@5.2.4: resolution: { - integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==, + integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==, } engines: { node: ">= 4" } @@ -11629,10 +11072,10 @@ packages: } engines: { node: ">= 4" } - image-size@1.2.1: + image-size@1.2.0: resolution: { - integrity: sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw==, + integrity: sha512-4S8fwbO6w3GeCVN6OPtA9I5IGKkcDMPcKndtUlpJuCwu7JLjtj7JZpwqLuyY2nrmQT3AWsCJLSKPsc2mPBSl3w==, } engines: { node: ">=16.x" } hasBin: true @@ -11650,11 +11093,18 @@ packages: } engines: { node: ">=0.8.0" } - immutable@5.1.5: + immutable@5.0.3: + resolution: + { + integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==, + } + + import-fresh@3.3.0: resolution: { - integrity: sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==, + integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, } + engines: { node: ">=6" } import-fresh@3.3.1: resolution: @@ -11692,14 +11142,6 @@ packages: engines: { node: ">=8" } hasBin: true - import-local@3.2.0: - resolution: - { - integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==, - } - engines: { node: ">=8" } - hasBin: true - imurmurhash@0.1.4: resolution: { @@ -11812,17 +11254,17 @@ packages: } engines: { node: ">=8.0.0" } - inquirer@8.2.7: + inquirer@8.2.6: resolution: { - integrity: sha512-UjOaSel/iddGZJ5xP/Eixh6dY1XghiBw4XK13rCCIJcJfyhhoul/7KhLLUGtebEj6GDYM6Vnx/mVsjx2L/mFIA==, + integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==, } engines: { node: ">=12.0.0" } - internal-slot@1.1.0: + internal-slot@1.0.4: resolution: { - integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==, + integrity: sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==, } engines: { node: ">= 0.4" } @@ -11852,10 +11294,10 @@ packages: integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==, } - ip-address@10.1.0: + ip-address@9.0.5: resolution: { - integrity: sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==, + integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==, } engines: { node: ">= 12" } @@ -11873,19 +11315,18 @@ packages: } engines: { node: ">=0.10.0" } - is-arguments@1.2.0: + is-arguments@1.1.1: resolution: { - integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==, + integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==, } engines: { node: ">= 0.4" } - is-array-buffer@3.0.5: + is-array-buffer@3.0.1: resolution: { - integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==, + integrity: sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==, } - engines: { node: ">= 0.4" } is-arrayish@0.2.1: resolution: @@ -11893,18 +11334,17 @@ packages: integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, } - is-arrayish@0.3.4: + is-arrayish@0.3.2: resolution: { - integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==, + integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==, } - is-bigint@1.1.0: + is-bigint@1.0.4: resolution: { - integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==, + integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, } - engines: { node: ">= 0.4" } is-binary-path@2.1.0: resolution: @@ -11913,10 +11353,10 @@ packages: } engines: { node: ">=8" } - is-boolean-object@1.2.2: + is-boolean-object@1.1.2: resolution: { - integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==, + integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, } engines: { node: ">= 0.4" } @@ -11954,10 +11394,10 @@ packages: } engines: { node: ">= 0.4" } - is-date-object@1.1.0: + is-date-object@1.0.5: resolution: { - integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==, + integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, } engines: { node: ">= 0.4" } @@ -12004,10 +11444,10 @@ packages: } engines: { node: ">=12" } - is-fullwidth-code-point@5.1.0: + is-fullwidth-code-point@5.0.0: resolution: { - integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==, + integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==, } engines: { node: ">=18" } @@ -12018,10 +11458,10 @@ packages: } engines: { node: ">=6" } - is-generator-function@1.1.2: + is-generator-function@1.0.10: resolution: { - integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==, + integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==, } engines: { node: ">= 0.4" } @@ -12065,12 +11505,11 @@ packages: integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==, } - is-map@2.0.3: + is-map@2.0.2: resolution: { - integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==, + integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==, } - engines: { node: ">= 0.4" } is-nan@1.3.2: resolution: @@ -12086,10 +11525,10 @@ packages: } engines: { node: ">=8" } - is-number-object@1.1.1: + is-number-object@1.0.7: resolution: { - integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==, + integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, } engines: { node: ">= 0.4" } @@ -12174,10 +11613,10 @@ packages: integrity: sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==, } - is-regex@1.2.1: + is-regex@1.1.4: resolution: { - integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==, + integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, } engines: { node: ">= 0.4" } @@ -12202,24 +11641,22 @@ packages: } engines: { node: ">=8" } - is-set@2.0.3: + is-set@2.0.2: resolution: { - integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==, + integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==, } - engines: { node: ">= 0.4" } - is-shared-array-buffer@1.0.4: + is-shared-array-buffer@1.0.2: resolution: { - integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==, + integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, } - engines: { node: ">= 0.4" } - is-ssh@1.4.1: + is-ssh@1.4.0: resolution: { - integrity: sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==, + integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==, } is-stream@1.1.0: @@ -12229,13 +11666,6 @@ packages: } engines: { node: ">=0.10.0" } - is-stream@2.0.0: - resolution: - { - integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==, - } - engines: { node: ">=8" } - is-stream@2.0.1: resolution: { @@ -12250,17 +11680,17 @@ packages: } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - is-string@1.1.1: + is-string@1.0.7: resolution: { - integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==, + integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, } engines: { node: ">= 0.4" } - is-symbol@1.1.1: + is-symbol@1.0.4: resolution: { - integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==, + integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, } engines: { node: ">= 0.4" } @@ -12271,10 +11701,10 @@ packages: } engines: { node: ">=0.10.0" } - is-typed-array@1.1.15: + is-typed-array@1.1.10: resolution: { - integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==, + integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==, } engines: { node: ">= 0.4" } @@ -12310,19 +11740,17 @@ packages: integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==, } - is-weakmap@2.0.2: + is-weakmap@2.0.1: resolution: { - integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==, + integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==, } - engines: { node: ">= 0.4" } - is-weakset@2.0.4: + is-weakset@2.0.2: resolution: { - integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==, + integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==, } - engines: { node: ">= 0.4" } is-windows@1.0.2: resolution: @@ -12369,25 +11797,18 @@ packages: } engines: { node: ">= 8.0.0" } - isbinaryfile@5.0.7: - resolution: - { - integrity: sha512-gnWD14Jh3FzS3CPhF0AxNOJ8CxqeblPTADzI38r0wt8ZyQl5edpy75myt08EG2oKvpyiqSqsx+Wkz9vtkbTqYQ==, - } - engines: { node: ">= 18.0.0" } - isexe@2.0.0: resolution: { integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, } - isexe@3.1.5: + isexe@3.1.1: resolution: { - integrity: sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w==, + integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==, } - engines: { node: ">=18" } + engines: { node: ">=16" } isexe@4.0.0: resolution: @@ -12428,10 +11849,17 @@ packages: integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==, } - istanbul-lib-coverage@3.2.2: + istanbul-lib-coverage@3.0.0: + resolution: + { + integrity: sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==, + } + engines: { node: ">=8" } + + istanbul-lib-coverage@3.2.0: resolution: { - integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==, + integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==, } engines: { node: ">=8" } @@ -12456,10 +11884,10 @@ packages: } engines: { node: ">=8" } - istanbul-lib-instrument@6.0.3: + istanbul-lib-instrument@6.0.1: resolution: { - integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==, + integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==, } engines: { node: ">=10" } @@ -12470,12 +11898,12 @@ packages: } engines: { node: ">=8" } - istanbul-lib-report@3.0.1: + istanbul-lib-report@3.0.0: resolution: { - integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==, + integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==, } - engines: { node: ">=10" } + engines: { node: ">=8" } istanbul-lib-source-maps@4.0.1: resolution: @@ -12484,19 +11912,13 @@ packages: } engines: { node: ">=10" } - istanbul-reports@3.2.0: + istanbul-reports@3.1.6: resolution: { - integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==, + integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==, } engines: { node: ">=8" } - jackspeak@3.4.3: - resolution: - { - integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==, - } - jackspeak@4.2.3: resolution: { @@ -12504,10 +11926,10 @@ packages: } engines: { node: 20 || >=22 } - jake@10.9.4: + jake@10.8.5: resolution: { - integrity: sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==, + integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==, } engines: { node: ">=10" } hasBin: true @@ -12568,10 +11990,10 @@ packages: } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - jest-diff@30.2.0: + jest-diff@30.3.0: resolution: { - integrity: sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==, + integrity: sha512-n3q4PDQjS4LrKxfWB3Z5KNk1XjXtZTBwQp71OP0Jo03Z6V60x++K5L8k6ZrW8MY8pOFylZvHM0zsjS1RqlHJZQ==, } engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } @@ -12773,13 +12195,6 @@ packages: } hasBin: true - jiti@2.6.1: - resolution: - { - integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==, - } - hasBin: true - jmespath@0.16.0: resolution: { @@ -12787,16 +12202,16 @@ packages: } engines: { node: ">= 0.6.0" } - jose@4.15.9: + jose@4.15.5: resolution: { - integrity: sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA==, + integrity: sha512-jc7BFxgKPKi94uOvEmzlSWFFe2+vASyXaKUpdQKatWAESU2MWjDfFf0fdfc83CDKcA5QecabZeNLyfhe3yKNkg==, } - jose@5.10.0: + jose@5.3.0: resolution: { - integrity: sha512-s+3Al/p9g32Iq+oqXxkW//7jk2Vig6FF1CFqzVXoTUXt2qz89YWbL+OwS17NFYEvxC35n0FKeGO2LGYSxeM2Gg==, + integrity: sha512-IChe9AtAE79ru084ow8jzkN2lNrG3Ntfiv65Cvj9uOCE2m5LNsdHG+9EbxWxAoWRF9TgDOqLN5jm08++owDVRg==, } jpeg-js@0.4.4: @@ -12805,10 +12220,10 @@ packages: integrity: sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==, } - js-library-detector@6.7.0: + js-library-detector@6.6.0: resolution: { - integrity: sha512-c80Qupofp43y4cJ7+8TTDN/AsDwLi5oOm/plBrWI+iQt485vKXCco+yVmOwEgdo9VOdsYTuV0UlTeetVPTriXA==, + integrity: sha512-z8OkDmXALZ22bIzBtIW8cpJ39MV93/Zu1rWrFdhsNw+sity2rOLaGT2kfWWQ6mnRTWs4ddONY5kiroA8e98Gvg==, } engines: { node: ">=12" } @@ -12818,10 +12233,10 @@ packages: integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, } - js-yaml@3.14.2: + js-yaml@3.14.1: resolution: { - integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==, + integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, } hasBin: true @@ -12845,10 +12260,16 @@ packages: integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==, } - jsdoc-type-pratt-parser@4.8.0: + jsbn@1.1.0: + resolution: + { + integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==, + } + + jsdoc-type-pratt-parser@4.1.0: resolution: { - integrity: sha512-iZ8Bdb84lWRuGHamRXFyML07r21pcwBrLkHEuHgEY5UbCouBwv7ECknDRKzsQIXMiqpPymqtIf8TC/shYKB5rw==, + integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==, } engines: { node: ">=12.0.0" } @@ -12864,6 +12285,14 @@ packages: canvas: optional: true + jsesc@3.0.2: + resolution: + { + integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==, + } + engines: { node: ">=6" } + hasBin: true + jsesc@3.1.0: resolution: { @@ -12896,13 +12325,6 @@ packages: integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, } - json-parse-even-better-errors@3.0.2: - resolution: - { - integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - json-parse-even-better-errors@4.0.0: resolution: { @@ -12941,10 +12363,10 @@ packages: integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==, } - json-stable-stringify@1.3.0: + json-stable-stringify@1.1.1: resolution: { - integrity: sha512-qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg==, + integrity: sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==, } engines: { node: ">= 0.4" } @@ -12987,10 +12409,10 @@ packages: integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==, } - jsonfile@6.2.0: + jsonfile@6.1.0: resolution: { - integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==, + integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, } jsonify@0.0.1: @@ -13037,10 +12459,10 @@ packages: integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==, } - keyv@4.5.4: + keyv@4.5.2: resolution: { - integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==, + integrity: sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==, } kind-of@6.0.3: @@ -13084,10 +12506,10 @@ packages: } engines: { node: "> 0.8" } - lerna@9.0.5: + lerna@9.0.7: resolution: { - integrity: sha512-LtwZu2wINHlKpjRCxrEdK3QopyeUpFuUS4v6uzLYdg/uxnAKqDHrGY/mDPxdxDR3YAXJzpWXBdz49AHNIKZaSg==, + integrity: sha512-PMjbSWYfwL1yZ5c1D2PZuFyzmtYhLdn0f76uG8L25g6eYy34j+2jPb4Q6USx1UJvxVtxkdVEeAAWS/WxgJ8VZA==, } engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 } hasBin: true @@ -13133,16 +12555,16 @@ packages: integrity: sha512-wzUvdIeJZhRsG6gpZfmSCfysaxNEr43i+QT+Hie94wvHDKFLi4n7C2GqZ4sTC+PH5b5iktmXJvU87rWvhP3lHw==, } - lighthouse-logger@1.4.2: + lighthouse-logger@1.3.0: resolution: { - integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==, + integrity: sha512-BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA==, } - lighthouse-stack-packs@1.12.3: + lighthouse-stack-packs@1.9.0: resolution: { - integrity: sha512-d8IsOpE83kbANgnM+Tp8+x6HcMpX9o2ITBiUERssgzAIFdZCQzs/f4k6D0DLQTE59enml9mbAOU52Wu35exWtg==, + integrity: sha512-xV6thXsxoHWgIluhLhp4zQ09c0T2zZNIDXoKy0emRoD2xCGJAFxoabRdyZpY0VnKwW8evMNXnMdPZtukKk2lhA==, } lighthouse@9.3.0: @@ -13153,10 +12575,10 @@ packages: engines: { node: ">=14.15" } hasBin: true - lilconfig@2.1.0: + lilconfig@2.0.6: resolution: { - integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==, + integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==, } engines: { node: ">=10" } @@ -13235,10 +12657,10 @@ packages: enquirer: optional: true - listr2@8.3.3: + listr2@8.2.5: resolution: { - integrity: sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ==, + integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==, } engines: { node: ">=18.0.0" } @@ -13270,10 +12692,10 @@ packages: } engines: { node: ">=6" } - loader-runner@4.3.1: + loader-runner@4.3.0: resolution: { - integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==, + integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==, } engines: { node: ">=6.11.5" } @@ -13319,12 +12741,6 @@ packages: } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - lodash._reinterpolate@3.0.0: - resolution: - { - integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==, - } - lodash.clonedeep@4.5.0: resolution: { @@ -13399,29 +12815,16 @@ packages: integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==, } - lodash.template@4.5.0: - resolution: - { - integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==, - } - deprecated: This package is deprecated. Use https://socket.dev/npm/package/eta instead. - - lodash.templatesettings@4.2.0: - resolution: - { - integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==, - } - lodash.truncate@4.4.2: resolution: { integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==, } - lodash@4.17.23: + lodash@4.17.21: resolution: { - integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==, + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, } log-symbols@1.0.2: @@ -13472,16 +12875,17 @@ packages: } hasBin: true - loupe@2.3.7: + loupe@2.3.6: resolution: { - integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==, + integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==, } + deprecated: Please upgrade to 2.3.7 which fixes GHSA-4q6p-r6v2-jvc5 - loupe@3.2.1: + loupe@3.1.3: resolution: { - integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==, + integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==, } lower-case-first@2.0.2: @@ -13516,10 +12920,10 @@ packages: integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, } - lru-cache@11.2.6: + lru-cache@11.3.5: resolution: { - integrity: sha512-ESL2CrkS/2wTPfuend7Zhkzo2u0daGJ/A2VucJOgQ/C48S/zB8MMeMHSGKYpXhIjbPxfuezITkaBH1wqv00DDQ==, + integrity: sha512-NxVFwLAnrd9i7KUBxC4DrUhmgjzOs+1Qm50D3oF1/oL+r1NpZ4gA7xvG0/zJ8evR7zIKn4vLf7qTNduWFtCrRw==, } engines: { node: 20 || >=22 } @@ -13556,10 +12960,10 @@ packages: } hasBin: true - magic-string@0.30.21: + magic-string@0.30.17: resolution: { - integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==, + integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==, } make-dir@1.3.0: @@ -13569,13 +12973,6 @@ packages: } engines: { node: ">=4" } - make-dir@2.1.0: - resolution: - { - integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==, - } - engines: { node: ">=6" } - make-dir@3.1.0: resolution: { @@ -13583,13 +12980,6 @@ packages: } engines: { node: ">=8" } - make-dir@4.0.0: - resolution: - { - integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==, - } - engines: { node: ">=10" } - make-error@1.3.6: resolution: { @@ -13603,13 +12993,6 @@ packages: } engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } - make-fetch-happen@11.1.1: - resolution: - { - integrity: sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - make-fetch-happen@15.0.2: resolution: { @@ -13617,10 +13000,10 @@ packages: } engines: { node: ^20.17.0 || >=22.9.0 } - make-fetch-happen@15.0.4: + make-fetch-happen@15.0.5: resolution: { - integrity: sha512-vM2sG+wbVeVGYcCm16mM3d5fuem9oC28n436HjsGO3LcxoTI8LNVa4rwZDn3f76+cWyT4GGJDxjTYU1I2nr6zw==, + integrity: sha512-uCbIa8jWWmQZt4dSnEStkVC6gdakiinAm4PiGsywIkguF0eWMdcjDz0ECYhUolFU3pFLOev9VNPCEygydXnddg==, } engines: { node: ^20.17.0 || >=22.9.0 } @@ -13664,10 +13047,10 @@ packages: integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==, } - marky@1.3.0: + marky@1.2.5: resolution: { - integrity: sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==, + integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==, } math-intrinsics@1.1.0: @@ -13702,10 +13085,10 @@ packages: } engines: { node: ">= 0.6" } - mem-fs-editor@9.7.0: + mem-fs-editor@9.5.0: resolution: { - integrity: sha512-ReB3YD24GNykmu4WeUL/FDIQtkoyGB6zfJv60yfCo3QjKeimNcTqv2FT83bP0ccs6uu+sm5zyoBlspAzigmsdg==, + integrity: sha512-7p+bBDqsSisO20YIZf2ntYvST27fFJINn7CKE21XdPUQDcLV62b/yB5sTOooQeEoiZ3rldZQ+4RfONgL/gbRoA==, } engines: { node: ">=12.10.0" } peerDependencies: @@ -13714,19 +13097,20 @@ packages: mem-fs: optional: true - mem-fs@2.3.0: + mem-fs@2.2.1: resolution: { - integrity: sha512-GftCCBs6EN8sz3BoWO1bCj8t7YBtT713d8bUgbhg9Iel5kFSqnSvCK06TYIDJAtJ51cSiWkM/YemlT0dfoFycw==, + integrity: sha512-yiAivd4xFOH/WXlUi6v/nKopBh1QLzwjFi36NK88cGt/PRXI8WeBASqY+YSjIVWvQTx3hR8zHKDBMV6hWmglNA==, } engines: { node: ">=12" } - memfs@3.5.3: + memfs@3.6.0: resolution: { - integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==, + integrity: sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ==, } engines: { node: ">= 4.0.0" } + deprecated: this will be v4 memoizerific@1.11.3: resolution: @@ -13767,10 +13151,10 @@ packages: } engines: { node: ">= 8" } - meros@1.3.2: + meros@1.2.1: resolution: { - integrity: sha512-Q3mobPbvEx7XbwhnC1J1r60+5H6EZyNccdzSz0eGexJRwouUtTZxPVRGdqKtxlpD84ScK4+tIGldkqDtCKdI0A==, + integrity: sha512-R2f/jxYqCAGI19KhAvaxSOxALBMkaXWH2a7rOyqQw+ZmizX5bKkEYWLzdhC+U82ZVVPVp6MCXe3EkVligh+12g==, } engines: { node: ">=13" } peerDependencies: @@ -13813,13 +13197,6 @@ packages: } engines: { node: ">= 0.6" } - mime-db@1.54.0: - resolution: - { - integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==, - } - engines: { node: ">= 0.6" } - mime-types@2.1.35: resolution: { @@ -13903,46 +13280,39 @@ packages: } engines: { node: 18 || 20 || >=22 } - minimatch@3.1.4: + minimatch@10.2.5: resolution: { - integrity: sha512-twmL+S8+7yIsE9wsqgzU3E8/LumN3M3QELrBZ20OdmQ9jB2JvW5oZtBEmft84k/Gs5CG9mqtWc6Y9vW+JEzGxw==, + integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==, } + engines: { node: 18 || 20 || >=22 } - minimatch@3.1.5: + minimatch@3.1.2: resolution: { - integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==, + integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, } - minimatch@4.2.3: + minimatch@3.1.4: resolution: { - integrity: sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==, + integrity: sha512-twmL+S8+7yIsE9wsqgzU3E8/LumN3M3QELrBZ20OdmQ9jB2JvW5oZtBEmft84k/Gs5CG9mqtWc6Y9vW+JEzGxw==, } - engines: { node: ">=10" } - minimatch@5.1.9: + minimatch@4.2.3: resolution: { - integrity: sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==, + integrity: sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==, } engines: { node: ">=10" } - minimatch@7.4.9: + minimatch@5.1.6: resolution: { - integrity: sha512-Brg/fp/iAVDOQoHxkuN5bEYhyQlZhxddI78yWsCbeEwTHXQjlNLtiJDUsp1GIptVqMI7/gkJMz4vVAc01mpoBw==, + integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==, } engines: { node: ">=10" } - minimatch@9.0.9: - resolution: - { - integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==, - } - engines: { node: ">=16 || 14 >=14.17" } - minimist-options@4.1.0: resolution: { @@ -13984,13 +13354,6 @@ packages: } engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } - minipass-fetch@3.0.5: - resolution: - { - integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - minipass-fetch@4.0.1: resolution: { @@ -14012,10 +13375,10 @@ packages: } engines: { node: ">= 8" } - minipass-json-stream@1.0.2: + minipass-json-stream@1.0.1: resolution: { - integrity: sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg==, + integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==, } minipass-pipeline@1.2.4: @@ -14053,6 +13416,13 @@ packages: } engines: { node: ">=8" } + minipass@7.1.2: + resolution: + { + integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==, + } + engines: { node: ">=16 || 14 >=14.17" } + minipass@7.1.3: resolution: { @@ -14122,6 +13492,12 @@ packages: integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, } + ms@2.1.2: + resolution: + { + integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, + } + ms@2.1.3: resolution: { @@ -14161,24 +13537,24 @@ packages: } engines: { node: ^18.17.0 || >=20.5.0 } - nanoid@3.3.11: + nanoid@3.3.8: resolution: { - integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==, + integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==, } engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true - nanospinner@1.2.2: + nanospinner@1.1.0: resolution: { - integrity: sha512-Zt/AmG6qRU3e+WnzGGLuMCEAO/dAu45stNbHY223tUxldaDAeE+FxSPsd9Q+j+paejmm0ZbrNVs5Sraqy3dRxA==, + integrity: sha512-yFvNYMig4AthKYfHFl1sLj7B2nkHL4lzdig4osvl9/LdGbXwrdFRoqBS98gsEsOakr0yH+r5NZ/1Y9gdVB8trA==, } - napi-build-utils@2.0.0: + napi-build-utils@1.0.2: resolution: { - integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==, + integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==, } natural-compare@1.4.0: @@ -14220,10 +13596,25 @@ packages: integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, } - next-seo@6.8.0: + next-logger@5.0.2: + resolution: + { + integrity: sha512-2/ueKES1Na8zDxkP1lWdHCtEEN+EHyWhwlBtAd5/zklB8uf9Q3kCNg603Hd4ArG8u7ToV9mbgZne9CkOncULbw==, + } + peerDependencies: + next: ">=9.0.0" + pino: ^8.0.0 || ^9.0.0 || ^10.0.0 + winston: ^3.0.0 + peerDependenciesMeta: + pino: + optional: true + winston: + optional: true + + next-seo@6.6.0: resolution: { - integrity: sha512-zcxaV67PFXCSf8e6SXxbxPaOTgc8St/esxfsYXfQXMM24UESUVSXFm7f2A9HMkAwa0Gqn4s64HxYZAGfdF4Vhg==, + integrity: sha512-0VSted/W6XNtgAtH3D+BZrMLLudqfm0D5DYNJRXHcDgan/1ZF1tDFIsWrmvQlYngALyphPfZ3ZdOqlKpKdvG6w==, } peerDependencies: next: ^8.1.1-canary.54 || >=9.0.0 @@ -14248,16 +13639,16 @@ packages: sass: optional: true - next@15.5.12: + next@15.1.6: resolution: { - integrity: sha512-Fi/wQ4Etlrn60rz78bebG1i1SR20QxvV8tVp6iJspjLUSHcZoeUXCt+vmWoEcza85ElZzExK/jJ/F6SvtGktjA==, + integrity: sha512-Hch4wzbaX0vKQtalpXvUiw5sYivBy4cm5rzUKrBnUB/y436LGrvOUqYvlSeNVCWFO/770gDlltR9gqZH62ct4Q==, } engines: { node: ^18.18.0 || ^19.8.0 || >= 20.0.0 } hasBin: true peerDependencies: "@opentelemetry/api": ^1.1.0 - "@playwright/test": ^1.51.1 + "@playwright/test": ^1.41.2 babel-plugin-react-compiler: "*" react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 @@ -14272,16 +13663,22 @@ packages: sass: optional: true + nice-try@1.0.5: + resolution: + { + integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==, + } + no-case@3.0.4: resolution: { integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==, } - node-abi@3.87.0: + node-abi@3.33.0: resolution: { - integrity: sha512-+CGM1L1CgmtheLcBuleyYOn7NWPVu0s0EJH2C4puxgEZb9h8QpR9G2dBfZJOAUhi7VQxuBPMd0hiISWcTyiYyQ==, + integrity: sha512-7GGVawqyHF4pfd0YFybhv/eM9JwTtPqx0mAanQ146O3FlSh3pA24zf9IRQTOsfTSqXTNzPSP5iagAJ94jjuVog==, } engines: { node: ">=10" } @@ -14297,19 +13694,24 @@ packages: integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==, } - node-addon-api@7.1.1: + node-addon-api@7.1.0: resolution: { - integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==, + integrity: sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==, } + engines: { node: ^16 || ^18 || >= 20 } - node-domexception@1.0.0: + node-fetch@2.6.7: resolution: { - integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==, + integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==, } - engines: { node: ">=10.5.0" } - deprecated: Use your platform's native DOMException instead + engines: { node: 4.x || >=6.0.0 } + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true node-fetch@2.7.0: resolution: @@ -14323,17 +13725,10 @@ packages: encoding: optional: true - node-fetch@3.3.2: + node-gyp@12.3.0: resolution: { - integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - - node-gyp@12.2.0: - resolution: - { - integrity: sha512-q23WdzrQv48KozXlr0U1v9dwO/k59NHeSzn6loGcasyf0UnSrtzs8kRxM+mfwJSf0DkX0s43hcqgnSO4/VNthQ==, + integrity: sha512-QNcUWM+HgJplcPzBvFBZ9VXacyGZ4+VTOb80PwWR+TlVzoHbRKULNEzpRsnaoxG3Wzr7Qh7BYxGDU3CbKib2Yg==, } engines: { node: ^20.17.0 || >=22.9.0 } hasBin: true @@ -14346,26 +13741,12 @@ packages: engines: { node: ">= 10.12.0" } hasBin: true - node-gyp@9.4.1: - resolution: - { - integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==, - } - engines: { node: ^12.13 || ^14.13 || >=16 } - hasBin: true - node-int64@0.4.0: resolution: { integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, } - node-machine-id@1.1.12: - resolution: - { - integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==, - } - node-polyfill-webpack-plugin@2.0.1: resolution: { @@ -14382,16 +13763,16 @@ packages: } engines: { node: ">=8" } - node-releases@2.0.36: + node-releases@2.0.19: resolution: { - integrity: sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==, + integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==, } - nodemon@3.1.14: + nodemon@3.0.2: resolution: { - integrity: sha512-jakjZi93UtB3jHMWsXL68FXSAosbLfY0In5gtKq3niLSkrWznrVBzXFNOEMJUfc9+Ke7SHWoAZsiMkNP3vq6Jw==, + integrity: sha512-9qIN2LNTrEzpOPBaWHTm4Asy1LxXLSickZStAQ4IZe7zsoIpD/A7LWxhZV3t4Zu352uBcqVnRsDXSMR2Sc3lTA==, } engines: { node: ">=10" } hasBin: true @@ -14402,20 +13783,19 @@ packages: integrity: sha512-lNDU9VJaOPxUmXcLb+HQFeUgQQPtMI24Gt6hgfuMHRJgMRHMF/qZ4HJD3GDru4sSw9IQl2jPjAYnQrdIeLbwow==, } - nopt@5.0.0: + nopt@1.0.10: resolution: { - integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==, + integrity: sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==, } - engines: { node: ">=6" } hasBin: true - nopt@6.0.0: + nopt@5.0.0: resolution: { - integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==, + integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==, } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + engines: { node: ">=6" } hasBin: true nopt@8.1.0: @@ -14447,13 +13827,6 @@ packages: } engines: { node: ">=10" } - normalize-package-data@5.0.0: - resolution: - { - integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - normalize-path@2.1.1: resolution: { @@ -14468,6 +13841,13 @@ packages: } engines: { node: ">=0.10.0" } + normalize-range@0.1.2: + resolution: + { + integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==, + } + engines: { node: ">=0.10.0" } + normalize-url@4.5.1: resolution: { @@ -14488,13 +13868,6 @@ packages: integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==, } - npm-bundled@3.0.1: - resolution: - { - integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - npm-bundled@4.0.0: resolution: { @@ -14516,13 +13889,6 @@ packages: } engines: { node: ">=10" } - npm-install-checks@6.3.0: - resolution: - { - integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - npm-install-checks@7.1.2: resolution: { @@ -14550,13 +13916,6 @@ packages: } engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } - npm-normalize-package-bin@3.0.1: - resolution: - { - integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - npm-normalize-package-bin@4.0.0: resolution: { @@ -14571,13 +13930,6 @@ packages: } engines: { node: ^20.17.0 || >=22.9.0 } - npm-package-arg@10.1.0: - resolution: - { - integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - npm-package-arg@12.0.2: resolution: { @@ -14614,13 +13966,6 @@ packages: engines: { node: ">=10" } hasBin: true - npm-packlist@7.0.4: - resolution: - { - integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - npm-pick-manifest@10.0.0: resolution: { @@ -14641,13 +13986,6 @@ packages: integrity: sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA==, } - npm-pick-manifest@8.0.2: - resolution: - { - integrity: sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - npm-registry-fetch@12.0.2: resolution: { @@ -14655,13 +13993,6 @@ packages: } engines: { node: ^12.13.0 || ^14.15.0 || >=16 } - npm-registry-fetch@14.0.5: - resolution: - { - integrity: sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - npm-registry-fetch@19.1.0: resolution: { @@ -14683,10 +14014,10 @@ packages: } engines: { node: ">=8" } - npm-run-path@5.3.0: + npm-run-path@5.1.0: resolution: { - integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==, + integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==, } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } @@ -14724,16 +14055,16 @@ packages: } engines: { node: ">=0.10.0" } - nwsapi@2.2.23: + nwsapi@2.2.7: resolution: { - integrity: sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==, + integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==, } - nx@22.5.4: + nx@22.6.5: resolution: { - integrity: sha512-L8wL7uCjnmpyvq4r2mN9s+oriUE4lY+mX9VgOpjj0ucRd5nzaEaBQppVs0zQGkbKC0BnHS8PGtnAglspd5Gh1Q==, + integrity: sha512-VRKhDAt684dXNSz9MNjE7MekkCfQF41P2PSx5jEWQjDEP1Z4jFZbyeygWs5ZyOroG7/n0MoWAJTe6ftvIcBOAg==, } hasBin: true peerDependencies: @@ -14760,17 +14091,17 @@ packages: } engines: { node: ">=0.10.0" } - object-inspect@1.13.4: + object-inspect@1.13.3: resolution: { - integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==, + integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==, } engines: { node: ">= 0.4" } - object-is@1.1.6: + object-is@1.1.5: resolution: { - integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==, + integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==, } engines: { node: ">= 0.4" } @@ -14788,10 +14119,10 @@ packages: } engines: { node: ">= 10" } - object.assign@4.1.7: + object.assign@4.1.4: resolution: { - integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==, + integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, } engines: { node: ">= 0.4" } @@ -14801,14 +14132,21 @@ packages: integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==, } - oclif@3.17.2: + oclif@3.4.3: resolution: { - integrity: sha512-+vFXxgmR7dGGz+g6YiqSZu2LXVkBMaS9/rhtsLGkYw45e53CW/3kBgPRnOvxcTDM3Td9JPeBD2JWxXnPKGQW3A==, + integrity: sha512-Kg8ezSJvDluazG6eyN+TeoryaFn3i9utKVty2hy6I0FUy6QcPnbl8+MCha4Jwc+x5+pA46Tu0n2cnjUcWqp56w==, } engines: { node: ">=12.0.0" } hasBin: true + on-exit-leak-free@2.1.2: + resolution: + { + integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==, + } + engines: { node: ">=14.0.0" } + on-finished@2.4.1: resolution: { @@ -14816,10 +14154,10 @@ packages: } engines: { node: ">= 0.8" } - on-headers@1.1.0: + on-headers@1.0.2: resolution: { - integrity: sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==, + integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==, } engines: { node: ">= 0.8" } @@ -15100,29 +14438,27 @@ packages: engines: { node: ^12.13.0 || ^14.15.0 || >=16 } hasBin: true - pacote@15.2.0: + pacote@21.0.1: resolution: { - integrity: sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==, + integrity: sha512-LHGIUQUrcDIJUej53KJz1BPvUuHrItrR2yrnN0Kl9657cJ0ZT6QJHk9wWPBnQZhYT5KLyZWrk9jaYc2aKDu4yw==, } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + engines: { node: ^20.17.0 || >=22.9.0 } hasBin: true - pacote@21.0.1: + pacote@21.5.0: resolution: { - integrity: sha512-LHGIUQUrcDIJUej53KJz1BPvUuHrItrR2yrnN0Kl9657cJ0ZT6QJHk9wWPBnQZhYT5KLyZWrk9jaYc2aKDu4yw==, + integrity: sha512-VtZ0SB8mb5Tzw3dXDfVAIjhyVKUHZkS/ZH9/5mpKenwC9sFOXNI0JI7kEF7IMkwOnsWMFrvAZHzx1T5fmrp9FQ==, } engines: { node: ^20.17.0 || >=22.9.0 } hasBin: true - pacote@21.4.0: + pad-component@0.0.1: resolution: { - integrity: sha512-DR7mn7HUOomAX1BORnpYy678qVIidbvOojkBscqy27dRKN+s/hLeQT1MeYYrx1Cxh62jyKjiWiDV7RTTqB+ZEQ==, + integrity: sha512-8EKVBxCRSvLnsX1p2LlSFSH3c2/wuhY9/BXXWu8boL78FbVKqn2L5SpURt1x5iw6Gq8PTqJ7MdPoe5nCtX3I+g==, } - engines: { node: ^20.17.0 || >=22.9.0 } - hasBin: true pako@1.0.11: resolution: @@ -15149,10 +14485,10 @@ packages: } engines: { node: ">=6" } - parse-asn1@5.1.9: + parse-asn1@5.1.7: resolution: { - integrity: sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg==, + integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==, } engines: { node: ">= 0.10" } @@ -15197,10 +14533,10 @@ packages: } engines: { node: ">=8" } - parse-path@7.1.0: + parse-path@7.0.0: resolution: { - integrity: sha512-EuCycjZtfPcjWk7KTksnJ5xPMvWGA/6i4zrLYhRG0hGvC3GPU/jGUj3Cy+ZR0v30duV3e23R95T1lE2+lsndSw==, + integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==, } parse-srcset@1.0.2: @@ -15215,10 +14551,10 @@ packages: integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==, } - parse5@7.3.0: + parse5@7.1.2: resolution: { - integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==, + integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==, } parseurl@1.3.3: @@ -15234,10 +14570,10 @@ packages: integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==, } - password-prompt@1.1.3: + password-prompt@1.1.2: resolution: { - integrity: sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==, + integrity: sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA==, } path-browserify@1.0.1: @@ -15327,13 +14663,6 @@ packages: } engines: { node: ">=0.10.0" } - path-scurry@1.11.1: - resolution: - { - integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==, - } - engines: { node: ">=16 || 14 >=14.18" } - path-scurry@2.0.2: resolution: { @@ -15341,10 +14670,10 @@ packages: } engines: { node: 18 || 20 || >=22 } - path-to-regexp@0.1.12: + path-to-regexp@0.1.10: resolution: { - integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==, + integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==, } path-type@3.0.0: @@ -15373,19 +14702,19 @@ packages: integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==, } - pathval@2.0.1: + pathval@2.0.0: resolution: { - integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==, + integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==, } engines: { node: ">= 14.16" } - pbkdf2@3.1.5: + pbkdf2@3.1.2: resolution: { - integrity: sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ==, + integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==, } - engines: { node: ">= 0.10" } + engines: { node: ">=0.12" } pend@1.2.0: resolution: @@ -15412,10 +14741,10 @@ packages: } engines: { node: ">=8.6" } - picomatch@4.0.3: + picomatch@4.0.4: resolution: { - integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==, + integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==, } engines: { node: ">=12" } @@ -15448,17 +14777,29 @@ packages: } engines: { node: ">=6" } - pify@5.0.0: + pino-abstract-transport@2.0.0: resolution: { - integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==, + integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==, } - engines: { node: ">=10" } - pirates@4.0.7: + pino-std-serializers@7.0.0: + resolution: + { + integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==, + } + + pino@9.7.0: + resolution: + { + integrity: sha512-vnMCM6xZTb1WDmLvtG2lE/2p+t9hDEIvTWJsu6FejkE62vB7gDhvzrpFR4Cw2to+9JNQxVnkAKVPA1KPB98vWg==, + } + hasBin: true + + pirates@4.0.6: resolution: { - integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==, + integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==, } engines: { node: ">= 6" } @@ -15490,21 +14831,14 @@ packages: } engines: { node: ">=10" } - possible-typed-array-names@1.1.0: - resolution: - { - integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==, - } - engines: { node: ">= 0.4" } - - postcss-loader@8.2.1: + postcss-loader@8.1.1: resolution: { - integrity: sha512-k98jtRzthjj3f76MYTs9JTpRqV1RaaMhEU0Lpw9OTmQZQdppg4B30VZ74BojuBHt3F4KyubHJoXCMUeM8Bqeow==, + integrity: sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==, } engines: { node: ">= 18.12.0" } peerDependencies: - "@rspack/core": 0.x || ^1.0.0 || ^2.0.0-0 + "@rspack/core": 0.x || 1.x postcss: ^7.0.0 || ^8.0.1 webpack: ^5.0.0 peerDependenciesMeta: @@ -15555,10 +14889,10 @@ packages: peerDependencies: postcss: ^8.1.0 - postcss-resolve-nested-selector@0.1.6: + postcss-resolve-nested-selector@0.1.1: resolution: { - integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==, + integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==, } postcss-safe-parser@6.0.0: @@ -15570,26 +14904,26 @@ packages: peerDependencies: postcss: ^8.3.3 - postcss-scss@4.0.9: + postcss-scss@4.0.6: resolution: { - integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==, + integrity: sha512-rLDPhJY4z/i4nVFZ27j9GqLxj1pwxE80eAzUNRMXtcpipFYIeowerzBgG3yJhMtObGEXidtIgbUpQ3eLDsf5OQ==, } engines: { node: ">=12.0" } peerDependencies: - postcss: ^8.4.29 + postcss: ^8.4.19 - postcss-selector-parser@6.1.2: + postcss-selector-parser@6.0.11: resolution: { - integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==, + integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==, } engines: { node: ">=4" } - postcss-selector-parser@7.1.1: + postcss-selector-parser@7.0.0: resolution: { - integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==, + integrity: sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==, } engines: { node: ">=4" } @@ -15614,26 +14948,25 @@ packages: } engines: { node: ^10 || ^12 || >=14 } - postcss@8.5.8: + postcss@8.5.1: resolution: { - integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==, + integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==, } engines: { node: ^10 || ^12 || >=14 } - prebuild-install@7.1.3: + prebuild-install@7.1.1: resolution: { - integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==, + integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==, } engines: { node: ">=10" } - deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available. hasBin: true - preferred-pm@3.1.4: + preferred-pm@3.0.3: resolution: { - integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==, + integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==, } engines: { node: ">=10" } @@ -15644,18 +14977,18 @@ packages: } engines: { node: ">=4" } - prettier@2.8.8: + prettier@2.8.3: resolution: { - integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==, + integrity: sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==, } engines: { node: ">=10.13.0" } hasBin: true - prettier@3.8.1: + prettier@3.3.3: resolution: { - integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==, + integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==, } engines: { node: ">=14" } hasBin: true @@ -15687,10 +15020,10 @@ packages: } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - pretty-format@30.2.0: + pretty-format@30.3.0: resolution: { - integrity: sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==, + integrity: sha512-oG4T3wCbfeuvljnyAzhBvpN45E8iOTXCU/TD3zXW80HA3dQ4ahdqMkWGiPWZvjpQwlbyHrPTWUAqUzGzv4l1JQ==, } engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } @@ -15707,13 +15040,6 @@ packages: integrity: sha512-aCk8AO51s+4JyuYGg3Q/a6gnrlDO09NpVWePtjp7xwphcoQ04x5WAfCyugcsbLooWcMJ87CLkD4+604IckEdhg==, } - proc-log@3.0.0: - resolution: - { - integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - proc-log@5.0.0: resolution: { @@ -15734,13 +15060,19 @@ packages: integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, } - process-on-spawn@1.1.0: + process-on-spawn@1.0.0: resolution: { - integrity: sha512-JOnOPQ/8TZgjs1JIH/m9ni7FfimjNa/PRx7y/Wb5qdItsnhO0jE4AT7fC0HjC28DUQWDr50dwSYZLdRMlqDq3Q==, + integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==, } engines: { node: ">=8" } + process-warning@5.0.0: + resolution: + { + integrity: sha512-a39t9ApHNx2L4+HBnQKqxxHNs1r7KF+Intd8Q/g1bUh6q0WIp9voPXJ/x0j+ZL45KF1pJd9+q2jLIRMfvEshkA==, + } + process@0.11.10: resolution: { @@ -15817,10 +15149,10 @@ packages: integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, } - protocols@2.0.2: + protocols@2.0.1: resolution: { - integrity: sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==, + integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==, } proxy-addr@2.0.7: @@ -15842,6 +15174,13 @@ packages: integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, } + proxy-from-env@2.1.0: + resolution: + { + integrity: sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==, + } + engines: { node: ">=10" } + ps-list@8.1.1: resolution: { @@ -15855,10 +15194,10 @@ packages: integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==, } - psl@1.15.0: + psl@1.9.0: resolution: { - integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==, + integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==, } pstree.remy@1.1.8: @@ -15873,10 +15212,10 @@ packages: integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==, } - pump@3.0.4: + pump@3.0.0: resolution: { - integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==, + integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==, } punycode@1.3.2: @@ -15891,50 +15230,58 @@ packages: integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==, } - punycode@2.3.1: + punycode@2.1.1: resolution: { - integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==, + integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==, } engines: { node: ">=6" } - pure-rand@6.1.0: + pure-rand@6.0.2: resolution: { - integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==, + integrity: sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==, } - pvtsutils@1.3.6: + pvtsutils@1.3.2: resolution: { - integrity: sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==, + integrity: sha512-+Ipe2iNUyrZz+8K/2IOo+kKikdtfhRKzNpQbruF2URmqPtoqAs8g3xS7TJvFF2GcPXjh7DkqMnpVveRFq4PgEQ==, } - pvutils@1.1.5: + pvutils@1.1.3: resolution: { - integrity: sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA==, + integrity: sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==, } - engines: { node: ">=16.0.0" } + engines: { node: ">=6.0.0" } + + qs@6.10.5: + resolution: + { + integrity: sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ==, + } + engines: { node: ">=0.6" } + deprecated: when using stringify with arrayFormat comma, `[]` is appended on single-item arrays. Upgrade to v6.11.0 or downgrade to v6.10.4 to fix. - qs@6.10.7: + qs@6.11.0: resolution: { - integrity: sha512-SU8Tw69GDcmdCwqC8OksqrQ6w/TGMsKRWGOj5rOaFt1xVwLbReX87/icjHrGDVuS3yfZUHKo2Q26IoAVucBS3Q==, + integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==, } engines: { node: ">=0.6" } - qs@6.14.2: + qs@6.13.0: resolution: { - integrity: sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==, + integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==, } engines: { node: ">=0.6" } - qs@6.15.0: + qs@6.14.0: resolution: { - integrity: sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==, + integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==, } engines: { node: ">=0.6" } @@ -15965,12 +15312,24 @@ packages: integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, } + queue-tick@1.0.1: + resolution: + { + integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==, + } + queue@6.0.2: resolution: { integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==, } + quick-format-unescaped@4.0.4: + resolution: + { + integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==, + } + quick-lru@4.0.1: resolution: { @@ -16013,10 +15372,10 @@ packages: deprecated: Please upgrade to @sentry/node. See the migration guide https://bit.ly/3ybOlo7 hasBin: true - raw-body@2.5.3: + raw-body@2.5.2: resolution: { - integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==, + integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==, } engines: { node: ">= 0.8" } @@ -16027,19 +15386,19 @@ packages: } hasBin: true - react-confetti@6.4.0: + react-confetti@6.2.2: resolution: { - integrity: sha512-5MdGUcqxrTU26I2EU7ltkWPwxvucQTuqMm8dUz72z2YMqTD6s9vMcDUysk7n9jnC+lXuCPeJJ7Knf98VEYE9Rg==, + integrity: sha512-K+kTyOPgX+ZujMZ+Rmb7pZdHBvg+DzinG/w4Eh52WOB8/pfO38efnnrtEZNJmjTvLxc16RBYO+tPM68Fg8viBA==, } engines: { node: ">=16" } peerDependencies: react: ^16.3.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 - react-docgen-typescript@2.4.0: + react-docgen-typescript@2.2.2: resolution: { - integrity: sha512-ZtAp5XTO5HRzQctjPU0ybY0RRCQO19X/8fxn3w7y2VVTUbGHDKULPTL4ky3vB05euSgG5NpALhEhDPvQ56wvXg==, + integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==, } peerDependencies: typescript: ">= 4.3.x" @@ -16097,6 +15456,12 @@ packages: integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==, } + react-is@18.2.0: + resolution: + { + integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==, + } + react-is@18.3.1: resolution: { @@ -16110,13 +15475,13 @@ packages: } engines: { node: ">=0.10.0" } - react-swipeable@7.0.2: + react-swipeable@7.0.0: resolution: { - integrity: sha512-v1Qx1l+aC2fdxKa9aKJiaU/ZxmJ5o98RMoFwUqAAzVWUcxgfHFXDDruCKXhw6zIYXm6V64JiHgP9f6mlME5l8w==, + integrity: sha512-NI7KGfQ6gwNFN0Hor3vytYW3iRfMMaivGEuxcADOOfBCx/kqwXE8IfHFxEcxSUkxCYf38COLKYd9EMYZghqaUA==, } peerDependencies: - react: ^16.8.3 || ^17 || ^18 || ^19.0.0 || ^19.0.0-rc + react: ^16.8.3 || ^17 || ^18 react@18.3.1: resolution: @@ -16153,21 +15518,6 @@ packages: } engines: { node: ">=10" } - read-package-json-fast@3.0.2: - resolution: - { - integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - read-package-json@6.0.4: - resolution: - { - integrity: sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - deprecated: This package is no longer supported. Please use @npmcli/package-json instead. - read-pkg-up@3.0.0: resolution: { @@ -16243,24 +15593,30 @@ packages: } engines: { node: ">=8.10.0" } - readdirp@4.1.2: + readdirp@4.1.1: resolution: { - integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==, + integrity: sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==, } engines: { node: ">= 14.18.0" } + real-require@0.2.0: + resolution: + { + integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==, + } + engines: { node: ">= 12.13.0" } + realistic-structured-clone@2.0.4: resolution: { integrity: sha512-lItAdBIFHUSe6fgztHPtmmWqKUgs+qhcYLi3wTRUl4OTB3Vb8aBVSjGfQZUvkmJCKoX3K9Wf7kyLp/F/208+7A==, } - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - recast@0.23.11: + recast@0.23.9: resolution: { - integrity: sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==, + integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==, } engines: { node: ">= 4" } @@ -16284,10 +15640,10 @@ packages: integrity: sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==, } - regenerate-unicode-properties@10.2.2: + regenerate-unicode-properties@10.2.0: resolution: { - integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==, + integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==, } engines: { node: ">=4" } @@ -16297,23 +15653,35 @@ packages: integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==, } - regex-parser@2.3.1: + regenerator-runtime@0.14.1: + resolution: + { + integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==, + } + + regenerator-transform@0.15.2: + resolution: + { + integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==, + } + + regex-parser@2.3.0: resolution: { - integrity: sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==, + integrity: sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==, } - regexp.prototype.flags@1.5.4: + regexp.prototype.flags@1.4.3: resolution: { - integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==, + integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==, } engines: { node: ">= 0.4" } - regexpu-core@6.4.0: + regexpu-core@6.2.0: resolution: { - integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==, + integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==, } engines: { node: ">=4" } @@ -16337,10 +15705,10 @@ packages: integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==, } - regjsparser@0.13.0: + regjsparser@0.12.0: resolution: { - integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==, + integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==, } hasBin: true @@ -16376,10 +15744,10 @@ packages: integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==, } - remove-trailing-spaces@1.0.9: + remove-trailing-spaces@1.0.8: resolution: { - integrity: sha512-xzG7w5IRijvIkHIjDk65URsJJ7k4J95wmcArY5PRcmjldIOl7oTvG8+X2Ag690R7SfwiOcHrWZKVc1Pp5WIOzA==, + integrity: sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA==, } renderkid@3.0.0: @@ -16467,6 +15835,13 @@ packages: } engines: { node: ">=12" } + resolve.exports@2.0.2: + resolution: + { + integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==, + } + engines: { node: ">=10" } + resolve.exports@2.0.3: resolution: { @@ -16474,10 +15849,10 @@ packages: } engines: { node: ">=10" } - resolve@1.22.11: + resolve@1.22.10: resolution: { - integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==, + integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==, } engines: { node: ">= 0.4" } hasBin: true @@ -16522,17 +15897,10 @@ packages: } engines: { node: ">= 4" } - retry@0.13.1: - resolution: - { - integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==, - } - engines: { node: ">= 4" } - - reusify@1.1.0: + reusify@1.0.4: resolution: { - integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==, + integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, } engines: { iojs: ">=1.0.0", node: ">=0.10.0" } @@ -16558,40 +15926,31 @@ packages: deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true - rimraf@6.1.3: + ripemd160@2.0.2: resolution: { - integrity: sha512-LKg+Cr2ZF61fkcaK1UdkH2yEBBKnYjTyWzTJT6KNPcSPaiT7HSdhtMXQuN5wkTX0Xu72KQ1l8S42rlmexS2hSA==, + integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==, } - engines: { node: 20 || >=22 } - hasBin: true - ripemd160@2.0.3: + robots-parser@3.0.0: resolution: { - integrity: sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==, + integrity: sha512-6xkze3WRdneibICBAzMKcXyTKQw5shA3GbwoEJy7RSvxpZNGF0GMuYKE1T0VMP4fwx/fQs0n0mtriOqRtk5L1w==, } - engines: { node: ">= 0.8" } + engines: { node: ">=0.10" } - robots-parser@3.0.1: + rollup@2.79.2: resolution: { - integrity: sha512-s+pyvQeIKIZ0dx5iJiQk1tPLJAWln39+MI5jtM8wnyws+G5azk+dMnMX0qfbqNetKKNgcWWOdi0sfm+FbQbgdQ==, + integrity: sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==, } engines: { node: ">=10.0.0" } + hasBin: true - rollup@2.80.0: + run-async@2.4.1: resolution: { - integrity: sha512-cIFJOD1DESzpjOBl763Kp1AH7UE/0fcdHe6rZXUdQ9c50uvgigvW97u3IcSeBwOkgqL/PXPBktBCh0KEu5L8XQ==, - } - engines: { node: ">=10.0.0" } - hasBin: true - - run-async@2.4.1: - resolution: - { - integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==, + integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==, } engines: { node: ">=0.12.0" } @@ -16615,6 +15974,12 @@ packages: } engines: { npm: ">=2.0.0" } + rxjs@7.8.1: + resolution: + { + integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==, + } + rxjs@7.8.2: resolution: { @@ -16639,12 +16004,12 @@ packages: integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, } - safe-regex-test@1.1.0: + safe-stable-stringify@2.5.0: resolution: { - integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==, + integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==, } - engines: { node: ">= 0.4" } + engines: { node: ">=10" } safer-buffer@2.1.2: resolution: @@ -16652,10 +16017,10 @@ packages: integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, } - sanitize-html@2.17.1: + sanitize-html@2.12.1: resolution: { - integrity: sha512-ehFCW+q1a4CSOWRAdX97BX/6/PDEkCqw7/0JXZAGQV57FQB3YOkTa/rrzHPeJ+Aghy4vZAFfWMYyfxIiB7F/gw==, + integrity: sha512-Plh+JAn0UVDpBRP/xEjsk+xDCoOvMBwQUf/K+/cBAVuTbtX8bj2VB7S1sL1dssVpykqp0/KPSesHrqXtokVBpA==, } sass-loader@12.6.0: @@ -16704,10 +16069,10 @@ packages: webpack: optional: true - sass@1.97.3: + sass@1.83.4: resolution: { - integrity: sha512-fDz1zJpd5GycprAbu4Q2PV/RprsRtKC/0z82z0JLgdytmcq0+ujJbJ/09bPGDxCLkKY3Np5cRAOcWiVkLXJURg==, + integrity: sha512-B1bozCeNQiOgDcLd33e2Cs2U60wZwjUUXzh900ZyQF5qUasvMdDZYbQ566LJu7cqR+sAHlAfO6RMkaID5s6qpA==, } engines: { node: ">=14.0.0" } hasBin: true @@ -16718,6 +16083,12 @@ packages: integrity: sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==, } + sax@1.2.4: + resolution: + { + integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==, + } + saxes@6.0.0: resolution: { @@ -16745,10 +16116,10 @@ packages: } engines: { node: ">= 10.13.0" } - schema-utils@4.3.3: + schema-utils@4.3.0: resolution: { - integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==, + integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==, } engines: { node: ">= 10.13.0" } @@ -16794,26 +16165,41 @@ packages: engines: { node: ">=10" } hasBin: true - semver@7.7.2: + semver@7.7.0: resolution: { - integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==, + integrity: sha512-DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==, + } + engines: { node: ">=10" } + hasBin: true + + semver@7.7.1: + resolution: + { + integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==, } engines: { node: ">=10" } hasBin: true - semver@7.7.4: + semver@7.7.2: resolution: { - integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==, + integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==, } engines: { node: ">=10" } hasBin: true - send@0.19.2: + send@0.18.0: + resolution: + { + integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==, + } + engines: { node: ">= 0.8.0" } + + send@0.19.0: resolution: { - integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==, + integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==, } engines: { node: ">= 0.8.0" } @@ -16823,10 +16209,16 @@ packages: integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==, } - serve-static@1.16.3: + serialize-javascript@6.0.2: resolution: { - integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==, + integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==, + } + + serve-static@1.16.0: + resolution: + { + integrity: sha512-pDLK8zwl2eKaYrs8mrPZBJua4hMplRWJ1tIFksVC3FtBEBnl8dxgeHtsaMS8DhS9i4fLObaon6ABoc4/hQGdPA==, } engines: { node: ">= 0.8.0" } @@ -16843,13 +16235,6 @@ packages: } engines: { node: ">= 0.4" } - set-function-name@2.0.2: - resolution: - { - integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==, - } - engines: { node: ">= 0.4" } - setimmediate@1.0.5: resolution: { @@ -16862,12 +16247,11 @@ packages: integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, } - sha.js@2.4.12: + sha.js@2.4.11: resolution: { - integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==, + integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==, } - engines: { node: ">= 0.10" } hasBin: true sharp@0.32.6: @@ -16884,13 +16268,6 @@ packages: } engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - sharp@0.34.5: - resolution: - { - integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==, - } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - shebang-command@1.2.0: resolution: { @@ -16919,12 +16296,11 @@ packages: } engines: { node: ">=8" } - shell-quote@1.8.3: + shell-quote@1.7.4: resolution: { - integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==, + integrity: sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw==, } - engines: { node: ">= 0.4" } shelljs@0.8.5: resolution: @@ -16989,14 +16365,6 @@ packages: integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==, } - sigstore@1.9.0: - resolution: - { - integrity: sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - hasBin: true - sigstore@4.1.0: resolution: { @@ -17016,10 +16384,10 @@ packages: integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==, } - simple-swizzle@0.2.4: + simple-swizzle@0.2.2: resolution: { - integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==, + integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==, } simple-update-notifier@2.0.0: @@ -17078,10 +16446,10 @@ packages: } engines: { node: ">=12" } - slice-ansi@7.1.2: + slice-ansi@7.1.0: resolution: { - integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==, + integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==, } engines: { node: ">=18" } @@ -17092,6 +16460,13 @@ packages: } engines: { node: ">= 6.0.0", npm: ">= 3.0.0" } + smol-toml@1.6.1: + resolution: + { + integrity: sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==, + } + engines: { node: ">= 18" } + snake-case@3.0.4: resolution: { @@ -17119,19 +16494,25 @@ packages: } engines: { node: ">= 14" } - socks@2.8.7: + socks@2.8.3: resolution: { - integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==, + integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==, } engines: { node: ">= 10.0.0", npm: ">= 3.0.0" } - sort-keys@2.0.0: + socks@2.8.4: resolution: { - integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==, + integrity: sha512-D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ==, + } + engines: { node: ">= 10.0.0", npm: ">= 3.0.0" } + + sonic-boom@4.2.0: + resolution: + { + integrity: sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==, } - engines: { node: ">=4" } sort-keys@4.2.0: resolution: @@ -17166,17 +16547,17 @@ packages: } engines: { node: ">=0.10.0" } - source-map@0.7.6: + source-map@0.7.4: resolution: { - integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==, + integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==, } - engines: { node: ">= 12" } + engines: { node: ">= 8" } - spawn-command@0.0.2: + spawn-command@0.0.2-1: resolution: { - integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==, + integrity: sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==, } spawn-wrap@2.0.0: @@ -17204,10 +16585,10 @@ packages: integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, } - spdx-license-ids@3.0.23: + spdx-license-ids@3.0.17: resolution: { - integrity: sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==, + integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==, } speedline-core@1.4.3: @@ -17223,6 +16604,13 @@ packages: integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==, } + split2@4.2.0: + resolution: + { + integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==, + } + engines: { node: ">= 10.x" } + split@1.0.1: resolution: { @@ -17241,20 +16629,19 @@ packages: integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, } - sshpk@1.18.0: + sprintf-js@1.1.3: resolution: { - integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==, + integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==, } - engines: { node: ">=0.10.0" } - hasBin: true - ssri@10.0.6: + sshpk@1.17.0: resolution: { - integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==, + integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==, } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + engines: { node: ">=0.10.0" } + hasBin: true ssri@12.0.0: resolution: @@ -17310,24 +16697,24 @@ packages: } engines: { node: ">= 0.6" } - statuses@2.0.2: + statuses@2.0.1: resolution: { - integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==, + integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==, } engines: { node: ">= 0.8" } - stop-iteration-iterator@1.1.0: + stop-iteration-iterator@1.0.0: resolution: { - integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==, + integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==, } engines: { node: ">= 0.4" } - storybook@8.6.17: + storybook@8.5.2: resolution: { - integrity: sha512-krR/l680A6qVnkGiK9p8jY0ucX3+kFCs2f4zw+S3w2Cdq8EiM/tFebPcX2V4S3z2UsO0v0dwAJOJNpzbFPdmVg==, + integrity: sha512-pf84emQ7Pd5jBdT2gzlNs4kRaSI3pq0Lh8lSfV+YqIVXztXIHU+Lqyhek2Lhjb7btzA1tExrhJrgQUsIji7i7A==, } hasBin: true peerDependencies: @@ -17355,10 +16742,10 @@ packages: } engines: { node: ">=10.0.0" } - streamx@2.23.0: + streamx@2.15.5: resolution: { - integrity: sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==, + integrity: sha512-9thPGMkKC2GctCzyCUjME3yR03x2xNo0GPKGkRw2UMYN+gqWa9uqpyNWhmsNCutU5zHmkUum0LsCRQTXUgUCAg==, } string-argv@0.3.2: @@ -17409,13 +16796,6 @@ packages: } engines: { node: ">=8" } - string-width@5.1.2: - resolution: - { - integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, - } - engines: { node: ">=12" } - string-width@7.2.0: resolution: { @@ -17469,10 +16849,10 @@ packages: } engines: { node: ">=8" } - strip-ansi@7.2.0: + strip-ansi@7.1.0: resolution: { - integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==, + integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==, } engines: { node: ">=12" } @@ -17539,10 +16919,10 @@ packages: } engines: { node: ">=8" } - strip-indent@4.1.1: + strip-indent@4.0.0: resolution: { - integrity: sha512-SlyRoSkdh1dYP0PzclLE7r0M9sgbFKKMFXpFRUMNuKhQSbC6VQIGzq3E0qsfvGJaUFJPGv6Ws1NZ/haTAjfbMA==, + integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==, } engines: { node: ">=12" } @@ -17560,10 +16940,10 @@ packages: } engines: { node: ">=8" } - style-loader@3.3.4: + style-loader@3.3.1: resolution: { - integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==, + integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==, } engines: { node: ">= 12.13.0" } peerDependencies: @@ -17607,22 +16987,6 @@ packages: babel-plugin-macros: optional: true - styled-jsx@5.1.7: - resolution: - { - integrity: sha512-HPLmEIYprxCeWDMLYiaaAhsV3yGfIlCqzuVOybE6fjF3SUJmH67nCoMDO+nAvHNHo46OfvpCNu4Rcue82dMNFg==, - } - engines: { node: ">= 12.0.0" } - peerDependencies: - "@babel/core": "*" - babel-plugin-macros: "*" - react: ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" - peerDependenciesMeta: - "@babel/core": - optional: true - babel-plugin-macros: - optional: true - stylelint-config-recess-order@3.1.0: resolution: { @@ -17671,13 +17035,13 @@ packages: peerDependencies: stylelint: ^14.0.0 - stylelint-scss@4.7.0: + stylelint-scss@4.3.0: resolution: { - integrity: sha512-TSUgIeS0H3jqDZnby1UO1Qv3poi1N8wUYIJY6D1tuUq2MN3lwp/rITVo0wD+1SWTmRm0tNmGO0b7nKInnqF6Hg==, + integrity: sha512-GvSaKCA3tipzZHoz+nNO7S02ZqOsdBzMiCx9poSmLlb3tdJlGddEX/8QzCOD8O7GQan9bjsvLMsO5xiw6IhhIQ==, } peerDependencies: - stylelint: ^14.5.1 || ^15.0.0 + stylelint: ^14.5.1 stylelint@14.16.1: resolution: @@ -17750,10 +17114,10 @@ packages: "@swc/core": ^1.2.147 webpack: ">=2" - swr@2.4.1: + swr@2.3.1: resolution: { - integrity: sha512-2CC6CiKQtEwaEeNiqWTAw9PGykW8SR5zZX8MZk6TeAvEAnVS7Visz8WzphqgtQ8v2xz/4Q5K+j+SeMaKXeeQIA==, + integrity: sha512-ALcpdX8Q2WGkuSKrxb1SSGCzoRb3xfkq0SH+AhtF9OXIWIXGSA+uJzGT682UJjqSTC2uN0myJJikFz43ApUPAw==, } peerDependencies: react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 @@ -17771,20 +17135,6 @@ packages: integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==, } - sync-fetch@0.6.0: - resolution: - { - integrity: sha512-IELLEvzHuCfc1uTsshPK58ViSdNqXxlml1U+fmwJIKLYKOr/rAtBrorE2RYm5IHaMpDNlmC0fr1LAvdXvyheEQ==, - } - engines: { node: ">=18" } - - sync-fetch@0.6.0-2: - resolution: - { - integrity: sha512-c7AfkZ9udatCuAy9RSfiGPpeOKKUAUK5e1cXadLOGUjasdxqYqAK0jTNkM/FSEyJ3a5Ra27j/tw/PS0qLmaF/A==, - } - engines: { node: ">=18" } - tabbable@5.3.3: resolution: { @@ -17797,30 +17147,36 @@ packages: integrity: sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==, } - table@6.9.0: + table@6.8.1: resolution: { - integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==, + integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==, } engines: { node: ">=10.0.0" } - tapable@2.3.0: + taketalk@1.0.0: + resolution: + { + integrity: sha512-kS7E53It6HA8S1FVFBWP7HDwgTiJtkmYk7TsowGlizzVrivR1Mf9mgjXHY1k7rOfozRVMZSfwjB3bevO4QEqpg==, + } + + tapable@2.2.1: resolution: { - integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==, + integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, } engines: { node: ">=6" } - tar-fs@2.1.4: + tar-fs@2.1.1: resolution: { - integrity: sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==, + integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==, } - tar-fs@3.1.2: + tar-fs@3.0.4: resolution: { - integrity: sha512-QGxxTxxyleAdyM3kpFs14ymbYmNFrfY+pHj7Z8FgtbZ7w2//VAgLMac7sT6nRpIHjppXO2AwwEOg0bPFVRcmXw==, + integrity: sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==, } tar-stream@2.2.0: @@ -17830,10 +17186,10 @@ packages: } engines: { node: ">=6" } - tar-stream@3.1.8: + tar-stream@3.1.6: resolution: { - integrity: sha512-U6QpVRyCGHva435KoNWy9PRoi2IFYCgtEhq9nmrPPpbRacPs9IH4aJ3gbrFC8dPcXvdSZ4XXfXT5Fshbp2MtlQ==, + integrity: sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==, } tar@6.2.1: @@ -17842,28 +17198,14 @@ packages: integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==, } engines: { node: ">=10" } - deprecated: Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me - tar@7.5.8: + tar@7.5.11: resolution: { - integrity: sha512-SYkBtK99u0yXa+IWL0JRzzcl7RxNpvX/U08Z+8DKnysfno7M+uExnTZH8K+VGgShf2qFPKtbNr9QBl8n7WBP6Q==, + integrity: sha512-ChjMH33/KetonMTAtpYdgUFr0tbz69Fp2v7zWxQfYZX4g5ZN2nOBXm1R2xyA+lMIKrLKIoKAwFj93jE/avX9cQ==, } engines: { node: ">=18" } - teex@1.0.1: - resolution: - { - integrity: sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==, - } - - temp-dir@1.0.0: - resolution: - { - integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==, - } - engines: { node: ">=4" } - term-size@1.2.0: resolution: { @@ -17871,10 +17213,10 @@ packages: } engines: { node: ">=4" } - terser-webpack-plugin@5.3.17: + terser-webpack-plugin@5.3.11: resolution: { - integrity: sha512-YR7PtUp6GMU91BgSJmlaX/rS2lGDbAF7D+Wtq7hRO+MiljNmodYvqslzCFiYVAgW+Qoaaia/QUIP4lGXufjdZw==, + integrity: sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==, } engines: { node: ">= 10.13.0" } peerDependencies: @@ -17890,10 +17232,10 @@ packages: uglify-js: optional: true - terser@5.46.0: + terser@5.37.0: resolution: { - integrity: sha512-jTwoImyr/QbOWFFso3YoU3ik0jBBDJ6JTOQiy/J2YxVJdZCc+5u7skhNwiOR3FQIygFqVUPHl7qbbxtjW2K3Qg==, + integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==, } engines: { node: ">=10" } hasBin: true @@ -17905,12 +17247,6 @@ packages: } engines: { node: ">=8" } - text-decoder@1.2.7: - resolution: - { - integrity: sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==, - } - text-extensions@1.9.0: resolution: { @@ -17924,6 +17260,13 @@ packages: integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, } + textextensions@5.15.0: + resolution: + { + integrity: sha512-MeqZRHLuaGamUXGuVn2ivtU3LA3mLCCIO5kUGoohTCoGmCBg/+8yPhWVX9WSl9telvVd8erftjFk9Fwb2dD6rw==, + } + engines: { node: ">=0.8" } + textextensions@5.16.0: resolution: { @@ -17937,10 +17280,16 @@ packages: integrity: sha512-9d/OfjEOjyeOpnm4F9o0KSK6BI6ytvi9DINSB5h1+jdlCvQlhKpViMSxWpBN9WstdfDQ61BS6NxWqcPCuQCAJg==, } - throttleit@1.0.1: + thread-stream@3.1.0: resolution: { - integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==, + integrity: sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==, + } + + throttleit@1.0.0: + resolution: + { + integrity: sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==, } through2@2.0.5: @@ -17962,13 +17311,6 @@ packages: } engines: { node: ">=0.10.0" } - timeout-signal@2.0.0: - resolution: - { - integrity: sha512-YBGpG4bWsHoPvofT6y/5iqulfXIiIErl5B0LdtHT1mGXDFTAhhRrbUpTvBgYbovr+3cKblya2WAOcpoy90XguA==, - } - engines: { node: ">=16" } - timers-browserify@2.0.12: resolution: { @@ -17989,13 +17331,6 @@ packages: } engines: { node: ">=12.0.0" } - tinyglobby@0.2.15: - resolution: - { - integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==, - } - engines: { node: ">=12.0.0" } - tinyrainbow@1.2.0: resolution: { @@ -18030,10 +17365,10 @@ packages: } engines: { node: ">=6" } - tmp@0.2.5: + tmp@0.2.3: resolution: { - integrity: sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==, + integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==, } engines: { node: ">=14.14" } @@ -18043,13 +17378,6 @@ packages: integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==, } - to-buffer@1.2.2: - resolution: - { - integrity: sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==, - } - engines: { node: ">= 0.4" } - to-readable-stream@1.0.0: resolution: { @@ -18078,17 +17406,17 @@ packages: } engines: { node: ">=0.6" } - touch@3.1.1: + touch@3.1.0: resolution: { - integrity: sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==, + integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==, } hasBin: true - tough-cookie@4.1.4: + tough-cookie@4.1.3: resolution: { - integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==, + integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==, } engines: { node: ">=6" } @@ -18170,46 +17498,40 @@ packages: esbuild: optional: true - ts-jest@29.4.6: + ts-jest@29.1.2: resolution: { - integrity: sha512-fSpWtOO/1AjSNQguk43hb/JCo16oJDnMJf3CdEGNkqsEX3t0KX96xvyX1D7PfLCpVoKu4MfVrqUkFyblYoY4lA==, + integrity: sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==, } - engines: { node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0 } + engines: { node: ^16.10.0 || ^18.0.0 || >=20.0.0 } hasBin: true peerDependencies: "@babel/core": ">=7.0.0-beta.0 <8" - "@jest/transform": ^29.0.0 || ^30.0.0 - "@jest/types": ^29.0.0 || ^30.0.0 - babel-jest: ^29.0.0 || ^30.0.0 + "@jest/types": ^29.0.0 + babel-jest: ^29.0.0 esbuild: "*" - jest: ^29.0.0 || ^30.0.0 - jest-util: ^29.0.0 || ^30.0.0 + jest: ^29.0.0 typescript: ">=4.3 <6" peerDependenciesMeta: "@babel/core": optional: true - "@jest/transform": - optional: true "@jest/types": optional: true babel-jest: optional: true esbuild: optional: true - jest-util: - optional: true - ts-log@2.2.7: + ts-log@2.2.5: resolution: { - integrity: sha512-320x5Ggei84AxzlXp91QkIGSw5wgaLT6GeAH0KsqDmRZdVWW2OiSeVvElVoatk3f7nicwXlElXsoFkARiGE2yg==, + integrity: sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==, } - ts-node@10.9.2: + ts-node@10.9.1: resolution: { - integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==, + integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, } hasBin: true peerDependencies: @@ -18279,10 +17601,10 @@ packages: integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==, } - tsx@4.21.0: + tsx@4.6.2: resolution: { - integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==, + integrity: sha512-QPpBdJo+ZDtqZgAnq86iY/PD2KYCUPSUGIunHdGwyII99GKH+f3z3FZ8XNFLSGQIA4I365ui8wnQpl8OKLqcsg==, } engines: { node: ">=18.0.0" } hasBin: true @@ -18293,13 +17615,6 @@ packages: integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==, } - tuf-js@1.1.7: - resolution: - { - integrity: sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - tuf-js@4.1.0: resolution: { @@ -18313,58 +17628,58 @@ packages: integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==, } - turbo-darwin-64@2.8.13: + turbo-darwin-64@2.3.4: resolution: { - integrity: sha512-PmOvodQNiOj77+Zwoqku70vwVjKzL34RTNxxoARjp5RU5FOj/CGiC6vcDQhNtFPUOWSAaogHF5qIka9TBhX4XA==, + integrity: sha512-uOi/cUIGQI7uakZygH+cZQ5D4w+aMLlVCN2KTGot+cmefatps2ZmRRufuHrEM0Rl63opdKD8/JIu+54s25qkfg==, } cpu: [x64] os: [darwin] - turbo-darwin-arm64@2.8.13: + turbo-darwin-arm64@2.3.4: resolution: { - integrity: sha512-kI+anKcLIM4L8h+NsM7mtAUpElkCOxv5LgiQVQR8BASyDFfc8Efj5kCk3cqxuxOvIqx0sLfCX7atrHQ2kwuNJQ==, + integrity: sha512-IIM1Lq5R+EGMtM1YFGl4x8Xkr0MWb4HvyU8N4LNoQ1Be5aycrOE+VVfH+cDg/Q4csn+8bxCOxhRp5KmUflrVTQ==, } cpu: [arm64] os: [darwin] - turbo-linux-64@2.8.13: + turbo-linux-64@2.3.4: resolution: { - integrity: sha512-j29KnQhHyzdzgCykBFeBqUPS4Wj7lWMnZ8CHqytlYDap4Jy70l4RNG46pOL9+lGu6DepK2s1rE86zQfo0IOdPw==, + integrity: sha512-1aD2EfR7NfjFXNH3mYU5gybLJEFi2IGOoKwoPLchAFRQ6OEJQj201/oNo9CDL75IIrQo64/NpEgVyZtoPlfhfA==, } cpu: [x64] os: [linux] - turbo-linux-arm64@2.8.13: + turbo-linux-arm64@2.3.4: resolution: { - integrity: sha512-OEl1YocXGZDRDh28doOUn49QwNe82kXljO1HXApjU0LapkDiGpfl3jkAlPKxEkGDSYWc8MH5Ll8S16Rf5tEBYg==, + integrity: sha512-MxTpdKwxCaA5IlybPxgGLu54fT2svdqTIxRd0TQmpRJIjM0s4kbM+7YiLk0mOh6dGqlWPUsxz/A0Mkn8Xr5o7Q==, } cpu: [arm64] os: [linux] - turbo-windows-64@2.8.13: + turbo-windows-64@2.3.4: resolution: { - integrity: sha512-717bVk1+Pn2Jody7OmWludhEirEe0okoj1NpRbSm5kVZz/yNN/jfjbxWC6ilimXMz7xoMT3IDfQFJsFR3PMANA==, + integrity: sha512-yyCrWqcRGu1AOOlrYzRnizEtdkqi+qKP0MW9dbk9OsMDXaOI5jlWtTY/AtWMkLw/czVJ7yS9Ex1vi9DB6YsFvw==, } cpu: [x64] os: [win32] - turbo-windows-arm64@2.8.13: + turbo-windows-arm64@2.3.4: resolution: { - integrity: sha512-R819HShLIT0Wj6zWVnIsYvSNtRNj1q9VIyaUz0P24SMcLCbQZIm1sV09F4SDbg+KCCumqD2lcaR2UViQ8SnUJA==, + integrity: sha512-PggC3qH+njPfn1PDVwKrQvvQby8X09ufbqZ2Ha4uSu+5TvPorHHkAbZVHKYj2Y+tvVzxRzi4Sv6NdHXBS9Be5w==, } cpu: [arm64] os: [win32] - turbo@2.8.13: + turbo@2.3.4: resolution: { - integrity: sha512-nyM99hwFB9/DHaFyKEqatdayGjsMNYsQ/XBNO6MITc7roncZetKb97MpHxWf3uiU+LB9c9HUlU3Jp2Ixei2k1A==, + integrity: sha512-1kiLO5C0Okh5ay1DbHsxkPsw9Sjsbjzm6cF85CpWjR0BIyBFNDbKqtUyqGADRS1dbbZoQanJZVj4MS5kk8J42Q==, } hasBin: true @@ -18387,13 +17702,6 @@ packages: } engines: { node: ">=4" } - type-detect@4.1.0: - resolution: - { - integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==, - } - engines: { node: ">=4" } - type-fest@0.18.1: resolution: { @@ -18415,13 +17723,6 @@ packages: } engines: { node: ">=6" } - type-fest@0.4.1: - resolution: - { - integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==, - } - engines: { node: ">=6" } - type-fest@0.6.0: resolution: { @@ -18443,13 +17744,6 @@ packages: } engines: { node: ">=12.20" } - type-fest@4.41.0: - resolution: - { - integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==, - } - engines: { node: ">=16" } - type-is@1.6.18: resolution: { @@ -18457,13 +17751,6 @@ packages: } engines: { node: ">= 0.6" } - typed-array-buffer@1.0.3: - resolution: - { - integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==, - } - engines: { node: ">= 0.4" } - typedarray-to-buffer@3.1.5: resolution: { @@ -18484,6 +17771,14 @@ packages: engines: { node: ">=14.17" } hasBin: true + typescript@5.4.5: + resolution: + { + integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==, + } + engines: { node: ">=14.17" } + hasBin: true + typeson-registry@1.0.0-alpha.39: resolution: { @@ -18498,17 +17793,16 @@ packages: } engines: { node: ">=0.1.14" } - ua-parser-js@1.0.41: + ua-parser-js@0.7.33: resolution: { - integrity: sha512-LbBDqdIC5s8iROCUjMbW1f5dJQTEFB1+KO9ogbvlb3nm9n4YHa5p4KTvFPWvh2Hs8gZMBuiB1/8+pdfe/tDPug==, + integrity: sha512-s8ax/CeZdK9R/56Sui0WM6y9OFREJarMRHqLB2EwkovemBxNQ+Bqu8GAsUnVcXKgphb++ghr/B2BZx4mahujPw==, } - hasBin: true - uglify-js@3.19.3: + uglify-js@3.17.4: resolution: { - integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==, + integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==, } engines: { node: ">=0.8.0" } hasBin: true @@ -18532,11 +17826,12 @@ packages: integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==, } - undici-types@6.21.0: + undici@6.25.0: resolution: { - integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==, + integrity: sha512-ZgpWDC5gmNiuY9CnLVXEH8rl50xhRCuLNA97fAUnKi8RRuV4E6KG31pDTsLVUKnohJE0I3XDrTeEydAXRw47xg==, } + engines: { node: ">=18.17" } unfetch@4.2.0: resolution: @@ -18558,17 +17853,17 @@ packages: } engines: { node: ">=4" } - unicode-match-property-value-ecmascript@2.2.1: + unicode-match-property-value-ecmascript@2.2.0: resolution: { - integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==, + integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==, } engines: { node: ">=4" } - unicode-property-aliases-ecmascript@2.2.0: + unicode-property-aliases-ecmascript@2.1.0: resolution: { - integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==, + integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==, } engines: { node: ">=4" } @@ -18585,20 +17880,6 @@ packages: } engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } - unique-filename@3.0.0: - resolution: - { - integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - unique-filename@5.0.0: - resolution: - { - integrity: sha512-2RaJTAvAb4owyjllTfXzFClJ7WsGxlykkPvCr9pA//LD9goVq+m4PPAeBgNodGZ7nSrntT/auWpJ6Y5IFXcfjg==, - } - engines: { node: ^20.17.0 || >=22.9.0 } - unique-slug@2.0.2: resolution: { @@ -18612,20 +17893,6 @@ packages: } engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } - unique-slug@4.0.0: - resolution: - { - integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - unique-slug@6.0.0: - resolution: - { - integrity: sha512-4Lup7Ezn8W3d52/xBhZBVdx323ckxa7DEvd9kPQHppTkLoJXw6ltrBCyj5pnrxj0qKDxYMJ56CoxNuFCscdTiw==, - } - engines: { node: ^20.17.0 || >=22.9.0 } - unique-string@1.0.0: resolution: { @@ -18702,10 +17969,10 @@ packages: } engines: { node: ">=4" } - update-browserslist-db@1.2.3: + update-browserslist-db@1.1.2: resolution: { - integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==, + integrity: sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==, } hasBin: true peerDependencies: @@ -18762,10 +18029,10 @@ packages: } engines: { node: ">= 0.4" } - urlpattern-polyfill@10.1.0: + urlpattern-polyfill@10.0.0: resolution: { - integrity: sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw==, + integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==, } urlpattern-polyfill@8.0.2: @@ -18774,10 +18041,10 @@ packages: integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==, } - use-sync-external-store@1.6.0: + use-sync-external-store@1.4.0: resolution: { - integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==, + integrity: sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 @@ -18813,13 +18080,6 @@ packages: } engines: { node: ">= 0.4.0" } - uuid@11.1.0: - resolution: - { - integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==, - } - hasBin: true - uuid@3.3.2: resolution: { @@ -18855,16 +18115,16 @@ packages: integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==, } - v8-compile-cache@2.4.0: + v8-compile-cache@2.3.0: resolution: { - integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==, + integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==, } - v8-to-istanbul@9.3.0: + v8-to-istanbul@9.1.0: resolution: { - integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==, + integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==, } engines: { node: ">=10.12.0" } @@ -18886,13 +18146,6 @@ packages: integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==, } - validate-npm-package-name@5.0.1: - resolution: - { - integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - validate-npm-package-name@6.0.2: resolution: { @@ -18981,10 +18234,10 @@ packages: } engines: { node: ">=10.13.0" } - watchpack@2.5.1: + watchpack@2.4.2: resolution: { - integrity: sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==, + integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==, } engines: { node: ">=10.13.0" } @@ -18994,17 +18247,17 @@ packages: integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, } - web-streams-polyfill@3.3.3: + web-streams-polyfill@3.2.1: resolution: { - integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==, + integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==, } engines: { node: ">= 8" } - webcrypto-core@1.8.1: + webcrypto-core@1.7.5: resolution: { - integrity: sha512-P+x1MvlNCXlKbLSOY4cYrdreqPG5hbzkmawbcXLKN/mf6DZW0SdNNkZ+sjwsqVkI4A4Ko2sPZmkZtCKY58w83A==, + integrity: sha512-gaExY2/3EHQlRNNNVSrbG2Cg94Rutl7fAaKILS1w8ZDhGxdFOaw6EbCfHIxPy9vt/xwp5o0VQAx9aySPF6hU1A==, } webidl-conversions@3.0.1: @@ -19051,36 +18304,29 @@ packages: integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==, } - webpack-sources@3.3.4: + webpack-sources@3.2.3: resolution: { - integrity: sha512-7tP1PdV4vF+lYPnkMR0jMY5/la2ub5Fc/8VQrrU+lXkiM6C4TjVfGw7iKfyhnTQOsD+6Q/iKw0eFciziRgD58Q==, + integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==, } engines: { node: ">=10.13.0" } - webpack-virtual-modules@0.6.2: + webpack-virtual-modules@0.4.6: resolution: { - integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==, + integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==, } - webpack@5.101.2: + webpack-virtual-modules@0.6.2: resolution: { - integrity: sha512-4JLXU0tD6OZNVqlwzm3HGEhAHufSiyv+skb7q0d2367VDMzrU1Q/ZeepvkcHH0rZie6uqEtTQQe0OEOOluH3Mg==, + integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==, } - engines: { node: ">=10.13.0" } - hasBin: true - peerDependencies: - webpack-cli: "*" - peerDependenciesMeta: - webpack-cli: - optional: true - webpack@5.105.4: + webpack@5.97.1: resolution: { - integrity: sha512-jTywjboN9aHxFlToqb0K0Zs9SbBoW4zRUlGzI2tYNxVYcEi/IPpn+Xi4ye5jTLvX2YeLuic/IvxNot+Q1jMoOw==, + integrity: sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==, } engines: { node: ">=10.13.0" } hasBin: true @@ -19096,12 +18342,11 @@ packages: integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==, } engines: { node: ">=12" } - deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation - whatwg-fetch@3.6.20: + whatwg-fetch@3.6.2: resolution: { - integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==, + integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==, } whatwg-mimetype@3.0.0: @@ -19111,13 +18356,6 @@ packages: } engines: { node: ">=12" } - whatwg-mimetype@4.0.0: - resolution: - { - integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==, - } - engines: { node: ">=18" } - whatwg-url@11.0.0: resolution: { @@ -19138,37 +18376,35 @@ packages: } engines: { node: ">=10" } - which-boxed-primitive@1.1.1: + which-boxed-primitive@1.0.2: resolution: { - integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==, + integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, } - engines: { node: ">= 0.4" } - which-collection@1.0.2: + which-collection@1.0.1: resolution: { - integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==, + integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==, } - engines: { node: ">= 0.4" } - which-module@2.0.1: + which-module@2.0.0: resolution: { - integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==, + integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==, } - which-pm@2.2.0: + which-pm@2.0.0: resolution: { - integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==, + integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==, } engines: { node: ">=8.15" } - which-typed-array@1.1.20: + which-typed-array@1.1.9: resolution: { - integrity: sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==, + integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==, } engines: { node: ">= 0.4" } @@ -19187,14 +18423,6 @@ packages: engines: { node: ">= 8" } hasBin: true - which@3.0.1: - resolution: - { - integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - hasBin: true - which@5.0.0: resolution: { @@ -19237,6 +18465,13 @@ packages: integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==, } + wrap-ansi@2.1.0: + resolution: + { + integrity: sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==, + } + engines: { node: ">=0.10.0" } + wrap-ansi@3.0.1: resolution: { @@ -19258,17 +18493,10 @@ packages: } engines: { node: ">=10" } - wrap-ansi@8.1.0: - resolution: - { - integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==, - } - engines: { node: ">=12" } - - wrap-ansi@9.0.2: + wrap-ansi@9.0.0: resolution: { - integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==, + integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==, } engines: { node: ">=18" } @@ -19311,24 +18539,10 @@ packages: } engines: { node: ^18.17.0 || >=20.5.0 } - write-json-file@3.2.0: + ws@7.5.9: resolution: { - integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==, - } - engines: { node: ">=6" } - - write-pkg@4.0.0: - resolution: - { - integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==, - } - engines: { node: ">=8" } - - ws@7.5.10: - resolution: - { - integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==, + integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==, } engines: { node: ">=8.3.0" } peerDependencies: @@ -19355,10 +18569,10 @@ packages: utf-8-validate: optional: true - ws@8.19.0: + ws@8.18.0: resolution: { - integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==, + integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==, } engines: { node: ">=10.0.0" } peerDependencies: @@ -19391,17 +18605,16 @@ packages: } engines: { node: ">=12" } - xml2js@0.6.2: + xml2js@0.4.19: resolution: { - integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==, + integrity: sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==, } - engines: { node: ">=4.0.0" } - xmlbuilder@11.0.1: + xmlbuilder@9.0.7: resolution: { - integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==, + integrity: sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ==, } engines: { node: ">=4.0" } @@ -19469,12 +18682,12 @@ packages: } engines: { node: ">= 6" } - yaml@2.8.2: + yaml@2.7.0: resolution: { - integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==, + integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==, } - engines: { node: ">= 14.6" } + engines: { node: ">= 14" } hasBin: true yargs-parser@13.1.2: @@ -19531,18 +18744,21 @@ packages: integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==, } - yeoman-environment@3.19.3: + yeoman-environment@3.13.0: resolution: { - integrity: sha512-/+ODrTUHtlDPRH9qIC0JREH8+7nsRcjDl3Bxn2Xo/rvAaVvixH5275jHwg0C85g4QsF4P6M2ojfScPPAl+pLAg==, + integrity: sha512-eBPpBZCvFzx6yk17x+ZrOHp8ADDv6qHradV+SgdugaQKIy9NjEX5AkbwdTHLOgccSTkQ9rN791xvYOu6OmqjBg==, } engines: { node: ">=12.10.0" } hasBin: true + peerDependencies: + mem-fs: ^1.2.0 || ^2.0.0 + mem-fs-editor: ^8.1.2 || ^9.0.0 - yeoman-generator@5.10.0: + yeoman-generator@5.7.0: resolution: { - integrity: sha512-iDUKykV7L4nDNzeYSedRmSeJ5eMYFucnKDi6KN1WNASXErgPepKqsQw55TgXPHnmpcyOh2Dd/LAZkyc+f0qaAw==, + integrity: sha512-z9ZwgKoDOd+llPDCwn8Ax2l4In5FMhlslxdeByW4AMxhT+HbTExXKEAahsClHSbwZz1i5OzRwLwRIUdOJBr5Bw==, } engines: { node: ">=12.10.0" } peerDependencies: @@ -19551,10 +18767,10 @@ packages: yeoman-environment: optional: true - yjs@13.6.29: + yjs@13.6.30: resolution: { - integrity: sha512-kHqDPdltoXH+X4w1lVmMtddE3Oeqq48nM40FD5ojTd8xYhQpzIDcfE2keMSU5bAgRPJBe225WTUdyUgj1DtbiQ==, + integrity: sha512-vv/9h42eCMC81ZHDFswuu/MKzkl/vyq1BhaNGfHyOonwlG4CJbQF4oiBBJPvfdeCt/PlVDWh7Nov9D34YY09uQ==, } engines: { node: ">=16.0.0", npm: ">=8.0.0" } @@ -19572,13 +18788,20 @@ packages: } engines: { node: ">=10" } - yocto-queue@1.2.2: + yocto-queue@1.1.1: resolution: { - integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==, + integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==, } engines: { node: ">=12.20" } + yoctocolors-cjs@2.1.2: + resolution: + { + integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==, + } + engines: { node: ">=18" } + yoctocolors-cjs@2.1.3: resolution: { @@ -19586,10 +18809,18 @@ packages: } engines: { node: ">=18" } - zustand@5.0.11: + yosay@2.0.2: + resolution: + { + integrity: sha512-avX6nz2esp7IMXGag4gu6OyQBsMh/SEn+ZybGu3yKPlOTE6z9qJrzG/0X5vCq/e0rPFy0CUYCze0G5hL310ibA==, + } + engines: { node: ">=4" } + hasBin: true + + zustand@5.0.5: resolution: { - integrity: sha512-fdZY+dk7zn/vbWNCYmzZULHRrss0jx5pPFiOuMZ/5HJN6Yv3u+1Wswy/4MpZEkEGhtNH+pwxZB8OKgUBPzYAGg==, + integrity: sha512-mILtRfKW9xM47hqxGIxCv12gXusoY/xTSHBYApXozR0HmQv299whhBeeAcRy+KrPPybzosvJBCOmVjq6x12fCg==, } engines: { node: ">=12.20.0" } peerDependencies: @@ -19608,24 +18839,29 @@ packages: optional: true snapshots: - "@adobe/css-tools@4.4.4": {} + "@adobe/css-tools@4.4.0": {} + + "@ampproject/remapping@2.2.0": + dependencies: + "@jridgewell/gen-mapping": 0.1.1 + "@jridgewell/trace-mapping": 0.3.25 "@antfu/ni@0.21.12": {} - "@ardatan/relay-compiler@12.0.0(encoding@0.1.13)(graphql@15.10.1)": + "@ardatan/relay-compiler@12.0.0(encoding@0.1.13)(graphql@15.8.0)": dependencies: - "@babel/core": 7.29.0 - "@babel/generator": 7.29.1 - "@babel/parser": 7.29.0 - "@babel/runtime": 7.28.6 - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 - babel-preset-fbjs: 3.4.0(@babel/core@7.29.0) + "@babel/core": 7.26.7 + "@babel/generator": 7.26.5 + "@babel/parser": 7.26.7 + "@babel/runtime": 7.26.7 + "@babel/traverse": 7.26.7 + "@babel/types": 7.26.7 + babel-preset-fbjs: 3.4.0(@babel/core@7.26.7) chalk: 4.1.2 fb-watchman: 2.0.2 - fbjs: 3.0.5(encoding@0.1.13) + fbjs: 3.0.4(encoding@0.1.13) glob: 7.2.3 - graphql: 15.10.1 + graphql: 15.8.0 immutable: 3.7.6 invariant: 2.2.4 nullthrows: 1.1.1 @@ -19636,869 +18872,828 @@ snapshots: - encoding - supports-color - "@ardatan/relay-compiler@12.0.3(encoding@0.1.13)(graphql@15.10.1)": - dependencies: - "@babel/generator": 7.29.1 - "@babel/parser": 7.29.0 - "@babel/runtime": 7.28.6 - chalk: 4.1.2 - fb-watchman: 2.0.2 - graphql: 15.10.1 - immutable: 3.7.6 - invariant: 2.2.4 - nullthrows: 1.1.1 - relay-runtime: 12.0.0(encoding@0.1.13) - signedsource: 1.0.0 - transitivePeerDependencies: - - encoding - "@ardatan/sync-fetch@0.0.1(encoding@0.1.13)": dependencies: node-fetch: 2.7.0(encoding@0.1.13) transitivePeerDependencies: - encoding - "@babel/code-frame@7.29.0": + "@babel/code-frame@7.26.2": dependencies: - "@babel/helper-validator-identifier": 7.28.5 + "@babel/helper-validator-identifier": 7.25.9 js-tokens: 4.0.0 picocolors: 1.1.1 - "@babel/compat-data@7.29.0": {} + "@babel/compat-data@7.26.5": {} - "@babel/core@7.29.0": + "@babel/core@7.26.7": dependencies: - "@babel/code-frame": 7.29.0 - "@babel/generator": 7.29.1 - "@babel/helper-compilation-targets": 7.28.6 - "@babel/helper-module-transforms": 7.28.6(@babel/core@7.29.0) - "@babel/helpers": 7.28.6 - "@babel/parser": 7.29.0 - "@babel/template": 7.28.6 - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 - "@jridgewell/remapping": 2.3.5 + "@ampproject/remapping": 2.2.0 + "@babel/code-frame": 7.26.2 + "@babel/generator": 7.26.5 + "@babel/helper-compilation-targets": 7.26.5 + "@babel/helper-module-transforms": 7.26.0(@babel/core@7.26.7) + "@babel/helpers": 7.26.7 + "@babel/parser": 7.26.7 + "@babel/template": 7.25.9 + "@babel/traverse": 7.26.7 + "@babel/types": 7.26.7 convert-source-map: 2.0.0 - debug: 4.4.3 + debug: 4.4.0 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 transitivePeerDependencies: - supports-color - "@babel/generator@7.29.1": + "@babel/generator@7.26.5": dependencies: - "@babel/parser": 7.29.0 - "@babel/types": 7.29.0 - "@jridgewell/gen-mapping": 0.3.13 - "@jridgewell/trace-mapping": 0.3.31 + "@babel/parser": 7.26.7 + "@babel/types": 7.26.7 + "@jridgewell/gen-mapping": 0.3.5 + "@jridgewell/trace-mapping": 0.3.25 jsesc: 3.1.0 - "@babel/helper-annotate-as-pure@7.27.3": + "@babel/helper-annotate-as-pure@7.25.9": dependencies: - "@babel/types": 7.29.0 + "@babel/types": 7.26.7 - "@babel/helper-compilation-targets@7.28.6": + "@babel/helper-compilation-targets@7.26.5": dependencies: - "@babel/compat-data": 7.29.0 - "@babel/helper-validator-option": 7.27.1 - browserslist: 4.28.1 + "@babel/compat-data": 7.26.5 + "@babel/helper-validator-option": 7.25.9 + browserslist: 4.24.4 lru-cache: 5.1.1 semver: 6.3.1 - "@babel/helper-create-class-features-plugin@7.28.6(@babel/core@7.29.0)": + "@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.27.3 - "@babel/helper-member-expression-to-functions": 7.28.5 - "@babel/helper-optimise-call-expression": 7.27.1 - "@babel/helper-replace-supers": 7.28.6(@babel/core@7.29.0) - "@babel/helper-skip-transparent-expression-wrappers": 7.27.1 - "@babel/traverse": 7.29.0 + "@babel/core": 7.26.7 + "@babel/helper-annotate-as-pure": 7.25.9 + "@babel/helper-member-expression-to-functions": 7.25.9 + "@babel/helper-optimise-call-expression": 7.25.9 + "@babel/helper-replace-supers": 7.26.5(@babel/core@7.26.7) + "@babel/helper-skip-transparent-expression-wrappers": 7.25.9 + "@babel/traverse": 7.26.7 semver: 6.3.1 transitivePeerDependencies: - supports-color - "@babel/helper-create-regexp-features-plugin@7.28.5(@babel/core@7.29.0)": + "@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.27.3 - regexpu-core: 6.4.0 + "@babel/core": 7.26.7 + "@babel/helper-annotate-as-pure": 7.25.9 + regexpu-core: 6.2.0 semver: 6.3.1 - "@babel/helper-define-polyfill-provider@0.6.6(@babel/core@7.29.0)": + "@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-compilation-targets": 7.28.6 - "@babel/helper-plugin-utils": 7.28.6 - debug: 4.4.3 + "@babel/core": 7.26.7 + "@babel/helper-compilation-targets": 7.26.5 + "@babel/helper-plugin-utils": 7.26.5 + debug: 4.4.0 lodash.debounce: 4.0.8 - resolve: 1.22.11 + resolve: 1.22.10 transitivePeerDependencies: - supports-color - "@babel/helper-globals@7.28.0": {} - - "@babel/helper-member-expression-to-functions@7.28.5": + "@babel/helper-member-expression-to-functions@7.25.9": dependencies: - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 + "@babel/traverse": 7.26.7 + "@babel/types": 7.26.7 transitivePeerDependencies: - supports-color - "@babel/helper-module-imports@7.28.6": + "@babel/helper-module-imports@7.25.9": dependencies: - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 + "@babel/traverse": 7.26.7 + "@babel/types": 7.26.7 transitivePeerDependencies: - supports-color - "@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)": + "@babel/helper-module-transforms@7.26.0(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-imports": 7.28.6 - "@babel/helper-validator-identifier": 7.28.5 - "@babel/traverse": 7.29.0 + "@babel/core": 7.26.7 + "@babel/helper-module-imports": 7.25.9 + "@babel/helper-validator-identifier": 7.25.9 + "@babel/traverse": 7.26.7 transitivePeerDependencies: - supports-color - "@babel/helper-optimise-call-expression@7.27.1": + "@babel/helper-optimise-call-expression@7.25.9": dependencies: - "@babel/types": 7.29.0 + "@babel/types": 7.26.7 - "@babel/helper-plugin-utils@7.28.6": {} + "@babel/helper-plugin-utils@7.26.5": {} - "@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.29.0)": + "@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.27.3 - "@babel/helper-wrap-function": 7.28.6 - "@babel/traverse": 7.29.0 + "@babel/core": 7.26.7 + "@babel/helper-annotate-as-pure": 7.25.9 + "@babel/helper-wrap-function": 7.25.9 + "@babel/traverse": 7.26.7 transitivePeerDependencies: - supports-color - "@babel/helper-replace-supers@7.28.6(@babel/core@7.29.0)": + "@babel/helper-replace-supers@7.26.5(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-member-expression-to-functions": 7.28.5 - "@babel/helper-optimise-call-expression": 7.27.1 - "@babel/traverse": 7.29.0 + "@babel/core": 7.26.7 + "@babel/helper-member-expression-to-functions": 7.25.9 + "@babel/helper-optimise-call-expression": 7.25.9 + "@babel/traverse": 7.26.7 transitivePeerDependencies: - supports-color - "@babel/helper-skip-transparent-expression-wrappers@7.27.1": + "@babel/helper-skip-transparent-expression-wrappers@7.25.9": dependencies: - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 + "@babel/traverse": 7.26.7 + "@babel/types": 7.26.7 transitivePeerDependencies: - supports-color - "@babel/helper-string-parser@7.27.1": {} + "@babel/helper-string-parser@7.25.9": {} - "@babel/helper-validator-identifier@7.28.5": {} + "@babel/helper-validator-identifier@7.25.9": {} - "@babel/helper-validator-option@7.27.1": {} + "@babel/helper-validator-option@7.25.9": {} - "@babel/helper-wrap-function@7.28.6": + "@babel/helper-wrap-function@7.25.9": dependencies: - "@babel/template": 7.28.6 - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 + "@babel/template": 7.25.9 + "@babel/traverse": 7.26.7 + "@babel/types": 7.26.7 transitivePeerDependencies: - supports-color - "@babel/helpers@7.28.6": + "@babel/helpers@7.26.7": dependencies: - "@babel/template": 7.28.6 - "@babel/types": 7.29.0 + "@babel/template": 7.25.9 + "@babel/types": 7.26.7 - "@babel/parser@7.29.0": + "@babel/parser@7.26.7": dependencies: - "@babel/types": 7.29.0 + "@babel/types": 7.26.7 - "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.29.0)": + "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/traverse": 7.29.0 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/traverse": 7.26.7 transitivePeerDependencies: - supports-color - "@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/helper-skip-transparent-expression-wrappers": 7.27.1 - "@babel/plugin-transform-optional-chaining": 7.28.6(@babel/core@7.29.0) + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/helper-skip-transparent-expression-wrappers": 7.25.9 + "@babel/plugin-transform-optional-chaining": 7.25.9(@babel/core@7.26.7) transitivePeerDependencies: - supports-color - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/traverse": 7.29.0 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/traverse": 7.26.7 transitivePeerDependencies: - supports-color - "@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.29.0)": + "@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-class-features-plugin": 7.28.6(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-create-class-features-plugin": 7.25.9(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 transitivePeerDependencies: - supports-color - "@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.29.0)": - dependencies: - "@babel/compat-data": 7.29.0 - "@babel/core": 7.29.0 - "@babel/helper-compilation-targets": 7.28.6 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-transform-parameters": 7.27.7(@babel/core@7.29.0) - - "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.0)": + "@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 + "@babel/compat-data": 7.26.5 + "@babel/core": 7.26.7 + "@babel/helper-compilation-targets": 7.26.5 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.26.7) + "@babel/plugin-transform-parameters": 7.25.9(@babel/core@7.26.7) - "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.29.0)": + "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 - "@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.29.0)": + "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.29.0)": + "@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.29.0)": + "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.29.0)": + "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-flow@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-syntax-flow@7.18.6(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-import-assertions@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-import-attributes@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.29.0)": + "@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.29.0)": + "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.29.0)": + "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.29.0)": + "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.29.0)": + "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.29.0)": + "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.29.0)": + "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.29.0)": + "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.29.0)": + "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.29.0)": + "@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.29.0)": + "@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.28.5(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - - "@babel/plugin-transform-async-generator-functions@7.29.0(@babel/core@7.29.0)": - dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/helper-remap-async-to-generator": 7.27.1(@babel/core@7.29.0) - "@babel/traverse": 7.29.0 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/helper-remap-async-to-generator": 7.25.9(@babel/core@7.26.7) + "@babel/traverse": 7.26.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-async-to-generator@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-imports": 7.28.6 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/helper-remap-async-to-generator": 7.27.1(@babel/core@7.29.0) + "@babel/core": 7.26.7 + "@babel/helper-module-imports": 7.25.9 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/helper-remap-async-to-generator": 7.25.9(@babel/core@7.26.7) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-block-scoping@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-class-properties@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-class-features-plugin": 7.28.6(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-create-class-features-plugin": 7.25.9(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-class-static-block@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-class-features-plugin": 7.28.6(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-create-class-features-plugin": 7.25.9(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-classes@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.27.3 - "@babel/helper-compilation-targets": 7.28.6 - "@babel/helper-globals": 7.28.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/helper-replace-supers": 7.28.6(@babel/core@7.29.0) - "@babel/traverse": 7.29.0 + "@babel/core": 7.26.7 + "@babel/helper-annotate-as-pure": 7.25.9 + "@babel/helper-compilation-targets": 7.26.5 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/helper-replace-supers": 7.26.5(@babel/core@7.26.7) + "@babel/traverse": 7.26.7 + globals: 11.12.0 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-computed-properties@7.28.6(@babel/core@7.29.0)": - dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/template": 7.28.6 - - "@babel/plugin-transform-destructuring@7.28.5(@babel/core@7.29.0)": + "@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/traverse": 7.29.0 - transitivePeerDependencies: - - supports-color + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/template": 7.25.9 - "@babel/plugin-transform-dotall-regex@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.28.5(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.29.0(@babel/core@7.29.0)": + "@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.28.5(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-explicit-resource-management@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/plugin-transform-destructuring": 7.28.5(@babel/core@7.29.0) - transitivePeerDependencies: - - supports-color + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-exponentiation-operator@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-flow-strip-types@7.19.0(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/plugin-syntax-flow": 7.28.6(@babel/core@7.29.0) + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/plugin-syntax-flow": 7.18.6(@babel/core@7.26.7) - "@babel/plugin-transform-for-of@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/helper-skip-transparent-expression-wrappers": 7.27.1 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/helper-skip-transparent-expression-wrappers": 7.25.9 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-function-name@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-compilation-targets": 7.28.6 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/traverse": 7.29.0 + "@babel/core": 7.26.7 + "@babel/helper-compilation-targets": 7.26.5 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/traverse": 7.26.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-json-strings@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-literals@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-logical-assignment-operators@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-transforms": 7.28.6(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-module-transforms": 7.26.0(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-modules-commonjs@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-transforms": 7.28.6(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-module-transforms": 7.26.0(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-modules-systemjs@7.29.0(@babel/core@7.29.0)": + "@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-transforms": 7.28.6(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 - "@babel/helper-validator-identifier": 7.28.5 - "@babel/traverse": 7.29.0 + "@babel/core": 7.26.7 + "@babel/helper-module-transforms": 7.26.0(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 + "@babel/helper-validator-identifier": 7.25.9 + "@babel/traverse": 7.26.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-transforms": 7.28.6(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-module-transforms": 7.26.0(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-named-capturing-groups-regex@7.29.0(@babel/core@7.29.0)": + "@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.28.5(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-new-target@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-nullish-coalescing-operator@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-numeric-separator@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-object-rest-spread@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-compilation-targets": 7.28.6 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/plugin-transform-destructuring": 7.28.5(@babel/core@7.29.0) - "@babel/plugin-transform-parameters": 7.27.7(@babel/core@7.29.0) - "@babel/traverse": 7.29.0 - transitivePeerDependencies: - - supports-color + "@babel/core": 7.26.7 + "@babel/helper-compilation-targets": 7.26.5 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/plugin-transform-parameters": 7.25.9(@babel/core@7.26.7) - "@babel/plugin-transform-object-super@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/helper-replace-supers": 7.28.6(@babel/core@7.29.0) + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/helper-replace-supers": 7.26.5(@babel/core@7.26.7) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-optional-catch-binding@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-optional-chaining@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/helper-skip-transparent-expression-wrappers": 7.27.1 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/helper-skip-transparent-expression-wrappers": 7.25.9 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-parameters@7.27.7(@babel/core@7.29.0)": + "@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-private-methods@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-class-features-plugin": 7.28.6(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-create-class-features-plugin": 7.25.9(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-private-property-in-object@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.27.3 - "@babel/helper-create-class-features-plugin": 7.28.6(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-annotate-as-pure": 7.25.9 + "@babel/helper-create-class-features-plugin": 7.25.9(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.29.0)": + "@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-transform-react-jsx": 7.28.6(@babel/core@7.29.0) + "@babel/core": 7.26.7 + "@babel/plugin-transform-react-jsx": 7.25.9(@babel/core@7.26.7) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-react-jsx@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.27.3 - "@babel/helper-module-imports": 7.28.6 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/plugin-syntax-jsx": 7.28.6(@babel/core@7.29.0) - "@babel/types": 7.29.0 + "@babel/core": 7.26.7 + "@babel/helper-annotate-as-pure": 7.25.9 + "@babel/helper-module-imports": 7.25.9 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/plugin-syntax-jsx": 7.25.9(@babel/core@7.26.7) + "@babel/types": 7.26.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.27.3 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-annotate-as-pure": 7.25.9 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-regenerator@7.29.0(@babel/core@7.29.0)": + "@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 + regenerator-transform: 0.15.2 - "@babel/plugin-transform-regexp-modifiers@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.28.5(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-runtime@7.29.0(@babel/core@7.29.0)": + "@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-imports": 7.28.6 - "@babel/helper-plugin-utils": 7.28.6 - babel-plugin-polyfill-corejs2: 0.4.15(@babel/core@7.29.0) - babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.29.0) - babel-plugin-polyfill-regenerator: 0.6.6(@babel/core@7.29.0) + "@babel/core": 7.26.7 + "@babel/helper-module-imports": 7.25.9 + "@babel/helper-plugin-utils": 7.26.5 + babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.7) + babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.7) + babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.7) semver: 6.3.1 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-spread@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/helper-skip-transparent-expression-wrappers": 7.27.1 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/helper-skip-transparent-expression-wrappers": 7.25.9 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.29.0)": + "@babel/plugin-transform-typeof-symbol@7.26.7(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 - "@babel/plugin-transform-typescript@7.28.6(@babel/core@7.29.0)": + "@babel/plugin-transform-typescript@7.26.7(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.27.3 - "@babel/helper-create-class-features-plugin": 7.28.6(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 - "@babel/helper-skip-transparent-expression-wrappers": 7.27.1 - "@babel/plugin-syntax-typescript": 7.28.6(@babel/core@7.29.0) + "@babel/core": 7.26.7 + "@babel/helper-annotate-as-pure": 7.25.9 + "@babel/helper-create-class-features-plugin": 7.25.9(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 + "@babel/helper-skip-transparent-expression-wrappers": 7.25.9 + "@babel/plugin-syntax-typescript": 7.25.9(@babel/core@7.26.7) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.29.0)": - dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - - "@babel/plugin-transform-unicode-property-regex@7.28.6(@babel/core@7.29.0)": - dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.28.5(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 - - "@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.29.0)": - dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.28.5(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 - - "@babel/plugin-transform-unicode-sets-regex@7.28.6(@babel/core@7.29.0)": - dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.28.5(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 - - "@babel/preset-env@7.29.0(@babel/core@7.29.0)": - dependencies: - "@babel/compat-data": 7.29.0 - "@babel/core": 7.29.0 - "@babel/helper-compilation-targets": 7.28.6 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/helper-validator-option": 7.27.1 - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": 7.28.5(@babel/core@7.29.0) - "@babel/plugin-bugfix-safari-class-field-initializer-scope": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.0) - "@babel/plugin-syntax-import-assertions": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-syntax-import-attributes": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.29.0) - "@babel/plugin-transform-arrow-functions": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-async-generator-functions": 7.29.0(@babel/core@7.29.0) - "@babel/plugin-transform-async-to-generator": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-block-scoped-functions": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-block-scoping": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-class-properties": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-class-static-block": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-classes": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-computed-properties": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-destructuring": 7.28.5(@babel/core@7.29.0) - "@babel/plugin-transform-dotall-regex": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-duplicate-keys": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-duplicate-named-capturing-groups-regex": 7.29.0(@babel/core@7.29.0) - "@babel/plugin-transform-dynamic-import": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-explicit-resource-management": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-exponentiation-operator": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-export-namespace-from": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-for-of": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-function-name": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-json-strings": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-literals": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-logical-assignment-operators": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-member-expression-literals": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-modules-amd": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-modules-commonjs": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-modules-systemjs": 7.29.0(@babel/core@7.29.0) - "@babel/plugin-transform-modules-umd": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-named-capturing-groups-regex": 7.29.0(@babel/core@7.29.0) - "@babel/plugin-transform-new-target": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-nullish-coalescing-operator": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-numeric-separator": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-object-rest-spread": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-object-super": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-optional-catch-binding": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-optional-chaining": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-parameters": 7.27.7(@babel/core@7.29.0) - "@babel/plugin-transform-private-methods": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-private-property-in-object": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-property-literals": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-regenerator": 7.29.0(@babel/core@7.29.0) - "@babel/plugin-transform-regexp-modifiers": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-reserved-words": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-shorthand-properties": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-spread": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-sticky-regex": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-template-literals": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-typeof-symbol": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-unicode-escapes": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-unicode-property-regex": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-unicode-regex": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-unicode-sets-regex": 7.28.6(@babel/core@7.29.0) - "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.29.0) - babel-plugin-polyfill-corejs2: 0.4.15(@babel/core@7.29.0) - babel-plugin-polyfill-corejs3: 0.14.0(@babel/core@7.29.0) - babel-plugin-polyfill-regenerator: 0.6.6(@babel/core@7.29.0) - core-js-compat: 3.48.0 + "@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.7)": + dependencies: + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 + + "@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.7)": + dependencies: + "@babel/core": 7.26.7 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 + + "@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.7)": + dependencies: + "@babel/core": 7.26.7 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 + + "@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.7)": + dependencies: + "@babel/core": 7.26.7 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.7) + "@babel/helper-plugin-utils": 7.26.5 + + "@babel/preset-env@7.26.7(@babel/core@7.26.7)": + dependencies: + "@babel/compat-data": 7.26.5 + "@babel/core": 7.26.7 + "@babel/helper-compilation-targets": 7.26.5 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/helper-validator-option": 7.25.9 + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-bugfix-safari-class-field-initializer-scope": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.7) + "@babel/plugin-syntax-import-assertions": 7.26.0(@babel/core@7.26.7) + "@babel/plugin-syntax-import-attributes": 7.26.0(@babel/core@7.26.7) + "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.26.7) + "@babel/plugin-transform-arrow-functions": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-async-generator-functions": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-async-to-generator": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-block-scoped-functions": 7.26.5(@babel/core@7.26.7) + "@babel/plugin-transform-block-scoping": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-class-properties": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-class-static-block": 7.26.0(@babel/core@7.26.7) + "@babel/plugin-transform-classes": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-computed-properties": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-destructuring": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-dotall-regex": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-duplicate-keys": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-dynamic-import": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-exponentiation-operator": 7.26.3(@babel/core@7.26.7) + "@babel/plugin-transform-export-namespace-from": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-for-of": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-function-name": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-json-strings": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-literals": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-logical-assignment-operators": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-member-expression-literals": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-modules-amd": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-modules-commonjs": 7.26.3(@babel/core@7.26.7) + "@babel/plugin-transform-modules-systemjs": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-modules-umd": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-named-capturing-groups-regex": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-new-target": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-nullish-coalescing-operator": 7.26.6(@babel/core@7.26.7) + "@babel/plugin-transform-numeric-separator": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-object-rest-spread": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-object-super": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-optional-catch-binding": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-optional-chaining": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-parameters": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-private-methods": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-private-property-in-object": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-property-literals": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-regenerator": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-regexp-modifiers": 7.26.0(@babel/core@7.26.7) + "@babel/plugin-transform-reserved-words": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-shorthand-properties": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-spread": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-sticky-regex": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-template-literals": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-typeof-symbol": 7.26.7(@babel/core@7.26.7) + "@babel/plugin-transform-unicode-escapes": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-unicode-property-regex": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-unicode-regex": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-unicode-sets-regex": 7.25.9(@babel/core@7.26.7) + "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.26.7) + babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.7) + babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.7) + babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.7) + core-js-compat: 3.40.0 semver: 6.3.1 transitivePeerDependencies: - supports-color - "@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.29.0)": + "@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/types": 7.29.0 + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/types": 7.26.7 esutils: 2.0.3 - "@babel/preset-react@7.28.5(@babel/core@7.29.0)": + "@babel/preset-react@7.26.3(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/helper-validator-option": 7.27.1 - "@babel/plugin-transform-react-display-name": 7.28.0(@babel/core@7.29.0) - "@babel/plugin-transform-react-jsx": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-react-jsx-development": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-react-pure-annotations": 7.27.1(@babel/core@7.29.0) + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/helper-validator-option": 7.25.9 + "@babel/plugin-transform-react-display-name": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-react-jsx": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-react-jsx-development": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-react-pure-annotations": 7.25.9(@babel/core@7.26.7) transitivePeerDependencies: - supports-color - "@babel/preset-typescript@7.28.5(@babel/core@7.29.0)": + "@babel/preset-typescript@7.26.0(@babel/core@7.26.7)": dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/helper-validator-option": 7.27.1 - "@babel/plugin-syntax-jsx": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-modules-commonjs": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-typescript": 7.28.6(@babel/core@7.29.0) + "@babel/core": 7.26.7 + "@babel/helper-plugin-utils": 7.26.5 + "@babel/helper-validator-option": 7.25.9 + "@babel/plugin-syntax-jsx": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-modules-commonjs": 7.26.3(@babel/core@7.26.7) + "@babel/plugin-transform-typescript": 7.26.7(@babel/core@7.26.7) transitivePeerDependencies: - supports-color - "@babel/runtime@7.28.6": {} + "@babel/runtime@7.26.7": + dependencies: + regenerator-runtime: 0.14.1 - "@babel/template@7.28.6": + "@babel/template@7.25.9": dependencies: - "@babel/code-frame": 7.29.0 - "@babel/parser": 7.29.0 - "@babel/types": 7.29.0 + "@babel/code-frame": 7.26.2 + "@babel/parser": 7.26.7 + "@babel/types": 7.26.7 - "@babel/traverse@7.29.0": + "@babel/traverse@7.26.7": dependencies: - "@babel/code-frame": 7.29.0 - "@babel/generator": 7.29.1 - "@babel/helper-globals": 7.28.0 - "@babel/parser": 7.29.0 - "@babel/template": 7.28.6 - "@babel/types": 7.29.0 - debug: 4.4.3 + "@babel/code-frame": 7.26.2 + "@babel/generator": 7.26.5 + "@babel/parser": 7.26.7 + "@babel/template": 7.25.9 + "@babel/types": 7.26.7 + debug: 4.4.0 + globals: 11.12.0 transitivePeerDependencies: - supports-color - "@babel/types@7.29.0": + "@babel/types@7.26.7": dependencies: - "@babel/helper-string-parser": 7.27.1 - "@babel/helper-validator-identifier": 7.28.5 + "@babel/helper-string-parser": 7.25.9 + "@babel/helper-validator-identifier": 7.25.9 "@bcoe/v8-coverage@0.2.3": {} @@ -20539,14 +19734,14 @@ snapshots: "@builder.io/partytown@0.6.4": {} - "@chromatic-com/storybook@3.2.7(react@18.3.1)(storybook@8.6.17(prettier@3.8.1))": + "@chromatic-com/storybook@3.2.4(react@18.3.1)(storybook@8.5.2(prettier@3.3.3))": dependencies: - chromatic: 11.29.0 + chromatic: 11.25.1 filesize: 10.1.6 - jsonfile: 6.2.0 - react-confetti: 6.4.0(react@18.3.1) - storybook: 8.6.17(prettier@3.8.1) - strip-ansi: 7.2.0 + jsonfile: 6.1.0 + react-confetti: 6.2.2(react@18.3.1) + storybook: 8.5.2(prettier@3.3.3) + strip-ansi: 7.1.0 transitivePeerDependencies: - "@chromatic-com/cypress" - "@chromatic-com/playwright" @@ -20559,33 +19754,34 @@ snapshots: dependencies: "@jridgewell/trace-mapping": 0.3.9 - "@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.1.2)": + "@csstools/selector-specificity@2.1.1(postcss-selector-parser@6.0.11)(postcss@8.5.1)": dependencies: - postcss-selector-parser: 6.1.2 + postcss: 8.5.1 + postcss-selector-parser: 6.0.11 - "@cypress/code-coverage@3.14.7(@babel/core@7.29.0)(@babel/preset-env@7.29.0(@babel/core@7.29.0))(babel-loader@9.2.1(@babel/core@7.29.0)(webpack@5.105.4(@swc/core@1.15.18)))(cypress@12.17.4)(webpack@5.105.4(@swc/core@1.15.18))": + "@cypress/code-coverage@3.12.1(@babel/core@7.26.7)(@babel/preset-env@7.26.7(@babel/core@7.26.7))(babel-loader@9.2.1(@babel/core@7.26.7)(webpack@5.97.1(@swc/core@1.15.30)))(cypress@12.17.4)(webpack@5.97.1(@swc/core@1.15.30))": dependencies: - "@babel/core": 7.29.0 - "@babel/preset-env": 7.29.0(@babel/core@7.29.0) - "@cypress/webpack-preprocessor": 6.0.4(@babel/core@7.29.0)(@babel/preset-env@7.29.0(@babel/core@7.29.0))(babel-loader@9.2.1(@babel/core@7.29.0)(webpack@5.105.4(@swc/core@1.15.18)))(webpack@5.105.4(@swc/core@1.15.18)) - babel-loader: 9.2.1(@babel/core@7.29.0)(webpack@5.105.4(@swc/core@1.15.18)) + "@babel/core": 7.26.7 + "@babel/preset-env": 7.26.7(@babel/core@7.26.7) + "@cypress/webpack-preprocessor": 5.16.3(@babel/core@7.26.7)(@babel/preset-env@7.26.7(@babel/core@7.26.7))(babel-loader@9.2.1(@babel/core@7.26.7)(webpack@5.97.1(@swc/core@1.15.30)))(webpack@5.97.1(@swc/core@1.15.30)) + babel-loader: 9.2.1(@babel/core@7.26.7)(webpack@5.97.1(@swc/core@1.15.30)) chalk: 4.1.2 cypress: 12.17.4 - dayjs: 1.11.13 - debug: 4.4.0 + dayjs: 1.11.9 + debug: 4.3.4 execa: 4.1.0 - istanbul-lib-coverage: 3.2.2 + globby: 11.0.4 + istanbul-lib-coverage: 3.0.0 js-yaml: 4.1.0 nyc: 15.1.0 - tinyglobby: 0.2.15 - webpack: 5.105.4(@swc/core@1.15.18) + webpack: 5.97.1(@swc/core@1.15.30) transitivePeerDependencies: - supports-color "@cypress/request@2.88.12": dependencies: aws-sign2: 0.7.0 - aws4: 1.13.2 + aws4: 1.11.0 caseless: 0.12.0 combined-stream: 1.0.8 extend: 3.0.2 @@ -20597,22 +19793,29 @@ snapshots: json-stringify-safe: 5.0.1 mime-types: 2.1.35 performance-now: 2.1.0 - qs: 6.10.7 + qs: 6.10.5 safe-buffer: 5.2.1 - tough-cookie: 4.1.4 + tough-cookie: 4.1.3 tunnel-agent: 0.6.0 uuid: 8.3.2 - "@cypress/webpack-preprocessor@6.0.4(@babel/core@7.29.0)(@babel/preset-env@7.29.0(@babel/core@7.29.0))(babel-loader@9.2.1(@babel/core@7.29.0)(webpack@5.105.4(@swc/core@1.15.18)))(webpack@5.105.4(@swc/core@1.15.18))": + "@cypress/webpack-preprocessor@5.16.3(@babel/core@7.26.7)(@babel/preset-env@7.26.7(@babel/core@7.26.7))(babel-loader@9.2.1(@babel/core@7.26.7)(webpack@5.97.1(@swc/core@1.15.30)))(webpack@5.97.1(@swc/core@1.15.30))": dependencies: - "@babel/core": 7.29.0 - "@babel/preset-env": 7.29.0(@babel/core@7.29.0) - babel-loader: 9.2.1(@babel/core@7.29.0)(webpack@5.105.4(@swc/core@1.15.18)) + "@babel/core": 7.26.7 + "@babel/generator": 7.26.5 + "@babel/parser": 7.26.7 + "@babel/preset-env": 7.26.7(@babel/core@7.26.7) + "@babel/traverse": 7.26.7 + babel-loader: 9.2.1(@babel/core@7.26.7)(webpack@5.97.1(@swc/core@1.15.30)) bluebird: 3.7.1 debug: 4.4.0 - lodash: 4.17.23 - semver: 7.7.4 - webpack: 5.105.4(@swc/core@1.15.18) + fs-extra: 10.1.0 + loader-utils: 2.0.4 + lodash: 4.17.21 + md5: 2.3.0 + source-map: 0.6.1 + webpack: 5.97.1(@swc/core@1.15.30) + webpack-virtual-modules: 0.4.6 transitivePeerDependencies: - supports-color @@ -20623,228 +19826,203 @@ snapshots: transitivePeerDependencies: - supports-color - "@emnapi/core@1.8.1": + "@emnapi/core@1.10.0": dependencies: - "@emnapi/wasi-threads": 1.1.0 + "@emnapi/wasi-threads": 1.2.1 tslib: 2.8.1 - "@emnapi/runtime@1.8.1": + "@emnapi/runtime@1.3.1": dependencies: tslib: 2.8.1 - "@emnapi/wasi-threads@1.1.0": + "@emnapi/wasi-threads@1.2.1": dependencies: tslib: 2.8.1 - "@envelop/core@5.5.1": + "@envelop/core@5.0.2": dependencies: - "@envelop/instrumentation": 1.0.0 - "@envelop/types": 5.2.1 - "@whatwg-node/promise-helpers": 1.3.2 + "@envelop/types": 5.0.0 tslib: 2.8.1 - "@envelop/graphql-jit@8.0.4(@envelop/core@5.5.1)(graphql@15.10.1)": + "@envelop/graphql-jit@8.0.3(@envelop/core@5.0.2)(graphql@15.8.0)": dependencies: - "@envelop/core": 5.5.1 - graphql: 15.10.1 - graphql-jit: 0.8.7(graphql@15.10.1) + "@envelop/core": 5.0.2 + graphql: 15.8.0 + graphql-jit: 0.8.6(graphql@15.8.0) tslib: 2.8.1 value-or-promise: 1.0.12 - "@envelop/instrumentation@1.0.0": - dependencies: - "@whatwg-node/promise-helpers": 1.3.2 - tslib: 2.8.1 - - "@envelop/parser-cache@6.0.4(@envelop/core@5.5.1)(graphql@15.10.1)": + "@envelop/parser-cache@6.0.4(@envelop/core@5.0.2)(graphql@15.8.0)": dependencies: - "@envelop/core": 5.5.1 - graphql: 15.10.1 + "@envelop/core": 5.0.2 + graphql: 15.8.0 lru-cache: 10.4.3 tslib: 2.8.1 - "@envelop/testing@6.0.3(@envelop/core@5.5.1)(@envelop/types@5.2.1)(graphql@15.10.1)": + "@envelop/testing@6.0.0(@envelop/core@5.0.2)(@envelop/types@5.0.0)(graphql@15.8.0)": dependencies: - "@envelop/core": 5.5.1 - "@envelop/types": 5.2.1 - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) - graphql: 15.10.1 + "@envelop/core": 5.0.2 + "@envelop/types": 5.0.0 + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.8.1 - "@envelop/types@5.2.1": + "@envelop/types@5.0.0": dependencies: - "@whatwg-node/promise-helpers": 1.3.2 tslib: 2.8.1 - "@envelop/validation-cache@6.0.4(@envelop/core@5.5.1)(graphql@15.10.1)": + "@envelop/validation-cache@6.0.4(@envelop/core@5.0.2)(graphql@15.8.0)": dependencies: - "@envelop/core": 5.5.1 - graphql: 15.10.1 - hash-it: 6.0.1 + "@envelop/core": 5.0.2 + graphql: 15.8.0 + hash-it: 6.0.0 lru-cache: 10.4.3 tslib: 2.8.1 - "@esbuild/aix-ppc64@0.25.12": - optional: true - - "@esbuild/aix-ppc64@0.27.3": + "@esbuild/aix-ppc64@0.24.2": optional: true - "@esbuild/android-arm64@0.25.12": + "@esbuild/android-arm64@0.18.20": optional: true - "@esbuild/android-arm64@0.27.3": + "@esbuild/android-arm64@0.24.2": optional: true - "@esbuild/android-arm@0.25.12": + "@esbuild/android-arm@0.18.20": optional: true - "@esbuild/android-arm@0.27.3": + "@esbuild/android-arm@0.24.2": optional: true - "@esbuild/android-x64@0.25.12": + "@esbuild/android-x64@0.18.20": optional: true - "@esbuild/android-x64@0.27.3": + "@esbuild/android-x64@0.24.2": optional: true - "@esbuild/darwin-arm64@0.25.12": + "@esbuild/darwin-arm64@0.18.20": optional: true - "@esbuild/darwin-arm64@0.27.3": + "@esbuild/darwin-arm64@0.24.2": optional: true - "@esbuild/darwin-x64@0.25.12": + "@esbuild/darwin-x64@0.18.20": optional: true - "@esbuild/darwin-x64@0.27.3": + "@esbuild/darwin-x64@0.24.2": optional: true - "@esbuild/freebsd-arm64@0.25.12": + "@esbuild/freebsd-arm64@0.18.20": optional: true - "@esbuild/freebsd-arm64@0.27.3": + "@esbuild/freebsd-arm64@0.24.2": optional: true - "@esbuild/freebsd-x64@0.25.12": + "@esbuild/freebsd-x64@0.18.20": optional: true - "@esbuild/freebsd-x64@0.27.3": + "@esbuild/freebsd-x64@0.24.2": optional: true - "@esbuild/linux-arm64@0.25.12": + "@esbuild/linux-arm64@0.18.20": optional: true - "@esbuild/linux-arm64@0.27.3": + "@esbuild/linux-arm64@0.24.2": optional: true - "@esbuild/linux-arm@0.25.12": + "@esbuild/linux-arm@0.18.20": optional: true - "@esbuild/linux-arm@0.27.3": + "@esbuild/linux-arm@0.24.2": optional: true - "@esbuild/linux-ia32@0.25.12": + "@esbuild/linux-ia32@0.18.20": optional: true - "@esbuild/linux-ia32@0.27.3": + "@esbuild/linux-ia32@0.24.2": optional: true "@esbuild/linux-loong64@0.14.54": optional: true - "@esbuild/linux-loong64@0.25.12": - optional: true - - "@esbuild/linux-loong64@0.27.3": - optional: true - - "@esbuild/linux-mips64el@0.25.12": - optional: true - - "@esbuild/linux-mips64el@0.27.3": - optional: true - - "@esbuild/linux-ppc64@0.25.12": + "@esbuild/linux-loong64@0.18.20": optional: true - "@esbuild/linux-ppc64@0.27.3": + "@esbuild/linux-loong64@0.24.2": optional: true - "@esbuild/linux-riscv64@0.25.12": + "@esbuild/linux-mips64el@0.18.20": optional: true - "@esbuild/linux-riscv64@0.27.3": + "@esbuild/linux-mips64el@0.24.2": optional: true - "@esbuild/linux-s390x@0.25.12": + "@esbuild/linux-ppc64@0.18.20": optional: true - "@esbuild/linux-s390x@0.27.3": + "@esbuild/linux-ppc64@0.24.2": optional: true - "@esbuild/linux-x64@0.25.12": + "@esbuild/linux-riscv64@0.18.20": optional: true - "@esbuild/linux-x64@0.27.3": + "@esbuild/linux-riscv64@0.24.2": optional: true - "@esbuild/netbsd-arm64@0.25.12": + "@esbuild/linux-s390x@0.18.20": optional: true - "@esbuild/netbsd-arm64@0.27.3": + "@esbuild/linux-s390x@0.24.2": optional: true - "@esbuild/netbsd-x64@0.25.12": + "@esbuild/linux-x64@0.18.20": optional: true - "@esbuild/netbsd-x64@0.27.3": + "@esbuild/linux-x64@0.24.2": optional: true - "@esbuild/openbsd-arm64@0.25.12": + "@esbuild/netbsd-arm64@0.24.2": optional: true - "@esbuild/openbsd-arm64@0.27.3": + "@esbuild/netbsd-x64@0.18.20": optional: true - "@esbuild/openbsd-x64@0.25.12": + "@esbuild/netbsd-x64@0.24.2": optional: true - "@esbuild/openbsd-x64@0.27.3": + "@esbuild/openbsd-arm64@0.24.2": optional: true - "@esbuild/openharmony-arm64@0.25.12": + "@esbuild/openbsd-x64@0.18.20": optional: true - "@esbuild/openharmony-arm64@0.27.3": + "@esbuild/openbsd-x64@0.24.2": optional: true - "@esbuild/sunos-x64@0.25.12": + "@esbuild/sunos-x64@0.18.20": optional: true - "@esbuild/sunos-x64@0.27.3": + "@esbuild/sunos-x64@0.24.2": optional: true - "@esbuild/win32-arm64@0.25.12": + "@esbuild/win32-arm64@0.18.20": optional: true - "@esbuild/win32-arm64@0.27.3": + "@esbuild/win32-arm64@0.24.2": optional: true - "@esbuild/win32-ia32@0.25.12": + "@esbuild/win32-ia32@0.18.20": optional: true - "@esbuild/win32-ia32@0.27.3": + "@esbuild/win32-ia32@0.24.2": optional: true - "@esbuild/win32-x64@0.25.12": + "@esbuild/win32-x64@0.18.20": optional: true - "@esbuild/win32-x64@0.27.3": + "@esbuild/win32-x64@0.24.2": optional: true - "@fastify/busboy@3.2.0": {} - "@fastify/merge-json-schemas@0.1.1": dependencies: fast-deep-equal: 3.1.3 @@ -20874,36 +20052,34 @@ snapshots: "@floating-ui/utils@0.2.11": {} - "@gar/promise-retry@1.0.2": - dependencies: - retry: 0.13.1 + "@gar/promise-retry@1.0.3": {} "@gar/promisify@1.1.3": {} - "@graphql-codegen/add@5.0.3(graphql@15.10.1)": + "@graphql-codegen/add@5.0.2(graphql@15.8.0)": dependencies: - "@graphql-codegen/plugin-helpers": 5.1.1(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-codegen/plugin-helpers": 5.0.4(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.6.3 - "@graphql-codegen/cli@2.2.0(@babel/core@7.29.0)(@types/node@16.18.126)(encoding@0.1.13)(graphql@15.10.1)": - dependencies: - "@graphql-codegen/core": 2.1.0(graphql@15.10.1) - "@graphql-codegen/plugin-helpers": 2.7.2(graphql@15.10.1) - "@graphql-tools/apollo-engine-loader": 7.3.26(encoding@0.1.13)(graphql@15.10.1) - "@graphql-tools/code-file-loader": 7.3.23(@babel/core@7.29.0)(graphql@15.10.1) - "@graphql-tools/git-loader": 7.3.0(@babel/core@7.29.0)(graphql@15.10.1) - "@graphql-tools/github-loader": 7.3.28(@babel/core@7.29.0)(@types/node@16.18.126)(encoding@0.1.13)(graphql@15.10.1) - "@graphql-tools/graphql-file-loader": 7.5.17(graphql@15.10.1) - "@graphql-tools/json-file-loader": 7.4.18(graphql@15.10.1) - "@graphql-tools/load": 7.8.14(graphql@15.10.1) - "@graphql-tools/prisma-loader": 7.2.72(@types/node@16.18.126)(encoding@0.1.13)(graphql@15.10.1) - "@graphql-tools/url-loader": 7.17.18(@types/node@16.18.126)(encoding@0.1.13)(graphql@15.10.1) - "@graphql-tools/utils": 8.13.1(graphql@15.10.1) + "@graphql-codegen/cli@2.2.0(@babel/core@7.26.7)(@types/node@18.19.74)(encoding@0.1.13)(graphql@15.8.0)": + dependencies: + "@graphql-codegen/core": 2.1.0(graphql@15.8.0) + "@graphql-codegen/plugin-helpers": 2.7.2(graphql@15.8.0) + "@graphql-tools/apollo-engine-loader": 7.3.26(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/code-file-loader": 7.3.23(@babel/core@7.26.7)(graphql@15.8.0) + "@graphql-tools/git-loader": 7.3.0(@babel/core@7.26.7)(graphql@15.8.0) + "@graphql-tools/github-loader": 7.3.28(@babel/core@7.26.7)(@types/node@18.19.74)(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/graphql-file-loader": 7.5.17(graphql@15.8.0) + "@graphql-tools/json-file-loader": 7.4.18(graphql@15.8.0) + "@graphql-tools/load": 7.8.14(graphql@15.8.0) + "@graphql-tools/prisma-loader": 7.2.72(@types/node@18.19.74)(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/url-loader": 7.17.18(@types/node@18.19.74)(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/utils": 8.13.1(graphql@15.8.0) ansi-escapes: 4.3.2 chalk: 4.1.2 change-case-all: 1.0.14 - chokidar: 3.6.0 + chokidar: 3.5.3 common-tags: 1.8.2 cosmiconfig: 7.1.0 debounce: 1.2.1 @@ -20911,8 +20087,8 @@ snapshots: detect-indent: 6.1.0 glob: 7.2.3 globby: 11.1.0 - graphql: 15.10.1 - graphql-config: 4.5.0(@types/node@16.18.126)(encoding@0.1.13)(graphql@15.10.1) + graphql: 15.8.0 + graphql-config: 4.5.0(@types/node@18.19.74)(encoding@0.1.13)(graphql@15.8.0) inquirer: 7.3.3 is-glob: 4.0.3 json-to-pretty-yaml: 1.2.2 @@ -20920,10 +20096,10 @@ snapshots: listr: 0.14.3 listr-update-renderer: 0.5.0(listr@0.14.3) log-symbols: 4.1.0 - minimatch: 3.1.5 + minimatch: 3.1.2 mkdirp: 1.0.4 string-env-interpolation: 1.0.1 - ts-log: 2.2.7 + ts-log: 2.2.5 tslib: 2.3.1 valid-url: 1.0.9 wrap-ansi: 7.0.0 @@ -20940,332 +20116,305 @@ snapshots: - zen-observable - zenObservable - "@graphql-codegen/cli@5.0.2(@parcel/watcher@2.5.6)(@types/node@22.19.13)(encoding@0.1.13)(enquirer@2.4.1)(graphql@15.10.1)(typescript@5.3.2)": - dependencies: - "@babel/generator": 7.29.1 - "@babel/template": 7.28.6 - "@babel/types": 7.29.0 - "@graphql-codegen/client-preset": 4.2.6(encoding@0.1.13)(graphql@15.10.1) - "@graphql-codegen/core": 4.0.2(graphql@15.10.1) - "@graphql-codegen/plugin-helpers": 5.1.1(graphql@15.10.1) - "@graphql-tools/apollo-engine-loader": 8.0.28(graphql@15.10.1) - "@graphql-tools/code-file-loader": 8.1.28(graphql@15.10.1) - "@graphql-tools/git-loader": 8.0.32(graphql@15.10.1) - "@graphql-tools/github-loader": 8.0.22(@types/node@22.19.13)(graphql@15.10.1) - "@graphql-tools/graphql-file-loader": 8.1.9(graphql@15.10.1) - "@graphql-tools/json-file-loader": 8.0.26(graphql@15.10.1) - "@graphql-tools/load": 8.1.8(graphql@15.10.1) - "@graphql-tools/prisma-loader": 8.0.17(@types/node@22.19.13)(encoding@0.1.13)(graphql@15.10.1) - "@graphql-tools/url-loader": 8.0.33(@types/node@22.19.13)(graphql@15.10.1) - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) + "@graphql-codegen/cli@5.0.2(@parcel/watcher@2.5.1)(@types/node@20.14.9)(encoding@0.1.13)(enquirer@2.3.6)(graphql@15.8.0)(typescript@5.3.2)": + dependencies: + "@babel/generator": 7.26.5 + "@babel/template": 7.25.9 + "@babel/types": 7.26.7 + "@graphql-codegen/client-preset": 4.2.6(encoding@0.1.13)(graphql@15.8.0) + "@graphql-codegen/core": 4.0.2(graphql@15.8.0) + "@graphql-codegen/plugin-helpers": 5.0.4(graphql@15.8.0) + "@graphql-tools/apollo-engine-loader": 8.0.1(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/code-file-loader": 8.1.2(graphql@15.8.0) + "@graphql-tools/git-loader": 8.0.6(graphql@15.8.0) + "@graphql-tools/github-loader": 8.0.1(@types/node@20.14.9)(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/graphql-file-loader": 8.0.1(graphql@15.8.0) + "@graphql-tools/json-file-loader": 8.0.1(graphql@15.8.0) + "@graphql-tools/load": 8.0.2(graphql@15.8.0) + "@graphql-tools/prisma-loader": 8.0.4(@types/node@20.14.9)(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/url-loader": 8.0.2(@types/node@20.14.9)(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) "@whatwg-node/fetch": 0.8.8 chalk: 4.1.2 cosmiconfig: 8.3.6(typescript@5.3.2) debounce: 1.2.1 detect-indent: 6.1.0 - graphql: 15.10.1 - graphql-config: 5.1.5(@types/node@22.19.13)(graphql@15.10.1)(typescript@5.3.2) - inquirer: 8.2.7(@types/node@22.19.13) + graphql: 15.8.0 + graphql-config: 5.0.3(@types/node@20.14.9)(encoding@0.1.13)(graphql@15.8.0)(typescript@5.3.2) + inquirer: 8.2.6 is-glob: 4.0.3 jiti: 1.21.7 json-to-pretty-yaml: 1.2.2 - listr2: 4.0.5(enquirer@2.4.1) + listr2: 4.0.5(enquirer@2.3.6) log-symbols: 4.1.0 micromatch: 4.0.8 - shell-quote: 1.8.3 + shell-quote: 1.7.4 string-env-interpolation: 1.0.1 - ts-log: 2.2.7 + ts-log: 2.2.5 tslib: 2.8.1 - yaml: 2.8.2 + yaml: 2.7.0 yargs: 17.7.2 optionalDependencies: - "@parcel/watcher": 2.5.6 + "@parcel/watcher": 2.5.1 transitivePeerDependencies: - - "@fastify/websocket" - "@types/node" - bufferutil - cosmiconfig-toml-loader - - crossws - encoding - enquirer - supports-color - typescript - utf-8-validate - "@graphql-codegen/client-preset@4.2.6(encoding@0.1.13)(graphql@15.10.1)": - dependencies: - "@babel/helper-plugin-utils": 7.28.6 - "@babel/template": 7.28.6 - "@graphql-codegen/add": 5.0.3(graphql@15.10.1) - "@graphql-codegen/gql-tag-operations": 4.0.7(encoding@0.1.13)(graphql@15.10.1) - "@graphql-codegen/plugin-helpers": 5.1.1(graphql@15.10.1) - "@graphql-codegen/typed-document-node": 5.1.2(encoding@0.1.13)(graphql@15.10.1) - "@graphql-codegen/typescript": 4.0.7(encoding@0.1.13)(graphql@15.10.1) - "@graphql-codegen/typescript-operations": 4.2.1(encoding@0.1.13)(graphql@15.10.1) - "@graphql-codegen/visitor-plugin-common": 5.8.0(encoding@0.1.13)(graphql@15.10.1) - "@graphql-tools/documents": 1.0.1(graphql@15.10.1) - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) - "@graphql-typed-document-node/core": 3.2.0(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-codegen/client-preset@4.2.6(encoding@0.1.13)(graphql@15.8.0)": + dependencies: + "@babel/helper-plugin-utils": 7.26.5 + "@babel/template": 7.25.9 + "@graphql-codegen/add": 5.0.2(graphql@15.8.0) + "@graphql-codegen/gql-tag-operations": 4.0.7(encoding@0.1.13)(graphql@15.8.0) + "@graphql-codegen/plugin-helpers": 5.0.4(graphql@15.8.0) + "@graphql-codegen/typed-document-node": 5.0.7(encoding@0.1.13)(graphql@15.8.0) + "@graphql-codegen/typescript": 4.0.7(encoding@0.1.13)(graphql@15.8.0) + "@graphql-codegen/typescript-operations": 4.2.1(encoding@0.1.13)(graphql@15.8.0) + "@graphql-codegen/visitor-plugin-common": 5.2.0(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/documents": 1.0.0(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + "@graphql-typed-document-node/core": 3.2.0(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.6.3 transitivePeerDependencies: - encoding + - supports-color - "@graphql-codegen/core@2.1.0(graphql@15.10.1)": + "@graphql-codegen/core@2.1.0(graphql@15.8.0)": dependencies: - "@graphql-codegen/plugin-helpers": 2.7.2(graphql@15.10.1) - "@graphql-tools/schema": 8.5.1(graphql@15.10.1) - "@graphql-tools/utils": 8.13.1(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-codegen/plugin-helpers": 2.7.2(graphql@15.8.0) + "@graphql-tools/schema": 8.5.1(graphql@15.8.0) + "@graphql-tools/utils": 8.13.1(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.3.1 - "@graphql-codegen/core@4.0.2(graphql@15.10.1)": + "@graphql-codegen/core@4.0.2(graphql@15.8.0)": dependencies: - "@graphql-codegen/plugin-helpers": 5.1.1(graphql@15.10.1) - "@graphql-tools/schema": 10.0.31(graphql@15.10.1) - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-codegen/plugin-helpers": 5.0.4(graphql@15.8.0) + "@graphql-tools/schema": 10.0.3(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.6.3 - "@graphql-codegen/gql-tag-operations@4.0.7(encoding@0.1.13)(graphql@15.10.1)": + "@graphql-codegen/gql-tag-operations@4.0.7(encoding@0.1.13)(graphql@15.8.0)": dependencies: - "@graphql-codegen/plugin-helpers": 5.1.1(graphql@15.10.1) - "@graphql-codegen/visitor-plugin-common": 5.2.0(encoding@0.1.13)(graphql@15.10.1) - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) + "@graphql-codegen/plugin-helpers": 5.0.4(graphql@15.8.0) + "@graphql-codegen/visitor-plugin-common": 5.2.0(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) auto-bind: 4.0.0 - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.6.3 transitivePeerDependencies: - encoding + - supports-color - "@graphql-codegen/plugin-helpers@2.7.2(graphql@15.10.1)": + "@graphql-codegen/plugin-helpers@2.7.2(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 8.13.1(graphql@15.10.1) + "@graphql-tools/utils": 8.13.1(graphql@15.8.0) change-case-all: 1.0.14 common-tags: 1.8.2 - graphql: 15.10.1 + graphql: 15.8.0 import-from: 4.0.0 - lodash: 4.17.23 + lodash: 4.17.21 tslib: 2.4.1 - "@graphql-codegen/plugin-helpers@5.1.1(graphql@15.10.1)": + "@graphql-codegen/plugin-helpers@5.0.4(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) change-case-all: 1.0.15 common-tags: 1.8.2 - graphql: 15.10.1 + graphql: 15.8.0 import-from: 4.0.0 - lodash: 4.17.23 + lodash: 4.17.21 tslib: 2.6.3 - "@graphql-codegen/schema-ast@4.1.0(graphql@15.10.1)": + "@graphql-codegen/schema-ast@4.0.2(graphql@15.8.0)": dependencies: - "@graphql-codegen/plugin-helpers": 5.1.1(graphql@15.10.1) - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-codegen/plugin-helpers": 5.0.4(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.6.3 - "@graphql-codegen/typed-document-node@5.1.2(encoding@0.1.13)(graphql@15.10.1)": + "@graphql-codegen/typed-document-node@5.0.7(encoding@0.1.13)(graphql@15.8.0)": dependencies: - "@graphql-codegen/plugin-helpers": 5.1.1(graphql@15.10.1) - "@graphql-codegen/visitor-plugin-common": 5.8.0(encoding@0.1.13)(graphql@15.10.1) + "@graphql-codegen/plugin-helpers": 5.0.4(graphql@15.8.0) + "@graphql-codegen/visitor-plugin-common": 5.2.0(encoding@0.1.13)(graphql@15.8.0) auto-bind: 4.0.0 change-case-all: 1.0.15 - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.6.3 transitivePeerDependencies: - encoding + - supports-color - "@graphql-codegen/typescript-operations@4.2.1(encoding@0.1.13)(graphql@15.10.1)": + "@graphql-codegen/typescript-operations@4.2.1(encoding@0.1.13)(graphql@15.8.0)": dependencies: - "@graphql-codegen/plugin-helpers": 5.1.1(graphql@15.10.1) - "@graphql-codegen/typescript": 4.0.7(encoding@0.1.13)(graphql@15.10.1) - "@graphql-codegen/visitor-plugin-common": 5.2.0(encoding@0.1.13)(graphql@15.10.1) + "@graphql-codegen/plugin-helpers": 5.0.4(graphql@15.8.0) + "@graphql-codegen/typescript": 4.0.7(encoding@0.1.13)(graphql@15.8.0) + "@graphql-codegen/visitor-plugin-common": 5.2.0(encoding@0.1.13)(graphql@15.8.0) auto-bind: 4.0.0 - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.6.3 transitivePeerDependencies: - encoding + - supports-color - "@graphql-codegen/typescript@2.2.2(encoding@0.1.13)(graphql@15.10.1)": + "@graphql-codegen/typescript@2.2.2(encoding@0.1.13)(graphql@15.8.0)": dependencies: - "@graphql-codegen/plugin-helpers": 2.7.2(graphql@15.10.1) - "@graphql-codegen/visitor-plugin-common": 2.2.1(encoding@0.1.13)(graphql@15.10.1) + "@graphql-codegen/plugin-helpers": 2.7.2(graphql@15.8.0) + "@graphql-codegen/visitor-plugin-common": 2.2.1(encoding@0.1.13)(graphql@15.8.0) auto-bind: 4.0.0 - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.3.1 transitivePeerDependencies: - encoding - supports-color - "@graphql-codegen/typescript@4.0.7(encoding@0.1.13)(graphql@15.10.1)": + "@graphql-codegen/typescript@4.0.7(encoding@0.1.13)(graphql@15.8.0)": dependencies: - "@graphql-codegen/plugin-helpers": 5.1.1(graphql@15.10.1) - "@graphql-codegen/schema-ast": 4.1.0(graphql@15.10.1) - "@graphql-codegen/visitor-plugin-common": 5.2.0(encoding@0.1.13)(graphql@15.10.1) + "@graphql-codegen/plugin-helpers": 5.0.4(graphql@15.8.0) + "@graphql-codegen/schema-ast": 4.0.2(graphql@15.8.0) + "@graphql-codegen/visitor-plugin-common": 5.2.0(encoding@0.1.13)(graphql@15.8.0) auto-bind: 4.0.0 - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.6.3 transitivePeerDependencies: - encoding + - supports-color - "@graphql-codegen/visitor-plugin-common@2.2.1(encoding@0.1.13)(graphql@15.10.1)": + "@graphql-codegen/visitor-plugin-common@2.2.1(encoding@0.1.13)(graphql@15.8.0)": dependencies: - "@graphql-codegen/plugin-helpers": 2.7.2(graphql@15.10.1) - "@graphql-tools/optimize": 1.4.0(graphql@15.10.1) - "@graphql-tools/relay-operation-optimizer": 6.5.18(encoding@0.1.13)(graphql@15.10.1) - "@graphql-tools/utils": 8.2.2(graphql@15.10.1) + "@graphql-codegen/plugin-helpers": 2.7.2(graphql@15.8.0) + "@graphql-tools/optimize": 1.4.0(graphql@15.8.0) + "@graphql-tools/relay-operation-optimizer": 6.5.18(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/utils": 8.2.2(graphql@15.8.0) auto-bind: 4.0.0 change-case-all: 1.0.14 dependency-graph: 0.11.0 - graphql: 15.10.1 - graphql-tag: 2.12.6(graphql@15.10.1) + graphql: 15.8.0 + graphql-tag: 2.12.6(graphql@15.8.0) parse-filepath: 1.0.2 tslib: 2.3.1 transitivePeerDependencies: - encoding - supports-color - "@graphql-codegen/visitor-plugin-common@5.2.0(encoding@0.1.13)(graphql@15.10.1)": - dependencies: - "@graphql-codegen/plugin-helpers": 5.1.1(graphql@15.10.1) - "@graphql-tools/optimize": 2.0.0(graphql@15.10.1) - "@graphql-tools/relay-operation-optimizer": 7.0.27(encoding@0.1.13)(graphql@15.10.1) - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) - auto-bind: 4.0.0 - change-case-all: 1.0.15 - dependency-graph: 0.11.0 - graphql: 15.10.1 - graphql-tag: 2.12.6(graphql@15.10.1) - parse-filepath: 1.0.2 - tslib: 2.6.3 - transitivePeerDependencies: - - encoding - - "@graphql-codegen/visitor-plugin-common@5.8.0(encoding@0.1.13)(graphql@15.10.1)": + "@graphql-codegen/visitor-plugin-common@5.2.0(encoding@0.1.13)(graphql@15.8.0)": dependencies: - "@graphql-codegen/plugin-helpers": 5.1.1(graphql@15.10.1) - "@graphql-tools/optimize": 2.0.0(graphql@15.10.1) - "@graphql-tools/relay-operation-optimizer": 7.0.27(encoding@0.1.13)(graphql@15.10.1) - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) + "@graphql-codegen/plugin-helpers": 5.0.4(graphql@15.8.0) + "@graphql-tools/optimize": 2.0.0(graphql@15.8.0) + "@graphql-tools/relay-operation-optimizer": 7.0.0(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 0.11.0 - graphql: 15.10.1 - graphql-tag: 2.12.6(graphql@15.10.1) + graphql: 15.8.0 + graphql-tag: 2.12.6(graphql@15.8.0) parse-filepath: 1.0.2 tslib: 2.6.3 transitivePeerDependencies: - encoding + - supports-color - "@graphql-hive/signal@1.0.0": {} - - "@graphql-tools/apollo-engine-loader@7.3.26(encoding@0.1.13)(graphql@15.10.1)": + "@graphql-tools/apollo-engine-loader@7.3.26(encoding@0.1.13)(graphql@15.8.0)": dependencies: "@ardatan/sync-fetch": 0.0.1(encoding@0.1.13) - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) "@whatwg-node/fetch": 0.8.8 - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.8.1 transitivePeerDependencies: - encoding - "@graphql-tools/apollo-engine-loader@8.0.28(graphql@15.10.1)": + "@graphql-tools/apollo-engine-loader@8.0.1(encoding@0.1.13)(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 11.0.0(graphql@15.10.1) - "@whatwg-node/fetch": 0.10.13 - graphql: 15.10.1 - sync-fetch: 0.6.0 + "@ardatan/sync-fetch": 0.0.1(encoding@0.1.13) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + "@whatwg-node/fetch": 0.9.17 + graphql: 15.8.0 tslib: 2.8.1 + transitivePeerDependencies: + - encoding - "@graphql-tools/batch-execute@8.5.22(graphql@15.10.1)": + "@graphql-tools/batch-execute@8.5.22(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) - dataloader: 2.2.3 - graphql: 15.10.1 + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) + dataloader: 2.2.2 + graphql: 15.8.0 tslib: 2.8.1 value-or-promise: 1.0.12 - "@graphql-tools/batch-execute@9.0.19(graphql@15.10.1)": + "@graphql-tools/batch-execute@9.0.4(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) - "@whatwg-node/promise-helpers": 1.3.2 - dataloader: 2.2.3 - graphql: 15.10.1 + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + dataloader: 2.2.2 + graphql: 15.8.0 tslib: 2.8.1 + value-or-promise: 1.0.12 - "@graphql-tools/code-file-loader@7.3.23(@babel/core@7.29.0)(graphql@15.10.1)": + "@graphql-tools/code-file-loader@7.3.23(@babel/core@7.26.7)(graphql@15.8.0)": dependencies: - "@graphql-tools/graphql-tag-pluck": 7.5.2(@babel/core@7.29.0)(graphql@15.10.1) - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) + "@graphql-tools/graphql-tag-pluck": 7.5.2(@babel/core@7.26.7)(graphql@15.8.0) + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) globby: 11.1.0 - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.8.1 unixify: 1.0.0 transitivePeerDependencies: - "@babel/core" - supports-color - "@graphql-tools/code-file-loader@8.1.28(graphql@15.10.1)": + "@graphql-tools/code-file-loader@8.1.2(graphql@15.8.0)": dependencies: - "@graphql-tools/graphql-tag-pluck": 8.3.27(graphql@15.10.1) - "@graphql-tools/utils": 11.0.0(graphql@15.10.1) + "@graphql-tools/graphql-tag-pluck": 8.3.1(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) globby: 11.1.0 - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.8.1 unixify: 1.0.0 transitivePeerDependencies: - supports-color - "@graphql-tools/delegate@10.2.23(graphql@15.10.1)": + "@graphql-tools/delegate@10.0.10(graphql@15.8.0)": dependencies: - "@graphql-tools/batch-execute": 9.0.19(graphql@15.10.1) - "@graphql-tools/executor": 1.5.1(graphql@15.10.1) - "@graphql-tools/schema": 10.0.31(graphql@15.10.1) - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) - "@repeaterjs/repeater": 3.0.6 - "@whatwg-node/promise-helpers": 1.3.2 - dataloader: 2.2.3 - dset: 3.1.4 - graphql: 15.10.1 + "@graphql-tools/batch-execute": 9.0.4(graphql@15.8.0) + "@graphql-tools/executor": 1.2.6(graphql@15.8.0) + "@graphql-tools/schema": 10.0.3(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + dataloader: 2.2.2 + graphql: 15.8.0 tslib: 2.8.1 - "@graphql-tools/delegate@9.0.35(graphql@15.10.1)": + "@graphql-tools/delegate@9.0.35(graphql@15.8.0)": dependencies: - "@graphql-tools/batch-execute": 8.5.22(graphql@15.10.1) - "@graphql-tools/executor": 0.0.20(graphql@15.10.1) - "@graphql-tools/schema": 9.0.19(graphql@15.10.1) - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) - dataloader: 2.2.3 - graphql: 15.10.1 + "@graphql-tools/batch-execute": 8.5.22(graphql@15.8.0) + "@graphql-tools/executor": 0.0.20(graphql@15.8.0) + "@graphql-tools/schema": 9.0.19(graphql@15.8.0) + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) + dataloader: 2.2.2 + graphql: 15.8.0 tslib: 2.8.1 value-or-promise: 1.0.12 - "@graphql-tools/documents@1.0.1(graphql@15.10.1)": + "@graphql-tools/documents@1.0.0(graphql@15.8.0)": dependencies: - graphql: 15.10.1 + graphql: 15.8.0 lodash.sortby: 4.7.0 - tslib: 2.6.3 - - "@graphql-tools/executor-common@0.0.4(graphql@15.10.1)": - dependencies: - "@envelop/core": 5.5.1 - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) - graphql: 15.10.1 - - "@graphql-tools/executor-common@0.0.6(graphql@15.10.1)": - dependencies: - "@envelop/core": 5.5.1 - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) - graphql: 15.10.1 + tslib: 2.8.1 - "@graphql-tools/executor-graphql-ws@0.0.14(graphql@15.10.1)": + "@graphql-tools/executor-graphql-ws@0.0.14(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) "@repeaterjs/repeater": 3.0.4 - "@types/ws": 8.18.1 - graphql: 15.10.1 - graphql-ws: 5.12.1(graphql@15.10.1) + "@types/ws": 8.5.4 + graphql: 15.8.0 + graphql-ws: 5.12.1(graphql@15.8.0) isomorphic-ws: 5.0.0(ws@8.13.0) tslib: 2.8.1 ws: 8.13.0 @@ -21273,56 +20422,51 @@ snapshots: - bufferutil - utf-8-validate - "@graphql-tools/executor-graphql-ws@2.0.7(graphql@15.10.1)": + "@graphql-tools/executor-graphql-ws@1.1.2(graphql@15.8.0)": dependencies: - "@graphql-tools/executor-common": 0.0.6(graphql@15.10.1) - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) - "@whatwg-node/disposablestack": 0.0.6 - graphql: 15.10.1 - graphql-ws: 6.0.7(graphql@15.10.1)(ws@8.19.0) - isomorphic-ws: 5.0.0(ws@8.19.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + "@types/ws": 8.5.4 + graphql: 15.8.0 + graphql-ws: 5.16.0(graphql@15.8.0) + isomorphic-ws: 5.0.0(ws@8.18.0) tslib: 2.8.1 - ws: 8.19.0 + ws: 8.18.0 transitivePeerDependencies: - - "@fastify/websocket" - bufferutil - - crossws - utf-8-validate - "@graphql-tools/executor-http@0.1.10(@types/node@16.18.126)(graphql@15.10.1)": + "@graphql-tools/executor-http@0.1.10(@types/node@18.19.74)(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) - "@repeaterjs/repeater": 3.0.6 + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) + "@repeaterjs/repeater": 3.0.4 "@whatwg-node/fetch": 0.8.8 dset: 3.1.4 extract-files: 11.0.0 - graphql: 15.10.1 - meros: 1.3.2(@types/node@16.18.126) + graphql: 15.8.0 + meros: 1.2.1(@types/node@18.19.74) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: - "@types/node" - "@graphql-tools/executor-http@1.3.3(@types/node@22.19.13)(graphql@15.10.1)": - dependencies: - "@graphql-hive/signal": 1.0.0 - "@graphql-tools/executor-common": 0.0.4(graphql@15.10.1) - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) - "@repeaterjs/repeater": 3.0.6 - "@whatwg-node/disposablestack": 0.0.6 - "@whatwg-node/fetch": 0.10.13 - "@whatwg-node/promise-helpers": 1.3.2 - graphql: 15.10.1 - meros: 1.3.2(@types/node@22.19.13) + "@graphql-tools/executor-http@1.0.9(@types/node@20.14.9)(graphql@15.8.0)": + dependencies: + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + "@repeaterjs/repeater": 3.0.4 + "@whatwg-node/fetch": 0.9.17 + extract-files: 11.0.0 + graphql: 15.8.0 + meros: 1.2.1(@types/node@20.14.9) tslib: 2.8.1 + value-or-promise: 1.0.12 transitivePeerDependencies: - "@types/node" - "@graphql-tools/executor-legacy-ws@0.0.11(graphql@15.10.1)": + "@graphql-tools/executor-legacy-ws@0.0.11(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) - "@types/ws": 8.18.1 - graphql: 15.10.1 + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) + "@types/ws": 8.5.4 + graphql: 15.8.0 isomorphic-ws: 5.0.0(ws@8.13.0) tslib: 2.8.1 ws: 8.13.0 @@ -21330,42 +20474,41 @@ snapshots: - bufferutil - utf-8-validate - "@graphql-tools/executor-legacy-ws@1.1.25(graphql@15.10.1)": + "@graphql-tools/executor-legacy-ws@1.0.6(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 11.0.0(graphql@15.10.1) - "@types/ws": 8.18.1 - graphql: 15.10.1 - isomorphic-ws: 5.0.0(ws@8.19.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + "@types/ws": 8.5.4 + graphql: 15.8.0 + isomorphic-ws: 5.0.0(ws@8.18.0) tslib: 2.8.1 - ws: 8.19.0 + ws: 8.18.0 transitivePeerDependencies: - bufferutil - utf-8-validate - "@graphql-tools/executor@0.0.20(graphql@15.10.1)": + "@graphql-tools/executor@0.0.20(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) - "@graphql-typed-document-node/core": 3.2.0(graphql@15.10.1) - "@repeaterjs/repeater": 3.0.6 - graphql: 15.10.1 + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) + "@graphql-typed-document-node/core": 3.2.0(graphql@15.8.0) + "@repeaterjs/repeater": 3.0.4 + graphql: 15.8.0 tslib: 2.8.1 value-or-promise: 1.0.12 - "@graphql-tools/executor@1.5.1(graphql@15.10.1)": + "@graphql-tools/executor@1.2.6(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 11.0.0(graphql@15.10.1) - "@graphql-typed-document-node/core": 3.2.0(graphql@15.10.1) - "@repeaterjs/repeater": 3.0.6 - "@whatwg-node/disposablestack": 0.0.6 - "@whatwg-node/promise-helpers": 1.3.2 - graphql: 15.10.1 + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + "@graphql-typed-document-node/core": 3.2.0(graphql@15.8.0) + "@repeaterjs/repeater": 3.0.4 + graphql: 15.8.0 tslib: 2.8.1 + value-or-promise: 1.0.12 - "@graphql-tools/git-loader@7.3.0(@babel/core@7.29.0)(graphql@15.10.1)": + "@graphql-tools/git-loader@7.3.0(@babel/core@7.26.7)(graphql@15.8.0)": dependencies: - "@graphql-tools/graphql-tag-pluck": 7.5.2(@babel/core@7.29.0)(graphql@15.10.1) - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-tools/graphql-tag-pluck": 7.5.2(@babel/core@7.26.7)(graphql@15.8.0) + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) + graphql: 15.8.0 is-glob: 4.0.3 micromatch: 4.0.8 tslib: 2.8.1 @@ -21374,11 +20517,11 @@ snapshots: - "@babel/core" - supports-color - "@graphql-tools/git-loader@8.0.32(graphql@15.10.1)": + "@graphql-tools/git-loader@8.0.6(graphql@15.8.0)": dependencies: - "@graphql-tools/graphql-tag-pluck": 8.3.27(graphql@15.10.1) - "@graphql-tools/utils": 11.0.0(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-tools/graphql-tag-pluck": 8.3.1(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + graphql: 15.8.0 is-glob: 4.0.3 micromatch: 4.0.8 tslib: 2.8.1 @@ -21386,14 +20529,14 @@ snapshots: transitivePeerDependencies: - supports-color - "@graphql-tools/github-loader@7.3.28(@babel/core@7.29.0)(@types/node@16.18.126)(encoding@0.1.13)(graphql@15.10.1)": + "@graphql-tools/github-loader@7.3.28(@babel/core@7.26.7)(@types/node@18.19.74)(encoding@0.1.13)(graphql@15.8.0)": dependencies: "@ardatan/sync-fetch": 0.0.1(encoding@0.1.13) - "@graphql-tools/executor-http": 0.1.10(@types/node@16.18.126)(graphql@15.10.1) - "@graphql-tools/graphql-tag-pluck": 7.5.2(@babel/core@7.29.0)(graphql@15.10.1) - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) + "@graphql-tools/executor-http": 0.1.10(@types/node@18.19.74)(graphql@15.8.0) + "@graphql-tools/graphql-tag-pluck": 7.5.2(@babel/core@7.26.7)(graphql@15.8.0) + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) "@whatwg-node/fetch": 0.8.8 - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -21402,168 +20545,164 @@ snapshots: - encoding - supports-color - "@graphql-tools/github-loader@8.0.22(@types/node@22.19.13)(graphql@15.10.1)": + "@graphql-tools/github-loader@8.0.1(@types/node@20.14.9)(encoding@0.1.13)(graphql@15.8.0)": dependencies: - "@graphql-tools/executor-http": 1.3.3(@types/node@22.19.13)(graphql@15.10.1) - "@graphql-tools/graphql-tag-pluck": 8.3.27(graphql@15.10.1) - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) - "@whatwg-node/fetch": 0.10.13 - "@whatwg-node/promise-helpers": 1.3.2 - graphql: 15.10.1 - sync-fetch: 0.6.0-2 + "@ardatan/sync-fetch": 0.0.1(encoding@0.1.13) + "@graphql-tools/executor-http": 1.0.9(@types/node@20.14.9)(graphql@15.8.0) + "@graphql-tools/graphql-tag-pluck": 8.3.1(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + "@whatwg-node/fetch": 0.9.17 + graphql: 15.8.0 tslib: 2.8.1 + value-or-promise: 1.0.12 transitivePeerDependencies: - "@types/node" + - encoding - supports-color - "@graphql-tools/graphql-file-loader@7.5.17(graphql@15.10.1)": + "@graphql-tools/graphql-file-loader@7.5.17(graphql@15.8.0)": dependencies: - "@graphql-tools/import": 6.7.18(graphql@15.10.1) - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) + "@graphql-tools/import": 6.7.18(graphql@15.8.0) + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) globby: 11.1.0 - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.8.1 unixify: 1.0.0 - "@graphql-tools/graphql-file-loader@8.1.9(graphql@15.10.1)": + "@graphql-tools/graphql-file-loader@8.0.1(graphql@15.8.0)": dependencies: - "@graphql-tools/import": 7.1.9(graphql@15.10.1) - "@graphql-tools/utils": 11.0.0(graphql@15.10.1) + "@graphql-tools/import": 7.0.1(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) globby: 11.1.0 - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.8.1 unixify: 1.0.0 - transitivePeerDependencies: - - supports-color - "@graphql-tools/graphql-tag-pluck@7.5.2(@babel/core@7.29.0)(graphql@15.10.1)": + "@graphql-tools/graphql-tag-pluck@7.5.2(@babel/core@7.26.7)(graphql@15.8.0)": dependencies: - "@babel/parser": 7.29.0 - "@babel/plugin-syntax-import-assertions": 7.28.6(@babel/core@7.29.0) - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) - graphql: 15.10.1 + "@babel/parser": 7.26.7 + "@babel/plugin-syntax-import-assertions": 7.26.0(@babel/core@7.26.7) + "@babel/traverse": 7.26.7 + "@babel/types": 7.26.7 + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.8.1 transitivePeerDependencies: - "@babel/core" - supports-color - "@graphql-tools/graphql-tag-pluck@8.3.27(graphql@15.10.1)": + "@graphql-tools/graphql-tag-pluck@8.3.1(graphql@15.8.0)": dependencies: - "@babel/core": 7.29.0 - "@babel/parser": 7.29.0 - "@babel/plugin-syntax-import-assertions": 7.28.6(@babel/core@7.29.0) - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 - "@graphql-tools/utils": 11.0.0(graphql@15.10.1) - graphql: 15.10.1 + "@babel/core": 7.26.7 + "@babel/parser": 7.26.7 + "@babel/plugin-syntax-import-assertions": 7.26.0(@babel/core@7.26.7) + "@babel/traverse": 7.26.7 + "@babel/types": 7.26.7 + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color - "@graphql-tools/import@6.7.18(graphql@15.10.1)": + "@graphql-tools/import@6.7.18(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) + graphql: 15.8.0 resolve-from: 5.0.0 tslib: 2.8.1 - "@graphql-tools/import@7.1.9(graphql@15.10.1)": + "@graphql-tools/import@7.0.1(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 11.0.0(graphql@15.10.1) - "@theguild/federation-composition": 0.21.3(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + graphql: 15.8.0 resolve-from: 5.0.0 tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - "@graphql-tools/json-file-loader@7.4.18(graphql@15.10.1)": + "@graphql-tools/json-file-loader@7.4.18(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) globby: 11.1.0 - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.8.1 unixify: 1.0.0 - "@graphql-tools/json-file-loader@8.0.26(graphql@15.10.1)": + "@graphql-tools/json-file-loader@8.0.1(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 11.0.0(graphql@15.10.1) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) globby: 11.1.0 - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.8.1 unixify: 1.0.0 - "@graphql-tools/load-files@7.0.1(graphql@15.10.1)": + "@graphql-tools/load-files@7.0.0(graphql@15.8.0)": dependencies: globby: 11.1.0 - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.8.1 unixify: 1.0.0 - "@graphql-tools/load@7.8.14(graphql@15.10.1)": + "@graphql-tools/load@7.8.14(graphql@15.8.0)": dependencies: - "@graphql-tools/schema": 9.0.19(graphql@15.10.1) - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-tools/schema": 9.0.19(graphql@15.8.0) + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) + graphql: 15.8.0 p-limit: 3.1.0 tslib: 2.8.1 - "@graphql-tools/load@8.1.8(graphql@15.10.1)": + "@graphql-tools/load@8.0.2(graphql@15.8.0)": dependencies: - "@graphql-tools/schema": 10.0.31(graphql@15.10.1) - "@graphql-tools/utils": 11.0.0(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-tools/schema": 10.0.3(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + graphql: 15.8.0 p-limit: 3.1.0 tslib: 2.8.1 - "@graphql-tools/merge@8.3.1(graphql@15.10.1)": + "@graphql-tools/merge@8.3.1(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 8.9.0(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-tools/utils": 8.9.0(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.8.1 - "@graphql-tools/merge@8.4.2(graphql@15.10.1)": + "@graphql-tools/merge@8.4.2(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.8.1 - "@graphql-tools/merge@9.1.7(graphql@15.10.1)": + "@graphql-tools/merge@9.0.4(graphql@15.8.0)": dependencies: - "@graphql-tools/utils": 11.0.0(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.8.1 - "@graphql-tools/optimize@1.4.0(graphql@15.10.1)": + "@graphql-tools/optimize@1.4.0(graphql@15.8.0)": dependencies: - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.8.1 - "@graphql-tools/optimize@2.0.0(graphql@15.10.1)": + "@graphql-tools/optimize@2.0.0(graphql@15.8.0)": dependencies: - graphql: 15.10.1 - tslib: 2.6.3 + graphql: 15.8.0 + tslib: 2.8.1 - "@graphql-tools/prisma-loader@7.2.72(@types/node@16.18.126)(encoding@0.1.13)(graphql@15.10.1)": + "@graphql-tools/prisma-loader@7.2.72(@types/node@18.19.74)(encoding@0.1.13)(graphql@15.8.0)": dependencies: - "@graphql-tools/url-loader": 7.17.18(@types/node@16.18.126)(encoding@0.1.13)(graphql@15.10.1) - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) - "@types/js-yaml": 4.0.9 - "@types/json-stable-stringify": 1.2.0 + "@graphql-tools/url-loader": 7.17.18(@types/node@18.19.74)(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) + "@types/js-yaml": 4.0.5 + "@types/json-stable-stringify": 1.0.36 "@whatwg-node/fetch": 0.8.8 chalk: 4.1.2 - debug: 4.4.3 - dotenv: 16.6.1 - graphql: 15.10.1 - graphql-request: 6.1.0(encoding@0.1.13)(graphql@15.10.1) + debug: 4.4.0 + dotenv: 16.4.5 + graphql: 15.8.0 + graphql-request: 6.1.0(encoding@0.1.13)(graphql@15.8.0) http-proxy-agent: 6.1.1 https-proxy-agent: 6.2.1 - jose: 4.15.9 - js-yaml: 4.1.1 - json-stable-stringify: 1.3.0 - lodash: 4.17.23 + jose: 4.15.5 + js-yaml: 4.1.0 + json-stable-stringify: 1.1.1 + lodash: 4.17.21 scuid: 1.1.0 tslib: 2.8.1 yaml-ast-parser: 0.0.43 @@ -21574,597 +20713,467 @@ snapshots: - supports-color - utf-8-validate - "@graphql-tools/prisma-loader@8.0.17(@types/node@22.19.13)(encoding@0.1.13)(graphql@15.10.1)": + "@graphql-tools/prisma-loader@8.0.4(@types/node@20.14.9)(encoding@0.1.13)(graphql@15.8.0)": dependencies: - "@graphql-tools/url-loader": 8.0.33(@types/node@22.19.13)(graphql@15.10.1) - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) - "@types/js-yaml": 4.0.9 - "@whatwg-node/fetch": 0.10.13 + "@graphql-tools/url-loader": 8.0.2(@types/node@20.14.9)(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + "@types/js-yaml": 4.0.5 + "@whatwg-node/fetch": 0.9.17 chalk: 4.1.2 - debug: 4.4.3 - dotenv: 16.6.1 - graphql: 15.10.1 - graphql-request: 6.1.0(encoding@0.1.13)(graphql@15.10.1) + debug: 4.4.0 + dotenv: 16.4.5 + graphql: 15.8.0 + graphql-request: 6.1.0(encoding@0.1.13)(graphql@15.8.0) http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.6 - jose: 5.10.0 - js-yaml: 4.1.1 - lodash: 4.17.23 + https-proxy-agent: 7.0.4 + jose: 5.3.0 + js-yaml: 4.1.0 + lodash: 4.17.21 scuid: 1.1.0 tslib: 2.8.1 yaml-ast-parser: 0.0.43 transitivePeerDependencies: - - "@fastify/websocket" - "@types/node" - bufferutil - - crossws - encoding - supports-color - utf-8-validate - "@graphql-tools/relay-operation-optimizer@6.5.18(encoding@0.1.13)(graphql@15.10.1)": + "@graphql-tools/relay-operation-optimizer@6.5.18(encoding@0.1.13)(graphql@15.8.0)": dependencies: - "@ardatan/relay-compiler": 12.0.0(encoding@0.1.13)(graphql@15.10.1) - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) - graphql: 15.10.1 + "@ardatan/relay-compiler": 12.0.0(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.8.1 transitivePeerDependencies: - encoding - supports-color - "@graphql-tools/relay-operation-optimizer@7.0.27(encoding@0.1.13)(graphql@15.10.1)": + "@graphql-tools/relay-operation-optimizer@7.0.0(encoding@0.1.13)(graphql@15.8.0)": dependencies: - "@ardatan/relay-compiler": 12.0.3(encoding@0.1.13)(graphql@15.10.1) - "@graphql-tools/utils": 11.0.0(graphql@15.10.1) - graphql: 15.10.1 - tslib: 2.6.3 + "@ardatan/relay-compiler": 12.0.0(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + graphql: 15.8.0 + tslib: 2.8.1 transitivePeerDependencies: - encoding + - supports-color - "@graphql-tools/schema@10.0.31(graphql@15.10.1)": + "@graphql-tools/schema@10.0.3(graphql@15.8.0)": dependencies: - "@graphql-tools/merge": 9.1.7(graphql@15.10.1) - "@graphql-tools/utils": 11.0.0(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-tools/merge": 9.0.4(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.8.1 + value-or-promise: 1.0.12 - "@graphql-tools/schema@8.5.1(graphql@15.10.1)": + "@graphql-tools/schema@8.5.1(graphql@15.8.0)": dependencies: - "@graphql-tools/merge": 8.3.1(graphql@15.10.1) - "@graphql-tools/utils": 8.9.0(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-tools/merge": 8.3.1(graphql@15.8.0) + "@graphql-tools/utils": 8.9.0(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.8.1 value-or-promise: 1.0.11 - "@graphql-tools/schema@9.0.19(graphql@15.10.1)": + "@graphql-tools/schema@9.0.19(graphql@15.8.0)": dependencies: - "@graphql-tools/merge": 8.4.2(graphql@15.10.1) - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-tools/merge": 8.4.2(graphql@15.8.0) + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.8.1 value-or-promise: 1.0.12 - "@graphql-tools/url-loader@7.17.18(@types/node@16.18.126)(encoding@0.1.13)(graphql@15.10.1)": + "@graphql-tools/url-loader@7.17.18(@types/node@18.19.74)(encoding@0.1.13)(graphql@15.8.0)": dependencies: "@ardatan/sync-fetch": 0.0.1(encoding@0.1.13) - "@graphql-tools/delegate": 9.0.35(graphql@15.10.1) - "@graphql-tools/executor-graphql-ws": 0.0.14(graphql@15.10.1) - "@graphql-tools/executor-http": 0.1.10(@types/node@16.18.126)(graphql@15.10.1) - "@graphql-tools/executor-legacy-ws": 0.0.11(graphql@15.10.1) - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) - "@graphql-tools/wrap": 9.4.2(graphql@15.10.1) - "@types/ws": 8.18.1 + "@graphql-tools/delegate": 9.0.35(graphql@15.8.0) + "@graphql-tools/executor-graphql-ws": 0.0.14(graphql@15.8.0) + "@graphql-tools/executor-http": 0.1.10(@types/node@18.19.74)(graphql@15.8.0) + "@graphql-tools/executor-legacy-ws": 0.0.11(graphql@15.8.0) + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) + "@graphql-tools/wrap": 9.4.2(graphql@15.8.0) + "@types/ws": 8.5.4 "@whatwg-node/fetch": 0.8.8 - graphql: 15.10.1 - isomorphic-ws: 5.0.0(ws@8.19.0) + graphql: 15.8.0 + isomorphic-ws: 5.0.0(ws@8.18.0) tslib: 2.8.1 value-or-promise: 1.0.12 - ws: 8.19.0 + ws: 8.18.0 transitivePeerDependencies: - "@types/node" - bufferutil - encoding - utf-8-validate - "@graphql-tools/url-loader@8.0.33(@types/node@22.19.13)(graphql@15.10.1)": - dependencies: - "@graphql-tools/executor-graphql-ws": 2.0.7(graphql@15.10.1) - "@graphql-tools/executor-http": 1.3.3(@types/node@22.19.13)(graphql@15.10.1) - "@graphql-tools/executor-legacy-ws": 1.1.25(graphql@15.10.1) - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) - "@graphql-tools/wrap": 10.1.4(graphql@15.10.1) - "@types/ws": 8.18.1 - "@whatwg-node/fetch": 0.10.13 - "@whatwg-node/promise-helpers": 1.3.2 - graphql: 15.10.1 - isomorphic-ws: 5.0.0(ws@8.19.0) - sync-fetch: 0.6.0-2 + "@graphql-tools/url-loader@8.0.2(@types/node@20.14.9)(encoding@0.1.13)(graphql@15.8.0)": + dependencies: + "@ardatan/sync-fetch": 0.0.1(encoding@0.1.13) + "@graphql-tools/delegate": 10.0.10(graphql@15.8.0) + "@graphql-tools/executor-graphql-ws": 1.1.2(graphql@15.8.0) + "@graphql-tools/executor-http": 1.0.9(@types/node@20.14.9)(graphql@15.8.0) + "@graphql-tools/executor-legacy-ws": 1.0.6(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + "@graphql-tools/wrap": 10.0.5(graphql@15.8.0) + "@types/ws": 8.5.4 + "@whatwg-node/fetch": 0.9.17 + graphql: 15.8.0 + isomorphic-ws: 5.0.0(ws@8.18.0) tslib: 2.8.1 - ws: 8.19.0 + value-or-promise: 1.0.12 + ws: 8.18.0 transitivePeerDependencies: - - "@fastify/websocket" - "@types/node" - bufferutil - - crossws + - encoding - utf-8-validate - "@graphql-tools/utils@10.11.0(graphql@15.10.1)": - dependencies: - "@graphql-typed-document-node/core": 3.2.0(graphql@15.10.1) - "@whatwg-node/promise-helpers": 1.3.2 - cross-inspect: 1.0.1 - graphql: 15.10.1 - tslib: 2.8.1 - - "@graphql-tools/utils@11.0.0(graphql@15.10.1)": + "@graphql-tools/utils@10.2.0(graphql@15.8.0)": dependencies: - "@graphql-typed-document-node/core": 3.2.0(graphql@15.10.1) - "@whatwg-node/promise-helpers": 1.3.2 - cross-inspect: 1.0.1 - graphql: 15.10.1 + "@graphql-typed-document-node/core": 3.2.0(graphql@15.8.0) + cross-inspect: 1.0.0 + dset: 3.1.4 + graphql: 15.8.0 tslib: 2.8.1 - "@graphql-tools/utils@8.13.1(graphql@15.10.1)": + "@graphql-tools/utils@8.13.1(graphql@15.8.0)": dependencies: - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.8.1 - "@graphql-tools/utils@8.2.2(graphql@15.10.1)": + "@graphql-tools/utils@8.2.2(graphql@15.8.0)": dependencies: - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.3.1 - "@graphql-tools/utils@8.9.0(graphql@15.10.1)": + "@graphql-tools/utils@8.9.0(graphql@15.8.0)": dependencies: - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.8.1 - "@graphql-tools/utils@9.2.1(graphql@15.10.1)": + "@graphql-tools/utils@9.2.1(graphql@15.8.0)": dependencies: - "@graphql-typed-document-node/core": 3.2.0(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-typed-document-node/core": 3.2.0(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.8.1 - "@graphql-tools/wrap@10.1.4(graphql@15.10.1)": + "@graphql-tools/wrap@10.0.5(graphql@15.8.0)": dependencies: - "@graphql-tools/delegate": 10.2.23(graphql@15.10.1) - "@graphql-tools/schema": 10.0.31(graphql@15.10.1) - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) - "@whatwg-node/promise-helpers": 1.3.2 - graphql: 15.10.1 + "@graphql-tools/delegate": 10.0.10(graphql@15.8.0) + "@graphql-tools/schema": 10.0.3(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.8.1 + value-or-promise: 1.0.12 - "@graphql-tools/wrap@9.4.2(graphql@15.10.1)": + "@graphql-tools/wrap@9.4.2(graphql@15.8.0)": dependencies: - "@graphql-tools/delegate": 9.0.35(graphql@15.10.1) - "@graphql-tools/schema": 9.0.19(graphql@15.10.1) - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) - graphql: 15.10.1 + "@graphql-tools/delegate": 9.0.35(graphql@15.8.0) + "@graphql-tools/schema": 9.0.19(graphql@15.8.0) + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) + graphql: 15.8.0 tslib: 2.8.1 value-or-promise: 1.0.12 - "@graphql-typed-document-node/core@3.2.0(graphql@15.10.1)": + "@graphql-typed-document-node/core@3.2.0(graphql@15.8.0)": dependencies: - graphql: 15.10.1 + graphql: 15.8.0 "@hutson/parse-repository-url@3.0.2": {} - "@img/colour@1.1.0": - optional: true - "@img/sharp-darwin-arm64@0.33.5": optionalDependencies: "@img/sharp-libvips-darwin-arm64": 1.0.4 optional: true - "@img/sharp-darwin-arm64@0.34.5": - optionalDependencies: - "@img/sharp-libvips-darwin-arm64": 1.2.4 - optional: true - "@img/sharp-darwin-x64@0.33.5": optionalDependencies: "@img/sharp-libvips-darwin-x64": 1.0.4 optional: true - "@img/sharp-darwin-x64@0.34.5": - optionalDependencies: - "@img/sharp-libvips-darwin-x64": 1.2.4 - optional: true - "@img/sharp-libvips-darwin-arm64@1.0.4": optional: true - "@img/sharp-libvips-darwin-arm64@1.2.4": - optional: true - "@img/sharp-libvips-darwin-x64@1.0.4": optional: true - "@img/sharp-libvips-darwin-x64@1.2.4": - optional: true - "@img/sharp-libvips-linux-arm64@1.0.4": optional: true - "@img/sharp-libvips-linux-arm64@1.2.4": - optional: true - "@img/sharp-libvips-linux-arm@1.0.5": optional: true - "@img/sharp-libvips-linux-arm@1.2.4": - optional: true - - "@img/sharp-libvips-linux-ppc64@1.2.4": - optional: true - - "@img/sharp-libvips-linux-riscv64@1.2.4": - optional: true - "@img/sharp-libvips-linux-s390x@1.0.4": optional: true - "@img/sharp-libvips-linux-s390x@1.2.4": - optional: true - "@img/sharp-libvips-linux-x64@1.0.4": optional: true - "@img/sharp-libvips-linux-x64@1.2.4": - optional: true - "@img/sharp-libvips-linuxmusl-arm64@1.0.4": optional: true - "@img/sharp-libvips-linuxmusl-arm64@1.2.4": - optional: true - "@img/sharp-libvips-linuxmusl-x64@1.0.4": optional: true - "@img/sharp-libvips-linuxmusl-x64@1.2.4": - optional: true - "@img/sharp-linux-arm64@0.33.5": optionalDependencies: "@img/sharp-libvips-linux-arm64": 1.0.4 optional: true - "@img/sharp-linux-arm64@0.34.5": - optionalDependencies: - "@img/sharp-libvips-linux-arm64": 1.2.4 - optional: true - "@img/sharp-linux-arm@0.33.5": optionalDependencies: "@img/sharp-libvips-linux-arm": 1.0.5 optional: true - "@img/sharp-linux-arm@0.34.5": - optionalDependencies: - "@img/sharp-libvips-linux-arm": 1.2.4 - optional: true - - "@img/sharp-linux-ppc64@0.34.5": - optionalDependencies: - "@img/sharp-libvips-linux-ppc64": 1.2.4 - optional: true - - "@img/sharp-linux-riscv64@0.34.5": - optionalDependencies: - "@img/sharp-libvips-linux-riscv64": 1.2.4 - optional: true - "@img/sharp-linux-s390x@0.33.5": optionalDependencies: "@img/sharp-libvips-linux-s390x": 1.0.4 optional: true - "@img/sharp-linux-s390x@0.34.5": - optionalDependencies: - "@img/sharp-libvips-linux-s390x": 1.2.4 - optional: true - "@img/sharp-linux-x64@0.33.5": optionalDependencies: "@img/sharp-libvips-linux-x64": 1.0.4 optional: true - "@img/sharp-linux-x64@0.34.5": - optionalDependencies: - "@img/sharp-libvips-linux-x64": 1.2.4 - optional: true - "@img/sharp-linuxmusl-arm64@0.33.5": optionalDependencies: "@img/sharp-libvips-linuxmusl-arm64": 1.0.4 optional: true - "@img/sharp-linuxmusl-arm64@0.34.5": - optionalDependencies: - "@img/sharp-libvips-linuxmusl-arm64": 1.2.4 - optional: true - "@img/sharp-linuxmusl-x64@0.33.5": optionalDependencies: "@img/sharp-libvips-linuxmusl-x64": 1.0.4 optional: true - "@img/sharp-linuxmusl-x64@0.34.5": - optionalDependencies: - "@img/sharp-libvips-linuxmusl-x64": 1.2.4 - optional: true - "@img/sharp-wasm32@0.33.5": dependencies: - "@emnapi/runtime": 1.8.1 - optional: true - - "@img/sharp-wasm32@0.34.5": - dependencies: - "@emnapi/runtime": 1.8.1 - optional: true - - "@img/sharp-win32-arm64@0.34.5": + "@emnapi/runtime": 1.3.1 optional: true "@img/sharp-win32-ia32@0.33.5": optional: true - "@img/sharp-win32-ia32@0.34.5": - optional: true - "@img/sharp-win32-x64@0.33.5": optional: true - "@img/sharp-win32-x64@0.34.5": - optional: true - "@inquirer/ansi@1.0.2": {} - "@inquirer/checkbox@2.5.0": + "@inquirer/checkbox@2.3.10": dependencies: - "@inquirer/core": 9.2.1 - "@inquirer/figures": 1.0.15 - "@inquirer/type": 1.5.5 + "@inquirer/core": 9.0.2 + "@inquirer/figures": 1.0.3 + "@inquirer/type": 1.4.0 ansi-escapes: 4.3.2 - yoctocolors-cjs: 2.1.3 + yoctocolors-cjs: 2.1.2 - "@inquirer/checkbox@4.3.2(@types/node@22.19.13)": + "@inquirer/checkbox@4.3.2(@types/node@20.14.9)": dependencies: "@inquirer/ansi": 1.0.2 - "@inquirer/core": 10.3.2(@types/node@22.19.13) + "@inquirer/core": 10.3.2(@types/node@20.14.9) "@inquirer/figures": 1.0.15 - "@inquirer/type": 3.0.10(@types/node@22.19.13) + "@inquirer/type": 3.0.10(@types/node@20.14.9) yoctocolors-cjs: 2.1.3 optionalDependencies: - "@types/node": 22.19.13 + "@types/node": 20.14.9 - "@inquirer/confirm@3.2.0": + "@inquirer/confirm@3.1.14": dependencies: - "@inquirer/core": 9.2.1 - "@inquirer/type": 1.5.5 + "@inquirer/core": 9.0.2 + "@inquirer/type": 1.4.0 - "@inquirer/confirm@5.1.21(@types/node@22.19.13)": + "@inquirer/confirm@5.1.21(@types/node@20.14.9)": dependencies: - "@inquirer/core": 10.3.2(@types/node@22.19.13) - "@inquirer/type": 3.0.10(@types/node@22.19.13) + "@inquirer/core": 10.3.2(@types/node@20.14.9) + "@inquirer/type": 3.0.10(@types/node@20.14.9) optionalDependencies: - "@types/node": 22.19.13 + "@types/node": 20.14.9 - "@inquirer/core@10.3.2(@types/node@22.19.13)": + "@inquirer/core@10.3.2(@types/node@20.14.9)": dependencies: "@inquirer/ansi": 1.0.2 "@inquirer/figures": 1.0.15 - "@inquirer/type": 3.0.10(@types/node@22.19.13) + "@inquirer/type": 3.0.10(@types/node@20.14.9) cli-width: 4.1.0 mute-stream: 2.0.0 signal-exit: 4.1.0 wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - "@types/node": 22.19.13 + "@types/node": 20.14.9 - "@inquirer/core@9.2.1": + "@inquirer/core@9.0.2": dependencies: - "@inquirer/figures": 1.0.15 - "@inquirer/type": 2.0.0 + "@inquirer/figures": 1.0.3 + "@inquirer/type": 1.4.0 "@types/mute-stream": 0.0.4 - "@types/node": 22.19.13 + "@types/node": 20.14.9 "@types/wrap-ansi": 3.0.0 ansi-escapes: 4.3.2 + cli-spinners: 2.9.2 cli-width: 4.1.0 mute-stream: 1.0.0 signal-exit: 4.1.0 strip-ansi: 6.0.1 wrap-ansi: 6.2.0 - yoctocolors-cjs: 2.1.3 + yoctocolors-cjs: 2.1.2 - "@inquirer/editor@2.2.0": + "@inquirer/editor@2.1.14": dependencies: - "@inquirer/core": 9.2.1 - "@inquirer/type": 1.5.5 + "@inquirer/core": 9.0.2 + "@inquirer/type": 1.4.0 external-editor: 3.1.0 - "@inquirer/editor@4.2.23(@types/node@22.19.13)": + "@inquirer/editor@4.2.23(@types/node@20.14.9)": dependencies: - "@inquirer/core": 10.3.2(@types/node@22.19.13) - "@inquirer/external-editor": 1.0.3(@types/node@22.19.13) - "@inquirer/type": 3.0.10(@types/node@22.19.13) + "@inquirer/core": 10.3.2(@types/node@20.14.9) + "@inquirer/external-editor": 1.0.3(@types/node@20.14.9) + "@inquirer/type": 3.0.10(@types/node@20.14.9) optionalDependencies: - "@types/node": 22.19.13 + "@types/node": 20.14.9 - "@inquirer/expand@2.3.0": + "@inquirer/expand@2.1.14": dependencies: - "@inquirer/core": 9.2.1 - "@inquirer/type": 1.5.5 - yoctocolors-cjs: 2.1.3 + "@inquirer/core": 9.0.2 + "@inquirer/type": 1.4.0 + yoctocolors-cjs: 2.1.2 - "@inquirer/expand@4.0.23(@types/node@22.19.13)": + "@inquirer/expand@4.0.23(@types/node@20.14.9)": dependencies: - "@inquirer/core": 10.3.2(@types/node@22.19.13) - "@inquirer/type": 3.0.10(@types/node@22.19.13) + "@inquirer/core": 10.3.2(@types/node@20.14.9) + "@inquirer/type": 3.0.10(@types/node@20.14.9) yoctocolors-cjs: 2.1.3 optionalDependencies: - "@types/node": 22.19.13 - - "@inquirer/external-editor@1.0.3(@types/node@16.18.126)": - dependencies: - chardet: 2.1.1 - iconv-lite: 0.7.2 - optionalDependencies: - "@types/node": 16.18.126 + "@types/node": 20.14.9 - "@inquirer/external-editor@1.0.3(@types/node@22.19.13)": + "@inquirer/external-editor@1.0.3(@types/node@20.14.9)": dependencies: chardet: 2.1.1 iconv-lite: 0.7.2 optionalDependencies: - "@types/node": 22.19.13 + "@types/node": 20.14.9 "@inquirer/figures@1.0.15": {} - "@inquirer/input@2.3.0": + "@inquirer/figures@1.0.3": {} + + "@inquirer/input@2.2.1": dependencies: - "@inquirer/core": 9.2.1 - "@inquirer/type": 1.5.5 + "@inquirer/core": 9.0.2 + "@inquirer/type": 1.4.0 - "@inquirer/input@4.3.1(@types/node@22.19.13)": + "@inquirer/input@4.3.1(@types/node@20.14.9)": dependencies: - "@inquirer/core": 10.3.2(@types/node@22.19.13) - "@inquirer/type": 3.0.10(@types/node@22.19.13) + "@inquirer/core": 10.3.2(@types/node@20.14.9) + "@inquirer/type": 3.0.10(@types/node@20.14.9) optionalDependencies: - "@types/node": 22.19.13 + "@types/node": 20.14.9 - "@inquirer/number@1.1.0": + "@inquirer/number@1.0.2": dependencies: - "@inquirer/core": 9.2.1 - "@inquirer/type": 1.5.5 + "@inquirer/core": 9.0.2 + "@inquirer/type": 1.4.0 - "@inquirer/number@3.0.23(@types/node@22.19.13)": + "@inquirer/number@3.0.23(@types/node@20.14.9)": dependencies: - "@inquirer/core": 10.3.2(@types/node@22.19.13) - "@inquirer/type": 3.0.10(@types/node@22.19.13) + "@inquirer/core": 10.3.2(@types/node@20.14.9) + "@inquirer/type": 3.0.10(@types/node@20.14.9) optionalDependencies: - "@types/node": 22.19.13 + "@types/node": 20.14.9 - "@inquirer/password@2.2.0": + "@inquirer/password@2.1.14": dependencies: - "@inquirer/core": 9.2.1 - "@inquirer/type": 1.5.5 + "@inquirer/core": 9.0.2 + "@inquirer/type": 1.4.0 ansi-escapes: 4.3.2 - "@inquirer/password@4.0.23(@types/node@22.19.13)": + "@inquirer/password@4.0.23(@types/node@20.14.9)": dependencies: "@inquirer/ansi": 1.0.2 - "@inquirer/core": 10.3.2(@types/node@22.19.13) - "@inquirer/type": 3.0.10(@types/node@22.19.13) + "@inquirer/core": 10.3.2(@types/node@20.14.9) + "@inquirer/type": 3.0.10(@types/node@20.14.9) optionalDependencies: - "@types/node": 22.19.13 - - "@inquirer/prompts@5.5.0": - dependencies: - "@inquirer/checkbox": 2.5.0 - "@inquirer/confirm": 3.2.0 - "@inquirer/editor": 2.2.0 - "@inquirer/expand": 2.3.0 - "@inquirer/input": 2.3.0 - "@inquirer/number": 1.1.0 - "@inquirer/password": 2.2.0 - "@inquirer/rawlist": 2.3.0 - "@inquirer/search": 1.1.0 - "@inquirer/select": 2.5.0 - - "@inquirer/prompts@7.10.1(@types/node@22.19.13)": - dependencies: - "@inquirer/checkbox": 4.3.2(@types/node@22.19.13) - "@inquirer/confirm": 5.1.21(@types/node@22.19.13) - "@inquirer/editor": 4.2.23(@types/node@22.19.13) - "@inquirer/expand": 4.0.23(@types/node@22.19.13) - "@inquirer/input": 4.3.1(@types/node@22.19.13) - "@inquirer/number": 3.0.23(@types/node@22.19.13) - "@inquirer/password": 4.0.23(@types/node@22.19.13) - "@inquirer/rawlist": 4.1.11(@types/node@22.19.13) - "@inquirer/search": 3.2.2(@types/node@22.19.13) - "@inquirer/select": 4.4.2(@types/node@22.19.13) + "@types/node": 20.14.9 + + "@inquirer/prompts@5.1.2": + dependencies: + "@inquirer/checkbox": 2.3.10 + "@inquirer/confirm": 3.1.14 + "@inquirer/editor": 2.1.14 + "@inquirer/expand": 2.1.14 + "@inquirer/input": 2.2.1 + "@inquirer/number": 1.0.2 + "@inquirer/password": 2.1.14 + "@inquirer/rawlist": 2.1.14 + "@inquirer/select": 2.3.10 + + "@inquirer/prompts@7.10.1(@types/node@20.14.9)": + dependencies: + "@inquirer/checkbox": 4.3.2(@types/node@20.14.9) + "@inquirer/confirm": 5.1.21(@types/node@20.14.9) + "@inquirer/editor": 4.2.23(@types/node@20.14.9) + "@inquirer/expand": 4.0.23(@types/node@20.14.9) + "@inquirer/input": 4.3.1(@types/node@20.14.9) + "@inquirer/number": 3.0.23(@types/node@20.14.9) + "@inquirer/password": 4.0.23(@types/node@20.14.9) + "@inquirer/rawlist": 4.1.11(@types/node@20.14.9) + "@inquirer/search": 3.2.2(@types/node@20.14.9) + "@inquirer/select": 4.4.2(@types/node@20.14.9) optionalDependencies: - "@types/node": 22.19.13 + "@types/node": 20.14.9 - "@inquirer/rawlist@2.3.0": + "@inquirer/rawlist@2.1.14": dependencies: - "@inquirer/core": 9.2.1 - "@inquirer/type": 1.5.5 - yoctocolors-cjs: 2.1.3 + "@inquirer/core": 9.0.2 + "@inquirer/type": 1.4.0 + yoctocolors-cjs: 2.1.2 - "@inquirer/rawlist@4.1.11(@types/node@22.19.13)": + "@inquirer/rawlist@4.1.11(@types/node@20.14.9)": dependencies: - "@inquirer/core": 10.3.2(@types/node@22.19.13) - "@inquirer/type": 3.0.10(@types/node@22.19.13) + "@inquirer/core": 10.3.2(@types/node@20.14.9) + "@inquirer/type": 3.0.10(@types/node@20.14.9) yoctocolors-cjs: 2.1.3 optionalDependencies: - "@types/node": 22.19.13 - - "@inquirer/search@1.1.0": - dependencies: - "@inquirer/core": 9.2.1 - "@inquirer/figures": 1.0.15 - "@inquirer/type": 1.5.5 - yoctocolors-cjs: 2.1.3 + "@types/node": 20.14.9 - "@inquirer/search@3.2.2(@types/node@22.19.13)": + "@inquirer/search@3.2.2(@types/node@20.14.9)": dependencies: - "@inquirer/core": 10.3.2(@types/node@22.19.13) + "@inquirer/core": 10.3.2(@types/node@20.14.9) "@inquirer/figures": 1.0.15 - "@inquirer/type": 3.0.10(@types/node@22.19.13) + "@inquirer/type": 3.0.10(@types/node@20.14.9) yoctocolors-cjs: 2.1.3 optionalDependencies: - "@types/node": 22.19.13 + "@types/node": 20.14.9 - "@inquirer/select@2.5.0": + "@inquirer/select@2.3.10": dependencies: - "@inquirer/core": 9.2.1 - "@inquirer/figures": 1.0.15 - "@inquirer/type": 1.5.5 + "@inquirer/core": 9.0.2 + "@inquirer/figures": 1.0.3 + "@inquirer/type": 1.4.0 ansi-escapes: 4.3.2 - yoctocolors-cjs: 2.1.3 + yoctocolors-cjs: 2.1.2 - "@inquirer/select@4.4.2(@types/node@22.19.13)": + "@inquirer/select@4.4.2(@types/node@20.14.9)": dependencies: "@inquirer/ansi": 1.0.2 - "@inquirer/core": 10.3.2(@types/node@22.19.13) + "@inquirer/core": 10.3.2(@types/node@20.14.9) "@inquirer/figures": 1.0.15 - "@inquirer/type": 3.0.10(@types/node@22.19.13) + "@inquirer/type": 3.0.10(@types/node@20.14.9) yoctocolors-cjs: 2.1.3 optionalDependencies: - "@types/node": 22.19.13 - - "@inquirer/type@1.5.5": - dependencies: - mute-stream: 1.0.0 + "@types/node": 20.14.9 - "@inquirer/type@2.0.0": + "@inquirer/type@1.4.0": dependencies: mute-stream: 1.0.0 - "@inquirer/type@3.0.10(@types/node@22.19.13)": + "@inquirer/type@3.0.10(@types/node@20.14.9)": optionalDependencies: - "@types/node": 22.19.13 - - "@isaacs/cliui@8.0.2": - dependencies: - string-width: 5.1.2 - string-width-cjs: string-width@4.2.3 - strip-ansi: 7.2.0 - strip-ansi-cjs: strip-ansi@6.0.1 - wrap-ansi: 8.1.0 - wrap-ansi-cjs: wrap-ansi@7.0.0 + "@types/node": 20.14.9 "@isaacs/cliui@9.0.0": {} "@isaacs/fs-minipass@4.0.1": dependencies: - minipass: 7.1.3 + minipass: 7.1.2 "@isaacs/string-locale-compare@1.1.0": {} @@ -22173,7 +21182,7 @@ snapshots: camelcase: 5.3.1 find-up: 4.1.0 get-package-type: 0.1.0 - js-yaml: 3.14.2 + js-yaml: 3.14.1 resolve-from: 5.0.0 "@istanbuljs/schema@0.1.3": {} @@ -22181,27 +21190,62 @@ snapshots: "@jest/console@29.7.0": dependencies: "@jest/types": 29.6.3 - "@types/node": 16.18.126 + "@types/node": 18.19.74 + chalk: 4.1.2 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + slash: 3.0.0 + + "@jest/core@29.7.0(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5))": + dependencies: + "@jest/console": 29.7.0 + "@jest/reporters": 29.7.0 + "@jest/test-result": 29.7.0 + "@jest/transform": 29.7.0 + "@jest/types": 29.6.3 + "@types/node": 18.19.74 + ansi-escapes: 4.3.2 chalk: 4.1.2 + ci-info: 3.7.1 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)) + jest-haste-map: 29.7.0 jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.8 + pretty-format: 29.7.0 slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node - "@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2))": + "@jest/core@29.7.0(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5))": dependencies: "@jest/console": 29.7.0 "@jest/reporters": 29.7.0 "@jest/test-result": 29.7.0 "@jest/transform": 29.7.0 "@jest/types": 29.6.3 - "@types/node": 16.18.126 + "@types/node": 18.19.74 ansi-escapes: 4.3.2 chalk: 4.1.2 - ci-info: 3.9.0 + ci-info: 3.7.1 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)) + jest-config: 29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -22222,21 +21266,21 @@ snapshots: - supports-color - ts-node - "@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2))": + "@jest/core@29.7.0(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2))": dependencies: "@jest/console": 29.7.0 "@jest/reporters": 29.7.0 "@jest/test-result": 29.7.0 "@jest/transform": 29.7.0 "@jest/types": 29.6.3 - "@types/node": 16.18.126 + "@types/node": 18.19.74 ansi-escapes: 4.3.2 chalk: 4.1.2 - ci-info: 3.9.0 + ci-info: 3.7.1 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)) + jest-config: 29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -22257,21 +21301,21 @@ snapshots: - supports-color - ts-node - "@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2))": + "@jest/core@29.7.0(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5))": dependencies: "@jest/console": 29.7.0 "@jest/reporters": 29.7.0 "@jest/test-result": 29.7.0 "@jest/transform": 29.7.0 "@jest/types": 29.6.3 - "@types/node": 16.18.126 + "@types/node": 18.19.74 ansi-escapes: 4.3.2 chalk: 4.1.2 - ci-info: 3.9.0 + ci-info: 3.7.1 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)) + jest-config: 29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -22292,13 +21336,13 @@ snapshots: - supports-color - ts-node - "@jest/diff-sequences@30.0.1": {} + "@jest/diff-sequences@30.3.0": {} "@jest/environment@29.7.0": dependencies: "@jest/fake-timers": 29.7.0 "@jest/types": 29.6.3 - "@types/node": 18.19.130 + "@types/node": 18.19.74 jest-mock: 29.7.0 "@jest/expect-utils@29.7.0": @@ -22316,7 +21360,7 @@ snapshots: dependencies: "@jest/types": 29.6.3 "@sinonjs/fake-timers": 10.3.0 - "@types/node": 18.19.130 + "@types/node": 18.19.74 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -22339,39 +21383,39 @@ snapshots: "@jest/test-result": 29.7.0 "@jest/transform": 29.7.0 "@jest/types": 29.6.3 - "@jridgewell/trace-mapping": 0.3.31 - "@types/node": 16.18.126 + "@jridgewell/trace-mapping": 0.3.25 + "@types/node": 18.19.74 chalk: 4.1.2 - collect-v8-coverage: 1.0.3 + collect-v8-coverage: 1.0.1 exit: 0.1.2 glob: 7.2.3 graceful-fs: 4.2.11 - istanbul-lib-coverage: 3.2.2 - istanbul-lib-instrument: 6.0.3 - istanbul-lib-report: 3.0.1 + istanbul-lib-coverage: 3.2.0 + istanbul-lib-instrument: 6.0.1 + istanbul-lib-report: 3.0.0 istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.2.0 + istanbul-reports: 3.1.6 jest-message-util: 29.7.0 jest-util: 29.7.0 jest-worker: 29.7.0 slash: 3.0.0 string-length: 4.0.2 strip-ansi: 6.0.1 - v8-to-istanbul: 9.3.0 + v8-to-istanbul: 9.1.0 transitivePeerDependencies: - supports-color "@jest/schemas@29.6.3": dependencies: - "@sinclair/typebox": 0.27.10 + "@sinclair/typebox": 0.27.8 "@jest/schemas@30.0.5": dependencies: - "@sinclair/typebox": 0.34.48 + "@sinclair/typebox": 0.34.49 "@jest/source-map@29.6.3": dependencies: - "@jridgewell/trace-mapping": 0.3.31 + "@jridgewell/trace-mapping": 0.3.25 callsites: 3.1.0 graceful-fs: 4.2.11 @@ -22379,8 +21423,8 @@ snapshots: dependencies: "@jest/console": 29.7.0 "@jest/types": 29.6.3 - "@types/istanbul-lib-coverage": 2.0.6 - collect-v8-coverage: 1.0.3 + "@types/istanbul-lib-coverage": 2.0.4 + collect-v8-coverage: 1.0.1 "@jest/test-sequencer@29.7.0": dependencies: @@ -22391,9 +21435,9 @@ snapshots: "@jest/transform@29.7.0": dependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 "@jest/types": 29.6.3 - "@jridgewell/trace-mapping": 0.3.31 + "@jridgewell/trace-mapping": 0.3.25 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 @@ -22403,7 +21447,7 @@ snapshots: jest-regex-util: 29.6.3 jest-util: 29.7.0 micromatch: 4.0.8 - pirates: 4.0.7 + pirates: 4.0.6 slash: 3.0.0 write-file-atomic: 4.0.2 transitivePeerDependencies: @@ -22412,120 +21456,47 @@ snapshots: "@jest/types@29.6.3": dependencies: "@jest/schemas": 29.6.3 - "@types/istanbul-lib-coverage": 2.0.6 - "@types/istanbul-reports": 3.0.4 - "@types/node": 16.18.126 - "@types/yargs": 17.0.35 + "@types/istanbul-lib-coverage": 2.0.4 + "@types/istanbul-reports": 3.0.1 + "@types/node": 18.19.74 + "@types/yargs": 17.0.24 chalk: 4.1.2 - "@jridgewell/gen-mapping@0.3.13": + "@jridgewell/gen-mapping@0.1.1": dependencies: - "@jridgewell/sourcemap-codec": 1.5.5 - "@jridgewell/trace-mapping": 0.3.31 + "@jridgewell/set-array": 1.2.1 + "@jridgewell/sourcemap-codec": 1.5.0 - "@jridgewell/remapping@2.3.5": + "@jridgewell/gen-mapping@0.3.5": dependencies: - "@jridgewell/gen-mapping": 0.3.13 - "@jridgewell/trace-mapping": 0.3.31 + "@jridgewell/set-array": 1.2.1 + "@jridgewell/sourcemap-codec": 1.5.0 + "@jridgewell/trace-mapping": 0.3.25 - "@jridgewell/resolve-uri@3.1.2": {} + "@jridgewell/resolve-uri@3.1.0": {} - "@jridgewell/source-map@0.3.11": + "@jridgewell/set-array@1.2.1": {} + + "@jridgewell/source-map@0.3.6": dependencies: - "@jridgewell/gen-mapping": 0.3.13 - "@jridgewell/trace-mapping": 0.3.31 + "@jridgewell/gen-mapping": 0.3.5 + "@jridgewell/trace-mapping": 0.3.25 - "@jridgewell/sourcemap-codec@1.5.5": {} + "@jridgewell/sourcemap-codec@1.5.0": {} - "@jridgewell/trace-mapping@0.3.31": + "@jridgewell/trace-mapping@0.3.25": dependencies: - "@jridgewell/resolve-uri": 3.1.2 - "@jridgewell/sourcemap-codec": 1.5.5 + "@jridgewell/resolve-uri": 3.1.0 + "@jridgewell/sourcemap-codec": 1.5.0 "@jridgewell/trace-mapping@0.3.9": dependencies: - "@jridgewell/resolve-uri": 3.1.2 - "@jridgewell/sourcemap-codec": 1.5.5 + "@jridgewell/resolve-uri": 3.1.0 + "@jridgewell/sourcemap-codec": 1.5.0 + + "@kamilkisiela/fast-url-parser@1.1.4": {} - "@lerna/create@9.0.5(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)": - dependencies: - "@npmcli/arborist": 9.1.6 - "@npmcli/package-json": 7.0.2 - "@npmcli/run-script": 10.0.3 - "@nx/devkit": 22.5.4(nx@22.5.4(@swc/core@1.15.18)) - "@octokit/plugin-enterprise-rest": 6.0.1 - "@octokit/rest": 20.1.2 - aproba: 2.0.0 - byte-size: 8.1.1 - chalk: 4.1.0 - cmd-shim: 6.0.3 - color-support: 1.1.3 - columnify: 1.6.0 - console-control-strings: 1.1.0 - conventional-changelog-core: 5.0.1 - conventional-recommended-bump: 7.0.1 - cosmiconfig: 9.0.0(typescript@5.3.2) - dedent: 1.5.3 - execa: 5.0.0 - fs-extra: 11.3.4 - get-stream: 6.0.0 - git-url-parse: 14.0.0 - glob-parent: 6.0.2 - has-unicode: 2.0.1 - ini: 1.3.8 - init-package-json: 8.2.2 - inquirer: 12.9.6(@types/node@22.19.13) - is-ci: 3.0.1 - is-stream: 2.0.0 - js-yaml: 4.1.1 - libnpmpublish: 11.1.2 - load-json-file: 6.2.0 - make-dir: 4.0.0 - make-fetch-happen: 15.0.2 - minimatch: 3.1.4 - multimatch: 5.0.0 - npm-package-arg: 13.0.1 - npm-packlist: 10.0.3 - npm-registry-fetch: 19.1.0 - nx: 22.5.4(@swc/core@1.15.18) - p-map: 4.0.0 - p-map-series: 2.1.0 - p-queue: 6.6.2 - p-reduce: 2.1.0 - pacote: 21.0.1 - pify: 5.0.0 - read-cmd-shim: 4.0.0 - resolve-from: 5.0.0 - rimraf: 6.1.3 - semver: 7.7.2 - set-blocking: 2.0.0 - signal-exit: 3.0.7 - slash: 3.0.0 - ssri: 12.0.0 - string-width: 4.2.3 - tar: 7.5.8 - temp-dir: 1.0.0 - through: 2.3.8 - tinyglobby: 0.2.12 - upath: 2.0.1 - uuid: 11.1.0 - validate-npm-package-license: 3.0.4 - validate-npm-package-name: 6.0.2 - wide-align: 1.1.5 - write-file-atomic: 5.0.1 - write-pkg: 4.0.0 - yargs: 17.7.2 - yargs-parser: 21.1.1 - transitivePeerDependencies: - - "@swc-node/register" - - "@swc/core" - - "@types/node" - - babel-plugin-macros - - debug - - supports-color - - typescript - - "@lexical/clipboard@0.34.0": + "@lexical/clipboard@0.34.0": dependencies: "@lexical/html": 0.34.0 "@lexical/list": 0.34.0 @@ -22615,7 +21586,7 @@ snapshots: "@lexical/utils": 0.34.0 lexical: 0.34.0 - "@lexical/react@0.34.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(yjs@13.6.29)": + "@lexical/react@0.34.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(yjs@13.6.30)": dependencies: "@floating-ui/react": 0.27.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@lexical/devtools-core": 0.34.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -22632,7 +21603,7 @@ snapshots: "@lexical/table": 0.34.0 "@lexical/text": 0.34.0 "@lexical/utils": 0.34.0 - "@lexical/yjs": 0.34.0(yjs@13.6.29) + "@lexical/yjs": 0.34.0(yjs@13.6.30) lexical: 0.34.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -22668,20 +21639,20 @@ snapshots: "@lexical/table": 0.34.0 lexical: 0.34.0 - "@lexical/yjs@0.34.0(yjs@13.6.29)": + "@lexical/yjs@0.34.0(yjs@13.6.30)": dependencies: "@lexical/offset": 0.34.0 "@lexical/selection": 0.34.0 lexical: 0.34.0 - yjs: 13.6.29 + yjs: 13.6.30 "@lhci/cli@0.9.0(encoding@0.1.13)": dependencies: "@lhci/utils": 0.9.0(encoding@0.1.13) chrome-launcher: 0.13.4 - compression: 1.8.1 - debug: 4.4.3 - express: 4.22.1 + compression: 1.7.4 + debug: 4.4.0 + express: 4.20.0 inquirer: 6.5.2 isomorphic-fetch: 3.0.0(encoding@0.1.13) lighthouse: 9.3.0 @@ -22700,9 +21671,9 @@ snapshots: "@lhci/utils@0.9.0(encoding@0.1.13)": dependencies: - debug: 4.4.3 + debug: 4.4.0 isomorphic-fetch: 3.0.0(encoding@0.1.13) - js-yaml: 3.14.2 + js-yaml: 3.14.1 lighthouse: 9.3.0 tree-kill: 1.2.2 transitivePeerDependencies: @@ -22711,62 +21682,62 @@ snapshots: - supports-color - utf-8-validate - "@mdx-js/react@3.1.1(@types/react@18.3.28)(react@18.3.1)": + "@mdx-js/react@3.1.0(@types/react@18.2.42)(react@18.3.1)": dependencies: - "@types/mdx": 2.0.13 - "@types/react": 18.3.28 + "@types/mdx": 2.0.3 + "@types/react": 18.2.42 react: 18.3.1 "@napi-rs/wasm-runtime@0.2.4": dependencies: - "@emnapi/core": 1.8.1 - "@emnapi/runtime": 1.8.1 + "@emnapi/core": 1.10.0 + "@emnapi/runtime": 1.3.1 "@tybys/wasm-util": 0.9.0 "@next/env@13.5.11": {} - "@next/env@15.5.12": {} + "@next/env@15.1.6": {} "@next/swc-darwin-arm64@13.5.9": optional: true - "@next/swc-darwin-arm64@15.5.12": + "@next/swc-darwin-arm64@15.1.6": optional: true "@next/swc-darwin-x64@13.5.9": optional: true - "@next/swc-darwin-x64@15.5.12": + "@next/swc-darwin-x64@15.1.6": optional: true "@next/swc-linux-arm64-gnu@13.5.9": optional: true - "@next/swc-linux-arm64-gnu@15.5.12": + "@next/swc-linux-arm64-gnu@15.1.6": optional: true "@next/swc-linux-arm64-musl@13.5.9": optional: true - "@next/swc-linux-arm64-musl@15.5.12": + "@next/swc-linux-arm64-musl@15.1.6": optional: true "@next/swc-linux-x64-gnu@13.5.9": optional: true - "@next/swc-linux-x64-gnu@15.5.12": + "@next/swc-linux-x64-gnu@15.1.6": optional: true "@next/swc-linux-x64-musl@13.5.9": optional: true - "@next/swc-linux-x64-musl@15.5.12": + "@next/swc-linux-x64-musl@15.1.6": optional: true "@next/swc-win32-arm64-msvc@13.5.9": optional: true - "@next/swc-win32-arm64-msvc@15.5.12": + "@next/swc-win32-arm64-msvc@15.1.6": optional: true "@next/swc-win32-ia32-msvc@13.5.9": @@ -22775,7 +21746,7 @@ snapshots: "@next/swc-win32-x64-msvc@13.5.9": optional: true - "@next/swc-win32-x64-msvc@15.5.12": + "@next/swc-win32-x64-msvc@15.1.6": optional: true "@nodelib/fs.scandir@2.1.5": @@ -22788,14 +21759,14 @@ snapshots: "@nodelib/fs.walk@1.2.8": dependencies: "@nodelib/fs.scandir": 2.1.5 - fastq: 1.20.1 + fastq: 1.15.0 "@npmcli/agent@4.0.0": dependencies: - agent-base: 7.1.4 + agent-base: 7.1.3 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 - lru-cache: 11.2.6 + lru-cache: 11.3.5 socks-proxy-agent: 8.0.5 transitivePeerDependencies: - supports-color @@ -22830,7 +21801,7 @@ snapshots: read-package-json-fast: 2.0.3 readdir-scoped-modules: 1.1.0 rimraf: 3.0.2 - semver: 7.7.4 + semver: 7.7.1 ssri: 8.0.1 treeverse: 1.0.4 walk-up-path: 1.0.0 @@ -22852,18 +21823,18 @@ snapshots: "@npmcli/redact": 3.2.2 "@npmcli/run-script": 10.0.3 bin-links: 5.0.0 - cacache: 20.0.3 + cacache: 20.0.4 common-ancestor-path: 1.0.1 hosted-git-info: 9.0.2 json-stringify-nice: 1.1.4 - lru-cache: 11.2.6 - minimatch: 10.2.4 + lru-cache: 11.3.5 + minimatch: 10.2.5 nopt: 8.1.0 npm-install-checks: 7.1.2 npm-package-arg: 13.0.1 npm-pick-manifest: 11.0.3 npm-registry-fetch: 19.1.0 - pacote: 21.4.0 + pacote: 21.5.0 parse-conflict-json: 4.0.0 proc-log: 5.0.0 proggy: 3.0.0 @@ -22879,16 +21850,12 @@ snapshots: "@npmcli/fs@1.1.1": dependencies: "@gar/promisify": 1.1.3 - semver: 7.7.4 + semver: 7.7.1 "@npmcli/fs@2.1.2": dependencies: "@gar/promisify": 1.1.3 - semver: 7.7.4 - - "@npmcli/fs@3.1.1": - dependencies: - semver: 7.7.4 + semver: 7.7.1 "@npmcli/fs@4.0.0": dependencies: @@ -22906,24 +21873,11 @@ snapshots: npm-pick-manifest: 6.1.1 promise-inflight: 1.0.1 promise-retry: 2.0.1 - semver: 7.7.4 + semver: 7.7.1 which: 2.0.2 transitivePeerDependencies: - bluebird - "@npmcli/git@4.1.0": - dependencies: - "@npmcli/promise-spawn": 6.0.2 - lru-cache: 7.18.3 - npm-pick-manifest: 8.0.2 - proc-log: 3.0.0 - promise-inflight: 1.0.1 - promise-retry: 2.0.1 - semver: 7.7.4 - which: 3.0.1 - transitivePeerDependencies: - - bluebird - "@npmcli/git@6.0.3": dependencies: "@npmcli/promise-spawn": 8.0.3 @@ -22937,10 +21891,10 @@ snapshots: "@npmcli/git@7.0.2": dependencies: - "@gar/promise-retry": 1.0.2 + "@gar/promise-retry": 1.0.3 "@npmcli/promise-spawn": 9.0.1 ini: 6.0.0 - lru-cache: 11.2.6 + lru-cache: 11.3.5 npm-pick-manifest: 11.0.3 proc-log: 6.1.0 semver: 7.7.2 @@ -22951,11 +21905,6 @@ snapshots: npm-bundled: 1.1.2 npm-normalize-package-bin: 1.0.1 - "@npmcli/installed-package-contents@2.1.0": - dependencies: - npm-bundled: 3.0.1 - npm-normalize-package-bin: 3.0.1 - "@npmcli/installed-package-contents@3.0.0": dependencies: npm-bundled: 4.0.0 @@ -22970,7 +21919,7 @@ snapshots: dependencies: "@npmcli/name-from-folder": 1.0.1 glob: 8.1.0 - minimatch: 5.1.9 + minimatch: 5.1.6 read-package-json-fast: 2.0.3 "@npmcli/map-workspaces@5.0.3": @@ -22978,23 +21927,23 @@ snapshots: "@npmcli/name-from-folder": 4.0.0 "@npmcli/package-json": 7.0.2 glob: 13.0.6 - minimatch: 10.2.4 + minimatch: 10.2.5 "@npmcli/metavuln-calculator@2.0.0": dependencies: cacache: 15.3.0 json-parse-even-better-errors: 2.3.1 pacote: 12.0.3 - semver: 7.7.4 + semver: 7.7.1 transitivePeerDependencies: - bluebird - supports-color "@npmcli/metavuln-calculator@9.0.3": dependencies: - cacache: 20.0.3 + cacache: 20.0.4 json-parse-even-better-errors: 5.0.0 - pacote: 21.4.0 + pacote: 21.5.0 proc-log: 6.1.0 semver: 7.7.2 transitivePeerDependencies: @@ -23018,8 +21967,6 @@ snapshots: "@npmcli/node-gyp@1.0.3": {} - "@npmcli/node-gyp@3.0.0": {} - "@npmcli/node-gyp@4.0.0": {} "@npmcli/node-gyp@5.0.0": {} @@ -23042,10 +21989,6 @@ snapshots: dependencies: infer-owner: 1.0.4 - "@npmcli/promise-spawn@6.0.2": - dependencies: - which: 3.0.1 - "@npmcli/promise-spawn@8.0.3": dependencies: which: 5.0.0 @@ -23056,20 +21999,20 @@ snapshots: "@npmcli/query@4.0.1": dependencies: - postcss-selector-parser: 7.1.1 + postcss-selector-parser: 7.0.0 "@npmcli/redact@3.2.2": {} + "@npmcli/redact@4.0.0": {} + "@npmcli/run-script@10.0.3": dependencies: "@npmcli/node-gyp": 5.0.0 "@npmcli/package-json": 7.0.2 "@npmcli/promise-spawn": 9.0.1 - node-gyp: 12.2.0 + node-gyp: 12.3.0 proc-log: 6.1.0 which: 6.0.1 - transitivePeerDependencies: - - supports-color "@npmcli/run-script@2.0.0": dependencies: @@ -23081,163 +22024,112 @@ snapshots: - bluebird - supports-color - "@npmcli/run-script@6.0.2": - dependencies: - "@npmcli/node-gyp": 3.0.0 - "@npmcli/promise-spawn": 6.0.2 - node-gyp: 9.4.1 - read-package-json-fast: 3.0.2 - which: 3.0.1 - transitivePeerDependencies: - - bluebird - - supports-color - - "@nx/devkit@22.5.4(nx@22.5.4(@swc/core@1.15.18))": + "@nx/devkit@22.6.5(nx@22.6.5(@swc/core@1.15.30))": dependencies: "@zkochan/js-yaml": 0.0.7 - ejs: 3.1.10 + ejs: 5.0.1 enquirer: 2.3.6 minimatch: 10.2.4 - nx: 22.5.4(@swc/core@1.15.18) + nx: 22.6.5(@swc/core@1.15.30) semver: 7.7.2 tslib: 2.8.1 yargs-parser: 21.1.1 - "@nx/nx-darwin-arm64@22.5.4": + "@nx/nx-darwin-arm64@22.6.5": optional: true - "@nx/nx-darwin-x64@22.5.4": + "@nx/nx-darwin-x64@22.6.5": optional: true - "@nx/nx-freebsd-x64@22.5.4": + "@nx/nx-freebsd-x64@22.6.5": optional: true - "@nx/nx-linux-arm-gnueabihf@22.5.4": + "@nx/nx-linux-arm-gnueabihf@22.6.5": optional: true - "@nx/nx-linux-arm64-gnu@22.5.4": + "@nx/nx-linux-arm64-gnu@22.6.5": optional: true - "@nx/nx-linux-arm64-musl@22.5.4": + "@nx/nx-linux-arm64-musl@22.6.5": optional: true - "@nx/nx-linux-x64-gnu@22.5.4": + "@nx/nx-linux-x64-gnu@22.6.5": optional: true - "@nx/nx-linux-x64-musl@22.5.4": + "@nx/nx-linux-x64-musl@22.6.5": optional: true - "@nx/nx-win32-arm64-msvc@22.5.4": + "@nx/nx-win32-arm64-msvc@22.6.5": optional: true - "@nx/nx-win32-x64-msvc@22.5.4": + "@nx/nx-win32-x64-msvc@22.6.5": optional: true - "@oclif/core@1.26.2": + "@oclif/color@1.0.3": dependencies: - "@oclif/linewrap": 1.0.0 - "@oclif/screen": 3.0.8 - ansi-escapes: 4.3.2 ansi-styles: 4.3.0 - cardinal: 2.1.1 chalk: 4.1.2 - clean-stack: 3.0.1 - cli-progress: 3.12.0 - debug: 4.4.3(supports-color@8.1.1) - ejs: 3.1.10 - fs-extra: 9.1.0 - get-package-type: 0.1.0 - globby: 11.1.0 - hyperlinker: 1.0.0 - indent-string: 4.0.0 - is-wsl: 2.2.0 - js-yaml: 3.14.2 - natural-orderby: 2.0.3 - object-treeify: 1.1.33 - password-prompt: 1.1.3 - semver: 7.7.4 - string-width: 4.2.3 strip-ansi: 6.0.1 supports-color: 8.1.1 - supports-hyperlinks: 2.3.0 tslib: 2.8.1 - widest-line: 3.1.0 - wrap-ansi: 7.0.0 - "@oclif/core@2.16.0(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)": + "@oclif/core@1.23.1": dependencies: - "@types/cli-progress": 3.11.6 + "@oclif/linewrap": 1.0.0 + "@oclif/screen": 3.0.4 ansi-escapes: 4.3.2 ansi-styles: 4.3.0 cardinal: 2.1.1 chalk: 4.1.2 clean-stack: 3.0.1 - cli-progress: 3.12.0 - debug: 4.4.3(supports-color@8.1.1) + cli-progress: 3.11.2 + debug: 4.4.0(supports-color@8.1.1) ejs: 3.1.10 + fs-extra: 9.1.0 get-package-type: 0.1.0 globby: 11.1.0 hyperlinker: 1.0.0 indent-string: 4.0.0 is-wsl: 2.2.0 - js-yaml: 3.14.2 + js-yaml: 3.14.1 natural-orderby: 2.0.3 object-treeify: 1.1.33 - password-prompt: 1.1.3 - slice-ansi: 4.0.0 + password-prompt: 1.1.2 + semver: 7.7.0 string-width: 4.2.3 strip-ansi: 6.0.1 supports-color: 8.1.1 supports-hyperlinks: 2.3.0 - ts-node: 10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2) tslib: 2.8.1 widest-line: 3.1.0 - wordwrap: 1.0.0 wrap-ansi: 7.0.0 - transitivePeerDependencies: - - "@swc/core" - - "@swc/wasm" - - "@types/node" - - typescript "@oclif/linewrap@1.0.0": {} - "@oclif/plugin-help@5.2.20(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)": + "@oclif/plugin-help@5.1.22": dependencies: - "@oclif/core": 2.16.0(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2) - transitivePeerDependencies: - - "@swc/core" - - "@swc/wasm" - - "@types/node" - - typescript + "@oclif/core": 1.23.1 - "@oclif/plugin-not-found@2.4.3(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)": + "@oclif/plugin-not-found@2.3.13": dependencies: - "@oclif/core": 2.16.0(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2) - chalk: 4.1.2 + "@oclif/color": 1.0.3 + "@oclif/core": 1.23.1 fast-levenshtein: 3.0.0 - transitivePeerDependencies: - - "@swc/core" - - "@swc/wasm" - - "@types/node" - - typescript + lodash: 4.17.21 - "@oclif/plugin-warn-if-update-available@2.1.1(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)": + "@oclif/plugin-warn-if-update-available@2.0.18": dependencies: - "@oclif/core": 2.16.0(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2) + "@oclif/core": 1.23.1 chalk: 4.1.2 - debug: 4.4.3 + debug: 4.4.0 + fs-extra: 9.1.0 http-call: 5.3.0 - lodash.template: 4.5.0 - semver: 7.7.4 + lodash: 4.17.21 + semver: 7.7.0 transitivePeerDependencies: - - "@swc/core" - - "@swc/wasm" - - "@types/node" - supports-color - - typescript - "@oclif/screen@3.0.8": {} + "@oclif/screen@3.0.4": {} "@octokit/auth-token@2.5.0": dependencies: @@ -23381,112 +22273,110 @@ snapshots: dependencies: "@octokit/openapi-types": 12.11.0 - "@parcel/watcher-android-arm64@2.5.6": + "@opentelemetry/api@1.4.1": + optional: true + + "@parcel/watcher-android-arm64@2.5.1": optional: true - "@parcel/watcher-darwin-arm64@2.5.6": + "@parcel/watcher-darwin-arm64@2.5.1": optional: true - "@parcel/watcher-darwin-x64@2.5.6": + "@parcel/watcher-darwin-x64@2.5.1": optional: true - "@parcel/watcher-freebsd-x64@2.5.6": + "@parcel/watcher-freebsd-x64@2.5.1": optional: true - "@parcel/watcher-linux-arm-glibc@2.5.6": + "@parcel/watcher-linux-arm-glibc@2.5.1": optional: true - "@parcel/watcher-linux-arm-musl@2.5.6": + "@parcel/watcher-linux-arm-musl@2.5.1": optional: true - "@parcel/watcher-linux-arm64-glibc@2.5.6": + "@parcel/watcher-linux-arm64-glibc@2.5.1": optional: true - "@parcel/watcher-linux-arm64-musl@2.5.6": + "@parcel/watcher-linux-arm64-musl@2.5.1": optional: true - "@parcel/watcher-linux-x64-glibc@2.5.6": + "@parcel/watcher-linux-x64-glibc@2.5.1": optional: true - "@parcel/watcher-linux-x64-musl@2.5.6": + "@parcel/watcher-linux-x64-musl@2.5.1": optional: true - "@parcel/watcher-win32-arm64@2.5.6": + "@parcel/watcher-win32-arm64@2.5.1": optional: true - "@parcel/watcher-win32-ia32@2.5.6": + "@parcel/watcher-win32-ia32@2.5.1": optional: true - "@parcel/watcher-win32-x64@2.5.6": + "@parcel/watcher-win32-x64@2.5.1": optional: true - "@parcel/watcher@2.5.6": + "@parcel/watcher@2.5.1": dependencies: - detect-libc: 2.1.2 + detect-libc: 1.0.3 is-glob: 4.0.3 - node-addon-api: 7.1.1 - picomatch: 4.0.3 + micromatch: 4.0.8 + node-addon-api: 7.1.0 optionalDependencies: - "@parcel/watcher-android-arm64": 2.5.6 - "@parcel/watcher-darwin-arm64": 2.5.6 - "@parcel/watcher-darwin-x64": 2.5.6 - "@parcel/watcher-freebsd-x64": 2.5.6 - "@parcel/watcher-linux-arm-glibc": 2.5.6 - "@parcel/watcher-linux-arm-musl": 2.5.6 - "@parcel/watcher-linux-arm64-glibc": 2.5.6 - "@parcel/watcher-linux-arm64-musl": 2.5.6 - "@parcel/watcher-linux-x64-glibc": 2.5.6 - "@parcel/watcher-linux-x64-musl": 2.5.6 - "@parcel/watcher-win32-arm64": 2.5.6 - "@parcel/watcher-win32-ia32": 2.5.6 - "@parcel/watcher-win32-x64": 2.5.6 - - "@peculiar/asn1-schema@2.6.0": - dependencies: - asn1js: 3.0.7 - pvtsutils: 1.3.6 + "@parcel/watcher-android-arm64": 2.5.1 + "@parcel/watcher-darwin-arm64": 2.5.1 + "@parcel/watcher-darwin-x64": 2.5.1 + "@parcel/watcher-freebsd-x64": 2.5.1 + "@parcel/watcher-linux-arm-glibc": 2.5.1 + "@parcel/watcher-linux-arm-musl": 2.5.1 + "@parcel/watcher-linux-arm64-glibc": 2.5.1 + "@parcel/watcher-linux-arm64-musl": 2.5.1 + "@parcel/watcher-linux-x64-glibc": 2.5.1 + "@parcel/watcher-linux-x64-musl": 2.5.1 + "@parcel/watcher-win32-arm64": 2.5.1 + "@parcel/watcher-win32-ia32": 2.5.1 + "@parcel/watcher-win32-x64": 2.5.1 + + "@peculiar/asn1-schema@2.3.3": + dependencies: + asn1js: 3.0.5 + pvtsutils: 1.3.2 tslib: 2.8.1 "@peculiar/json-schema@1.1.12": dependencies: tslib: 2.8.1 - "@peculiar/webcrypto@1.5.0": + "@peculiar/webcrypto@1.4.1": dependencies: - "@peculiar/asn1-schema": 2.6.0 + "@peculiar/asn1-schema": 2.3.3 "@peculiar/json-schema": 1.1.12 - pvtsutils: 1.3.6 + pvtsutils: 1.3.2 tslib: 2.8.1 - webcrypto-core: 1.8.1 - - "@pkgjs/parseargs@0.11.0": - optional: true + webcrypto-core: 1.7.5 - "@pmmmwh/react-refresh-webpack-plugin@0.5.17(react-refresh@0.14.2)(type-fest@4.41.0)(webpack-hot-middleware@2.26.1)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12))": + "@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-hot-middleware@2.26.1)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2))": dependencies: ansi-html: 0.0.9 - core-js-pure: 3.48.0 + core-js-pure: 3.40.0 error-stack-parser: 2.1.4 - html-entities: 2.6.0 + html-entities: 2.5.2 loader-utils: 2.0.4 react-refresh: 0.14.2 - schema-utils: 4.3.3 - source-map: 0.7.6 - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) + schema-utils: 4.3.0 + source-map: 0.7.4 + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) optionalDependencies: - type-fest: 4.41.0 + type-fest: 2.19.0 webpack-hot-middleware: 2.26.1 "@repeaterjs/repeater@3.0.4": {} - "@repeaterjs/repeater@3.0.6": {} - - "@rollup/plugin-graphql@1.1.0(graphql@15.10.1)(rollup@2.80.0)": + "@rollup/plugin-graphql@1.1.0(graphql@15.8.0)(rollup@2.79.2)": dependencies: "@rollup/pluginutils": 4.2.1 - graphql: 15.10.1 - graphql-tag: 2.12.6(graphql@15.10.1) - rollup: 2.80.0 + graphql: 15.8.0 + graphql-tag: 2.12.6(graphql@15.8.0) + rollup: 2.79.2 "@rollup/pluginutils@4.2.1": dependencies: @@ -23501,49 +22391,28 @@ snapshots: transitivePeerDependencies: - zenObservable - "@sigstore/bundle@1.1.0": - dependencies: - "@sigstore/protobuf-specs": 0.2.1 - "@sigstore/bundle@4.0.0": dependencies: - "@sigstore/protobuf-specs": 0.5.0 + "@sigstore/protobuf-specs": 0.5.1 - "@sigstore/core@3.1.0": {} + "@sigstore/core@3.2.0": {} - "@sigstore/protobuf-specs@0.2.1": {} + "@sigstore/protobuf-specs@0.5.1": {} - "@sigstore/protobuf-specs@0.5.0": {} - - "@sigstore/sign@1.0.0": - dependencies: - "@sigstore/bundle": 1.1.0 - "@sigstore/protobuf-specs": 0.2.1 - make-fetch-happen: 11.1.1 - transitivePeerDependencies: - - supports-color - - "@sigstore/sign@4.1.0": + "@sigstore/sign@4.1.1": dependencies: + "@gar/promise-retry": 1.0.3 "@sigstore/bundle": 4.0.0 - "@sigstore/core": 3.1.0 - "@sigstore/protobuf-specs": 0.5.0 - make-fetch-happen: 15.0.4 + "@sigstore/core": 3.2.0 + "@sigstore/protobuf-specs": 0.5.1 + make-fetch-happen: 15.0.5 proc-log: 6.1.0 - promise-retry: 2.0.1 - transitivePeerDependencies: - - supports-color - - "@sigstore/tuf@1.0.3": - dependencies: - "@sigstore/protobuf-specs": 0.2.1 - tuf-js: 1.1.7 transitivePeerDependencies: - supports-color - "@sigstore/tuf@4.0.1": + "@sigstore/tuf@4.0.2": dependencies: - "@sigstore/protobuf-specs": 0.5.0 + "@sigstore/protobuf-specs": 0.5.1 tuf-js: 4.1.0 transitivePeerDependencies: - supports-color @@ -23551,29 +22420,29 @@ snapshots: "@sigstore/verify@3.1.0": dependencies: "@sigstore/bundle": 4.0.0 - "@sigstore/core": 3.1.0 - "@sigstore/protobuf-specs": 0.5.0 + "@sigstore/core": 3.2.0 + "@sigstore/protobuf-specs": 0.5.1 - "@sinclair/typebox@0.27.10": {} + "@sinclair/typebox@0.27.8": {} - "@sinclair/typebox@0.34.48": {} + "@sinclair/typebox@0.34.49": {} "@sindresorhus/is@0.14.0": {} "@sindresorhus/is@4.6.0": {} - "@sinonjs/commons@3.0.1": + "@sinonjs/commons@3.0.0": dependencies: type-detect: 4.0.8 "@sinonjs/fake-timers@10.3.0": dependencies: - "@sinonjs/commons": 3.0.1 + "@sinonjs/commons": 3.0.0 "@size-limit/esbuild@7.0.8(size-limit@7.0.8)": dependencies: esbuild: 0.14.54 - nanoid: 3.3.11 + nanoid: 3.3.8 size-limit: 7.0.8 "@size-limit/file@7.0.8(size-limit@7.0.8)": @@ -23587,144 +22456,145 @@ snapshots: "@size-limit/file": 7.0.8(size-limit@7.0.8) size-limit: 7.0.8 - "@storybook/addon-actions@8.6.14(storybook@8.6.17(prettier@3.8.1))": + "@storybook/addon-actions@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: "@storybook/global": 5.0.0 "@types/uuid": 9.0.8 dequal: 2.0.3 polished: 4.3.1 - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) uuid: 9.0.1 - "@storybook/addon-backgrounds@8.6.14(storybook@8.6.17(prettier@3.8.1))": + "@storybook/addon-backgrounds@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: "@storybook/global": 5.0.0 memoizerific: 1.11.3 - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) ts-dedent: 2.2.0 - "@storybook/addon-controls@8.6.14(storybook@8.6.17(prettier@3.8.1))": + "@storybook/addon-controls@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: "@storybook/global": 5.0.0 dequal: 2.0.3 - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) ts-dedent: 2.2.0 - "@storybook/addon-docs@8.6.14(@types/react@18.3.28)(storybook@8.6.17(prettier@3.8.1))": + "@storybook/addon-docs@8.5.2(@types/react@18.2.42)(storybook@8.5.2(prettier@3.3.3))": dependencies: - "@mdx-js/react": 3.1.1(@types/react@18.3.28)(react@18.3.1) - "@storybook/blocks": 8.6.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.17(prettier@3.8.1)) - "@storybook/csf-plugin": 8.6.14(storybook@8.6.17(prettier@3.8.1)) - "@storybook/react-dom-shim": 8.6.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.17(prettier@3.8.1)) + "@mdx-js/react": 3.1.0(@types/react@18.2.42)(react@18.3.1) + "@storybook/blocks": 8.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.2(prettier@3.3.3)) + "@storybook/csf-plugin": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + "@storybook/react-dom-shim": 8.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.2(prettier@3.3.3)) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) ts-dedent: 2.2.0 transitivePeerDependencies: - "@types/react" - "@storybook/addon-essentials@8.6.14(@types/react@18.3.28)(storybook@8.6.17(prettier@3.8.1))": - dependencies: - "@storybook/addon-actions": 8.6.14(storybook@8.6.17(prettier@3.8.1)) - "@storybook/addon-backgrounds": 8.6.14(storybook@8.6.17(prettier@3.8.1)) - "@storybook/addon-controls": 8.6.14(storybook@8.6.17(prettier@3.8.1)) - "@storybook/addon-docs": 8.6.14(@types/react@18.3.28)(storybook@8.6.17(prettier@3.8.1)) - "@storybook/addon-highlight": 8.6.14(storybook@8.6.17(prettier@3.8.1)) - "@storybook/addon-measure": 8.6.14(storybook@8.6.17(prettier@3.8.1)) - "@storybook/addon-outline": 8.6.14(storybook@8.6.17(prettier@3.8.1)) - "@storybook/addon-toolbars": 8.6.14(storybook@8.6.17(prettier@3.8.1)) - "@storybook/addon-viewport": 8.6.14(storybook@8.6.17(prettier@3.8.1)) - storybook: 8.6.17(prettier@3.8.1) + "@storybook/addon-essentials@8.5.2(@types/react@18.2.42)(storybook@8.5.2(prettier@3.3.3))": + dependencies: + "@storybook/addon-actions": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + "@storybook/addon-backgrounds": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + "@storybook/addon-controls": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + "@storybook/addon-docs": 8.5.2(@types/react@18.2.42)(storybook@8.5.2(prettier@3.3.3)) + "@storybook/addon-highlight": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + "@storybook/addon-measure": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + "@storybook/addon-outline": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + "@storybook/addon-toolbars": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + "@storybook/addon-viewport": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + storybook: 8.5.2(prettier@3.3.3) ts-dedent: 2.2.0 transitivePeerDependencies: - "@types/react" - "@storybook/addon-highlight@8.6.14(storybook@8.6.17(prettier@3.8.1))": + "@storybook/addon-highlight@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: "@storybook/global": 5.0.0 - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) - "@storybook/addon-interactions@8.6.14(storybook@8.6.17(prettier@3.8.1))": + "@storybook/addon-interactions@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: "@storybook/global": 5.0.0 - "@storybook/instrumenter": 8.6.14(storybook@8.6.17(prettier@3.8.1)) - "@storybook/test": 8.6.14(storybook@8.6.17(prettier@3.8.1)) + "@storybook/instrumenter": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + "@storybook/test": 8.5.2(storybook@8.5.2(prettier@3.3.3)) polished: 4.3.1 - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) ts-dedent: 2.2.0 - "@storybook/addon-measure@8.6.14(storybook@8.6.17(prettier@3.8.1))": + "@storybook/addon-measure@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: "@storybook/global": 5.0.0 - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) tiny-invariant: 1.3.3 - "@storybook/addon-onboarding@8.6.17(storybook@8.6.17(prettier@3.8.1))": + "@storybook/addon-onboarding@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) - "@storybook/addon-outline@8.6.14(storybook@8.6.17(prettier@3.8.1))": + "@storybook/addon-outline@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: "@storybook/global": 5.0.0 - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) ts-dedent: 2.2.0 - "@storybook/addon-toolbars@8.6.14(storybook@8.6.17(prettier@3.8.1))": + "@storybook/addon-toolbars@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) - "@storybook/addon-viewport@8.6.14(storybook@8.6.17(prettier@3.8.1))": + "@storybook/addon-viewport@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: memoizerific: 1.11.3 - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) - "@storybook/addon-webpack5-compiler-swc@4.0.2(storybook@8.6.17(prettier@3.8.1))(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12))": + "@storybook/addon-webpack5-compiler-swc@4.0.3(storybook@8.5.2(prettier@3.3.3))(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2))": dependencies: - "@swc/core": 1.15.18 - storybook: 8.6.17(prettier@3.8.1) - swc-loader: 0.2.7(@swc/core@1.15.18)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) + "@swc/core": 1.15.30 + storybook: 8.5.2(prettier@3.3.3) + swc-loader: 0.2.7(@swc/core@1.15.30)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) transitivePeerDependencies: - "@swc/helpers" - webpack - "@storybook/blocks@8.6.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.17(prettier@3.8.1))": + "@storybook/blocks@8.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.2(prettier@3.3.3))": dependencies: - "@storybook/icons": 1.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - storybook: 8.6.17(prettier@3.8.1) + "@storybook/csf": 0.1.12 + "@storybook/icons": 1.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + storybook: 8.5.2(prettier@3.3.3) ts-dedent: 2.2.0 optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - "@storybook/builder-webpack5@8.6.17(@swc/core@1.15.18)(esbuild@0.25.12)(storybook@8.6.17(prettier@3.8.1))(typescript@5.3.2)": + "@storybook/builder-webpack5@8.5.2(@swc/core@1.15.30)(esbuild@0.24.2)(storybook@8.5.2(prettier@3.3.3))(typescript@5.4.5)": dependencies: - "@storybook/core-webpack": 8.6.17(storybook@8.6.17(prettier@3.8.1)) - "@types/semver": 7.7.1 + "@storybook/core-webpack": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + "@types/semver": 7.5.8 browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 - cjs-module-lexer: 1.4.3 + cjs-module-lexer: 1.4.1 constants-browserify: 1.0.0 - css-loader: 6.11.0(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) - es-module-lexer: 1.7.0 - fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.3.2)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) - html-webpack-plugin: 5.6.6(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) - magic-string: 0.30.21 + css-loader: 6.11.0(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) + es-module-lexer: 1.6.0 + fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.4.5)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) + html-webpack-plugin: 5.6.3(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) + magic-string: 0.30.17 path-browserify: 1.0.1 process: 0.11.10 - semver: 7.7.4 - storybook: 8.6.17(prettier@3.8.1) - style-loader: 3.3.4(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) - terser-webpack-plugin: 5.3.17(@swc/core@1.15.18)(esbuild@0.25.12)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) + semver: 7.7.1 + storybook: 8.5.2(prettier@3.3.3) + style-loader: 3.3.1(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) + terser-webpack-plugin: 5.3.11(@swc/core@1.15.30)(esbuild@0.24.2)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) ts-dedent: 2.2.0 url: 0.11.4 util: 0.12.5 util-deprecate: 1.0.2 - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) - webpack-dev-middleware: 6.1.3(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) + webpack-dev-middleware: 6.1.3(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.6.2 optionalDependencies: - typescript: 5.3.2 + typescript: 5.4.5 transitivePeerDependencies: - "@rspack/core" - "@swc/core" @@ -23732,117 +22602,108 @@ snapshots: - uglify-js - webpack-cli - "@storybook/components@8.6.17(storybook@8.6.17(prettier@3.8.1))": + "@storybook/components@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) - "@storybook/core-webpack@8.6.17(storybook@8.6.17(prettier@3.8.1))": + "@storybook/core-webpack@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) ts-dedent: 2.2.0 - "@storybook/core@8.6.17(prettier@3.8.1)(storybook@8.6.17(prettier@3.8.1))": + "@storybook/core@8.5.2(prettier@3.3.3)": dependencies: - "@storybook/theming": 8.6.17(storybook@8.6.17(prettier@3.8.1)) + "@storybook/csf": 0.1.12 better-opn: 3.0.2 browser-assert: 1.2.1 - esbuild: 0.25.12 - esbuild-register: 3.6.0(esbuild@0.25.12) - jsdoc-type-pratt-parser: 4.8.0 + esbuild: 0.24.2 + esbuild-register: 3.6.0(esbuild@0.24.2) + jsdoc-type-pratt-parser: 4.1.0 process: 0.11.10 - recast: 0.23.11 - semver: 7.7.4 + recast: 0.23.9 + semver: 7.7.1 util: 0.12.5 - ws: 8.19.0 + ws: 8.18.0 optionalDependencies: - prettier: 3.8.1 + prettier: 3.3.3 transitivePeerDependencies: - bufferutil - - storybook - supports-color - utf-8-validate - "@storybook/csf-plugin@8.6.14(storybook@8.6.17(prettier@3.8.1))": + "@storybook/csf-plugin@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) unplugin: 1.16.1 + "@storybook/csf@0.1.12": + dependencies: + type-fest: 2.19.0 + "@storybook/global@5.0.0": {} - "@storybook/icons@1.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + "@storybook/icons@1.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - "@storybook/instrumenter@8.6.14(storybook@8.6.17(prettier@3.8.1))": + "@storybook/instrumenter@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: "@storybook/global": 5.0.0 - "@vitest/utils": 2.1.9 - storybook: 8.6.17(prettier@3.8.1) - - "@storybook/instrumenter@8.6.15(storybook@8.6.17(prettier@3.8.1))": - dependencies: - "@storybook/global": 5.0.0 - "@vitest/utils": 2.1.9 - storybook: 8.6.17(prettier@3.8.1) - - "@storybook/instrumenter@8.6.17(storybook@8.6.17(prettier@3.8.1))": - dependencies: - "@storybook/global": 5.0.0 - "@vitest/utils": 2.1.9 - storybook: 8.6.17(prettier@3.8.1) - - "@storybook/manager-api@8.6.17(storybook@8.6.17(prettier@3.8.1))": - dependencies: - storybook: 8.6.17(prettier@3.8.1) - - "@storybook/nextjs@8.6.17(@swc/core@1.15.18)(esbuild@0.25.12)(next@15.5.12(@babel/core@7.29.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.97.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.97.3)(storybook@8.6.17(prettier@3.8.1))(type-fest@4.41.0)(typescript@5.3.2)(webpack-hot-middleware@2.26.1)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12))": - dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-import-assertions": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-class-properties": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-export-namespace-from": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-numeric-separator": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-object-rest-spread": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-runtime": 7.29.0(@babel/core@7.29.0) - "@babel/preset-env": 7.29.0(@babel/core@7.29.0) - "@babel/preset-react": 7.28.5(@babel/core@7.29.0) - "@babel/preset-typescript": 7.28.5(@babel/core@7.29.0) - "@babel/runtime": 7.28.6 - "@pmmmwh/react-refresh-webpack-plugin": 0.5.17(react-refresh@0.14.2)(type-fest@4.41.0)(webpack-hot-middleware@2.26.1)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) - "@storybook/builder-webpack5": 8.6.17(@swc/core@1.15.18)(esbuild@0.25.12)(storybook@8.6.17(prettier@3.8.1))(typescript@5.3.2) - "@storybook/preset-react-webpack": 8.6.17(@storybook/test@8.6.17(storybook@8.6.17(prettier@3.8.1)))(@swc/core@1.15.18)(esbuild@0.25.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.17(prettier@3.8.1))(typescript@5.3.2) - "@storybook/react": 8.6.17(@storybook/test@8.6.17(storybook@8.6.17(prettier@3.8.1)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.17(prettier@3.8.1))(typescript@5.3.2) - "@storybook/test": 8.6.17(storybook@8.6.17(prettier@3.8.1)) - "@types/semver": 7.7.1 - babel-loader: 9.2.1(@babel/core@7.29.0)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) - css-loader: 6.11.0(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) + "@vitest/utils": 2.1.8 + storybook: 8.5.2(prettier@3.3.3) + + "@storybook/manager-api@8.5.2(storybook@8.5.2(prettier@3.3.3))": + dependencies: + storybook: 8.5.2(prettier@3.3.3) + + "@storybook/nextjs@8.5.2(@swc/core@1.15.30)(esbuild@0.24.2)(next@15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.4.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4)(storybook@8.5.2(prettier@3.3.3))(type-fest@2.19.0)(typescript@5.4.5)(webpack-hot-middleware@2.26.1)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2))": + dependencies: + "@babel/core": 7.26.7 + "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.26.7) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.26.7) + "@babel/plugin-syntax-import-assertions": 7.26.0(@babel/core@7.26.7) + "@babel/plugin-transform-class-properties": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-export-namespace-from": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-numeric-separator": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-object-rest-spread": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-runtime": 7.25.9(@babel/core@7.26.7) + "@babel/preset-env": 7.26.7(@babel/core@7.26.7) + "@babel/preset-react": 7.26.3(@babel/core@7.26.7) + "@babel/preset-typescript": 7.26.0(@babel/core@7.26.7) + "@babel/runtime": 7.26.7 + "@pmmmwh/react-refresh-webpack-plugin": 0.5.15(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-hot-middleware@2.26.1)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) + "@storybook/builder-webpack5": 8.5.2(@swc/core@1.15.30)(esbuild@0.24.2)(storybook@8.5.2(prettier@3.3.3))(typescript@5.4.5) + "@storybook/preset-react-webpack": 8.5.2(@storybook/test@8.5.2(storybook@8.5.2(prettier@3.3.3)))(@swc/core@1.15.30)(esbuild@0.24.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.2(prettier@3.3.3))(typescript@5.4.5) + "@storybook/react": 8.5.2(@storybook/test@8.5.2(storybook@8.5.2(prettier@3.3.3)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.2(prettier@3.3.3))(typescript@5.4.5) + "@storybook/test": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + "@types/semver": 7.5.8 + babel-loader: 9.2.1(@babel/core@7.26.7)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) + css-loader: 6.11.0(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) find-up: 5.0.0 - image-size: 1.2.1 + image-size: 1.2.0 loader-utils: 3.3.1 - next: 15.5.12(@babel/core@7.29.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.97.3) - node-polyfill-webpack-plugin: 2.0.1(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) - pnp-webpack-plugin: 1.7.0(typescript@5.3.2) - postcss: 8.5.8 - postcss-loader: 8.2.1(postcss@8.5.8)(typescript@5.3.2)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) + next: 15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.4.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4) + node-polyfill-webpack-plugin: 2.0.1(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) + pnp-webpack-plugin: 1.7.0(typescript@5.4.5) + postcss: 8.5.1 + postcss-loader: 8.1.1(postcss@8.5.1)(typescript@5.4.5)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-refresh: 0.14.2 resolve-url-loader: 5.0.0 - sass-loader: 14.2.1(sass@1.97.3)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) - semver: 7.7.4 - storybook: 8.6.17(prettier@3.8.1) - style-loader: 3.3.4(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) - styled-jsx: 5.1.7(@babel/core@7.29.0)(react@18.3.1) + sass-loader: 14.2.1(sass@1.83.4)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) + semver: 7.7.0 + storybook: 8.5.2(prettier@3.3.3) + style-loader: 3.3.1(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) + styled-jsx: 5.1.6(@babel/core@7.26.7)(react@18.3.1) ts-dedent: 2.2.0 tsconfig-paths: 4.2.0 tsconfig-paths-webpack-plugin: 4.2.0 optionalDependencies: sharp: 0.33.5 - typescript: 5.3.2 - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) + typescript: 5.4.5 + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) transitivePeerDependencies: - "@rspack/core" - "@swc/core" @@ -23861,24 +22722,24 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - "@storybook/preset-react-webpack@8.6.17(@storybook/test@8.6.17(storybook@8.6.17(prettier@3.8.1)))(@swc/core@1.15.18)(esbuild@0.25.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.17(prettier@3.8.1))(typescript@5.3.2)": + "@storybook/preset-react-webpack@8.5.2(@storybook/test@8.5.2(storybook@8.5.2(prettier@3.3.3)))(@swc/core@1.15.30)(esbuild@0.24.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.2(prettier@3.3.3))(typescript@5.4.5)": dependencies: - "@storybook/core-webpack": 8.6.17(storybook@8.6.17(prettier@3.8.1)) - "@storybook/react": 8.6.17(@storybook/test@8.6.17(storybook@8.6.17(prettier@3.8.1)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.17(prettier@3.8.1))(typescript@5.3.2) - "@storybook/react-docgen-typescript-plugin": 1.0.6--canary.9.0c3f3b7.0(typescript@5.3.2)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) - "@types/semver": 7.7.1 + "@storybook/core-webpack": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + "@storybook/react": 8.5.2(@storybook/test@8.5.2(storybook@8.5.2(prettier@3.3.3)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.2(prettier@3.3.3))(typescript@5.4.5) + "@storybook/react-docgen-typescript-plugin": 1.0.6--canary.9.0c3f3b7.0(typescript@5.4.5)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) + "@types/semver": 7.5.8 find-up: 5.0.0 - magic-string: 0.30.21 + magic-string: 0.30.17 react: 18.3.1 react-docgen: 7.1.1 react-dom: 18.3.1(react@18.3.1) - resolve: 1.22.11 - semver: 7.7.4 - storybook: 8.6.17(prettier@3.8.1) + resolve: 1.22.10 + semver: 7.7.1 + storybook: 8.5.2(prettier@3.3.3) tsconfig-paths: 4.2.0 - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) optionalDependencies: - typescript: 5.3.2 + typescript: 5.4.5 transitivePeerDependencies: - "@storybook/test" - "@swc/core" @@ -23887,148 +22748,114 @@ snapshots: - uglify-js - webpack-cli - "@storybook/preview-api@8.6.17(storybook@8.6.17(prettier@3.8.1))": + "@storybook/preview-api@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) - "@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.3.2)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12))": + "@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.4.5)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2))": dependencies: - debug: 4.4.3 + debug: 4.4.0 endent: 2.1.0 find-cache-dir: 3.3.2 - flat-cache: 3.2.0 + flat-cache: 3.0.4 micromatch: 4.0.8 - react-docgen-typescript: 2.4.0(typescript@5.3.2) + react-docgen-typescript: 2.2.2(typescript@5.4.5) tslib: 2.8.1 - typescript: 5.3.2 - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) + typescript: 5.4.5 + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) transitivePeerDependencies: - supports-color - "@storybook/react-dom-shim@8.6.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.17(prettier@3.8.1))": - dependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - storybook: 8.6.17(prettier@3.8.1) - - "@storybook/react-dom-shim@8.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.17(prettier@3.8.1))": + "@storybook/react-dom-shim@8.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.2(prettier@3.3.3))": dependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) - "@storybook/react@8.6.17(@storybook/test@8.6.15(storybook@8.6.17(prettier@3.8.1)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.17(prettier@3.8.1))(typescript@5.3.2)": + "@storybook/react@8.5.2(@storybook/test@8.5.2(storybook@8.5.2(prettier@3.3.3)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.2(prettier@3.3.3))(typescript@5.4.5)": dependencies: - "@storybook/components": 8.6.17(storybook@8.6.17(prettier@3.8.1)) + "@storybook/components": 8.5.2(storybook@8.5.2(prettier@3.3.3)) "@storybook/global": 5.0.0 - "@storybook/manager-api": 8.6.17(storybook@8.6.17(prettier@3.8.1)) - "@storybook/preview-api": 8.6.17(storybook@8.6.17(prettier@3.8.1)) - "@storybook/react-dom-shim": 8.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.17(prettier@3.8.1)) - "@storybook/theming": 8.6.17(storybook@8.6.17(prettier@3.8.1)) + "@storybook/manager-api": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + "@storybook/preview-api": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + "@storybook/react-dom-shim": 8.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.2(prettier@3.3.3)) + "@storybook/theming": 8.5.2(storybook@8.5.2(prettier@3.3.3)) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) optionalDependencies: - "@storybook/test": 8.6.15(storybook@8.6.17(prettier@3.8.1)) - typescript: 5.3.2 + "@storybook/test": 8.5.2(storybook@8.5.2(prettier@3.3.3)) + typescript: 5.4.5 - "@storybook/react@8.6.17(@storybook/test@8.6.17(storybook@8.6.17(prettier@3.8.1)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.17(prettier@3.8.1))(typescript@5.3.2)": + "@storybook/test@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: - "@storybook/components": 8.6.17(storybook@8.6.17(prettier@3.8.1)) + "@storybook/csf": 0.1.12 "@storybook/global": 5.0.0 - "@storybook/manager-api": 8.6.17(storybook@8.6.17(prettier@3.8.1)) - "@storybook/preview-api": 8.6.17(storybook@8.6.17(prettier@3.8.1)) - "@storybook/react-dom-shim": 8.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.6.17(prettier@3.8.1)) - "@storybook/theming": 8.6.17(storybook@8.6.17(prettier@3.8.1)) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - storybook: 8.6.17(prettier@3.8.1) - optionalDependencies: - "@storybook/test": 8.6.17(storybook@8.6.17(prettier@3.8.1)) - typescript: 5.3.2 - - "@storybook/test@8.6.14(storybook@8.6.17(prettier@3.8.1))": - dependencies: - "@storybook/global": 5.0.0 - "@storybook/instrumenter": 8.6.14(storybook@8.6.17(prettier@3.8.1)) + "@storybook/instrumenter": 8.5.2(storybook@8.5.2(prettier@3.3.3)) "@testing-library/dom": 10.4.0 "@testing-library/jest-dom": 6.5.0 "@testing-library/user-event": 14.5.2(@testing-library/dom@10.4.0) "@vitest/expect": 2.0.5 "@vitest/spy": 2.0.5 - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) - "@storybook/test@8.6.15(storybook@8.6.17(prettier@3.8.1))": + "@storybook/theming@8.5.2(storybook@8.5.2(prettier@3.3.3))": dependencies: - "@storybook/global": 5.0.0 - "@storybook/instrumenter": 8.6.15(storybook@8.6.17(prettier@3.8.1)) - "@testing-library/dom": 10.4.0 - "@testing-library/jest-dom": 6.5.0 - "@testing-library/user-event": 14.5.2(@testing-library/dom@10.4.0) - "@vitest/expect": 2.0.5 - "@vitest/spy": 2.0.5 - storybook: 8.6.17(prettier@3.8.1) + storybook: 8.5.2(prettier@3.3.3) - "@storybook/test@8.6.17(storybook@8.6.17(prettier@3.8.1))": - dependencies: - "@storybook/global": 5.0.0 - "@storybook/instrumenter": 8.6.17(storybook@8.6.17(prettier@3.8.1)) - "@testing-library/dom": 10.4.0 - "@testing-library/jest-dom": 6.5.0 - "@testing-library/user-event": 14.5.2(@testing-library/dom@10.4.0) - "@vitest/expect": 2.0.5 - "@vitest/spy": 2.0.5 - storybook: 8.6.17(prettier@3.8.1) + "@swc/core-darwin-arm64@1.15.30": + optional: true - "@storybook/theming@8.6.17(storybook@8.6.17(prettier@3.8.1))": - dependencies: - storybook: 8.6.17(prettier@3.8.1) + "@swc/core-darwin-x64@1.15.30": + optional: true - "@swc/core-darwin-arm64@1.15.18": + "@swc/core-linux-arm-gnueabihf@1.15.30": optional: true - "@swc/core-darwin-x64@1.15.18": + "@swc/core-linux-arm64-gnu@1.15.30": optional: true - "@swc/core-linux-arm-gnueabihf@1.15.18": + "@swc/core-linux-arm64-musl@1.15.30": optional: true - "@swc/core-linux-arm64-gnu@1.15.18": + "@swc/core-linux-ppc64-gnu@1.15.30": optional: true - "@swc/core-linux-arm64-musl@1.15.18": + "@swc/core-linux-s390x-gnu@1.15.30": optional: true - "@swc/core-linux-x64-gnu@1.15.18": + "@swc/core-linux-x64-gnu@1.15.30": optional: true - "@swc/core-linux-x64-musl@1.15.18": + "@swc/core-linux-x64-musl@1.15.30": optional: true - "@swc/core-win32-arm64-msvc@1.15.18": + "@swc/core-win32-arm64-msvc@1.15.30": optional: true - "@swc/core-win32-ia32-msvc@1.15.18": + "@swc/core-win32-ia32-msvc@1.15.30": optional: true - "@swc/core-win32-x64-msvc@1.15.18": + "@swc/core-win32-x64-msvc@1.15.30": optional: true - "@swc/core@1.15.18": + "@swc/core@1.15.30": dependencies: "@swc/counter": 0.1.3 - "@swc/types": 0.1.25 + "@swc/types": 0.1.26 optionalDependencies: - "@swc/core-darwin-arm64": 1.15.18 - "@swc/core-darwin-x64": 1.15.18 - "@swc/core-linux-arm-gnueabihf": 1.15.18 - "@swc/core-linux-arm64-gnu": 1.15.18 - "@swc/core-linux-arm64-musl": 1.15.18 - "@swc/core-linux-x64-gnu": 1.15.18 - "@swc/core-linux-x64-musl": 1.15.18 - "@swc/core-win32-arm64-msvc": 1.15.18 - "@swc/core-win32-ia32-msvc": 1.15.18 - "@swc/core-win32-x64-msvc": 1.15.18 + "@swc/core-darwin-arm64": 1.15.30 + "@swc/core-darwin-x64": 1.15.30 + "@swc/core-linux-arm-gnueabihf": 1.15.30 + "@swc/core-linux-arm64-gnu": 1.15.30 + "@swc/core-linux-arm64-musl": 1.15.30 + "@swc/core-linux-ppc64-gnu": 1.15.30 + "@swc/core-linux-s390x-gnu": 1.15.30 + "@swc/core-linux-x64-gnu": 1.15.30 + "@swc/core-linux-x64-musl": 1.15.30 + "@swc/core-win32-arm64-msvc": 1.15.30 + "@swc/core-win32-ia32-msvc": 1.15.30 + "@swc/core-win32-x64-msvc": 1.15.30 "@swc/counter@0.1.3": {} @@ -24040,7 +22867,7 @@ snapshots: dependencies: tslib: 2.8.1 - "@swc/types@0.1.25": + "@swc/types@0.1.26": dependencies: "@swc/counter": 0.1.3 @@ -24052,39 +22879,28 @@ snapshots: dependencies: defer-to-connect: 2.0.1 - "@testing-library/cypress@10.1.0(cypress@12.17.4)": + "@testing-library/cypress@10.0.1(cypress@12.17.4)": dependencies: - "@babel/runtime": 7.28.6 - "@testing-library/dom": 10.4.1 + "@babel/runtime": 7.26.7 + "@testing-library/dom": 9.3.3 cypress: 12.17.4 "@testing-library/dom@10.4.0": dependencies: - "@babel/code-frame": 7.29.0 - "@babel/runtime": 7.28.6 - "@types/aria-query": 5.0.4 + "@babel/code-frame": 7.26.2 + "@babel/runtime": 7.26.7 + "@types/aria-query": 5.0.1 aria-query: 5.3.0 chalk: 4.1.2 dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 27.5.1 - "@testing-library/dom@10.4.1": + "@testing-library/dom@9.3.3": dependencies: - "@babel/code-frame": 7.29.0 - "@babel/runtime": 7.28.6 - "@types/aria-query": 5.0.4 - aria-query: 5.3.0 - dom-accessibility-api: 0.5.16 - lz-string: 1.5.0 - picocolors: 1.1.1 - pretty-format: 27.5.1 - - "@testing-library/dom@9.3.4": - dependencies: - "@babel/code-frame": 7.29.0 - "@babel/runtime": 7.28.6 - "@types/aria-query": 5.0.4 + "@babel/code-frame": 7.26.2 + "@babel/runtime": 7.26.7 + "@types/aria-query": 5.0.1 aria-query: 5.1.3 chalk: 4.1.2 dom-accessibility-api: 0.5.16 @@ -24093,125 +22909,93 @@ snapshots: "@testing-library/jest-dom@6.5.0": dependencies: - "@adobe/css-tools": 4.4.4 - aria-query: 5.3.2 + "@adobe/css-tools": 4.4.0 + aria-query: 5.3.0 chalk: 3.0.0 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 - lodash: 4.17.23 + lodash: 4.17.21 redent: 3.0.0 - "@testing-library/jest-dom@6.9.1": + "@testing-library/react@14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - "@adobe/css-tools": 4.4.4 - aria-query: 5.3.2 - css.escape: 1.5.1 - dom-accessibility-api: 0.6.3 - picocolors: 1.1.1 - redent: 3.0.0 - - "@testing-library/react@14.3.1(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": - dependencies: - "@babel/runtime": 7.28.6 - "@testing-library/dom": 9.3.4 - "@types/react-dom": 18.3.7(@types/react@18.3.28) + "@babel/runtime": 7.26.7 + "@testing-library/dom": 9.3.3 + "@types/react-dom": 18.2.21 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - "@types/react" "@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)": dependencies: "@testing-library/dom": 10.4.0 - "@theguild/federation-composition@0.21.3(graphql@15.10.1)": - dependencies: - constant-case: 3.0.4 - debug: 4.4.3 - graphql: 15.10.1 - json5: 2.2.3 - lodash.sortby: 4.7.0 - transitivePeerDependencies: - - supports-color - "@tootallnate/once@1.1.2": {} "@tootallnate/once@2.0.0": {} - "@tsconfig/node10@1.0.12": {} + "@tsconfig/node10@1.0.9": {} "@tsconfig/node12@1.0.11": {} "@tsconfig/node14@1.0.3": {} - "@tsconfig/node16@1.0.4": {} - - "@tufjs/canonical-json@1.0.0": {} + "@tsconfig/node16@1.0.3": {} "@tufjs/canonical-json@2.0.0": {} - "@tufjs/models@1.0.4": - dependencies: - "@tufjs/canonical-json": 1.0.0 - minimatch: 9.0.9 - "@tufjs/models@4.1.0": dependencies: "@tufjs/canonical-json": 2.0.0 - minimatch: 10.2.4 + minimatch: 10.2.5 "@tybys/wasm-util@0.9.0": dependencies: tslib: 2.8.1 - "@types/aria-query@5.0.4": {} + "@types/aria-query@5.0.1": {} "@types/babel__core@7.20.5": dependencies: - "@babel/parser": 7.29.0 - "@babel/types": 7.29.0 - "@types/babel__generator": 7.27.0 - "@types/babel__template": 7.4.4 - "@types/babel__traverse": 7.28.0 + "@babel/parser": 7.26.7 + "@babel/types": 7.26.7 + "@types/babel__generator": 7.6.4 + "@types/babel__template": 7.4.1 + "@types/babel__traverse": 7.20.6 - "@types/babel__generator@7.27.0": + "@types/babel__generator@7.6.4": dependencies: - "@babel/types": 7.29.0 + "@babel/types": 7.26.7 - "@types/babel__template@7.4.4": + "@types/babel__template@7.4.1": dependencies: - "@babel/parser": 7.29.0 - "@babel/types": 7.29.0 + "@babel/parser": 7.26.7 + "@babel/types": 7.26.7 - "@types/babel__traverse@7.28.0": + "@types/babel__traverse@7.20.6": dependencies: - "@babel/types": 7.29.0 + "@babel/types": 7.26.7 - "@types/body-parser@1.19.6": + "@types/body-parser@1.19.2": dependencies: - "@types/connect": 3.4.38 - "@types/node": 18.19.130 + "@types/connect": 3.4.35 + "@types/node": 18.19.74 "@types/cacheable-request@6.0.3": dependencies: - "@types/http-cache-semantics": 4.2.0 + "@types/http-cache-semantics": 4.0.1 "@types/keyv": 3.1.4 - "@types/node": 16.18.126 - "@types/responselike": 1.0.3 + "@types/node": 18.19.74 + "@types/responselike": 1.0.0 - "@types/chai@4.3.20": {} - - "@types/cli-progress@3.11.6": - dependencies: - "@types/node": 16.18.126 + "@types/chai@4.3.4": {} - "@types/connect@3.4.38": + "@types/connect@3.4.35": dependencies: - "@types/node": 18.19.130 + "@types/node": 18.19.74 "@types/cookie@0.6.0": {} - "@types/cypress@1.1.6": + "@types/cypress@1.1.3": dependencies: cypress: 12.17.4 @@ -24222,54 +23006,51 @@ snapshots: "@types/eslint-scope@3.7.7": dependencies: "@types/eslint": 9.6.1 - "@types/estree": 1.0.8 + "@types/estree": 1.0.6 "@types/eslint@9.6.1": dependencies: - "@types/estree": 1.0.8 + "@types/estree": 1.0.6 "@types/json-schema": 7.0.15 - "@types/estree@1.0.8": {} + "@types/estree@1.0.6": {} "@types/expect@1.20.4": {} - "@types/express-serve-static-core@4.19.8": + "@types/express-serve-static-core@4.17.33": dependencies: - "@types/node": 18.19.130 - "@types/qs": 6.14.0 - "@types/range-parser": 1.2.7 - "@types/send": 1.2.1 + "@types/node": 18.19.74 + "@types/qs": 6.9.7 + "@types/range-parser": 1.2.4 - "@types/express@4.17.25": + "@types/express@4.17.16": dependencies: - "@types/body-parser": 1.19.6 - "@types/express-serve-static-core": 4.19.8 - "@types/qs": 6.14.0 - "@types/serve-static": 1.15.10 + "@types/body-parser": 1.19.2 + "@types/express-serve-static-core": 4.17.33 + "@types/qs": 6.9.7 + "@types/serve-static": 1.15.0 "@types/fs-extra@9.0.13": dependencies: - "@types/node": 16.18.126 + "@types/node": 16.18.57 - "@types/graceful-fs@4.1.9": + "@types/graceful-fs@4.1.6": dependencies: - "@types/node": 16.18.126 + "@types/node": 18.19.74 "@types/html-minifier-terser@6.1.0": {} - "@types/http-cache-semantics@4.2.0": {} + "@types/http-cache-semantics@4.0.1": {} - "@types/http-errors@2.0.5": {} + "@types/istanbul-lib-coverage@2.0.4": {} - "@types/istanbul-lib-coverage@2.0.6": {} - - "@types/istanbul-lib-report@3.0.3": + "@types/istanbul-lib-report@3.0.0": dependencies: - "@types/istanbul-lib-coverage": 2.0.6 + "@types/istanbul-lib-coverage": 2.0.4 - "@types/istanbul-reports@3.0.4": + "@types/istanbul-reports@3.0.1": dependencies: - "@types/istanbul-lib-report": 3.0.3 + "@types/istanbul-lib-report": 3.0.0 "@types/jest-axe@3.5.9": dependencies: @@ -24281,27 +23062,25 @@ snapshots: expect: 29.7.0 pretty-format: 29.7.0 - "@types/js-yaml@4.0.9": {} + "@types/js-yaml@4.0.5": {} "@types/jsdom@20.0.1": dependencies: - "@types/node": 18.19.130 + "@types/node": 18.19.74 "@types/tough-cookie": 4.0.5 - parse5: 7.3.0 + parse5: 7.1.2 "@types/json-schema@7.0.15": {} - "@types/json-stable-stringify@1.2.0": - dependencies: - json-stable-stringify: 1.3.0 + "@types/json-stable-stringify@1.0.36": {} "@types/keyv@3.1.4": dependencies: - "@types/node": 16.18.126 + "@types/node": 18.19.74 - "@types/mdx@2.0.13": {} + "@types/mdx@2.0.3": {} - "@types/mime@1.3.5": {} + "@types/mime@3.0.1": {} "@types/minimatch@3.0.5": {} @@ -24309,77 +23088,74 @@ snapshots: "@types/mute-stream@0.0.4": dependencies: - "@types/node": 16.18.126 + "@types/node": 18.19.74 "@types/node@15.14.9": {} - "@types/node@16.18.126": {} + "@types/node@16.18.57": {} - "@types/node@18.19.130": + "@types/node@18.19.74": dependencies: undici-types: 5.26.5 - "@types/node@22.19.13": + "@types/node@20.14.9": dependencies: - undici-types: 6.21.0 + undici-types: 5.26.5 "@types/normalize-package-data@2.4.4": {} "@types/papaparse@5.5.2": dependencies: - "@types/node": 18.19.130 + "@types/node": 18.19.74 - "@types/parse-json@4.0.2": {} + "@types/parse-json@4.0.0": {} - "@types/prop-types@15.7.15": {} + "@types/prop-types@15.7.5": {} - "@types/qs@6.14.0": {} + "@types/qs@6.9.7": {} - "@types/range-parser@1.2.7": {} + "@types/range-parser@1.2.4": {} - "@types/react-dom@18.3.7(@types/react@18.3.28)": + "@types/react-dom@18.2.21": dependencies: - "@types/react": 18.3.28 + "@types/react": 18.2.42 - "@types/react@18.3.28": + "@types/react-dom@18.3.7(@types/react@18.2.42)": dependencies: - "@types/prop-types": 15.7.15 - csstype: 3.2.3 + "@types/react": 18.2.42 + + "@types/react@18.2.42": + dependencies: + "@types/prop-types": 15.7.5 + "@types/scheduler": 0.16.2 + csstype: 3.1.1 "@types/resolve@1.20.6": {} - "@types/responselike@1.0.3": + "@types/responselike@1.0.0": dependencies: - "@types/node": 16.18.126 + "@types/node": 18.19.74 - "@types/sanitize-html@2.16.0": + "@types/sanitize-html@2.9.1": dependencies: htmlparser2: 8.0.2 - "@types/semver@7.7.1": {} - - "@types/send@0.17.6": - dependencies: - "@types/mime": 1.3.5 - "@types/node": 18.19.130 + "@types/scheduler@0.16.2": {} - "@types/send@1.2.1": - dependencies: - "@types/node": 18.19.130 + "@types/semver@7.5.8": {} - "@types/serve-static@1.15.10": + "@types/serve-static@1.15.0": dependencies: - "@types/http-errors": 2.0.5 - "@types/node": 18.19.130 - "@types/send": 0.17.6 + "@types/mime": 3.0.1 + "@types/node": 18.19.74 "@types/sinonjs__fake-timers@8.1.1": {} - "@types/sizzle@2.3.10": {} + "@types/sizzle@2.3.3": {} - "@types/stack-utils@2.0.3": {} + "@types/stack-utils@2.0.1": {} - "@types/tabbable@3.1.4": {} + "@types/tabbable@3.1.2": {} "@types/tough-cookie@4.0.5": {} @@ -24388,37 +23164,37 @@ snapshots: "@types/vinyl@2.0.12": dependencies: "@types/expect": 1.20.4 - "@types/node": 16.18.126 + "@types/node": 18.19.74 "@types/wrap-ansi@3.0.0": {} - "@types/ws@8.18.1": + "@types/ws@8.5.4": dependencies: - "@types/node": 18.19.130 + "@types/node": 18.19.74 - "@types/yargs-parser@21.0.3": {} + "@types/yargs-parser@21.0.0": {} - "@types/yargs@17.0.35": + "@types/yargs@17.0.24": dependencies: - "@types/yargs-parser": 21.0.3 + "@types/yargs-parser": 21.0.0 - "@types/yauzl@2.10.3": + "@types/yauzl@2.10.0": dependencies: - "@types/node": 16.18.126 + "@types/node": 18.19.74 optional: true "@vitest/expect@2.0.5": dependencies: "@vitest/spy": 2.0.5 "@vitest/utils": 2.0.5 - chai: 5.3.3 + chai: 5.1.2 tinyrainbow: 1.2.0 "@vitest/pretty-format@2.0.5": dependencies: tinyrainbow: 1.2.0 - "@vitest/pretty-format@2.1.9": + "@vitest/pretty-format@2.1.8": dependencies: tinyrainbow: 1.2.0 @@ -24430,13 +23206,13 @@ snapshots: dependencies: "@vitest/pretty-format": 2.0.5 estree-walker: 3.0.3 - loupe: 3.2.1 + loupe: 3.1.3 tinyrainbow: 1.2.0 - "@vitest/utils@2.1.9": + "@vitest/utils@2.1.8": dependencies: - "@vitest/pretty-format": 2.1.9 - loupe: 3.2.1 + "@vitest/pretty-format": 2.1.8 + loupe: 3.1.3 tinyrainbow: 1.2.0 "@vtex/client-cms@0.2.16(encoding@0.1.13)": @@ -24448,13 +23224,13 @@ snapshots: "@vtex/client-cp@0.3.5": dependencies: - axios: 1.13.6 + axios: 1.9.0 transitivePeerDependencies: - debug - "@vtex/prettier-config@1.0.0(prettier@2.8.8)": + "@vtex/prettier-config@1.0.0(prettier@2.8.3)": dependencies: - prettier: 2.8.8 + prettier: 2.8.3 "@webassemblyjs/ast@1.14.1": dependencies: @@ -24532,25 +23308,22 @@ snapshots: "@webassemblyjs/ast": 1.14.1 "@xtuc/long": 4.2.2 - "@whatwg-node/disposablestack@0.0.6": - dependencies: - "@whatwg-node/promise-helpers": 1.3.2 - tslib: 2.8.1 - "@whatwg-node/events@0.0.3": {} - "@whatwg-node/fetch@0.10.13": - dependencies: - "@whatwg-node/node-fetch": 0.8.5 - urlpattern-polyfill: 10.1.0 + "@whatwg-node/events@0.1.1": {} "@whatwg-node/fetch@0.8.8": dependencies: - "@peculiar/webcrypto": 1.5.0 + "@peculiar/webcrypto": 1.4.1 "@whatwg-node/node-fetch": 0.3.6 busboy: 1.6.0 urlpattern-polyfill: 8.0.2 - web-streams-polyfill: 3.3.3 + web-streams-polyfill: 3.2.1 + + "@whatwg-node/fetch@0.9.17": + dependencies: + "@whatwg-node/node-fetch": 0.5.11 + urlpattern-polyfill: 10.0.0 "@whatwg-node/node-fetch@0.3.6": dependencies: @@ -24560,15 +23333,12 @@ snapshots: fast-url-parser: 1.1.3 tslib: 2.8.1 - "@whatwg-node/node-fetch@0.8.5": - dependencies: - "@fastify/busboy": 3.2.0 - "@whatwg-node/disposablestack": 0.0.6 - "@whatwg-node/promise-helpers": 1.3.2 - tslib: 2.8.1 - - "@whatwg-node/promise-helpers@1.3.2": + "@whatwg-node/node-fetch@0.5.11": dependencies: + "@kamilkisiela/fast-url-parser": 1.1.4 + "@whatwg-node/events": 0.1.1 + busboy: 1.6.0 + fast-querystring: 1.1.2 tslib: 2.8.1 "@xtuc/ieee754@1.2.0": {} @@ -24579,7 +23349,7 @@ snapshots: "@yarnpkg/parsers@3.0.2": dependencies: - js-yaml: 3.14.2 + js-yaml: 3.14.1 tslib: 2.8.1 "@zkochan/js-yaml@0.0.7": @@ -24610,35 +23380,35 @@ snapshots: acorn-globals@7.0.1: dependencies: - acorn: 8.16.0 - acorn-walk: 8.3.5 + acorn: 8.14.0 + acorn-walk: 8.3.1 - acorn-import-phases@1.0.4(acorn@8.16.0): - dependencies: - acorn: 8.16.0 + acorn-walk@8.3.1: {} - acorn-walk@8.3.5: - dependencies: - acorn: 8.16.0 - - acorn@8.16.0: {} + acorn@8.14.0: {} add-stream@1.0.0: {} adjust-sourcemap-loader@4.0.0: dependencies: loader-utils: 2.0.4 - regex-parser: 2.3.1 + regex-parser: 2.3.0 agent-base@6.0.2: dependencies: - debug: 4.4.3 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + agent-base@7.1.1: + dependencies: + debug: 4.4.0 transitivePeerDependencies: - supports-color - agent-base@7.1.4: {} + agent-base@7.1.3: {} - agentkeepalive@4.6.0: + agentkeepalive@4.5.0: dependencies: humanize-ms: 1.2.1 @@ -24647,34 +23417,34 @@ snapshots: clean-stack: 2.2.0 indent-string: 4.0.0 - ajv-formats@2.1.1(ajv@8.18.0): + ajv-formats@2.1.1(ajv@8.17.1): optionalDependencies: - ajv: 8.18.0 + ajv: 8.17.1 - ajv-formats@3.0.1(ajv@8.18.0): + ajv-formats@3.0.1(ajv@8.17.1): optionalDependencies: - ajv: 8.18.0 + ajv: 8.17.1 - ajv-keywords@3.5.2(ajv@6.14.0): + ajv-keywords@3.5.2(ajv@6.12.6): dependencies: - ajv: 6.14.0 + ajv: 6.12.6 - ajv-keywords@5.1.0(ajv@8.18.0): + ajv-keywords@5.1.0(ajv@8.17.1): dependencies: - ajv: 8.18.0 + ajv: 8.17.1 fast-deep-equal: 3.1.3 - ajv@6.14.0: + ajv@6.12.6: dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 - ajv@8.18.0: + ajv@8.17.1: dependencies: fast-deep-equal: 3.1.3 - fast-uri: 3.1.0 + fast-uri: 3.0.2 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 @@ -24690,7 +23460,7 @@ snapshots: dependencies: type-fest: 0.21.3 - ansi-escapes@7.3.0: + ansi-escapes@7.0.0: dependencies: environment: 1.1.0 @@ -24706,7 +23476,7 @@ snapshots: ansi-regex@5.0.1: {} - ansi-regex@6.2.2: {} + ansi-regex@6.0.1: {} ansi-styles@2.2.1: {} @@ -24720,7 +23490,7 @@ snapshots: ansi-styles@5.2.0: {} - ansi-styles@6.2.3: {} + ansi-styles@6.2.1: {} ansicolors@0.3.2: {} @@ -24739,8 +23509,6 @@ snapshots: aproba@2.0.0: {} - aproba@2.1.0: {} - arch@2.2.0: {} archy@1.0.0: {} @@ -24765,19 +23533,12 @@ snapshots: aria-query@5.1.3: dependencies: - deep-equal: 2.2.3 + deep-equal: 2.2.0 aria-query@5.3.0: dependencies: dequal: 2.0.3 - aria-query@5.3.2: {} - - array-buffer-byte-length@1.0.2: - dependencies: - call-bound: 1.0.4 - is-array-buffer: 3.0.5 - array-differ@3.0.0: {} array-flatten@1.1.1: {} @@ -24794,7 +23555,7 @@ snapshots: asn1.js@4.10.1: dependencies: - bn.js: 4.12.3 + bn.js: 4.12.1 inherits: 2.0.4 minimalistic-assert: 1.0.1 @@ -24802,20 +23563,20 @@ snapshots: dependencies: safer-buffer: 2.1.2 - asn1js@3.0.7: + asn1js@3.0.5: dependencies: - pvtsutils: 1.3.6 - pvutils: 1.1.5 + pvtsutils: 1.3.2 + pvutils: 1.1.3 tslib: 2.8.1 assert-plus@1.0.0: {} assert@2.1.0: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.7 is-nan: 1.3.2 - object-is: 1.1.6 - object.assign: 4.1.7 + object-is: 1.1.5 + object.assign: 4.1.4 util: 0.12.5 assertion-error@1.1.0: {} @@ -24828,34 +23589,31 @@ snapshots: astral-regex@2.0.0: {} - async-retry@1.3.3: - dependencies: - retry: 0.13.1 - - async@3.2.6: {} + async@3.2.4: {} asynckit@0.4.0: {} at-least-node@1.0.0: {} + atomic-sleep@1.0.0: {} + attr-accept@2.2.5: {} auto-bind@4.0.0: {} - autoprefixer@10.4.27(postcss@8.5.8): + autoprefixer@10.4.13(postcss@8.5.1): dependencies: - browserslist: 4.28.1 - caniuse-lite: 1.0.30001776 - fraction.js: 5.3.4 + browserslist: 4.24.4 + caniuse-lite: 1.0.30001696 + fraction.js: 4.2.0 + normalize-range: 0.1.2 picocolors: 1.1.1 - postcss: 8.5.8 + postcss: 8.5.1 postcss-value-parser: 4.2.0 - available-typed-arrays@1.0.7: - dependencies: - possible-typed-array-names: 1.1.0 + available-typed-arrays@1.0.5: {} - aws-sdk@2.1693.0: + aws-sdk@2.1288.0: dependencies: buffer: 4.9.2 events: 1.1.1 @@ -24866,69 +23624,83 @@ snapshots: url: 0.10.3 util: 0.12.5 uuid: 8.0.0 - xml2js: 0.6.2 + xml2js: 0.4.19 aws-sign2@0.7.0: {} - aws4@1.13.2: {} + aws4@1.11.0: {} axe-core@3.5.6: {} - axe-core@4.11.1: {} - axe-core@4.3.5: {} axe-core@4.9.1: {} - axios@1.13.6: + axios@1.15.0: + dependencies: + follow-redirects: 1.16.0 + form-data: 4.0.5 + proxy-from-env: 2.1.0 + transitivePeerDependencies: + - debug + + axios@1.8.3: + dependencies: + follow-redirects: 1.15.6 + form-data: 4.0.0 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + + axios@1.9.0: dependencies: - follow-redirects: 1.15.11 - form-data: 4.0.5 + follow-redirects: 1.15.9 + form-data: 4.0.3 proxy-from-env: 1.1.0 transitivePeerDependencies: - debug - b4a@1.8.0: {} + b4a@1.6.4: {} - babel-jest@29.7.0(@babel/core@7.29.0): + babel-jest@29.7.0(@babel/core@7.26.7): dependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 "@jest/transform": 29.7.0 "@types/babel__core": 7.20.5 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.29.0) + babel-preset-jest: 29.6.3(@babel/core@7.26.7) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 transitivePeerDependencies: - supports-color - babel-loader@8.4.1(@babel/core@7.29.0)(webpack@5.105.4(@swc/core@1.15.18)): + babel-loader@8.3.0(@babel/core@7.26.7)(webpack@5.97.1(@swc/core@1.15.30)): dependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.105.4(@swc/core@1.15.18) + webpack: 5.97.1(@swc/core@1.15.30) - babel-loader@9.2.1(@babel/core@7.29.0)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)): + babel-loader@9.2.1(@babel/core@7.26.7)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)): dependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 find-cache-dir: 4.0.0 - schema-utils: 4.3.3 - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) + schema-utils: 4.3.0 + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) - babel-loader@9.2.1(@babel/core@7.29.0)(webpack@5.105.4(@swc/core@1.15.18)): + babel-loader@9.2.1(@babel/core@7.26.7)(webpack@5.97.1(@swc/core@1.15.30)): dependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 find-cache-dir: 4.0.0 - schema-utils: 4.3.3 - webpack: 5.105.4(@swc/core@1.15.18) + schema-utils: 4.3.0 + webpack: 5.97.1(@swc/core@1.15.30) babel-plugin-istanbul@6.1.1: dependencies: - "@babel/helper-plugin-utils": 7.28.6 + "@babel/helper-plugin-utils": 7.26.5 "@istanbuljs/load-nyc-config": 1.1.0 "@istanbuljs/schema": 0.1.3 istanbul-lib-instrument: 5.2.1 @@ -24938,102 +23710,91 @@ snapshots: babel-plugin-jest-hoist@29.6.3: dependencies: - "@babel/template": 7.28.6 - "@babel/types": 7.29.0 + "@babel/template": 7.25.9 + "@babel/types": 7.26.7 "@types/babel__core": 7.20.5 - "@types/babel__traverse": 7.28.0 + "@types/babel__traverse": 7.20.6 - babel-plugin-polyfill-corejs2@0.4.15(@babel/core@7.29.0): + babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.7): dependencies: - "@babel/compat-data": 7.29.0 - "@babel/core": 7.29.0 - "@babel/helper-define-polyfill-provider": 0.6.6(@babel/core@7.29.0) + "@babel/compat-data": 7.26.5 + "@babel/core": 7.26.7 + "@babel/helper-define-polyfill-provider": 0.6.3(@babel/core@7.26.7) semver: 6.3.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.29.0): - dependencies: - "@babel/core": 7.29.0 - "@babel/helper-define-polyfill-provider": 0.6.6(@babel/core@7.29.0) - core-js-compat: 3.48.0 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs3@0.14.0(@babel/core@7.29.0): + babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.7): dependencies: - "@babel/core": 7.29.0 - "@babel/helper-define-polyfill-provider": 0.6.6(@babel/core@7.29.0) - core-js-compat: 3.48.0 + "@babel/core": 7.26.7 + "@babel/helper-define-polyfill-provider": 0.6.3(@babel/core@7.26.7) + core-js-compat: 3.40.0 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.6(@babel/core@7.29.0): + babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.7): dependencies: - "@babel/core": 7.29.0 - "@babel/helper-define-polyfill-provider": 0.6.6(@babel/core@7.29.0) + "@babel/core": 7.26.7 + "@babel/helper-define-polyfill-provider": 0.6.3(@babel/core@7.26.7) transitivePeerDependencies: - supports-color babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: {} - babel-preset-current-node-syntax@1.2.0(@babel/core@7.29.0): - dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.29.0) - "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.29.0) - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.29.0) - "@babel/plugin-syntax-import-attributes": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.29.0) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.29.0) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.29.0) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.29.0) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.29.0) - - babel-preset-fbjs@3.4.0(@babel/core@7.29.0): - dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.29.0) - "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.29.0) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.29.0) - "@babel/plugin-syntax-flow": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-syntax-jsx": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-transform-arrow-functions": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-block-scoped-functions": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-block-scoping": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-classes": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-computed-properties": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-destructuring": 7.28.5(@babel/core@7.29.0) - "@babel/plugin-transform-flow-strip-types": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-for-of": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-function-name": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-literals": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-member-expression-literals": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-modules-commonjs": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-object-super": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-parameters": 7.27.7(@babel/core@7.29.0) - "@babel/plugin-transform-property-literals": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-react-display-name": 7.28.0(@babel/core@7.29.0) - "@babel/plugin-transform-react-jsx": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-shorthand-properties": 7.27.1(@babel/core@7.29.0) - "@babel/plugin-transform-spread": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-template-literals": 7.27.1(@babel/core@7.29.0) + babel-preset-current-node-syntax@1.0.1(@babel/core@7.26.7): + dependencies: + "@babel/core": 7.26.7 + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.26.7) + "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.26.7) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.26.7) + "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.26.7) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.26.7) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.26.7) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.26.7) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.26.7) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.26.7) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.26.7) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.26.7) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.26.7) + + babel-preset-fbjs@3.4.0(@babel/core@7.26.7): + dependencies: + "@babel/core": 7.26.7 + "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.26.7) + "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.26.7) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.26.7) + "@babel/plugin-syntax-flow": 7.18.6(@babel/core@7.26.7) + "@babel/plugin-syntax-jsx": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.26.7) + "@babel/plugin-transform-arrow-functions": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-block-scoped-functions": 7.26.5(@babel/core@7.26.7) + "@babel/plugin-transform-block-scoping": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-classes": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-computed-properties": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-destructuring": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-flow-strip-types": 7.19.0(@babel/core@7.26.7) + "@babel/plugin-transform-for-of": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-function-name": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-literals": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-member-expression-literals": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-modules-commonjs": 7.26.3(@babel/core@7.26.7) + "@babel/plugin-transform-object-super": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-parameters": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-property-literals": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-react-display-name": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-react-jsx": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-shorthand-properties": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-spread": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-transform-template-literals": 7.25.9(@babel/core@7.26.7) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 transitivePeerDependencies: - supports-color - babel-preset-jest@29.6.3(@babel/core@7.29.0): + babel-preset-jest@29.6.3(@babel/core@7.26.7): dependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.2.0(@babel/core@7.29.0) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.26.7) balanced-match@1.0.2: {} @@ -25041,45 +23802,10 @@ snapshots: balanced-match@4.0.4: {} - bare-events@2.8.2: {} - - bare-fs@4.5.5: - dependencies: - bare-events: 2.8.2 - bare-path: 3.0.0 - bare-stream: 2.8.0(bare-events@2.8.2) - bare-url: 2.3.2 - fast-fifo: 1.3.2 - transitivePeerDependencies: - - bare-abort-controller - - react-native-b4a - - bare-os@3.7.1: {} - - bare-path@3.0.0: - dependencies: - bare-os: 3.7.1 - - bare-stream@2.8.0(bare-events@2.8.2): - dependencies: - streamx: 2.23.0 - teex: 1.0.1 - optionalDependencies: - bare-events: 2.8.2 - transitivePeerDependencies: - - bare-abort-controller - - react-native-b4a - - bare-url@2.3.2: - dependencies: - bare-path: 3.0.0 - base64-arraybuffer-es6@0.7.0: {} base64-js@1.5.1: {} - baseline-browser-mapping@2.10.0: {} - bcrypt-pbkdf@1.0.2: dependencies: tweetnacl: 0.14.5 @@ -25109,7 +23835,9 @@ snapshots: read-cmd-shim: 5.0.0 write-file-atomic: 6.0.0 - binary-extensions@2.3.0: {} + binary-extensions@2.2.0: {} + + binaryextensions@4.18.0: {} binaryextensions@4.19.0: {} @@ -25125,22 +23853,22 @@ snapshots: bluebird@3.7.2: {} - bn.js@4.12.3: {} + bn.js@4.12.1: {} - bn.js@5.2.3: {} + bn.js@5.2.1: {} - body-parser@1.20.4: + body-parser@1.20.3: dependencies: bytes: 3.1.2 content-type: 1.0.5 debug: 2.6.9 depd: 2.0.0 destroy: 1.2.0 - http-errors: 2.0.1 + http-errors: 2.0.0 iconv-lite: 0.4.24 on-finished: 2.4.1 - qs: 6.14.2 - raw-body: 2.5.3 + qs: 6.13.0 + raw-body: 2.5.2 type-is: 1.6.18 unpipe: 1.0.0 transitivePeerDependencies: @@ -25159,16 +23887,16 @@ snapshots: type-fest: 0.3.1 widest-line: 2.0.1 - brace-expansion@1.1.12: + brace-expansion@1.1.11: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 - brace-expansion@2.0.2: + brace-expansion@2.0.1: dependencies: balanced-match: 1.0.2 - brace-expansion@5.0.4: + brace-expansion@5.0.5: dependencies: balanced-match: 4.0.4 @@ -25183,7 +23911,7 @@ snapshots: browserify-aes@1.2.0: dependencies: buffer-xor: 1.0.3 - cipher-base: 1.0.7 + cipher-base: 1.0.6 create-hash: 1.2.0 evp_bytestokey: 1.0.3 inherits: 2.0.4 @@ -25197,26 +23925,27 @@ snapshots: browserify-des@1.0.2: dependencies: - cipher-base: 1.0.7 + cipher-base: 1.0.6 des.js: 1.1.0 inherits: 2.0.4 safe-buffer: 5.2.1 browserify-rsa@4.1.1: dependencies: - bn.js: 5.2.3 + bn.js: 5.2.1 randombytes: 2.1.0 safe-buffer: 5.2.1 - browserify-sign@4.2.5: + browserify-sign@4.2.3: dependencies: - bn.js: 5.2.3 + bn.js: 5.2.1 browserify-rsa: 4.1.1 create-hash: 1.2.0 create-hmac: 1.1.7 elliptic: 6.6.1 + hash-base: 3.0.5 inherits: 2.0.4 - parse-asn1: 5.1.9 + parse-asn1: 5.1.7 readable-stream: 2.3.8 safe-buffer: 5.2.1 @@ -25224,13 +23953,12 @@ snapshots: dependencies: pako: 1.0.11 - browserslist@4.28.1: + browserslist@4.24.4: dependencies: - baseline-browser-mapping: 2.10.0 - caniuse-lite: 1.0.30001776 - electron-to-chromium: 1.5.307 - node-releases: 2.0.36 - update-browserslist-db: 1.2.3(browserslist@4.28.1) + caniuse-lite: 1.0.30001696 + electron-to-chromium: 1.5.90 + node-releases: 2.0.19 + update-browserslist-db: 1.1.2(browserslist@4.24.4) bs-logger@0.2.6: dependencies: @@ -25249,7 +23977,7 @@ snapshots: buffer@4.9.2: dependencies: base64-js: 1.5.1 - ieee754: 1.1.13 + ieee754: 1.2.1 isarray: 1.0.0 buffer@5.7.1: @@ -25274,6 +24002,8 @@ snapshots: bytes-iec@3.1.1: {} + bytes@3.0.0: {} + bytes@3.1.2: {} cacache@15.3.0: @@ -25322,34 +24052,18 @@ snapshots: transitivePeerDependencies: - bluebird - cacache@17.1.4: - dependencies: - "@npmcli/fs": 3.1.1 - fs-minipass: 3.0.3 - glob: 10.5.0 - lru-cache: 7.18.3 - minipass: 7.1.3 - minipass-collect: 1.0.2 - minipass-flush: 1.0.5 - minipass-pipeline: 1.2.4 - p-map: 4.0.0 - ssri: 10.0.6 - tar: 6.2.1 - unique-filename: 3.0.0 - - cacache@20.0.3: + cacache@20.0.4: dependencies: "@npmcli/fs": 5.0.0 fs-minipass: 3.0.3 glob: 13.0.6 - lru-cache: 11.2.6 - minipass: 7.1.3 + lru-cache: 11.3.5 + minipass: 7.1.2 minipass-collect: 2.0.1 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 p-map: 7.0.4 ssri: 13.0.1 - unique-filename: 5.0.0 cacheable-lookup@5.0.4: {} @@ -25357,23 +24071,23 @@ snapshots: dependencies: clone-response: 1.0.3 get-stream: 5.2.0 - http-cache-semantics: 4.2.0 + http-cache-semantics: 4.1.1 keyv: 3.1.0 lowercase-keys: 2.0.0 normalize-url: 4.5.1 responselike: 1.0.2 - cacheable-request@7.0.4: + cacheable-request@7.0.2: dependencies: clone-response: 1.0.3 get-stream: 5.2.0 - http-cache-semantics: 4.2.0 - keyv: 4.5.4 + http-cache-semantics: 4.1.1 + keyv: 4.5.2 lowercase-keys: 2.0.0 normalize-url: 6.1.0 responselike: 2.0.1 - cachedir@2.4.0: {} + cachedir@2.3.0: {} caching-transform@4.0.0: dependencies: @@ -25382,22 +24096,28 @@ snapshots: package-hash: 4.0.0 write-file-atomic: 3.0.3 + call-bind-apply-helpers@1.0.1: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + call-bind-apply-helpers@1.0.2: dependencies: es-errors: 1.3.0 function-bind: 1.1.2 - call-bind@1.0.8: + call-bind@1.0.7: dependencies: - call-bind-apply-helpers: 1.0.2 es-define-property: 1.0.1 - get-intrinsic: 1.3.0 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.6 set-function-length: 1.2.2 - call-bound@1.0.4: + call-bound@1.0.3: dependencies: - call-bind-apply-helpers: 1.0.2 - get-intrinsic: 1.3.0 + call-bind-apply-helpers: 1.0.1 + get-intrinsic: 1.2.6 callsites@3.1.0: {} @@ -25416,7 +24136,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001776: {} + caniuse-lite@1.0.30001696: {} capital-case@1.0.4: dependencies: @@ -25433,23 +24153,23 @@ snapshots: caseless@0.12.0: {} - chai@4.5.0: + chai@4.3.7: dependencies: assertion-error: 1.1.0 - check-error: 1.0.3 - deep-eql: 4.1.4 + check-error: 1.0.2 + deep-eql: 4.1.3 get-func-name: 2.0.2 - loupe: 2.3.7 + loupe: 2.3.6 pathval: 1.1.1 - type-detect: 4.1.0 + type-detect: 4.0.8 - chai@5.3.3: + chai@5.1.2: dependencies: assertion-error: 2.0.1 - check-error: 2.1.3 + check-error: 2.1.1 deep-eql: 5.0.2 - loupe: 3.2.1 - pathval: 2.0.1 + loupe: 3.1.3 + pathval: 2.0.0 chalk@1.1.3: dependencies: @@ -25480,7 +24200,7 @@ snapshots: ansi-styles: 4.3.0 supports-color: 7.2.0 - chalk@5.6.2: {} + chalk@5.4.1: {} change-case-all@1.0.14: dependencies: @@ -25531,15 +24251,13 @@ snapshots: charenc@0.0.2: {} - check-error@1.0.3: - dependencies: - get-func-name: 2.0.2 + check-error@1.0.2: {} - check-error@2.1.3: {} + check-error@2.1.1: {} check-more-types@2.24.0: {} - chokidar@3.6.0: + chokidar@3.5.3: dependencies: anymatch: 3.1.3 braces: 3.0.3 @@ -25553,7 +24271,7 @@ snapshots: chokidar@4.0.3: dependencies: - readdirp: 4.1.2 + readdirp: 4.1.1 chownr@1.1.4: {} @@ -25561,25 +24279,25 @@ snapshots: chownr@3.0.0: {} - chromatic@11.29.0: {} + chromatic@11.25.1: {} chrome-launcher@0.13.4: dependencies: - "@types/node": 18.19.130 + "@types/node": 18.19.74 escape-string-regexp: 1.0.5 is-wsl: 2.2.0 - lighthouse-logger: 1.2.0 + lighthouse-logger: 1.3.0 mkdirp: 0.5.6 rimraf: 3.0.2 transitivePeerDependencies: - supports-color - chrome-launcher@0.15.2: + chrome-launcher@0.15.1: dependencies: - "@types/node": 18.19.130 + "@types/node": 18.19.74 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 - lighthouse-logger: 1.4.2 + lighthouse-logger: 1.3.0 transitivePeerDependencies: - supports-color @@ -25587,19 +24305,18 @@ snapshots: ci-info@2.0.0: {} - ci-info@3.9.0: {} + ci-info@3.7.1: {} - ci-info@4.4.0: {} + ci-info@4.3.1: {} ci-job-number@1.2.2: {} - cipher-base@1.0.7: + cipher-base@1.0.6: dependencies: inherits: 2.0.4 safe-buffer: 5.2.1 - to-buffer: 1.2.2 - cjs-module-lexer@1.4.3: {} + cjs-module-lexer@1.4.1: {} clean-css@5.3.3: dependencies: @@ -25611,6 +24328,8 @@ snapshots: dependencies: escape-string-regexp: 4.0.0 + cli-boxes@1.0.0: {} + cli-boxes@2.2.1: {} cli-cursor@2.1.0: @@ -25625,7 +24344,7 @@ snapshots: dependencies: restore-cursor: 5.1.0 - cli-progress@3.12.0: + cli-progress@3.11.2: dependencies: string-width: 4.2.3 @@ -25633,7 +24352,7 @@ snapshots: cli-spinners@2.9.2: {} - cli-table3@0.6.5: + cli-table3@0.6.3: dependencies: string-width: 4.2.3 optionalDependencies: @@ -25714,7 +24433,7 @@ snapshots: code-point-at@1.1.0: {} - collect-v8-coverage@1.0.3: {} + collect-v8-coverage@1.0.1: {} color-convert@1.9.3: dependencies: @@ -25731,7 +24450,7 @@ snapshots: color-string@1.9.1: dependencies: color-name: 1.1.4 - simple-swizzle: 0.2.4 + simple-swizzle: 0.2.2 color-support@1.1.3: {} @@ -25780,16 +24499,16 @@ snapshots: compressible@2.0.18: dependencies: - mime-db: 1.54.0 + mime-db: 1.52.0 - compression@1.8.1: + compression@1.7.4: dependencies: - bytes: 3.1.2 + accepts: 1.3.8 + bytes: 3.0.0 compressible: 2.0.18 debug: 2.6.9 - negotiator: 0.6.4 - on-headers: 1.1.0 - safe-buffer: 5.2.1 + on-headers: 1.0.2 + safe-buffer: 5.1.2 vary: 1.1.2 transitivePeerDependencies: - supports-color @@ -25806,10 +24525,10 @@ snapshots: concurrently@6.5.1: dependencies: chalk: 4.1.2 - date-fns: 2.30.0 - lodash: 4.17.23 + date-fns: 2.29.3 + lodash: 4.17.21 rxjs: 6.6.7 - spawn-command: 0.0.2 + spawn-command: 0.0.2-1 supports-color: 8.1.1 tree-kill: 1.2.2 yargs: 16.2.0 @@ -25817,11 +24536,11 @@ snapshots: concurrently@7.6.0: dependencies: chalk: 4.1.2 - date-fns: 2.30.0 - lodash: 4.17.23 - rxjs: 7.8.2 - shell-quote: 1.8.3 - spawn-command: 0.0.2 + date-fns: 2.29.3 + lodash: 4.17.21 + rxjs: 7.8.1 + shell-quote: 1.7.4 + spawn-command: 0.0.2-1 supports-color: 8.1.1 tree-kill: 1.2.2 yargs: 17.7.2 @@ -25918,29 +24637,31 @@ snapshots: convert-source-map@2.0.0: {} - cookie-signature@1.0.7: {} + cookie-signature@1.0.6: {} cookie@0.3.1: {} + cookie@0.6.0: {} + cookie@0.7.2: {} copyfiles@2.4.1: dependencies: glob: 7.2.3 - minimatch: 3.1.5 + minimatch: 3.1.2 mkdirp: 1.0.4 noms: 0.0.0 through2: 2.0.5 untildify: 4.0.0 yargs: 16.2.0 - core-js-compat@3.48.0: + core-js-compat@3.40.0: dependencies: - browserslist: 4.28.1 + browserslist: 4.24.4 - core-js-pure@3.48.0: {} + core-js-pure@3.40.0: {} - core-js@3.48.0: {} + core-js@3.27.1: {} core-util-is@1.0.2: {} @@ -25948,23 +24669,23 @@ snapshots: cosmiconfig@7.1.0: dependencies: - "@types/parse-json": 4.0.2 - import-fresh: 3.3.1 + "@types/parse-json": 4.0.0 + import-fresh: 3.3.0 parse-json: 5.2.0 path-type: 4.0.0 yaml: 1.10.2 cosmiconfig@8.0.0: dependencies: - import-fresh: 3.3.1 - js-yaml: 4.1.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 cosmiconfig@8.3.6(typescript@5.3.2): dependencies: - import-fresh: 3.3.1 - js-yaml: 4.1.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 optionalDependencies: @@ -25979,44 +24700,59 @@ snapshots: optionalDependencies: typescript: 5.3.2 - cosmiconfig@9.0.1(typescript@5.3.2): + cosmiconfig@9.0.0(typescript@5.4.5): dependencies: env-paths: 2.2.1 import-fresh: 3.3.1 js-yaml: 4.1.1 parse-json: 5.2.0 optionalDependencies: - typescript: 5.3.2 + typescript: 5.4.5 create-ecdh@4.0.4: dependencies: - bn.js: 4.12.3 + bn.js: 4.12.1 elliptic: 6.6.1 create-hash@1.2.0: dependencies: - cipher-base: 1.0.7 + cipher-base: 1.0.6 inherits: 2.0.4 md5.js: 1.3.5 - ripemd160: 2.0.3 - sha.js: 2.4.12 + ripemd160: 2.0.2 + sha.js: 2.4.11 create-hmac@1.1.7: dependencies: - cipher-base: 1.0.7 + cipher-base: 1.0.6 create-hash: 1.2.0 inherits: 2.0.4 - ripemd160: 2.0.3 + ripemd160: 2.0.2 safe-buffer: 5.2.1 - sha.js: 2.4.12 + sha.js: 2.4.11 + + create-jest@29.7.0(@types/node@16.18.57)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)): + dependencies: + "@jest/types": 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@16.18.57)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)) + jest-util: 29.7.0 + prompts: 2.4.2 + transitivePeerDependencies: + - "@types/node" + - babel-plugin-macros + - supports-color + - ts-node - create-jest@29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)): + create-jest@29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)): dependencies: "@jest/types": 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)) + jest-config: 29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -26025,13 +24761,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@18.19.130)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)): + create-jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)): dependencies: "@jest/types": 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@18.19.130)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)) + jest-config: 29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -26040,13 +24776,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)): + create-jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)): dependencies: "@jest/types": 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)) + jest-config: 29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -26059,15 +24795,15 @@ snapshots: cross-env@7.0.3: dependencies: - cross-spawn: 7.0.6 + cross-spawn: 7.0.3 - cross-fetch@3.2.0(encoding@0.1.13): + cross-fetch@3.1.5(encoding@0.1.13): dependencies: - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.6.7(encoding@0.1.13) transitivePeerDependencies: - encoding - cross-inspect@1.0.1: + cross-inspect@1.0.0: dependencies: tslib: 2.8.1 @@ -26077,6 +24813,20 @@ snapshots: shebang-command: 1.2.0 which: 1.3.1 + cross-spawn@6.0.5: + dependencies: + nice-try: 1.0.5 + path-key: 2.0.1 + semver: 5.7.2 + shebang-command: 1.2.0 + which: 1.3.1 + + cross-spawn@7.0.3: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + cross-spawn@7.0.6: dependencies: path-key: 3.1.1 @@ -26088,14 +24838,14 @@ snapshots: crypto-browserify@3.12.1: dependencies: browserify-cipher: 1.0.1 - browserify-sign: 4.2.5 + browserify-sign: 4.2.3 create-ecdh: 4.0.4 create-hash: 1.2.0 create-hmac: 1.1.7 diffie-hellman: 5.0.3 hash-base: 3.0.5 inherits: 2.0.4 - pbkdf2: 3.1.5 + pbkdf2: 3.1.2 public-encrypt: 4.0.3 randombytes: 2.1.0 randomfill: 1.0.4 @@ -26106,43 +24856,43 @@ snapshots: csp_evaluator@1.1.0: {} - css-functions-list@3.3.3: {} + css-functions-list@3.1.0: {} - css-loader@6.11.0(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)): + css-loader@6.11.0(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)): dependencies: - icss-utils: 5.1.0(postcss@8.5.8) - postcss: 8.5.8 - postcss-modules-extract-imports: 3.1.0(postcss@8.5.8) - postcss-modules-local-by-default: 4.2.0(postcss@8.5.8) - postcss-modules-scope: 3.2.1(postcss@8.5.8) - postcss-modules-values: 4.0.0(postcss@8.5.8) + icss-utils: 5.1.0(postcss@8.5.1) + postcss: 8.5.1 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.1) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.1) + postcss-modules-scope: 3.2.1(postcss@8.5.1) + postcss-modules-values: 4.0.0(postcss@8.5.1) postcss-value-parser: 4.2.0 - semver: 7.7.4 + semver: 7.7.0 optionalDependencies: - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) - css-loader@6.11.0(webpack@5.105.4(@swc/core@1.15.18)): + css-loader@6.11.0(webpack@5.97.1(@swc/core@1.15.30)): dependencies: - icss-utils: 5.1.0(postcss@8.5.8) - postcss: 8.5.8 - postcss-modules-extract-imports: 3.1.0(postcss@8.5.8) - postcss-modules-local-by-default: 4.2.0(postcss@8.5.8) - postcss-modules-scope: 3.2.1(postcss@8.5.8) - postcss-modules-values: 4.0.0(postcss@8.5.8) + icss-utils: 5.1.0(postcss@8.5.1) + postcss: 8.5.1 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.1) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.1) + postcss-modules-scope: 3.2.1(postcss@8.5.1) + postcss-modules-values: 4.0.0(postcss@8.5.1) postcss-value-parser: 4.2.0 - semver: 7.7.4 + semver: 7.7.0 optionalDependencies: - webpack: 5.105.4(@swc/core@1.15.18) + webpack: 5.97.1(@swc/core@1.15.30) css-select@4.3.0: dependencies: boolbase: 1.0.0 - css-what: 6.2.2 + css-what: 6.1.0 domhandler: 4.3.1 domutils: 2.8.0 nth-check: 2.1.1 - css-what@6.2.2: {} + css-what@6.1.0: {} css.escape@1.5.1: {} @@ -26160,11 +24910,11 @@ snapshots: dependencies: cssom: 0.3.8 - csstype@3.2.3: {} + csstype@3.1.1: {} - cypress-axe@1.7.0(axe-core@4.11.1)(cypress@12.17.4): + cypress-axe@1.5.0(axe-core@4.9.1)(cypress@12.17.4): dependencies: - axe-core: 4.11.1 + axe-core: 4.9.1 cypress: 12.17.4 cypress-wait-until@2.0.1: {} @@ -26173,23 +24923,23 @@ snapshots: dependencies: "@cypress/request": 2.88.12 "@cypress/xvfb": 1.2.4(supports-color@8.1.1) - "@types/node": 16.18.126 + "@types/node": 16.18.57 "@types/sinonjs__fake-timers": 8.1.1 - "@types/sizzle": 2.3.10 + "@types/sizzle": 2.3.3 arch: 2.2.0 blob-util: 2.0.2 bluebird: 3.7.2 buffer: 5.7.1 - cachedir: 2.4.0 + cachedir: 2.3.0 chalk: 4.1.2 check-more-types: 2.24.0 cli-cursor: 3.1.0 - cli-table3: 0.6.5 + cli-table3: 0.6.3 commander: 6.2.1 common-tags: 1.8.2 - dayjs: 1.11.19 - debug: 4.4.3(supports-color@8.1.1) - enquirer: 2.4.1 + dayjs: 1.11.9 + debug: 4.4.0(supports-color@8.1.1) + enquirer: 2.3.6 eventemitter2: 6.4.7 execa: 4.1.0 executable: 4.1.1 @@ -26200,8 +24950,8 @@ snapshots: is-ci: 3.0.1 is-installed-globally: 0.4.0 lazy-ass: 1.6.0 - listr2: 3.14.0(enquirer@2.4.1) - lodash: 4.17.23 + listr2: 3.14.0(enquirer@2.3.6) + lodash: 4.17.21 log-symbols: 4.1.0 minimist: 1.2.8 ospath: 1.2.2 @@ -26209,9 +24959,9 @@ snapshots: process: 0.11.10 proxy-from-env: 1.0.0 request-progress: 3.0.0 - semver: 7.7.4 + semver: 7.7.0 supports-color: 8.1.1 - tmp: 0.2.5 + tmp: 0.2.3 untildify: 4.0.0 yauzl: 2.10.0 @@ -26221,29 +24971,23 @@ snapshots: dependencies: assert-plus: 1.0.0 - data-uri-to-buffer@4.0.1: {} - data-urls@3.0.2: dependencies: abab: 2.0.6 whatwg-mimetype: 3.0.0 whatwg-url: 11.0.0 - dataloader@2.2.3: {} + dataloader@2.2.2: {} date-fns@1.30.1: {} - date-fns@2.30.0: - dependencies: - "@babel/runtime": 7.28.6 + date-fns@2.29.3: {} dateformat@3.0.3: {} dateformat@4.6.3: {} - dayjs@1.11.13: {} - - dayjs@1.11.19: {} + dayjs@1.11.9: {} debounce@1.2.1: {} @@ -26257,26 +25001,30 @@ snapshots: optionalDependencies: supports-color: 8.1.1 - debug@4.4.0: + debug@4.3.4: dependencies: - ms: 2.1.3 + ms: 2.1.2 - debug@4.4.3: + debug@4.4.0: dependencies: ms: 2.1.3 - debug@4.4.3(supports-color@5.5.0): + debug@4.4.0(supports-color@5.5.0): dependencies: ms: 2.1.3 optionalDependencies: supports-color: 5.5.0 - debug@4.4.3(supports-color@8.1.1): + debug@4.4.0(supports-color@8.1.1): dependencies: ms: 2.1.3 optionalDependencies: supports-color: 8.1.1 + debug@4.4.3: + dependencies: + ms: 2.1.3 + debuglog@1.0.1: {} decamelize-keys@1.1.1: @@ -26286,7 +25034,7 @@ snapshots: decamelize@1.2.0: {} - decimal.js@10.6.0: {} + decimal.js@10.4.3: {} decompress-response@3.3.0: dependencies: @@ -26300,34 +25048,31 @@ snapshots: dedent@1.5.3: {} - dedent@1.7.2: {} - - deep-eql@4.1.4: + deep-eql@4.1.3: dependencies: - type-detect: 4.1.0 + type-detect: 4.0.8 deep-eql@5.0.2: {} - deep-equal@2.2.3: + deep-equal@2.2.0: dependencies: - array-buffer-byte-length: 1.0.2 - call-bind: 1.0.8 + call-bind: 1.0.7 es-get-iterator: 1.1.3 - get-intrinsic: 1.3.0 - is-arguments: 1.2.0 - is-array-buffer: 3.0.5 - is-date-object: 1.1.0 - is-regex: 1.2.1 - is-shared-array-buffer: 1.0.4 + get-intrinsic: 1.2.6 + is-arguments: 1.1.1 + is-array-buffer: 3.0.1 + is-date-object: 1.0.5 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 isarray: 2.0.5 - object-is: 1.1.6 + object-is: 1.1.5 object-keys: 1.1.1 - object.assign: 4.1.7 - regexp.prototype.flags: 1.5.4 + object.assign: 4.1.4 + regexp.prototype.flags: 1.4.3 side-channel: 1.1.0 - which-boxed-primitive: 1.1.1 - which-collection: 1.0.2 - which-typed-array: 1.1.20 + which-boxed-primitive: 1.0.2 + which-collection: 1.0.1 + which-typed-array: 1.1.9 deep-extend@0.6.0: {} @@ -26353,9 +25098,8 @@ snapshots: define-lazy-prop@2.0.0: {} - define-properties@1.2.1: + define-properties@1.1.4: dependencies: - define-data-property: 1.1.4 has-property-descriptors: 1.0.2 object-keys: 1.1.1 @@ -26382,11 +25126,11 @@ snapshots: destroy@1.2.0: {} - detect-indent@5.0.0: {} - detect-indent@6.1.0: {} - detect-libc@2.1.2: {} + detect-libc@1.0.3: {} + + detect-libc@2.0.3: {} detect-newline@3.1.0: {} @@ -26397,13 +25141,13 @@ snapshots: diff-sequences@29.6.3: {} - diff@4.0.4: {} + diff@4.0.2: {} - diff@5.2.2: {} + diff@5.1.0: {} diffie-hellman@5.0.3: dependencies: - bn.js: 4.12.3 + bn.js: 4.12.1 miller-rabin: 4.0.1 randombytes: 2.1.0 @@ -26461,7 +25205,7 @@ snapshots: domelementtype: 2.3.0 domhandler: 4.3.1 - domutils@3.2.2: + domutils@3.1.0: dependencies: dom-serializer: 2.0.0 domelementtype: 2.3.0 @@ -26482,11 +25226,9 @@ snapshots: dotenv-expand@11.0.7: dependencies: - dotenv: 16.4.7 + dotenv: 16.4.5 - dotenv@16.4.7: {} - - dotenv@16.6.1: {} + dotenv@16.4.5: {} dotenv@8.6.0: {} @@ -26496,14 +25238,12 @@ snapshots: dunder-proto@1.0.1: dependencies: - call-bind-apply-helpers: 1.0.2 + call-bind-apply-helpers: 1.0.1 es-errors: 1.3.0 gopd: 1.2.0 duplexer3@0.1.5: {} - eastasianwidth@0.2.0: {} - ecc-jsbn@0.1.2: dependencies: jsbn: 0.1.1 @@ -26513,15 +25253,17 @@ snapshots: ejs@3.1.10: dependencies: - jake: 10.9.4 + jake: 10.8.5 + + ejs@5.0.1: {} - electron-to-chromium@1.5.307: {} + electron-to-chromium@1.5.90: {} elegant-spinner@1.0.1: {} elliptic@6.6.1: dependencies: - bn.js: 4.12.3 + bn.js: 4.12.1 brorand: 1.1.0 hash.js: 1.1.7 hmac-drbg: 1.0.1 @@ -26531,16 +25273,16 @@ snapshots: emittery@0.13.1: {} - emoji-regex@10.6.0: {} + emoji-regex@10.3.0: {} emoji-regex@7.0.3: {} emoji-regex@8.0.0: {} - emoji-regex@9.2.2: {} - emojis-list@3.0.0: {} + encodeurl@1.0.2: {} + encodeurl@2.0.0: {} encoding@0.1.13: @@ -26548,7 +25290,7 @@ snapshots: iconv-lite: 0.6.3 optional: true - end-of-stream@1.4.5: + end-of-stream@1.4.4: dependencies: once: 1.4.0 @@ -26558,26 +25300,19 @@ snapshots: fast-json-parse: 1.0.3 objectorarray: 1.0.5 - enhanced-resolve@5.20.0: + enhanced-resolve@5.18.0: dependencies: graceful-fs: 4.2.11 - tapable: 2.3.0 + tapable: 2.2.1 enquirer@2.3.6: dependencies: ansi-colors: 4.1.3 - enquirer@2.4.1: - dependencies: - ansi-colors: 4.1.3 - strip-ansi: 6.0.1 - entities@2.2.0: {} entities@4.5.0: {} - entities@6.0.1: {} - env-paths@2.2.1: {} envinfo@7.13.0: {} @@ -26586,7 +25321,7 @@ snapshots: err-code@2.0.3: {} - error-ex@1.3.4: + error-ex@1.3.2: dependencies: is-arrayish: 0.2.1 @@ -26602,19 +25337,21 @@ snapshots: es-get-iterator@1.1.3: dependencies: - call-bind: 1.0.8 - get-intrinsic: 1.3.0 + call-bind: 1.0.7 + get-intrinsic: 1.2.6 has-symbols: 1.1.0 - is-arguments: 1.2.0 - is-map: 2.0.3 - is-set: 2.0.3 - is-string: 1.1.1 + is-arguments: 1.1.1 + is-map: 2.0.2 + is-set: 2.0.2 + is-string: 1.0.7 isarray: 2.0.5 - stop-iteration-iterator: 1.1.0 + stop-iteration-iterator: 1.0.0 - es-module-lexer@1.7.0: {} + es-module-lexer@1.6.0: {} - es-module-lexer@2.0.0: {} + es-object-atoms@1.0.0: + dependencies: + es-errors: 1.3.0 es-object-atoms@1.1.1: dependencies: @@ -26677,10 +25414,10 @@ snapshots: esbuild-openbsd-64@0.14.54: optional: true - esbuild-register@3.6.0(esbuild@0.25.12): + esbuild-register@3.6.0(esbuild@0.24.2): dependencies: - debug: 4.4.3 - esbuild: 0.25.12 + debug: 4.4.0 + esbuild: 0.24.2 transitivePeerDependencies: - supports-color @@ -26720,63 +25457,58 @@ snapshots: esbuild-windows-64: 0.14.54 esbuild-windows-arm64: 0.14.54 - esbuild@0.25.12: + esbuild@0.18.20: optionalDependencies: - "@esbuild/aix-ppc64": 0.25.12 - "@esbuild/android-arm": 0.25.12 - "@esbuild/android-arm64": 0.25.12 - "@esbuild/android-x64": 0.25.12 - "@esbuild/darwin-arm64": 0.25.12 - "@esbuild/darwin-x64": 0.25.12 - "@esbuild/freebsd-arm64": 0.25.12 - "@esbuild/freebsd-x64": 0.25.12 - "@esbuild/linux-arm": 0.25.12 - "@esbuild/linux-arm64": 0.25.12 - "@esbuild/linux-ia32": 0.25.12 - "@esbuild/linux-loong64": 0.25.12 - "@esbuild/linux-mips64el": 0.25.12 - "@esbuild/linux-ppc64": 0.25.12 - "@esbuild/linux-riscv64": 0.25.12 - "@esbuild/linux-s390x": 0.25.12 - "@esbuild/linux-x64": 0.25.12 - "@esbuild/netbsd-arm64": 0.25.12 - "@esbuild/netbsd-x64": 0.25.12 - "@esbuild/openbsd-arm64": 0.25.12 - "@esbuild/openbsd-x64": 0.25.12 - "@esbuild/openharmony-arm64": 0.25.12 - "@esbuild/sunos-x64": 0.25.12 - "@esbuild/win32-arm64": 0.25.12 - "@esbuild/win32-ia32": 0.25.12 - "@esbuild/win32-x64": 0.25.12 - - esbuild@0.27.3: + "@esbuild/android-arm": 0.18.20 + "@esbuild/android-arm64": 0.18.20 + "@esbuild/android-x64": 0.18.20 + "@esbuild/darwin-arm64": 0.18.20 + "@esbuild/darwin-x64": 0.18.20 + "@esbuild/freebsd-arm64": 0.18.20 + "@esbuild/freebsd-x64": 0.18.20 + "@esbuild/linux-arm": 0.18.20 + "@esbuild/linux-arm64": 0.18.20 + "@esbuild/linux-ia32": 0.18.20 + "@esbuild/linux-loong64": 0.18.20 + "@esbuild/linux-mips64el": 0.18.20 + "@esbuild/linux-ppc64": 0.18.20 + "@esbuild/linux-riscv64": 0.18.20 + "@esbuild/linux-s390x": 0.18.20 + "@esbuild/linux-x64": 0.18.20 + "@esbuild/netbsd-x64": 0.18.20 + "@esbuild/openbsd-x64": 0.18.20 + "@esbuild/sunos-x64": 0.18.20 + "@esbuild/win32-arm64": 0.18.20 + "@esbuild/win32-ia32": 0.18.20 + "@esbuild/win32-x64": 0.18.20 + + esbuild@0.24.2: optionalDependencies: - "@esbuild/aix-ppc64": 0.27.3 - "@esbuild/android-arm": 0.27.3 - "@esbuild/android-arm64": 0.27.3 - "@esbuild/android-x64": 0.27.3 - "@esbuild/darwin-arm64": 0.27.3 - "@esbuild/darwin-x64": 0.27.3 - "@esbuild/freebsd-arm64": 0.27.3 - "@esbuild/freebsd-x64": 0.27.3 - "@esbuild/linux-arm": 0.27.3 - "@esbuild/linux-arm64": 0.27.3 - "@esbuild/linux-ia32": 0.27.3 - "@esbuild/linux-loong64": 0.27.3 - "@esbuild/linux-mips64el": 0.27.3 - "@esbuild/linux-ppc64": 0.27.3 - "@esbuild/linux-riscv64": 0.27.3 - "@esbuild/linux-s390x": 0.27.3 - "@esbuild/linux-x64": 0.27.3 - "@esbuild/netbsd-arm64": 0.27.3 - "@esbuild/netbsd-x64": 0.27.3 - "@esbuild/openbsd-arm64": 0.27.3 - "@esbuild/openbsd-x64": 0.27.3 - "@esbuild/openharmony-arm64": 0.27.3 - "@esbuild/sunos-x64": 0.27.3 - "@esbuild/win32-arm64": 0.27.3 - "@esbuild/win32-ia32": 0.27.3 - "@esbuild/win32-x64": 0.27.3 + "@esbuild/aix-ppc64": 0.24.2 + "@esbuild/android-arm": 0.24.2 + "@esbuild/android-arm64": 0.24.2 + "@esbuild/android-x64": 0.24.2 + "@esbuild/darwin-arm64": 0.24.2 + "@esbuild/darwin-x64": 0.24.2 + "@esbuild/freebsd-arm64": 0.24.2 + "@esbuild/freebsd-x64": 0.24.2 + "@esbuild/linux-arm": 0.24.2 + "@esbuild/linux-arm64": 0.24.2 + "@esbuild/linux-ia32": 0.24.2 + "@esbuild/linux-loong64": 0.24.2 + "@esbuild/linux-mips64el": 0.24.2 + "@esbuild/linux-ppc64": 0.24.2 + "@esbuild/linux-riscv64": 0.24.2 + "@esbuild/linux-s390x": 0.24.2 + "@esbuild/linux-x64": 0.24.2 + "@esbuild/netbsd-arm64": 0.24.2 + "@esbuild/netbsd-x64": 0.24.2 + "@esbuild/openbsd-arm64": 0.24.2 + "@esbuild/openbsd-x64": 0.24.2 + "@esbuild/sunos-x64": 0.24.2 + "@esbuild/win32-arm64": 0.24.2 + "@esbuild/win32-ia32": 0.24.2 + "@esbuild/win32-x64": 0.24.2 escalade@3.2.0: {} @@ -26815,7 +25547,7 @@ snapshots: estree-walker@3.0.3: dependencies: - "@types/estree": 1.0.8 + "@types/estree": 1.0.6 esutils@2.0.3: {} @@ -26827,13 +25559,7 @@ snapshots: eventemitter3@4.0.7: {} - eventemitter3@5.0.4: {} - - events-universal@1.0.1: - dependencies: - bare-events: 2.8.2 - transitivePeerDependencies: - - bare-abort-controller + eventemitter3@5.0.1: {} events@1.1.1: {} @@ -26856,7 +25582,7 @@ snapshots: execa@4.1.0: dependencies: - cross-spawn: 7.0.6 + cross-spawn: 7.0.3 get-stream: 5.2.0 human-signals: 1.1.1 is-stream: 2.0.1 @@ -26869,9 +25595,9 @@ snapshots: execa@5.0.0: dependencies: cross-spawn: 7.0.6 - get-stream: 6.0.0 + get-stream: 6.0.1 human-signals: 2.1.0 - is-stream: 2.0.0 + is-stream: 2.0.1 merge-stream: 2.0.0 npm-run-path: 4.0.1 onetime: 5.1.2 @@ -26880,7 +25606,7 @@ snapshots: execa@5.1.1: 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 @@ -26892,12 +25618,12 @@ snapshots: execa@8.0.1: dependencies: - cross-spawn: 7.0.6 + cross-spawn: 7.0.3 get-stream: 8.0.1 human-signals: 5.0.0 is-stream: 3.0.0 merge-stream: 2.0.0 - npm-run-path: 5.3.0 + npm-run-path: 5.1.0 onetime: 6.0.0 signal-exit: 4.1.0 strip-final-newline: 3.0.0 @@ -26918,46 +25644,46 @@ snapshots: jest-message-util: 29.7.0 jest-util: 29.7.0 - exponential-backoff@3.1.3: {} + exponential-backoff@3.1.2: {} - express-graphql@0.12.0(graphql@15.10.1): + express-graphql@0.12.0(graphql@15.8.0): dependencies: accepts: 1.3.8 content-type: 1.0.5 - graphql: 15.10.1 + graphql: 15.8.0 http-errors: 1.8.0 - raw-body: 2.5.3 + raw-body: 2.5.2 - express@4.22.1: + express@4.20.0: dependencies: accepts: 1.3.8 array-flatten: 1.1.1 - body-parser: 1.20.4 + body-parser: 1.20.3 content-disposition: 0.5.4 content-type: 1.0.5 - cookie: 0.7.2 - cookie-signature: 1.0.7 + cookie: 0.6.0 + cookie-signature: 1.0.6 debug: 2.6.9 depd: 2.0.0 encodeurl: 2.0.0 escape-html: 1.0.3 etag: 1.8.1 - finalhandler: 1.3.2 + finalhandler: 1.2.0 fresh: 0.5.2 - http-errors: 2.0.1 + http-errors: 2.0.0 merge-descriptors: 1.0.3 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.14.2 + qs: 6.11.0 range-parser: 1.2.1 safe-buffer: 5.2.1 - send: 0.19.2 - serve-static: 1.16.3 + send: 0.19.0 + serve-static: 1.16.0 setprototypeof: 1.2.0 - statuses: 2.0.2 + statuses: 2.0.1 type-is: 1.6.18 utils-merge: 1.0.1 vary: 1.1.2 @@ -26976,16 +25702,18 @@ snapshots: extract-zip@2.0.1(supports-color@8.1.1): dependencies: - debug: 4.4.3(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: - "@types/yauzl": 2.10.3 + "@types/yauzl": 2.10.0 transitivePeerDependencies: - supports-color extsprintf@1.3.0: {} + extsprintf@1.4.1: {} + fake-indexeddb@3.1.8: dependencies: realistic-structured-clone: 2.0.4 @@ -26996,7 +25724,7 @@ snapshots: fast-fifo@1.3.2: {} - fast-glob@3.3.3: + fast-glob@3.2.12: dependencies: "@nodelib/fs.stat": 2.0.5 "@nodelib/fs.walk": 1.2.8 @@ -27011,8 +25739,8 @@ snapshots: fast-json-stringify@5.16.1: dependencies: "@fastify/merge-json-schemas": 0.1.1 - ajv: 8.18.0 - ajv-formats: 3.0.1(ajv@8.18.0) + ajv: 8.17.1 + ajv-formats: 3.0.1(ajv@8.17.1) fast-deep-equal: 3.1.3 fast-uri: 2.4.0 json-schema-ref-resolver: 1.0.1 @@ -27026,9 +25754,11 @@ snapshots: dependencies: fast-decode-uri-component: 1.0.1 + fast-redact@3.5.0: {} + fast-uri@2.4.0: {} - fast-uri@3.1.0: {} + fast-uri@3.0.2: {} fast-url-parser@1.1.3: dependencies: @@ -27036,9 +25766,9 @@ snapshots: fastest-levenshtein@1.0.16: {} - fastq@1.20.1: + fastq@1.15.0: dependencies: - reusify: 1.1.0 + reusify: 1.0.4 fb-watchman@2.0.2: dependencies: @@ -27046,15 +25776,15 @@ snapshots: fbjs-css-vars@1.0.2: {} - fbjs@3.0.5(encoding@0.1.13): + fbjs@3.0.4(encoding@0.1.13): dependencies: - cross-fetch: 3.2.0(encoding@0.1.13) + cross-fetch: 3.1.5(encoding@0.1.13) fbjs-css-vars: 1.0.2 loose-envify: 1.4.0 object-assign: 4.1.1 promise: 7.3.1 setimmediate: 1.0.5 - ua-parser-js: 1.0.41 + ua-parser-js: 0.7.33 transitivePeerDependencies: - encoding @@ -27062,14 +25792,9 @@ snapshots: dependencies: pend: 1.2.0 - fdir@6.5.0(picomatch@4.0.3): + fdir@6.5.0(picomatch@4.0.4): optionalDependencies: - picomatch: 4.0.3 - - fetch-blob@3.2.0: - dependencies: - node-domexception: 1.0.0 - web-streams-polyfill: 3.3.3 + picomatch: 4.0.4 fetch-retry@4.1.1: {} @@ -27088,15 +25813,15 @@ snapshots: file-entry-cache@6.0.1: dependencies: - flat-cache: 3.2.0 + flat-cache: 3.0.4 file-selector@2.1.2: dependencies: tslib: 2.8.1 - filelist@1.0.6: + filelist@1.0.4: dependencies: - minimatch: 5.1.9 + minimatch: 5.1.6 filesize@10.1.6: {} @@ -27106,14 +25831,14 @@ snapshots: filter-obj@2.0.2: {} - finalhandler@1.3.2: + finalhandler@1.2.0: dependencies: debug: 2.6.9 - encodeurl: 2.0.0 + encodeurl: 1.0.2 escape-html: 1.0.3 on-finished: 2.4.1 parseurl: 1.3.3 - statuses: 2.0.2 + statuses: 2.0.1 unpipe: 1.0.0 transitivePeerDependencies: - supports-color @@ -27161,25 +25886,28 @@ snapshots: dependencies: readable-stream: 2.3.8 - flat-cache@3.2.0: + flat-cache@3.0.4: dependencies: - flatted: 3.3.4 - keyv: 4.5.4 + flatted: 3.2.7 rimraf: 3.0.2 flat@5.0.2: {} - flatted@3.3.4: {} + flatted@3.2.7: {} - follow-redirects@1.15.11: {} + follow-redirects@1.15.6: {} - for-each@0.3.5: + follow-redirects@1.15.9: {} + + follow-redirects@1.16.0: {} + + for-each@0.3.3: dependencies: is-callable: 1.2.7 foreground-child@2.0.0: dependencies: - cross-spawn: 7.0.6 + cross-spawn: 7.0.3 signal-exit: 3.0.7 foreground-child@3.3.1: @@ -27189,22 +25917,22 @@ snapshots: forever-agent@0.6.1: {} - fork-ts-checker-webpack-plugin@8.0.0(typescript@5.3.2)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)): + fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.5)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)): dependencies: - "@babel/code-frame": 7.29.0 + "@babel/code-frame": 7.26.2 chalk: 4.1.2 - chokidar: 3.6.0 + chokidar: 3.5.3 cosmiconfig: 7.1.0 deepmerge: 4.3.1 fs-extra: 10.1.0 - memfs: 3.5.3 - minimatch: 3.1.5 + memfs: 3.6.0 + minimatch: 3.1.2 node-abort-controller: 3.1.1 schema-utils: 3.3.0 - semver: 7.7.4 - tapable: 2.3.0 - typescript: 5.3.2 - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) + semver: 7.7.1 + tapable: 2.2.1 + typescript: 5.4.5 + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) form-data@2.3.3: dependencies: @@ -27212,7 +25940,13 @@ snapshots: combined-stream: 1.0.8 mime-types: 2.1.35 - form-data@4.0.5: + form-data@4.0.0: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + + form-data@4.0.3: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 @@ -27220,13 +25954,17 @@ snapshots: hasown: 2.0.2 mime-types: 2.1.35 - formdata-polyfill@4.0.10: + form-data@4.0.5: dependencies: - fetch-blob: 3.2.0 + asynckit: 0.4.0 + combined-stream: 1.0.8 + es-set-tostringtag: 2.1.0 + hasown: 2.0.2 + mime-types: 2.1.35 forwarded@0.2.0: {} - fraction.js@5.3.4: {} + fraction.js@4.2.0: {} fresh@0.5.2: {} @@ -27234,20 +25972,20 @@ snapshots: front-matter@4.0.2: dependencies: - js-yaml: 3.14.2 + js-yaml: 3.14.1 fs-constants@1.0.0: {} fs-extra@10.1.0: dependencies: graceful-fs: 4.2.11 - jsonfile: 6.2.0 + jsonfile: 6.1.0 universalify: 2.0.1 - fs-extra@11.3.4: + fs-extra@11.2.0: dependencies: graceful-fs: 4.2.11 - jsonfile: 6.2.0 + jsonfile: 6.1.0 universalify: 2.0.1 fs-extra@8.1.0: @@ -27260,7 +25998,7 @@ snapshots: dependencies: at-least-node: 1.0.0 graceful-fs: 4.2.11 - jsonfile: 6.2.0 + jsonfile: 6.1.0 universalify: 2.0.1 fs-minipass@2.1.0: @@ -27269,9 +26007,9 @@ snapshots: fs-minipass@3.0.3: dependencies: - minipass: 7.1.3 + minipass: 7.1.2 - fs-monkey@1.1.0: {} + fs-monkey@1.0.6: {} fs.realpath@1.0.0: {} @@ -27284,7 +26022,7 @@ snapshots: gauge@3.0.2: dependencies: - aproba: 2.1.0 + aproba: 2.0.0 color-support: 1.1.3 console-control-strings: 1.1.0 has-unicode: 2.0.1 @@ -27296,7 +26034,7 @@ snapshots: gauge@4.0.4: dependencies: - aproba: 2.1.0 + aproba: 2.0.0 color-support: 1.1.3 console-control-strings: 1.1.0 has-unicode: 2.0.1 @@ -27309,16 +26047,27 @@ snapshots: dependencies: is-property: 1.0.2 - generator-function@2.0.1: {} - gensync@1.0.0-beta.2: {} get-caller-file@2.0.5: {} - get-east-asian-width@1.5.0: {} + get-east-asian-width@1.2.0: {} get-func-name@2.0.2: {} + get-intrinsic@1.2.6: + dependencies: + call-bind-apply-helpers: 1.0.1 + dunder-proto: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + function-bind: 1.1.2 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + math-intrinsics: 1.1.0 + get-intrinsic@1.3.0: dependencies: call-bind-apply-helpers: 1.0.2 @@ -27341,22 +26090,22 @@ snapshots: through2: 2.0.5 yargs: 16.2.0 - get-port@5.1.1: {} - get-proto@1.0.1: dependencies: dunder-proto: 1.0.1 es-object-atoms: 1.1.1 + get-stdin@4.0.1: {} + get-stream@3.0.0: {} get-stream@4.1.0: dependencies: - pump: 3.0.4 + pump: 3.0.0 get-stream@5.2.0: dependencies: - pump: 3.0.4 + pump: 3.0.0 get-stream@6.0.0: {} @@ -27364,13 +26113,13 @@ snapshots: get-stream@8.0.1: {} - get-tsconfig@4.13.6: + get-tsconfig@4.7.2: dependencies: resolve-pkg-maps: 1.0.0 getos@3.2.1: dependencies: - async: 3.2.6 + async: 3.2.4 getpass@0.1.7: dependencies: @@ -27394,7 +26143,7 @@ snapshots: git-up@7.0.0: dependencies: - is-ssh: 1.4.1 + is-ssh: 1.4.0 parse-url: 8.1.0 git-url-parse@14.0.0: @@ -27425,27 +26174,18 @@ snapshots: glob-to-regexp@0.4.1: {} - glob@10.5.0: - dependencies: - foreground-child: 3.3.1 - jackspeak: 3.4.3 - minimatch: 9.0.9 - minipass: 7.1.3 - package-json-from-dist: 1.0.1 - path-scurry: 1.11.1 - glob@11.1.0: dependencies: foreground-child: 3.3.1 jackspeak: 4.2.3 - minimatch: 10.2.4 - minipass: 7.1.3 + minimatch: 10.2.5 + minipass: 7.1.2 package-json-from-dist: 1.0.1 path-scurry: 2.0.2 glob@13.0.6: dependencies: - minimatch: 10.2.4 + minimatch: 10.2.5 minipass: 7.1.3 path-scurry: 2.0.2 @@ -27454,7 +26194,7 @@ snapshots: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.1.5 + minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 @@ -27463,7 +26203,7 @@ snapshots: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 5.1.9 + minimatch: 5.1.6 once: 1.4.0 global-dirs@0.1.1: @@ -27484,12 +26224,23 @@ snapshots: kind-of: 6.0.3 which: 1.3.1 + globals@11.12.0: {} + + globby@11.0.4: + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.12 + ignore: 5.2.4 + merge2: 1.4.1 + slash: 3.0.0 + globby@11.1.0: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.3 - ignore: 5.3.2 + fast-glob: 3.2.12 + ignore: 5.2.4 merge2: 1.4.1 slash: 3.0.0 @@ -27502,9 +26253,9 @@ snapshots: "@sindresorhus/is": 4.6.0 "@szmarczak/http-timer": 4.0.6 "@types/cacheable-request": 6.0.3 - "@types/responselike": 1.0.3 + "@types/responselike": 1.0.0 cacheable-lookup: 5.0.4 - cacheable-request: 7.0.4 + cacheable-request: 7.0.2 decompress-response: 6.0.0 http2-wrapper: 1.0.3 lowercase-keys: 2.0.0 @@ -27516,7 +26267,7 @@ snapshots: "@sindresorhus/is": 0.14.0 "@szmarczak/http-timer": 1.1.2 "@types/keyv": 3.1.4 - "@types/responselike": 1.0.3 + "@types/responselike": 1.0.0 cacheable-request: 6.1.0 decompress-response: 3.3.0 duplexer3: 0.1.5 @@ -27529,16 +26280,16 @@ snapshots: graceful-fs@4.2.11: {} - graphql-config@4.5.0(@types/node@16.18.126)(encoding@0.1.13)(graphql@15.10.1): + graphql-config@4.5.0(@types/node@18.19.74)(encoding@0.1.13)(graphql@15.8.0): dependencies: - "@graphql-tools/graphql-file-loader": 7.5.17(graphql@15.10.1) - "@graphql-tools/json-file-loader": 7.4.18(graphql@15.10.1) - "@graphql-tools/load": 7.8.14(graphql@15.10.1) - "@graphql-tools/merge": 8.4.2(graphql@15.10.1) - "@graphql-tools/url-loader": 7.17.18(@types/node@16.18.126)(encoding@0.1.13)(graphql@15.10.1) - "@graphql-tools/utils": 9.2.1(graphql@15.10.1) + "@graphql-tools/graphql-file-loader": 7.5.17(graphql@15.8.0) + "@graphql-tools/json-file-loader": 7.4.18(graphql@15.8.0) + "@graphql-tools/load": 7.8.14(graphql@15.8.0) + "@graphql-tools/merge": 8.4.2(graphql@15.8.0) + "@graphql-tools/url-loader": 7.17.18(@types/node@18.19.74)(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/utils": 9.2.1(graphql@15.8.0) cosmiconfig: 8.0.0 - graphql: 15.10.1 + graphql: 15.8.0 jiti: 1.17.1 minimatch: 4.2.3 string-env-interpolation: 1.0.1 @@ -27549,65 +26300,61 @@ snapshots: - encoding - utf-8-validate - graphql-config@5.1.5(@types/node@22.19.13)(graphql@15.10.1)(typescript@5.3.2): + graphql-config@5.0.3(@types/node@20.14.9)(encoding@0.1.13)(graphql@15.8.0)(typescript@5.3.2): dependencies: - "@graphql-tools/graphql-file-loader": 8.1.9(graphql@15.10.1) - "@graphql-tools/json-file-loader": 8.0.26(graphql@15.10.1) - "@graphql-tools/load": 8.1.8(graphql@15.10.1) - "@graphql-tools/merge": 9.1.7(graphql@15.10.1) - "@graphql-tools/url-loader": 8.0.33(@types/node@22.19.13)(graphql@15.10.1) - "@graphql-tools/utils": 10.11.0(graphql@15.10.1) + "@graphql-tools/graphql-file-loader": 8.0.1(graphql@15.8.0) + "@graphql-tools/json-file-loader": 8.0.1(graphql@15.8.0) + "@graphql-tools/load": 8.0.2(graphql@15.8.0) + "@graphql-tools/merge": 9.0.4(graphql@15.8.0) + "@graphql-tools/url-loader": 8.0.2(@types/node@20.14.9)(encoding@0.1.13)(graphql@15.8.0) + "@graphql-tools/utils": 10.2.0(graphql@15.8.0) cosmiconfig: 8.3.6(typescript@5.3.2) - graphql: 15.10.1 - jiti: 2.6.1 - minimatch: 9.0.9 + graphql: 15.8.0 + jiti: 1.21.7 + minimatch: 4.2.3 string-env-interpolation: 1.0.1 tslib: 2.8.1 transitivePeerDependencies: - - "@fastify/websocket" - "@types/node" - bufferutil - - crossws - - supports-color + - encoding - typescript - utf-8-validate - graphql-jit@0.8.7(graphql@15.10.1): + graphql-jit@0.8.6(graphql@15.8.0): dependencies: - "@graphql-typed-document-node/core": 3.2.0(graphql@15.10.1) + "@graphql-typed-document-node/core": 3.2.0(graphql@15.8.0) fast-json-stringify: 5.16.1 generate-function: 2.3.1 - graphql: 15.10.1 + graphql: 15.8.0 lodash.memoize: 4.1.2 lodash.merge: 4.6.2 lodash.mergewith: 4.6.2 - graphql-request@6.1.0(encoding@0.1.13)(graphql@15.10.1): + graphql-request@6.1.0(encoding@0.1.13)(graphql@15.8.0): dependencies: - "@graphql-typed-document-node/core": 3.2.0(graphql@15.10.1) - cross-fetch: 3.2.0(encoding@0.1.13) - graphql: 15.10.1 + "@graphql-typed-document-node/core": 3.2.0(graphql@15.8.0) + cross-fetch: 3.1.5(encoding@0.1.13) + graphql: 15.8.0 transitivePeerDependencies: - encoding - graphql-tag@2.12.6(graphql@15.10.1): + graphql-tag@2.12.6(graphql@15.8.0): dependencies: - graphql: 15.10.1 + graphql: 15.8.0 tslib: 2.8.1 - graphql-ws@5.12.1(graphql@15.10.1): + graphql-ws@5.12.1(graphql@15.8.0): dependencies: - graphql: 15.10.1 + graphql: 15.8.0 - graphql-ws@6.0.7(graphql@15.10.1)(ws@8.19.0): + graphql-ws@5.16.0(graphql@15.8.0): dependencies: - graphql: 15.10.1 - optionalDependencies: - ws: 8.19.0 + graphql: 15.8.0 - graphql@15.10.1: {} + graphql@15.8.0: {} - grouped-queue@2.1.0: {} + grouped-queue@2.0.0: {} handlebars@4.7.8: dependencies: @@ -27616,7 +26363,7 @@ snapshots: source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.19.3 + uglify-js: 3.17.4 hard-rejection@2.1.0: {} @@ -27624,7 +26371,7 @@ snapshots: dependencies: ansi-regex: 2.1.1 - has-bigints@1.1.0: {} + has-bigints@1.0.2: {} has-flag@3.0.0: {} @@ -27636,6 +26383,10 @@ snapshots: has-symbols@1.1.0: {} + has-tostringtag@1.0.0: + dependencies: + has-symbols: 1.1.0 + has-tostringtag@1.0.2: dependencies: has-symbols: 1.1.0 @@ -27644,19 +26395,22 @@ snapshots: has-yarn@2.1.0: {} + has@1.0.3: + dependencies: + function-bind: 1.1.2 + hash-base@3.0.5: dependencies: inherits: 2.0.4 safe-buffer: 5.2.1 - hash-base@3.1.2: + hash-base@3.1.0: dependencies: inherits: 2.0.4 - readable-stream: 2.3.8 + readable-stream: 3.6.2 safe-buffer: 5.2.1 - to-buffer: 1.2.2 - hash-it@6.0.1: {} + hash-it@6.0.0: {} hash.js@1.1.7: dependencies: @@ -27691,23 +26445,19 @@ snapshots: dependencies: lru-cache: 6.0.0 - hosted-git-info@6.1.3: - dependencies: - lru-cache: 7.18.3 - hosted-git-info@8.1.0: dependencies: lru-cache: 10.4.3 hosted-git-info@9.0.2: dependencies: - lru-cache: 11.2.6 + lru-cache: 11.3.5 html-encoding-sniffer@3.0.0: dependencies: whatwg-encoding: 2.0.0 - html-entities@2.6.0: {} + html-entities@2.5.2: {} html-escaper@2.0.2: {} @@ -27719,19 +26469,19 @@ snapshots: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.46.0 + terser: 5.37.0 - html-tags@3.3.1: {} + html-tags@3.2.0: {} - html-webpack-plugin@5.6.6(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)): + html-webpack-plugin@5.6.3(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)): dependencies: "@types/html-minifier-terser": 6.1.0 html-minifier-terser: 6.1.0 - lodash: 4.17.23 + lodash: 4.17.21 pretty-error: 4.0.0 - tapable: 2.3.0 + tapable: 2.2.1 optionalDependencies: - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) htmlparser2@6.1.0: dependencies: @@ -27744,15 +26494,15 @@ snapshots: dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 - domutils: 3.2.2 + domutils: 3.1.0 entities: 4.5.0 - http-cache-semantics@4.2.0: {} + http-cache-semantics@4.1.1: {} http-call@5.3.0: dependencies: content-type: 1.0.5 - debug: 4.4.3 + debug: 4.4.0 is-retry-allowed: 1.2.0 is-stream: 2.0.1 parse-json: 4.0.0 @@ -27768,12 +26518,12 @@ snapshots: statuses: 1.5.0 toidentifier: 1.0.0 - http-errors@2.0.1: + http-errors@2.0.0: dependencies: depd: 2.0.0 inherits: 2.0.4 setprototypeof: 1.2.0 - statuses: 2.0.2 + statuses: 2.0.1 toidentifier: 1.0.1 http-link-header@0.8.0: {} @@ -27782,7 +26532,7 @@ snapshots: dependencies: "@tootallnate/once": 1.1.2 agent-base: 6.0.2 - debug: 4.4.3 + debug: 4.4.0 transitivePeerDependencies: - supports-color @@ -27790,21 +26540,21 @@ snapshots: dependencies: "@tootallnate/once": 2.0.0 agent-base: 6.0.2 - debug: 4.4.3 + debug: 4.4.0 transitivePeerDependencies: - supports-color http-proxy-agent@6.1.1: dependencies: - agent-base: 7.1.4 - debug: 4.4.3 + agent-base: 7.1.1 + debug: 4.4.0 transitivePeerDependencies: - supports-color http-proxy-agent@7.0.2: dependencies: - agent-base: 7.1.4 - debug: 4.4.3 + agent-base: 7.1.1 + debug: 4.4.0 transitivePeerDependencies: - supports-color @@ -27812,7 +26562,7 @@ snapshots: dependencies: assert-plus: 1.0.0 jsprim: 2.0.2 - sshpk: 1.18.0 + sshpk: 1.17.0 http2-wrapper@1.0.3: dependencies: @@ -27824,21 +26574,28 @@ snapshots: https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.4.3 + debug: 4.4.0 transitivePeerDependencies: - supports-color https-proxy-agent@6.2.1: dependencies: - agent-base: 7.1.4 - debug: 4.4.3 + agent-base: 7.1.1 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + https-proxy-agent@7.0.4: + dependencies: + agent-base: 7.1.1 + debug: 4.4.0 transitivePeerDependencies: - supports-color https-proxy-agent@7.0.6: dependencies: - agent-base: 7.1.4 - debug: 4.4.3 + agent-base: 7.1.3 + debug: 4.4.0 transitivePeerDependencies: - supports-color @@ -27868,9 +26625,9 @@ snapshots: dependencies: safer-buffer: 2.1.2 - icss-utils@5.1.0(postcss@8.5.8): + icss-utils@5.1.0(postcss@8.5.1): dependencies: - postcss: 8.5.8 + postcss: 8.5.1 idb-keyval@5.1.5: dependencies: @@ -27884,21 +26641,17 @@ snapshots: ignore-walk@4.0.1: dependencies: - minimatch: 3.1.5 - - ignore-walk@6.0.5: - dependencies: - minimatch: 9.0.9 + minimatch: 3.1.2 ignore-walk@8.0.0: dependencies: - minimatch: 10.2.4 + minimatch: 10.2.5 - ignore@5.3.2: {} + ignore@5.2.4: {} ignore@7.0.5: {} - image-size@1.2.1: + image-size@1.2.0: dependencies: queue: 6.0.2 @@ -27906,7 +26659,12 @@ snapshots: immutable@3.7.6: {} - immutable@5.1.5: {} + immutable@5.0.3: {} + + import-fresh@3.3.0: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 import-fresh@3.3.1: dependencies: @@ -27924,11 +26682,6 @@ snapshots: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 - import-local@3.2.0: - dependencies: - pkg-dir: 4.2.0 - resolve-cwd: 3.0.0 - imurmurhash@0.1.4: {} include-media@1.4.10: {} @@ -27966,17 +26719,17 @@ snapshots: validate-npm-package-license: 3.0.4 validate-npm-package-name: 6.0.2 - inquirer@12.9.6(@types/node@22.19.13): + inquirer@12.9.6(@types/node@20.14.9): dependencies: "@inquirer/ansi": 1.0.2 - "@inquirer/core": 10.3.2(@types/node@22.19.13) - "@inquirer/prompts": 7.10.1(@types/node@22.19.13) - "@inquirer/type": 3.0.10(@types/node@22.19.13) + "@inquirer/core": 10.3.2(@types/node@20.14.9) + "@inquirer/prompts": 7.10.1(@types/node@20.14.9) + "@inquirer/type": 3.0.10(@types/node@20.14.9) mute-stream: 2.0.0 run-async: 4.0.6 rxjs: 7.8.2 optionalDependencies: - "@types/node": 22.19.13 + "@types/node": 20.14.9 inquirer@6.5.2: dependencies: @@ -27986,7 +26739,7 @@ snapshots: cli-width: 2.2.1 external-editor: 3.1.0 figures: 2.0.0 - lodash: 4.17.23 + lodash: 4.17.21 mute-stream: 0.0.7 run-async: 2.4.1 rxjs: 6.6.7 @@ -28002,7 +26755,7 @@ snapshots: cli-width: 3.0.0 external-editor: 3.1.0 figures: 3.2.0 - lodash: 4.17.23 + lodash: 4.17.21 mute-stream: 0.0.8 run-async: 2.4.1 rxjs: 6.6.7 @@ -28010,50 +26763,28 @@ snapshots: strip-ansi: 6.0.1 through: 2.3.8 - inquirer@8.2.7(@types/node@16.18.126): - dependencies: - "@inquirer/external-editor": 1.0.3(@types/node@16.18.126) - ansi-escapes: 4.3.2 - chalk: 4.1.2 - cli-cursor: 3.1.0 - cli-width: 3.0.0 - figures: 3.2.0 - lodash: 4.17.23 - mute-stream: 0.0.8 - ora: 5.4.1 - run-async: 2.4.1 - rxjs: 7.8.2 - string-width: 4.2.3 - strip-ansi: 6.0.1 - through: 2.3.8 - wrap-ansi: 6.2.0 - transitivePeerDependencies: - - "@types/node" - - inquirer@8.2.7(@types/node@22.19.13): + inquirer@8.2.6: dependencies: - "@inquirer/external-editor": 1.0.3(@types/node@22.19.13) ansi-escapes: 4.3.2 chalk: 4.1.2 cli-cursor: 3.1.0 cli-width: 3.0.0 + external-editor: 3.1.0 figures: 3.2.0 - lodash: 4.17.23 + lodash: 4.17.21 mute-stream: 0.0.8 ora: 5.4.1 run-async: 2.4.1 - rxjs: 7.8.2 + rxjs: 7.8.1 string-width: 4.2.3 strip-ansi: 6.0.1 through: 2.3.8 wrap-ansi: 6.2.0 - transitivePeerDependencies: - - "@types/node" - internal-slot@1.1.0: + internal-slot@1.0.4: dependencies: - es-errors: 1.3.0 - hasown: 2.0.2 + get-intrinsic: 1.2.6 + has: 1.0.3 side-channel: 1.1.0 interpret@1.4.0: {} @@ -28068,7 +26799,10 @@ snapshots: dependencies: loose-envify: 1.4.0 - ip-address@10.1.0: {} + ip-address@9.0.5: + dependencies: + jsbn: 1.1.0 + sprintf-js: 1.1.3 ipaddr.js@1.9.1: {} @@ -28077,32 +26811,32 @@ snapshots: is-relative: 1.0.0 is-windows: 1.0.2 - is-arguments@1.2.0: + is-arguments@1.1.1: dependencies: - call-bound: 1.0.4 - has-tostringtag: 1.0.2 + call-bind: 1.0.7 + has-tostringtag: 1.0.0 - is-array-buffer@3.0.5: + is-array-buffer@3.0.1: dependencies: - call-bind: 1.0.8 - call-bound: 1.0.4 - get-intrinsic: 1.3.0 + call-bind: 1.0.7 + get-intrinsic: 1.2.6 + is-typed-array: 1.1.10 is-arrayish@0.2.1: {} - is-arrayish@0.3.4: {} + is-arrayish@0.3.2: {} - is-bigint@1.1.0: + is-bigint@1.0.4: dependencies: - has-bigints: 1.1.0 + has-bigints: 1.0.2 is-binary-path@2.1.0: dependencies: - binary-extensions: 2.3.0 + binary-extensions: 2.2.0 - is-boolean-object@1.2.2: + is-boolean-object@1.1.2: dependencies: - call-bound: 1.0.4 + call-bind: 1.0.7 has-tostringtag: 1.0.2 is-buffer@1.1.6: {} @@ -28115,16 +26849,15 @@ snapshots: is-ci@3.0.1: dependencies: - ci-info: 3.9.0 + ci-info: 3.7.1 is-core-module@2.16.1: dependencies: hasown: 2.0.2 - is-date-object@1.1.0: + is-date-object@1.0.5: dependencies: - call-bound: 1.0.4 - has-tostringtag: 1.0.2 + has-tostringtag: 1.0.0 is-docker@2.2.1: {} @@ -28140,19 +26873,15 @@ snapshots: is-fullwidth-code-point@4.0.0: {} - is-fullwidth-code-point@5.1.0: + is-fullwidth-code-point@5.0.0: dependencies: - get-east-asian-width: 1.5.0 + get-east-asian-width: 1.2.0 is-generator-fn@2.1.0: {} - is-generator-function@1.1.2: + is-generator-function@1.0.10: dependencies: - call-bound: 1.0.4 - generator-function: 2.0.1 - get-proto: 1.0.1 - has-tostringtag: 1.0.2 - safe-regex-test: 1.1.0 + has-tostringtag: 1.0.0 is-glob@4.0.3: dependencies: @@ -28176,18 +26905,17 @@ snapshots: dependencies: tslib: 2.8.1 - is-map@2.0.3: {} + is-map@2.0.2: {} is-nan@1.3.2: dependencies: - call-bind: 1.0.8 - define-properties: 1.2.1 + call-bind: 1.0.7 + define-properties: 1.1.4 is-npm@3.0.0: {} - is-number-object@1.1.1: + is-number-object@1.0.7: dependencies: - call-bound: 1.0.4 has-tostringtag: 1.0.2 is-number@7.0.0: {} @@ -28218,12 +26946,10 @@ snapshots: is-property@1.0.2: {} - is-regex@1.2.1: + is-regex@1.1.4: dependencies: - call-bound: 1.0.4 - gopd: 1.2.0 - has-tostringtag: 1.0.2 - hasown: 2.0.2 + call-bind: 1.0.7 + has-tostringtag: 1.0.0 is-relative@1.0.0: dependencies: @@ -28235,42 +26961,41 @@ snapshots: dependencies: scoped-regex: 2.1.0 - is-set@2.0.3: {} + is-set@2.0.2: {} - is-shared-array-buffer@1.0.4: + is-shared-array-buffer@1.0.2: dependencies: - call-bound: 1.0.4 + call-bind: 1.0.7 - is-ssh@1.4.1: + is-ssh@1.4.0: dependencies: - protocols: 2.0.2 + protocols: 2.0.1 is-stream@1.1.0: {} - is-stream@2.0.0: {} - is-stream@2.0.1: {} is-stream@3.0.0: {} - is-string@1.1.1: + is-string@1.0.7: dependencies: - call-bound: 1.0.4 has-tostringtag: 1.0.2 - is-symbol@1.1.1: + is-symbol@1.0.4: dependencies: - call-bound: 1.0.4 has-symbols: 1.1.0 - safe-regex-test: 1.1.0 is-text-path@1.0.1: dependencies: text-extensions: 1.9.0 - is-typed-array@1.1.15: + is-typed-array@1.1.10: dependencies: - which-typed-array: 1.1.20 + available-typed-arrays: 1.0.5 + call-bind: 1.0.7 + for-each: 0.3.3 + gopd: 1.2.0 + has-tostringtag: 1.0.0 is-typedarray@1.0.0: {} @@ -28286,12 +27011,12 @@ snapshots: is-utf8@0.2.1: {} - is-weakmap@2.0.2: {} + is-weakmap@2.0.1: {} - is-weakset@2.0.4: + is-weakset@2.0.2: dependencies: - call-bound: 1.0.4 - get-intrinsic: 1.3.0 + call-bind: 1.0.7 + get-intrinsic: 1.2.6 is-windows@1.0.2: {} @@ -28309,18 +27034,16 @@ snapshots: isbinaryfile@4.0.10: {} - isbinaryfile@5.0.7: {} - isexe@2.0.0: {} - isexe@3.1.5: {} + isexe@3.1.1: {} isexe@4.0.0: {} isomorphic-fetch@3.0.0(encoding@0.1.13): dependencies: node-fetch: 2.7.0(encoding@0.1.13) - whatwg-fetch: 3.6.20 + whatwg-fetch: 3.6.2 transitivePeerDependencies: - encoding @@ -28335,15 +27058,17 @@ snapshots: dependencies: ws: 8.13.0 - isomorphic-ws@5.0.0(ws@8.19.0): + isomorphic-ws@5.0.0(ws@8.18.0): dependencies: - ws: 8.19.0 + ws: 8.18.0 isomorphic.js@0.2.5: {} isstream@0.1.2: {} - istanbul-lib-coverage@3.2.2: {} + istanbul-lib-coverage@3.0.0: {} + + istanbul-lib-coverage@3.2.0: {} istanbul-lib-hook@3.0.0: dependencies: @@ -28351,76 +27076,71 @@ snapshots: istanbul-lib-instrument@4.0.3: dependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 "@istanbuljs/schema": 0.1.3 - istanbul-lib-coverage: 3.2.2 + istanbul-lib-coverage: 3.2.0 semver: 6.3.1 transitivePeerDependencies: - supports-color istanbul-lib-instrument@5.2.1: dependencies: - "@babel/core": 7.29.0 - "@babel/parser": 7.29.0 + "@babel/core": 7.26.7 + "@babel/parser": 7.26.7 "@istanbuljs/schema": 0.1.3 - istanbul-lib-coverage: 3.2.2 + istanbul-lib-coverage: 3.2.0 semver: 6.3.1 transitivePeerDependencies: - supports-color - istanbul-lib-instrument@6.0.3: + istanbul-lib-instrument@6.0.1: dependencies: - "@babel/core": 7.29.0 - "@babel/parser": 7.29.0 + "@babel/core": 7.26.7 + "@babel/parser": 7.26.7 "@istanbuljs/schema": 0.1.3 - istanbul-lib-coverage: 3.2.2 - semver: 7.7.4 + istanbul-lib-coverage: 3.2.0 + semver: 7.7.1 transitivePeerDependencies: - supports-color istanbul-lib-processinfo@2.0.3: dependencies: archy: 1.0.0 - cross-spawn: 7.0.6 - istanbul-lib-coverage: 3.2.2 + cross-spawn: 7.0.3 + istanbul-lib-coverage: 3.2.0 p-map: 3.0.0 rimraf: 3.0.2 uuid: 8.3.2 - istanbul-lib-report@3.0.1: + istanbul-lib-report@3.0.0: dependencies: - istanbul-lib-coverage: 3.2.2 - make-dir: 4.0.0 + istanbul-lib-coverage: 3.2.0 + make-dir: 3.1.0 supports-color: 7.2.0 istanbul-lib-source-maps@4.0.1: dependencies: debug: 4.4.0 - istanbul-lib-coverage: 3.2.2 + istanbul-lib-coverage: 3.2.0 source-map: 0.6.1 transitivePeerDependencies: - supports-color - istanbul-reports@3.2.0: + istanbul-reports@3.1.6: dependencies: html-escaper: 2.0.2 - istanbul-lib-report: 3.0.1 - - jackspeak@3.4.3: - dependencies: - "@isaacs/cliui": 8.0.2 - optionalDependencies: - "@pkgjs/parseargs": 0.11.0 + istanbul-lib-report: 3.0.0 jackspeak@4.2.3: dependencies: "@isaacs/cliui": 9.0.0 - jake@10.9.4: + jake@10.8.5: dependencies: - async: 3.2.6 - filelist: 1.0.6 - picocolors: 1.1.1 + async: 3.2.4 + chalk: 4.1.2 + filelist: 1.0.4 + minimatch: 3.1.2 jest-axe@9.0.0: dependencies: @@ -28441,10 +27161,10 @@ snapshots: "@jest/expect": 29.7.0 "@jest/test-result": 29.7.0 "@jest/types": 29.6.3 - "@types/node": 16.18.126 + "@types/node": 18.19.74 chalk: 4.1.2 co: 4.6.0 - dedent: 1.7.2 + dedent: 1.5.3 is-generator-fn: 2.1.0 jest-each: 29.7.0 jest-matcher-utils: 29.7.0 @@ -28454,23 +27174,42 @@ snapshots: jest-util: 29.7.0 p-limit: 3.1.0 pretty-format: 29.7.0 - pure-rand: 6.1.0 + pure-rand: 6.0.2 slash: 3.0.0 stack-utils: 2.0.6 transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-cli@29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)): + jest-cli@29.7.0(@types/node@16.18.57)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)): + dependencies: + "@jest/core": 29.7.0(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)) + "@jest/test-result": 29.7.0 + "@jest/types": 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@16.18.57)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)) + exit: 0.1.2 + import-local: 3.1.0 + jest-config: 29.7.0(@types/node@16.18.57)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)) + jest-util: 29.7.0 + jest-validate: 29.7.0 + yargs: 17.7.2 + transitivePeerDependencies: + - "@types/node" + - babel-plugin-macros + - supports-color + - ts-node + + jest-cli@29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)) + "@jest/core": 29.7.0(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)) "@jest/test-result": 29.7.0 "@jest/types": 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)) + create-jest: 29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)) exit: 0.1.2 - import-local: 3.2.0 - jest-config: 29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)) + import-local: 3.1.0 + jest-config: 29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -28480,16 +27219,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@18.19.130)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)): + jest-cli@29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)) + "@jest/core": 29.7.0(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)) "@jest/test-result": 29.7.0 "@jest/types": 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@18.19.130)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)) + create-jest: 29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)) exit: 0.1.2 - import-local: 3.2.0 - jest-config: 29.7.0(@types/node@18.19.130)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)) + import-local: 3.1.0 + jest-config: 29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -28499,16 +27238,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)): + jest-cli@29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)) + "@jest/core": 29.7.0(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)) "@jest/test-result": 29.7.0 "@jest/types": 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)) + create-jest: 29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)) exit: 0.1.2 - import-local: 3.2.0 - jest-config: 29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)) + import-local: 3.1.0 + jest-config: 29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -28518,14 +27257,76 @@ snapshots: - supports-color - ts-node - jest-config@29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)): + jest-config@29.7.0(@types/node@16.18.57)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)): + dependencies: + "@babel/core": 7.26.7 + "@jest/test-sequencer": 29.7.0 + "@jest/types": 29.6.3 + babel-jest: 29.7.0(@babel/core@7.26.7) + chalk: 4.1.2 + ci-info: 3.7.1 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0 + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.8 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + "@types/node": 16.18.57 + ts-node: 10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + jest-config@29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)): + dependencies: + "@babel/core": 7.26.7 + "@jest/test-sequencer": 29.7.0 + "@jest/types": 29.6.3 + babel-jest: 29.7.0(@babel/core@7.26.7) + chalk: 4.1.2 + ci-info: 3.7.1 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0 + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.8 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + "@types/node": 18.19.74 + ts-node: 10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + jest-config@29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)): dependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 "@jest/test-sequencer": 29.7.0 "@jest/types": 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.0) + babel-jest: 29.7.0(@babel/core@7.26.7) chalk: 4.1.2 - ci-info: 3.9.0 + ci-info: 3.7.1 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 @@ -28543,20 +27344,20 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 16.18.126 - ts-node: 10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2) + "@types/node": 18.19.74 + ts-node: 10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)): + jest-config@29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)): dependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 "@jest/test-sequencer": 29.7.0 "@jest/types": 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.0) + babel-jest: 29.7.0(@babel/core@7.26.7) chalk: 4.1.2 - ci-info: 3.9.0 + ci-info: 3.7.1 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 @@ -28574,20 +27375,20 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 16.18.126 - ts-node: 10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2) + "@types/node": 18.19.74 + ts-node: 10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)): + jest-config@29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)): dependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 "@jest/test-sequencer": 29.7.0 "@jest/types": 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.0) + babel-jest: 29.7.0(@babel/core@7.26.7) chalk: 4.1.2 - ci-info: 3.9.0 + ci-info: 3.7.1 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 @@ -28605,20 +27406,20 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 16.18.126 - ts-node: 10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2) + "@types/node": 18.19.74 + ts-node: 10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@18.19.130)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)): + jest-config@29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)): dependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 "@jest/test-sequencer": 29.7.0 "@jest/types": 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.0) + babel-jest: 29.7.0(@babel/core@7.26.7) chalk: 4.1.2 - ci-info: 3.9.0 + ci-info: 3.7.1 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 @@ -28636,20 +27437,20 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 18.19.130 - ts-node: 10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2) + "@types/node": 20.14.9 + ts-node: 10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)): + jest-config@29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)): dependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 "@jest/test-sequencer": 29.7.0 "@jest/types": 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.0) + babel-jest: 29.7.0(@babel/core@7.26.7) chalk: 4.1.2 - ci-info: 3.9.0 + ci-info: 3.7.1 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 @@ -28667,8 +27468,8 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 22.19.13 - ts-node: 10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2) + "@types/node": 20.14.9 + ts-node: 10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -28680,12 +27481,12 @@ snapshots: jest-get-type: 29.6.3 pretty-format: 29.7.0 - jest-diff@30.2.0: + jest-diff@30.3.0: dependencies: - "@jest/diff-sequences": 30.0.1 + "@jest/diff-sequences": 30.3.0 "@jest/get-type": 30.1.0 chalk: 4.1.2 - pretty-format: 30.2.0 + pretty-format: 30.3.0 jest-docblock@29.7.0: dependencies: @@ -28705,7 +27506,7 @@ snapshots: "@jest/fake-timers": 29.7.0 "@jest/types": 29.6.3 "@types/jsdom": 20.0.1 - "@types/node": 18.19.130 + "@types/node": 16.18.57 jest-mock: 29.7.0 jest-util: 29.7.0 jsdom: 20.0.3 @@ -28719,7 +27520,7 @@ snapshots: "@jest/environment": 29.7.0 "@jest/fake-timers": 29.7.0 "@jest/types": 29.6.3 - "@types/node": 16.18.126 + "@types/node": 18.19.74 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -28728,8 +27529,8 @@ snapshots: jest-haste-map@29.7.0: dependencies: "@jest/types": 29.6.3 - "@types/graceful-fs": 4.1.9 - "@types/node": 16.18.126 + "@types/graceful-fs": 4.1.6 + "@types/node": 18.19.74 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -28762,9 +27563,9 @@ snapshots: jest-message-util@29.7.0: dependencies: - "@babel/code-frame": 7.29.0 + "@babel/code-frame": 7.26.2 "@jest/types": 29.6.3 - "@types/stack-utils": 2.0.3 + "@types/stack-utils": 2.0.1 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.8 @@ -28775,7 +27576,7 @@ snapshots: jest-mock@29.7.0: dependencies: "@jest/types": 29.6.3 - "@types/node": 18.19.130 + "@types/node": 18.19.74 jest-util: 29.7.0 jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): @@ -28799,8 +27600,8 @@ snapshots: jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0) jest-util: 29.7.0 jest-validate: 29.7.0 - resolve: 1.22.11 - resolve.exports: 2.0.3 + resolve: 1.22.10 + resolve.exports: 2.0.2 slash: 3.0.0 jest-runner@29.7.0: @@ -28810,7 +27611,7 @@ snapshots: "@jest/test-result": 29.7.0 "@jest/transform": 29.7.0 "@jest/types": 29.6.3 - "@types/node": 16.18.126 + "@types/node": 18.19.74 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -28838,10 +27639,10 @@ snapshots: "@jest/test-result": 29.7.0 "@jest/transform": 29.7.0 "@jest/types": 29.6.3 - "@types/node": 16.18.126 + "@types/node": 18.19.74 chalk: 4.1.2 - cjs-module-lexer: 1.4.3 - collect-v8-coverage: 1.0.3 + cjs-module-lexer: 1.4.1 + collect-v8-coverage: 1.0.1 glob: 7.2.3 graceful-fs: 4.2.11 jest-haste-map: 29.7.0 @@ -28858,15 +27659,15 @@ snapshots: jest-snapshot@29.7.0: dependencies: - "@babel/core": 7.29.0 - "@babel/generator": 7.29.1 - "@babel/plugin-syntax-jsx": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-syntax-typescript": 7.28.6(@babel/core@7.29.0) - "@babel/types": 7.29.0 + "@babel/core": 7.26.7 + "@babel/generator": 7.26.5 + "@babel/plugin-syntax-jsx": 7.25.9(@babel/core@7.26.7) + "@babel/plugin-syntax-typescript": 7.25.9(@babel/core@7.26.7) + "@babel/types": 7.26.7 "@jest/expect-utils": 29.7.0 "@jest/transform": 29.7.0 "@jest/types": 29.6.3 - babel-preset-current-node-syntax: 1.2.0(@babel/core@7.29.0) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.26.7) chalk: 4.1.2 expect: 29.7.0 graceful-fs: 4.2.11 @@ -28877,16 +27678,16 @@ snapshots: jest-util: 29.7.0 natural-compare: 1.4.0 pretty-format: 29.7.0 - semver: 7.7.4 + semver: 7.7.1 transitivePeerDependencies: - supports-color jest-util@29.7.0: dependencies: "@jest/types": 29.6.3 - "@types/node": 18.19.130 + "@types/node": 18.19.74 chalk: 4.1.2 - ci-info: 3.9.0 + ci-info: 3.7.1 graceful-fs: 4.2.11 picomatch: 2.3.1 @@ -28903,7 +27704,7 @@ snapshots: dependencies: "@jest/test-result": 29.7.0 "@jest/types": 29.6.3 - "@types/node": 16.18.126 + "@types/node": 18.19.74 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -28912,47 +27713,59 @@ snapshots: jest-worker@27.5.1: dependencies: - "@types/node": 18.19.130 + "@types/node": 18.19.74 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0: dependencies: - "@types/node": 16.18.126 + "@types/node": 18.19.74 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)): + jest@29.7.0(@types/node@16.18.57)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)): + dependencies: + "@jest/core": 29.7.0(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)) + "@jest/types": 29.6.3 + import-local: 3.1.0 + jest-cli: 29.7.0(@types/node@16.18.57)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)) + transitivePeerDependencies: + - "@types/node" + - babel-plugin-macros + - supports-color + - ts-node + + jest@29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)) + "@jest/core": 29.7.0(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)) "@jest/types": 29.6.3 - import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)) + import-local: 3.1.0 + jest-cli: 29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)) transitivePeerDependencies: - "@types/node" - babel-plugin-macros - supports-color - ts-node - jest@29.7.0(@types/node@18.19.130)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)): + jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)) + "@jest/core": 29.7.0(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)) "@jest/types": 29.6.3 - import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@18.19.130)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)) + import-local: 3.1.0 + jest-cli: 29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)) transitivePeerDependencies: - "@types/node" - babel-plugin-macros - supports-color - ts-node - jest@29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)): + jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)) + "@jest/core": 29.7.0(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)) "@jest/types": 29.6.3 - import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)) + import-local: 3.1.0 + jest-cli: 29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)) transitivePeerDependencies: - "@types/node" - babel-plugin-macros @@ -28963,21 +27776,19 @@ snapshots: jiti@1.21.7: {} - jiti@2.6.1: {} - jmespath@0.16.0: {} - jose@4.15.9: {} + jose@4.15.5: {} - jose@5.10.0: {} + jose@5.3.0: {} jpeg-js@0.4.4: {} - js-library-detector@6.7.0: {} + js-library-detector@6.6.0: {} js-tokens@4.0.0: {} - js-yaml@3.14.2: + js-yaml@3.14.1: dependencies: argparse: 1.0.10 esprima: 4.0.1 @@ -28992,41 +27803,45 @@ snapshots: jsbn@0.1.1: {} - jsdoc-type-pratt-parser@4.8.0: {} + jsbn@1.1.0: {} + + jsdoc-type-pratt-parser@4.1.0: {} jsdom@20.0.3: dependencies: abab: 2.0.6 - acorn: 8.16.0 + acorn: 8.14.0 acorn-globals: 7.0.1 cssom: 0.5.0 cssstyle: 2.3.0 data-urls: 3.0.2 - decimal.js: 10.6.0 + decimal.js: 10.4.3 domexception: 4.0.0 escodegen: 2.1.0 - form-data: 4.0.5 + form-data: 4.0.0 html-encoding-sniffer: 3.0.0 http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.23 - parse5: 7.3.0 + nwsapi: 2.2.7 + parse5: 7.1.2 saxes: 6.0.0 symbol-tree: 3.2.4 - tough-cookie: 4.1.4 + tough-cookie: 4.1.3 w3c-xmlserializer: 4.0.0 webidl-conversions: 7.0.0 whatwg-encoding: 2.0.0 whatwg-mimetype: 3.0.0 whatwg-url: 11.0.0 - ws: 8.19.0 + ws: 8.18.0 xml-name-validator: 4.0.0 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate + jsesc@3.0.2: {} + jsesc@3.1.0: {} json-buffer@3.0.0: {} @@ -29037,8 +27852,6 @@ snapshots: json-parse-even-better-errors@2.3.1: {} - json-parse-even-better-errors@3.0.2: {} - json-parse-even-better-errors@4.0.0: {} json-parse-even-better-errors@5.0.0: {} @@ -29053,10 +27866,9 @@ snapshots: json-schema@0.4.0: {} - json-stable-stringify@1.3.0: + json-stable-stringify@1.1.1: dependencies: - call-bind: 1.0.8 - call-bound: 1.0.4 + call-bind: 1.0.7 isarray: 2.0.5 jsonify: 0.0.1 object-keys: 1.1.1 @@ -29068,7 +27880,7 @@ snapshots: json-to-pretty-yaml@1.2.2: dependencies: remedial: 1.0.8 - remove-trailing-spaces: 1.0.9 + remove-trailing-spaces: 1.0.8 json5@2.2.3: {} @@ -29078,7 +27890,7 @@ snapshots: optionalDependencies: graceful-fs: 4.2.11 - jsonfile@6.2.0: + jsonfile@6.1.0: dependencies: universalify: 2.0.1 optionalDependencies: @@ -29105,7 +27917,7 @@ snapshots: dependencies: json-buffer: 3.0.0 - keyv@4.5.4: + keyv@4.5.2: dependencies: json-buffer: 3.0.1 @@ -29123,18 +27935,18 @@ snapshots: lazy-ass@1.6.0: {} - lerna@9.0.5(@swc/core@1.15.18)(@types/node@22.19.13): + lerna@9.0.7(@swc/core@1.15.30)(@types/node@20.14.9): dependencies: - "@lerna/create": 9.0.5(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2) "@npmcli/arborist": 9.1.6 "@npmcli/package-json": 7.0.2 "@npmcli/run-script": 10.0.3 - "@nx/devkit": 22.5.4(nx@22.5.4(@swc/core@1.15.18)) + "@nx/devkit": 22.6.5(nx@22.6.5(@swc/core@1.15.30)) "@octokit/plugin-enterprise-rest": 6.0.1 "@octokit/rest": 20.1.2 aproba: 2.0.0 byte-size: 8.1.1 chalk: 4.1.0 + ci-info: 4.3.1 cmd-shim: 6.0.3 color-support: 1.1.3 columnify: 1.6.0 @@ -29146,8 +27958,7 @@ snapshots: dedent: 1.5.3 envinfo: 7.13.0 execa: 5.0.0 - fs-extra: 11.3.4 - get-port: 5.1.1 + fs-extra: 11.2.0 get-stream: 6.0.0 git-url-parse: 14.0.0 glob-parent: 6.0.2 @@ -29155,22 +27966,19 @@ snapshots: import-local: 3.1.0 ini: 1.3.8 init-package-json: 8.2.2 - inquirer: 12.9.6(@types/node@22.19.13) + inquirer: 12.9.6(@types/node@20.14.9) is-ci: 3.0.1 - is-stream: 2.0.0 - jest-diff: 30.2.0 + jest-diff: 30.3.0 js-yaml: 4.1.1 libnpmaccess: 10.0.3 libnpmpublish: 11.1.2 load-json-file: 6.2.0 - make-dir: 4.0.0 make-fetch-happen: 15.0.2 minimatch: 3.1.4 - multimatch: 5.0.0 npm-package-arg: 13.0.1 npm-packlist: 10.0.3 npm-registry-fetch: 19.1.0 - nx: 22.5.4(@swc/core@1.15.18) + nx: 22.6.5(@swc/core@1.15.30) p-map: 4.0.0 p-map-series: 2.1.0 p-pipe: 3.1.0 @@ -29178,28 +27986,21 @@ snapshots: p-reduce: 2.1.0 p-waterfall: 2.1.1 pacote: 21.0.1 - pify: 5.0.0 read-cmd-shim: 4.0.0 - resolve-from: 5.0.0 - rimraf: 6.1.3 semver: 7.7.2 - set-blocking: 2.0.0 signal-exit: 3.0.7 slash: 3.0.0 ssri: 12.0.0 string-width: 4.2.3 - tar: 7.5.8 - temp-dir: 1.0.0 + tar: 7.5.11 through: 2.3.8 tinyglobby: 0.2.12 typescript: 5.3.2 upath: 2.0.1 - uuid: 11.1.0 validate-npm-package-license: 3.0.4 validate-npm-package-name: 6.0.2 wide-align: 1.1.5 write-file-atomic: 5.0.1 - write-pkg: 4.0.0 yargs: 17.7.2 yargs-parser: 21.1.1 transitivePeerDependencies: @@ -29228,7 +28029,7 @@ snapshots: libnpmpublish@11.1.2: dependencies: "@npmcli/package-json": 7.0.2 - ci-info: 4.4.0 + ci-info: 4.3.1 npm-package-arg: 13.0.1 npm-registry-fetch: 19.1.0 proc-log: 5.0.0 @@ -29241,33 +28042,33 @@ snapshots: lighthouse-logger@1.2.0: dependencies: debug: 2.6.9 - marky: 1.3.0 + marky: 1.2.5 transitivePeerDependencies: - supports-color - lighthouse-logger@1.4.2: + lighthouse-logger@1.3.0: dependencies: debug: 2.6.9 - marky: 1.3.0 + marky: 1.2.5 transitivePeerDependencies: - supports-color - lighthouse-stack-packs@1.12.3: {} + lighthouse-stack-packs@1.9.0: {} lighthouse@9.3.0: dependencies: axe-core: 4.3.5 - chrome-launcher: 0.15.2 + chrome-launcher: 0.15.1 configstore: 5.0.1 csp_evaluator: 1.1.0 cssstyle: 1.2.1 - enquirer: 2.4.1 + enquirer: 2.3.6 http-link-header: 0.8.0 intl-messageformat: 4.4.0 jpeg-js: 0.4.4 - js-library-detector: 6.7.0 - lighthouse-logger: 1.4.2 - lighthouse-stack-packs: 1.12.3 + js-library-detector: 6.6.0 + lighthouse-logger: 1.3.0 + lighthouse-stack-packs: 1.9.0 lodash.clonedeep: 4.5.0 lodash.get: 4.4.2 lodash.isequal: 4.5.0 @@ -29278,11 +28079,11 @@ snapshots: parse-cache-control: 1.0.1 ps-list: 8.1.1 raven: 2.6.4 - robots-parser: 3.0.1 + robots-parser: 3.0.0 semver: 5.7.2 speedline-core: 1.4.3 third-party-web: 0.12.7 - ws: 7.5.10 + ws: 7.5.9 yargs: 17.7.2 yargs-parser: 21.1.1 transitivePeerDependencies: @@ -29290,7 +28091,7 @@ snapshots: - supports-color - utf-8-validate - lilconfig@2.1.0: {} + lilconfig@2.0.6: {} lilconfig@3.1.3: {} @@ -29300,16 +28101,16 @@ snapshots: lint-staged@15.4.3: dependencies: - chalk: 5.6.2 + chalk: 5.4.1 commander: 13.1.0 - debug: 4.4.3 + debug: 4.4.0 execa: 8.0.1 lilconfig: 3.1.3 - listr2: 8.3.3 + listr2: 8.2.5 micromatch: 4.0.8 pidtree: 0.6.0 string-argv: 0.3.2 - yaml: 2.8.2 + yaml: 2.7.0 transitivePeerDependencies: - supports-color @@ -29334,40 +28135,40 @@ snapshots: date-fns: 1.30.1 figures: 2.0.0 - listr2@3.14.0(enquirer@2.4.1): + listr2@3.14.0(enquirer@2.3.6): dependencies: cli-truncate: 2.1.0 colorette: 2.0.20 log-update: 4.0.0 p-map: 4.0.0 rfdc: 1.4.1 - rxjs: 7.8.2 + rxjs: 7.8.1 through: 2.3.8 wrap-ansi: 7.0.0 optionalDependencies: - enquirer: 2.4.1 + enquirer: 2.3.6 - listr2@4.0.5(enquirer@2.4.1): + listr2@4.0.5(enquirer@2.3.6): dependencies: cli-truncate: 2.1.0 colorette: 2.0.20 log-update: 4.0.0 p-map: 4.0.0 rfdc: 1.4.1 - rxjs: 7.8.2 + rxjs: 7.8.1 through: 2.3.8 wrap-ansi: 7.0.0 optionalDependencies: - enquirer: 2.4.1 + enquirer: 2.3.6 - listr2@8.3.3: + listr2@8.2.5: dependencies: cli-truncate: 4.0.0 colorette: 2.0.20 - eventemitter3: 5.0.4 + eventemitter3: 5.0.1 log-update: 6.1.0 rfdc: 1.4.1 - wrap-ansi: 9.0.2 + wrap-ansi: 9.0.0 listr@0.14.3: dependencies: @@ -29401,11 +28202,11 @@ snapshots: load-yaml-file@0.2.0: dependencies: graceful-fs: 4.2.11 - js-yaml: 3.14.2 + js-yaml: 3.14.1 pify: 4.0.1 strip-bom: 3.0.0 - loader-runner@4.3.1: {} + loader-runner@4.3.0: {} loader-utils@2.0.4: dependencies: @@ -29432,8 +28233,6 @@ snapshots: dependencies: p-locate: 6.0.0 - lodash._reinterpolate@3.0.0: {} - lodash.clonedeep@4.5.0: {} lodash.debounce@4.0.8: {} @@ -29458,18 +28257,9 @@ snapshots: lodash.sortby@4.7.0: {} - lodash.template@4.5.0: - dependencies: - lodash._reinterpolate: 3.0.0 - lodash.templatesettings: 4.2.0 - - lodash.templatesettings@4.2.0: - dependencies: - lodash._reinterpolate: 3.0.0 - lodash.truncate@4.4.2: {} - lodash@4.17.23: {} + lodash@4.17.21: {} log-symbols@1.0.2: dependencies: @@ -29495,11 +28285,11 @@ snapshots: log-update@6.1.0: dependencies: - ansi-escapes: 7.3.0 + ansi-escapes: 7.0.0 cli-cursor: 5.0.0 - slice-ansi: 7.1.2 - strip-ansi: 7.2.0 - wrap-ansi: 9.0.2 + slice-ansi: 7.1.0 + strip-ansi: 7.1.0 + wrap-ansi: 9.0.0 lookup-closest-locale@6.2.0: {} @@ -29507,11 +28297,11 @@ snapshots: dependencies: js-tokens: 4.0.0 - loupe@2.3.7: + loupe@2.3.6: dependencies: get-func-name: 2.0.2 - loupe@3.2.1: {} + loupe@3.1.3: {} lower-case-first@2.0.2: dependencies: @@ -29527,7 +28317,7 @@ snapshots: lru-cache@10.4.3: {} - lru-cache@11.2.6: {} + lru-cache@11.3.5: {} lru-cache@4.1.5: dependencies: @@ -29546,34 +28336,25 @@ snapshots: lz-string@1.5.0: {} - magic-string@0.30.21: + magic-string@0.30.17: dependencies: - "@jridgewell/sourcemap-codec": 1.5.5 + "@jridgewell/sourcemap-codec": 1.5.0 make-dir@1.3.0: dependencies: pify: 3.0.0 - make-dir@2.1.0: - dependencies: - pify: 4.0.1 - semver: 5.7.2 - make-dir@3.1.0: dependencies: semver: 6.3.1 - make-dir@4.0.0: - dependencies: - semver: 7.7.2 - make-error@1.3.6: {} make-fetch-happen@10.2.1: dependencies: - agentkeepalive: 4.6.0 + agentkeepalive: 4.5.0 cacache: 16.1.3 - http-cache-semantics: 4.2.0 + http-cache-semantics: 4.1.1 http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 is-lambda: 1.0.1 @@ -29591,32 +28372,12 @@ snapshots: - bluebird - supports-color - make-fetch-happen@11.1.1: - dependencies: - agentkeepalive: 4.6.0 - cacache: 17.1.4 - http-cache-semantics: 4.2.0 - http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1 - is-lambda: 1.0.1 - lru-cache: 7.18.3 - minipass: 5.0.0 - minipass-fetch: 3.0.5 - minipass-flush: 1.0.5 - minipass-pipeline: 1.2.4 - negotiator: 0.6.4 - promise-retry: 2.0.1 - socks-proxy-agent: 7.0.0 - ssri: 10.0.6 - transitivePeerDependencies: - - supports-color - make-fetch-happen@15.0.2: dependencies: "@npmcli/agent": 4.0.0 - cacache: 20.0.3 - http-cache-semantics: 4.2.0 - minipass: 7.1.3 + cacache: 20.0.4 + http-cache-semantics: 4.1.1 + minipass: 7.1.2 minipass-fetch: 4.0.1 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 @@ -29627,13 +28388,14 @@ snapshots: transitivePeerDependencies: - supports-color - make-fetch-happen@15.0.4: + make-fetch-happen@15.0.5: dependencies: - "@gar/promise-retry": 1.0.2 + "@gar/promise-retry": 1.0.3 "@npmcli/agent": 4.0.0 - cacache: 20.0.3 - http-cache-semantics: 4.2.0 - minipass: 7.1.3 + "@npmcli/redact": 4.0.0 + cacache: 20.0.4 + http-cache-semantics: 4.1.1 + minipass: 7.1.2 minipass-fetch: 5.0.2 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 @@ -29645,9 +28407,9 @@ snapshots: make-fetch-happen@9.1.0: dependencies: - agentkeepalive: 4.6.0 + agentkeepalive: 4.5.0 cacache: 15.3.0 - http-cache-semantics: 4.2.0 + http-cache-semantics: 4.1.1 http-proxy-agent: 4.0.1 https-proxy-agent: 5.0.1 is-lambda: 1.0.1 @@ -29677,7 +28439,7 @@ snapshots: map-or-similar@1.5.0: {} - marky@1.3.0: {} + marky@1.2.5: {} math-intrinsics@1.1.0: {} @@ -29685,7 +28447,7 @@ snapshots: md5.js@1.3.5: dependencies: - hash-base: 3.0.5 + hash-base: 3.1.0 inherits: 2.0.4 safe-buffer: 5.2.1 @@ -29697,31 +28459,31 @@ snapshots: media-typer@0.3.0: {} - mem-fs-editor@9.7.0(mem-fs@2.3.0): + mem-fs-editor@9.5.0(mem-fs@2.2.1): dependencies: binaryextensions: 4.19.0 commondir: 1.0.1 deep-extend: 0.6.0 ejs: 3.1.10 globby: 11.1.0 - isbinaryfile: 5.0.7 - minimatch: 7.4.9 + isbinaryfile: 4.0.10 + minimatch: 3.1.4 multimatch: 5.0.0 normalize-path: 3.0.0 textextensions: 5.16.0 optionalDependencies: - mem-fs: 2.3.0 + mem-fs: 2.2.1 - mem-fs@2.3.0: + mem-fs@2.2.1: dependencies: "@types/node": 15.14.9 "@types/vinyl": 2.0.12 vinyl: 2.2.1 vinyl-file: 3.0.0 - memfs@3.5.3: + memfs@3.6.0: dependencies: - fs-monkey: 1.1.0 + fs-monkey: 1.0.6 memoizerific@1.11.3: dependencies: @@ -29762,13 +28524,13 @@ snapshots: merge2@1.4.1: {} - meros@1.3.2(@types/node@16.18.126): + meros@1.2.1(@types/node@18.19.74): optionalDependencies: - "@types/node": 16.18.126 + "@types/node": 18.19.74 - meros@1.3.2(@types/node@22.19.13): + meros@1.2.1(@types/node@20.14.9): optionalDependencies: - "@types/node": 22.19.13 + "@types/node": 20.14.9 metaviewport-parser@0.2.0: {} @@ -29781,13 +28543,11 @@ snapshots: miller-rabin@4.0.1: dependencies: - bn.js: 4.12.3 + bn.js: 4.12.1 brorand: 1.1.0 mime-db@1.52.0: {} - mime-db@1.54.0: {} - mime-types@2.1.35: dependencies: mime-db: 1.52.0 @@ -29814,31 +28574,27 @@ snapshots: minimatch@10.2.4: dependencies: - brace-expansion: 5.0.4 + brace-expansion: 5.0.5 - minimatch@3.1.4: - dependencies: - brace-expansion: 1.1.12 - - minimatch@3.1.5: + minimatch@10.2.5: dependencies: - brace-expansion: 1.1.12 + brace-expansion: 5.0.5 - minimatch@4.2.3: + minimatch@3.1.2: dependencies: - brace-expansion: 1.1.12 + brace-expansion: 1.1.11 - minimatch@5.1.9: + minimatch@3.1.4: dependencies: - brace-expansion: 2.0.2 + brace-expansion: 1.1.11 - minimatch@7.4.9: + minimatch@4.2.3: dependencies: - brace-expansion: 2.0.2 + brace-expansion: 1.1.11 - minimatch@9.0.9: + minimatch@5.1.6: dependencies: - brace-expansion: 2.0.2 + brace-expansion: 2.0.1 minimist-options@4.1.0: dependencies: @@ -29854,7 +28610,7 @@ snapshots: minipass-collect@2.0.1: dependencies: - minipass: 7.1.3 + minipass: 7.1.2 minipass-fetch@1.4.1: dependencies: @@ -29872,17 +28628,9 @@ snapshots: optionalDependencies: encoding: 0.1.13 - minipass-fetch@3.0.5: - dependencies: - minipass: 7.1.3 - minipass-sized: 1.0.3 - minizlib: 2.1.2 - optionalDependencies: - encoding: 0.1.13 - minipass-fetch@4.0.1: dependencies: - minipass: 7.1.3 + minipass: 7.1.2 minipass-sized: 1.0.3 minizlib: 3.1.0 optionalDependencies: @@ -29890,7 +28638,7 @@ snapshots: minipass-fetch@5.0.2: dependencies: - minipass: 7.1.3 + minipass: 7.1.2 minipass-sized: 2.0.0 minizlib: 3.1.0 optionalDependencies: @@ -29900,7 +28648,7 @@ snapshots: dependencies: minipass: 3.3.6 - minipass-json-stream@1.0.2: + minipass-json-stream@1.0.1: dependencies: jsonparse: 1.3.1 minipass: 3.3.6 @@ -29915,7 +28663,7 @@ snapshots: minipass-sized@2.0.0: dependencies: - minipass: 7.1.3 + minipass: 7.1.2 minipass@3.3.6: dependencies: @@ -29923,6 +28671,8 @@ snapshots: minipass@5.0.0: {} + minipass@7.1.2: {} + minipass@7.1.3: {} minizlib@2.1.2: @@ -29932,7 +28682,7 @@ snapshots: minizlib@3.1.0: dependencies: - minipass: 7.1.3 + minipass: 7.1.2 mkdirp-classic@0.5.3: {} @@ -29954,6 +28704,8 @@ snapshots: ms@2.0.0: {} + ms@2.1.2: {} + ms@2.1.3: {} multimatch@5.0.0: @@ -29972,13 +28724,13 @@ snapshots: mute-stream@2.0.0: {} - nanoid@3.3.11: {} + nanoid@3.3.8: {} - nanospinner@1.2.2: + nanospinner@1.1.0: dependencies: picocolors: 1.1.1 - napi-build-utils@2.0.0: {} + napi-build-utils@1.0.2: {} natural-compare@1.4.0: {} @@ -29992,22 +28744,29 @@ snapshots: neo-async@2.6.2: {} - next-seo@6.8.0(next@13.5.11(@babel/core@7.29.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.97.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + next-logger@5.0.2(next@13.5.11(@babel/core@7.26.7)(@opentelemetry/api@1.4.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4))(pino@9.7.0): dependencies: - next: 13.5.11(@babel/core@7.29.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.97.3) + lilconfig: 3.1.3 + next: 13.5.11(@babel/core@7.26.7)(@opentelemetry/api@1.4.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4) + optionalDependencies: + pino: 9.7.0 + + next-seo@6.6.0(next@13.5.11(@babel/core@7.26.7)(@opentelemetry/api@1.4.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + next: 13.5.11(@babel/core@7.26.7)(@opentelemetry/api@1.4.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - next@13.5.11(@babel/core@7.29.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.97.3): + next@13.5.11(@babel/core@7.26.7)(@opentelemetry/api@1.4.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4): dependencies: "@next/env": 13.5.11 "@swc/helpers": 0.5.2 busboy: 1.6.0 - caniuse-lite: 1.0.30001776 + caniuse-lite: 1.0.30001696 postcss: 8.4.31 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - styled-jsx: 5.1.1(@babel/core@7.29.0)(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.26.7)(react@18.3.1) watchpack: 2.4.0 optionalDependencies: "@next/swc-darwin-arm64": 13.5.9 @@ -30019,78 +28778,80 @@ snapshots: "@next/swc-win32-arm64-msvc": 13.5.9 "@next/swc-win32-ia32-msvc": 13.5.9 "@next/swc-win32-x64-msvc": 13.5.9 - sass: 1.97.3 + "@opentelemetry/api": 1.4.1 + sass: 1.83.4 transitivePeerDependencies: - "@babel/core" - babel-plugin-macros - next@15.5.12(@babel/core@7.29.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.97.3): + next@15.1.6(@babel/core@7.26.7)(@opentelemetry/api@1.4.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4): dependencies: - "@next/env": 15.5.12 + "@next/env": 15.1.6 + "@swc/counter": 0.1.3 "@swc/helpers": 0.5.15 - caniuse-lite: 1.0.30001776 + busboy: 1.6.0 + caniuse-lite: 1.0.30001696 postcss: 8.4.31 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - styled-jsx: 5.1.6(@babel/core@7.29.0)(react@18.3.1) + styled-jsx: 5.1.6(@babel/core@7.26.7)(react@18.3.1) optionalDependencies: - "@next/swc-darwin-arm64": 15.5.12 - "@next/swc-darwin-x64": 15.5.12 - "@next/swc-linux-arm64-gnu": 15.5.12 - "@next/swc-linux-arm64-musl": 15.5.12 - "@next/swc-linux-x64-gnu": 15.5.12 - "@next/swc-linux-x64-musl": 15.5.12 - "@next/swc-win32-arm64-msvc": 15.5.12 - "@next/swc-win32-x64-msvc": 15.5.12 - sass: 1.97.3 - sharp: 0.34.5 + "@next/swc-darwin-arm64": 15.1.6 + "@next/swc-darwin-x64": 15.1.6 + "@next/swc-linux-arm64-gnu": 15.1.6 + "@next/swc-linux-arm64-musl": 15.1.6 + "@next/swc-linux-x64-gnu": 15.1.6 + "@next/swc-linux-x64-musl": 15.1.6 + "@next/swc-win32-arm64-msvc": 15.1.6 + "@next/swc-win32-x64-msvc": 15.1.6 + "@opentelemetry/api": 1.4.1 + sass: 1.83.4 + sharp: 0.33.5 transitivePeerDependencies: - "@babel/core" - babel-plugin-macros + nice-try@1.0.5: {} + no-case@3.0.4: dependencies: lower-case: 2.0.2 tslib: 2.8.1 - node-abi@3.87.0: + node-abi@3.33.0: dependencies: - semver: 7.7.4 + semver: 7.7.1 node-abort-controller@3.1.1: {} node-addon-api@6.1.0: {} - node-addon-api@7.1.1: {} + node-addon-api@7.1.0: {} - node-domexception@1.0.0: {} - - node-fetch@2.7.0(encoding@0.1.13): + node-fetch@2.6.7(encoding@0.1.13): dependencies: whatwg-url: 5.0.0 optionalDependencies: encoding: 0.1.13 - node-fetch@3.3.2: + node-fetch@2.7.0(encoding@0.1.13): dependencies: - data-uri-to-buffer: 4.0.1 - fetch-blob: 3.2.0 - formdata-polyfill: 4.0.10 + whatwg-url: 5.0.0 + optionalDependencies: + encoding: 0.1.13 - node-gyp@12.2.0: + node-gyp@12.3.0: dependencies: env-paths: 2.2.1 - exponential-backoff: 3.1.3 + exponential-backoff: 3.1.2 graceful-fs: 4.2.11 - make-fetch-happen: 15.0.2 nopt: 9.0.0 proc-log: 6.1.0 semver: 7.7.2 - tar: 7.5.8 + tar: 7.5.11 tinyglobby: 0.2.12 + undici: 6.25.0 which: 6.0.1 - transitivePeerDependencies: - - supports-color node-gyp@8.4.1: dependencies: @@ -30101,24 +28862,7 @@ snapshots: nopt: 5.0.0 npmlog: 6.0.2 rimraf: 3.0.2 - semver: 7.7.4 - tar: 6.2.1 - which: 2.0.2 - transitivePeerDependencies: - - bluebird - - supports-color - - node-gyp@9.4.1: - dependencies: - env-paths: 2.2.1 - exponential-backoff: 3.1.3 - glob: 7.2.3 - graceful-fs: 4.2.11 - make-fetch-happen: 10.2.1 - nopt: 6.0.0 - npmlog: 6.0.2 - rimraf: 3.0.2 - semver: 7.7.4 + semver: 7.7.1 tar: 6.2.1 which: 2.0.2 transitivePeerDependencies: @@ -30127,9 +28871,7 @@ snapshots: node-int64@0.4.0: {} - node-machine-id@1.1.12: {} - - node-polyfill-webpack-plugin@2.0.1(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)): + node-polyfill-webpack-plugin@2.0.1(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)): dependencies: assert: 2.1.0 browserify-zlib: 0.2.0 @@ -30144,7 +28886,7 @@ snapshots: os-browserify: 0.3.0 path-browserify: 1.0.1 process: 0.11.10 - punycode: 2.3.1 + punycode: 2.1.1 querystring-es3: 0.2.1 readable-stream: 4.7.0 stream-browserify: 3.0.0 @@ -30156,25 +28898,25 @@ snapshots: url: 0.11.4 util: 0.12.5 vm-browserify: 1.1.2 - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) node-preload@0.2.1: dependencies: - process-on-spawn: 1.1.0 + process-on-spawn: 1.0.0 - node-releases@2.0.36: {} + node-releases@2.0.19: {} - nodemon@3.1.14: + nodemon@3.0.2: dependencies: - chokidar: 3.6.0 - debug: 4.4.3(supports-color@5.5.0) + chokidar: 3.5.3 + debug: 4.4.0(supports-color@5.5.0) ignore-by-default: 1.0.1 - minimatch: 10.2.4 + minimatch: 3.1.2 pstree.remy: 1.1.8 - semver: 7.7.4 + semver: 7.7.0 simple-update-notifier: 2.0.0 supports-color: 5.5.0 - touch: 3.1.1 + touch: 3.1.0 undefsafe: 2.0.5 noms@0.0.0: @@ -30182,11 +28924,11 @@ snapshots: inherits: 2.0.4 readable-stream: 1.0.34 - nopt@5.0.0: + nopt@1.0.10: dependencies: abbrev: 1.1.1 - nopt@6.0.0: + nopt@5.0.0: dependencies: abbrev: 1.1.1 @@ -30201,7 +28943,7 @@ snapshots: normalize-package-data@2.5.0: dependencies: hosted-git-info: 2.8.9 - resolve: 1.22.11 + resolve: 1.22.10 semver: 5.7.2 validate-npm-package-license: 3.0.4 @@ -30209,14 +28951,7 @@ snapshots: dependencies: hosted-git-info: 4.1.0 is-core-module: 2.16.1 - semver: 7.7.4 - validate-npm-package-license: 3.0.4 - - normalize-package-data@5.0.0: - dependencies: - hosted-git-info: 6.1.3 - is-core-module: 2.16.1 - semver: 7.7.4 + semver: 7.7.0 validate-npm-package-license: 3.0.4 normalize-path@2.1.1: @@ -30225,6 +28960,8 @@ snapshots: normalize-path@3.0.0: {} + normalize-range@0.1.2: {} + normalize-url@4.5.1: {} normalize-url@6.1.0: {} @@ -30233,10 +28970,6 @@ snapshots: dependencies: npm-normalize-package-bin: 1.0.1 - npm-bundled@3.0.1: - dependencies: - npm-normalize-package-bin: 3.0.1 - npm-bundled@4.0.0: dependencies: npm-normalize-package-bin: 4.0.0 @@ -30247,11 +28980,7 @@ snapshots: npm-install-checks@4.0.0: dependencies: - semver: 7.7.4 - - npm-install-checks@6.3.0: - dependencies: - semver: 7.7.4 + semver: 7.7.1 npm-install-checks@7.1.2: dependencies: @@ -30265,19 +28994,10 @@ snapshots: npm-normalize-package-bin@2.0.0: {} - npm-normalize-package-bin@3.0.1: {} - npm-normalize-package-bin@4.0.0: {} npm-normalize-package-bin@5.0.0: {} - npm-package-arg@10.1.0: - dependencies: - hosted-git-info: 6.1.3 - proc-log: 3.0.0 - semver: 7.7.4 - validate-npm-package-name: 5.0.1 - npm-package-arg@12.0.2: dependencies: hosted-git-info: 8.1.0 @@ -30295,7 +29015,7 @@ snapshots: npm-package-arg@8.1.5: dependencies: hosted-git-info: 4.1.0 - semver: 7.7.4 + semver: 7.7.1 validate-npm-package-name: 3.0.0 npm-packlist@10.0.3: @@ -30310,10 +29030,6 @@ snapshots: npm-bundled: 1.1.2 npm-normalize-package-bin: 1.0.1 - npm-packlist@7.0.4: - dependencies: - ignore-walk: 6.0.5 - npm-pick-manifest@10.0.0: dependencies: npm-install-checks: 7.1.2 @@ -30333,45 +29049,26 @@ snapshots: npm-install-checks: 4.0.0 npm-normalize-package-bin: 1.0.1 npm-package-arg: 8.1.5 - semver: 7.7.4 - - npm-pick-manifest@8.0.2: - dependencies: - npm-install-checks: 6.3.0 - npm-normalize-package-bin: 3.0.1 - npm-package-arg: 10.1.0 - semver: 7.7.4 + semver: 7.7.1 npm-registry-fetch@12.0.2: dependencies: make-fetch-happen: 10.2.1 minipass: 3.3.6 minipass-fetch: 1.4.1 - minipass-json-stream: 1.0.2 + minipass-json-stream: 1.0.1 minizlib: 2.1.2 npm-package-arg: 8.1.5 transitivePeerDependencies: - bluebird - supports-color - npm-registry-fetch@14.0.5: - dependencies: - make-fetch-happen: 11.1.1 - minipass: 5.0.0 - minipass-fetch: 3.0.5 - minipass-json-stream: 1.0.2 - minizlib: 2.1.2 - npm-package-arg: 10.1.0 - proc-log: 3.0.0 - transitivePeerDependencies: - - supports-color - npm-registry-fetch@19.1.0: dependencies: "@npmcli/redact": 3.2.2 jsonparse: 1.3.1 make-fetch-happen: 15.0.2 - minipass: 7.1.3 + minipass: 7.1.2 minipass-fetch: 4.0.1 minizlib: 3.1.0 npm-package-arg: 13.0.1 @@ -30387,7 +29084,7 @@ snapshots: dependencies: path-key: 3.1.1 - npm-run-path@5.3.0: + npm-run-path@5.1.0: dependencies: path-key: 4.0.0 @@ -30413,58 +29110,58 @@ snapshots: number-is-nan@1.0.1: {} - nwsapi@2.2.23: {} + nwsapi@2.2.7: {} - nx@22.5.4(@swc/core@1.15.18): + nx@22.6.5(@swc/core@1.15.30): 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.13.6 + axios: 1.15.0 cli-cursor: 3.1.0 cli-spinners: 2.6.1 cliui: 8.0.1 - dotenv: 16.4.7 + dotenv: 16.4.5 dotenv-expand: 11.0.7 - ejs: 3.1.10 + ejs: 5.0.1 enquirer: 2.3.6 figures: 3.2.0 flat: 5.0.2 front-matter: 4.0.2 ignore: 7.0.5 - jest-diff: 30.2.0 + jest-diff: 30.3.0 jsonc-parser: 3.2.0 lines-and-columns: 2.0.3 minimatch: 10.2.4 - node-machine-id: 1.1.12 npm-run-path: 4.0.1 open: 8.4.2 ora: 5.3.0 picocolors: 1.1.1 resolve.exports: 2.0.3 semver: 7.7.2 + smol-toml: 1.6.1 string-width: 4.2.3 tar-stream: 2.2.0 - tmp: 0.2.5 + tmp: 0.2.3 tree-kill: 1.2.2 tsconfig-paths: 4.2.0 tslib: 2.8.1 - yaml: 2.8.2 + yaml: 2.7.0 yargs: 17.7.2 yargs-parser: 21.1.1 optionalDependencies: - "@nx/nx-darwin-arm64": 22.5.4 - "@nx/nx-darwin-x64": 22.5.4 - "@nx/nx-freebsd-x64": 22.5.4 - "@nx/nx-linux-arm-gnueabihf": 22.5.4 - "@nx/nx-linux-arm64-gnu": 22.5.4 - "@nx/nx-linux-arm64-musl": 22.5.4 - "@nx/nx-linux-x64-gnu": 22.5.4 - "@nx/nx-linux-x64-musl": 22.5.4 - "@nx/nx-win32-arm64-msvc": 22.5.4 - "@nx/nx-win32-x64-msvc": 22.5.4 - "@swc/core": 1.15.18 + "@nx/nx-darwin-arm64": 22.6.5 + "@nx/nx-darwin-x64": 22.6.5 + "@nx/nx-freebsd-x64": 22.6.5 + "@nx/nx-linux-arm-gnueabihf": 22.6.5 + "@nx/nx-linux-arm64-gnu": 22.6.5 + "@nx/nx-linux-arm64-musl": 22.6.5 + "@nx/nx-linux-x64-gnu": 22.6.5 + "@nx/nx-linux-x64-musl": 22.6.5 + "@nx/nx-win32-arm64-msvc": 22.6.5 + "@nx/nx-win32-x64-msvc": 22.6.5 + "@swc/core": 1.15.30 transitivePeerDependencies: - debug @@ -30480,17 +29177,17 @@ snapshots: foreground-child: 2.0.0 get-package-type: 0.1.0 glob: 7.2.3 - istanbul-lib-coverage: 3.2.2 + istanbul-lib-coverage: 3.2.0 istanbul-lib-hook: 3.0.0 istanbul-lib-instrument: 4.0.3 istanbul-lib-processinfo: 2.0.3 - istanbul-lib-report: 3.0.1 + istanbul-lib-report: 3.0.0 istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.2.0 + istanbul-reports: 3.1.6 make-dir: 3.1.0 node-preload: 0.2.1 p-map: 3.0.0 - process-on-spawn: 1.1.0 + process-on-spawn: 1.0.0 resolve-from: 5.0.0 rimraf: 3.0.2 signal-exit: 3.0.7 @@ -30502,64 +29199,60 @@ snapshots: object-assign@4.1.1: {} - object-inspect@1.13.4: {} + object-inspect@1.13.3: {} - object-is@1.1.6: + object-is@1.1.5: dependencies: - call-bind: 1.0.8 - define-properties: 1.2.1 + call-bind: 1.0.7 + define-properties: 1.1.4 object-keys@1.1.1: {} object-treeify@1.1.33: {} - object.assign@4.1.7: + object.assign@4.1.4: dependencies: - call-bind: 1.0.8 - call-bound: 1.0.4 - define-properties: 1.2.1 - es-object-atoms: 1.1.1 + call-bind: 1.0.7 + define-properties: 1.1.4 has-symbols: 1.1.0 object-keys: 1.1.1 objectorarray@1.0.5: {} - oclif@3.17.2(@swc/core@1.15.18)(@types/node@16.18.126)(encoding@0.1.13)(mem-fs@2.3.0)(typescript@5.3.2): + oclif@3.4.3(encoding@0.1.13)(mem-fs-editor@9.5.0(mem-fs@2.2.1))(mem-fs@2.2.1): dependencies: - "@oclif/core": 2.16.0(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2) - "@oclif/plugin-help": 5.2.20(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2) - "@oclif/plugin-not-found": 2.4.3(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2) - "@oclif/plugin-warn-if-update-available": 2.1.1(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2) - async-retry: 1.3.3 - aws-sdk: 2.1693.0 + "@oclif/core": 1.23.1 + "@oclif/plugin-help": 5.1.22 + "@oclif/plugin-not-found": 2.3.13 + "@oclif/plugin-warn-if-update-available": 2.0.18 + aws-sdk: 2.1288.0 concurrently: 7.6.0 - debug: 4.4.3 + debug: 4.4.0 find-yarn-workspace-root: 2.0.0 fs-extra: 8.1.0 github-slugger: 1.5.0 got: 11.8.6 - lodash: 4.17.23 + lodash: 4.17.21 normalize-package-data: 3.0.3 - semver: 7.7.4 - shelljs: 0.8.5 + semver: 7.7.0 tslib: 2.8.1 - yeoman-environment: 3.19.3(@types/node@16.18.126) - yeoman-generator: 5.10.0(encoding@0.1.13)(mem-fs@2.3.0)(yeoman-environment@3.19.3(@types/node@16.18.126)) + yeoman-environment: 3.13.0(mem-fs-editor@9.5.0(mem-fs@2.2.1))(mem-fs@2.2.1) + yeoman-generator: 5.7.0(encoding@0.1.13)(yeoman-environment@3.13.0(mem-fs-editor@9.5.0(mem-fs@2.2.1))(mem-fs@2.2.1)) + yosay: 2.0.2 transitivePeerDependencies: - - "@swc/core" - - "@swc/wasm" - - "@types/node" - bluebird - encoding - mem-fs + - mem-fs-editor - supports-color - - typescript + + on-exit-leak-free@2.1.2: {} on-finished@2.4.1: dependencies: ee-first: 1.1.1 - on-headers@1.1.0: {} + on-headers@1.0.2: {} once@1.4.0: dependencies: @@ -30597,7 +29290,7 @@ snapshots: 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 @@ -30641,7 +29334,7 @@ snapshots: p-limit@4.0.0: dependencies: - yocto-queue: 1.2.2 + yocto-queue: 1.1.1 p-locate@2.0.0: dependencies: @@ -30688,7 +29381,7 @@ snapshots: p-transform@1.3.0: dependencies: - debug: 4.4.3 + debug: 4.4.0 p-queue: 6.6.2 transitivePeerDependencies: - supports-color @@ -30736,31 +29429,7 @@ snapshots: promise-retry: 2.0.1 read-package-json-fast: 2.0.3 rimraf: 3.0.2 - ssri: 8.0.1 - tar: 6.2.1 - transitivePeerDependencies: - - bluebird - - supports-color - - pacote@15.2.0: - dependencies: - "@npmcli/git": 4.1.0 - "@npmcli/installed-package-contents": 2.1.0 - "@npmcli/promise-spawn": 6.0.2 - "@npmcli/run-script": 6.0.2 - cacache: 17.1.4 - fs-minipass: 3.0.3 - minipass: 5.0.0 - npm-package-arg: 10.1.0 - npm-packlist: 7.0.4 - npm-pick-manifest: 8.0.2 - npm-registry-fetch: 14.0.5 - proc-log: 3.0.0 - promise-retry: 2.0.1 - read-package-json: 6.0.4 - read-package-json-fast: 3.0.2 - sigstore: 1.9.0 - ssri: 10.0.6 + ssri: 8.0.1 tar: 6.2.1 transitivePeerDependencies: - bluebird @@ -30773,9 +29442,9 @@ snapshots: "@npmcli/package-json": 7.0.2 "@npmcli/promise-spawn": 8.0.3 "@npmcli/run-script": 10.0.3 - cacache: 20.0.3 + cacache: 20.0.4 fs-minipass: 3.0.3 - minipass: 7.1.3 + minipass: 7.1.2 npm-package-arg: 13.0.1 npm-packlist: 10.0.3 npm-pick-manifest: 10.0.0 @@ -30784,21 +29453,21 @@ snapshots: promise-retry: 2.0.1 sigstore: 4.1.0 ssri: 12.0.0 - tar: 7.5.8 + tar: 7.5.11 transitivePeerDependencies: - supports-color - pacote@21.4.0: + pacote@21.5.0: dependencies: - "@gar/promise-retry": 1.0.2 + "@gar/promise-retry": 1.0.3 "@npmcli/git": 7.0.2 "@npmcli/installed-package-contents": 4.0.0 "@npmcli/package-json": 7.0.2 "@npmcli/promise-spawn": 9.0.1 "@npmcli/run-script": 10.0.3 - cacache: 20.0.3 + cacache: 20.0.4 fs-minipass: 3.0.3 - minipass: 7.1.3 + minipass: 7.1.2 npm-package-arg: 13.0.1 npm-packlist: 10.0.3 npm-pick-manifest: 11.0.3 @@ -30806,10 +29475,12 @@ snapshots: proc-log: 6.1.0 sigstore: 4.1.0 ssri: 13.0.1 - tar: 7.5.8 + tar: 7.5.11 transitivePeerDependencies: - supports-color + pad-component@0.0.1: {} + pako@1.0.11: {} papaparse@5.5.3: {} @@ -30823,12 +29494,13 @@ snapshots: dependencies: callsites: 3.1.0 - parse-asn1@5.1.9: + parse-asn1@5.1.7: dependencies: asn1.js: 4.10.1 browserify-aes: 1.2.0 evp_bytestokey: 1.0.3 - pbkdf2: 3.1.5 + hash-base: 3.0.5 + pbkdf2: 3.1.2 safe-buffer: 5.2.1 parse-cache-control@1.0.1: {} @@ -30853,29 +29525,29 @@ snapshots: parse-json@4.0.0: dependencies: - error-ex: 1.3.4 + error-ex: 1.3.2 json-parse-better-errors: 1.0.2 parse-json@5.2.0: dependencies: - "@babel/code-frame": 7.29.0 - error-ex: 1.3.4 + "@babel/code-frame": 7.26.2 + error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - parse-path@7.1.0: + parse-path@7.0.0: dependencies: - protocols: 2.0.2 + protocols: 2.0.1 parse-srcset@1.0.2: {} parse-url@8.1.0: dependencies: - parse-path: 7.1.0 + parse-path: 7.0.0 - parse5@7.3.0: + parse5@7.1.2: dependencies: - entities: 6.0.1 + entities: 4.5.0 parseurl@1.3.3: {} @@ -30884,10 +29556,10 @@ snapshots: no-case: 3.0.4 tslib: 2.8.1 - password-prompt@1.1.3: + password-prompt@1.1.2: dependencies: - ansi-escapes: 4.3.2 - cross-spawn: 7.0.6 + ansi-escapes: 3.2.0 + cross-spawn: 6.0.5 path-browserify@1.0.1: {} @@ -30920,17 +29592,12 @@ snapshots: dependencies: path-root-regex: 0.1.2 - path-scurry@1.11.1: - dependencies: - lru-cache: 10.4.3 - minipass: 7.1.3 - path-scurry@2.0.2: dependencies: - lru-cache: 11.2.6 - minipass: 7.1.3 + lru-cache: 11.3.5 + minipass: 7.1.2 - path-to-regexp@0.1.12: {} + path-to-regexp@0.1.10: {} path-type@3.0.0: dependencies: @@ -30945,16 +29612,15 @@ snapshots: pathval@1.1.1: {} - pathval@2.0.1: {} + pathval@2.0.0: {} - pbkdf2@3.1.5: + pbkdf2@3.1.2: dependencies: create-hash: 1.2.0 create-hmac: 1.1.7 - ripemd160: 2.0.3 + ripemd160: 2.0.2 safe-buffer: 5.2.1 - sha.js: 2.4.12 - to-buffer: 1.2.2 + sha.js: 2.4.11 pend@1.2.0: {} @@ -30964,7 +29630,7 @@ snapshots: picomatch@2.3.1: {} - picomatch@4.0.3: {} + picomatch@4.0.4: {} pidtree@0.6.0: {} @@ -30974,9 +29640,27 @@ snapshots: pify@4.0.1: {} - pify@5.0.0: {} + pino-abstract-transport@2.0.0: + dependencies: + split2: 4.2.0 + + pino-std-serializers@7.0.0: {} - pirates@4.0.7: {} + pino@9.7.0: + dependencies: + atomic-sleep: 1.0.0 + fast-redact: 3.5.0 + on-exit-leak-free: 2.1.2 + pino-abstract-transport: 2.0.0 + pino-std-serializers: 7.0.0 + process-warning: 5.0.0 + quick-format-unescaped: 4.0.4 + real-require: 0.2.0 + safe-stable-stringify: 2.5.0 + sonic-boom: 4.2.0 + thread-stream: 3.1.0 + + pirates@4.0.6: {} pkg-dir@4.2.0: dependencies: @@ -30986,123 +29670,121 @@ snapshots: dependencies: find-up: 6.3.0 - pnp-webpack-plugin@1.7.0(typescript@5.3.2): + pnp-webpack-plugin@1.7.0(typescript@5.4.5): dependencies: - ts-pnp: 1.2.0(typescript@5.3.2) + ts-pnp: 1.2.0(typescript@5.4.5) transitivePeerDependencies: - typescript polished@4.3.1: dependencies: - "@babel/runtime": 7.28.6 + "@babel/runtime": 7.26.7 - possible-typed-array-names@1.1.0: {} - - postcss-loader@8.2.1(postcss@8.5.8)(typescript@5.3.2)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)): + postcss-loader@8.1.1(postcss@8.5.1)(typescript@5.4.5)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)): dependencies: - cosmiconfig: 9.0.1(typescript@5.3.2) - jiti: 2.6.1 - postcss: 8.5.8 - semver: 7.7.4 + cosmiconfig: 9.0.0(typescript@5.4.5) + jiti: 1.21.7 + postcss: 8.5.1 + semver: 7.7.1 optionalDependencies: - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) transitivePeerDependencies: - typescript postcss-media-query-parser@0.2.3: {} - postcss-modules-extract-imports@3.1.0(postcss@8.5.8): + postcss-modules-extract-imports@3.1.0(postcss@8.5.1): dependencies: - postcss: 8.5.8 + postcss: 8.5.1 - postcss-modules-local-by-default@4.2.0(postcss@8.5.8): + postcss-modules-local-by-default@4.2.0(postcss@8.5.1): dependencies: - icss-utils: 5.1.0(postcss@8.5.8) - postcss: 8.5.8 - postcss-selector-parser: 7.1.1 + icss-utils: 5.1.0(postcss@8.5.1) + postcss: 8.5.1 + postcss-selector-parser: 7.0.0 postcss-value-parser: 4.2.0 - postcss-modules-scope@3.2.1(postcss@8.5.8): + postcss-modules-scope@3.2.1(postcss@8.5.1): dependencies: - postcss: 8.5.8 - postcss-selector-parser: 7.1.1 + postcss: 8.5.1 + postcss-selector-parser: 7.0.0 - postcss-modules-values@4.0.0(postcss@8.5.8): + postcss-modules-values@4.0.0(postcss@8.5.1): dependencies: - icss-utils: 5.1.0(postcss@8.5.8) - postcss: 8.5.8 + icss-utils: 5.1.0(postcss@8.5.1) + postcss: 8.5.1 - postcss-resolve-nested-selector@0.1.6: {} + postcss-resolve-nested-selector@0.1.1: {} - postcss-safe-parser@6.0.0(postcss@8.5.8): + postcss-safe-parser@6.0.0(postcss@8.5.1): dependencies: - postcss: 8.5.8 + postcss: 8.5.1 - postcss-scss@4.0.9(postcss@8.5.8): + postcss-scss@4.0.6(postcss@8.5.1): dependencies: - postcss: 8.5.8 + postcss: 8.5.1 - postcss-selector-parser@6.1.2: + postcss-selector-parser@6.0.11: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-selector-parser@7.1.1: + postcss-selector-parser@7.0.0: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-sorting@7.0.1(postcss@8.5.8): + postcss-sorting@7.0.1(postcss@8.5.1): dependencies: - postcss: 8.5.8 + postcss: 8.5.1 postcss-value-parser@4.2.0: {} postcss@8.4.31: dependencies: - nanoid: 3.3.11 + nanoid: 3.3.8 picocolors: 1.1.1 source-map-js: 1.2.1 - postcss@8.5.8: + postcss@8.5.1: dependencies: - nanoid: 3.3.11 + nanoid: 3.3.8 picocolors: 1.1.1 source-map-js: 1.2.1 - prebuild-install@7.1.3: + prebuild-install@7.1.1: dependencies: - detect-libc: 2.1.2 + detect-libc: 2.0.3 expand-template: 2.0.3 github-from-package: 0.0.0 minimist: 1.2.8 mkdirp-classic: 0.5.3 - napi-build-utils: 2.0.0 - node-abi: 3.87.0 - pump: 3.0.4 + napi-build-utils: 1.0.2 + node-abi: 3.33.0 + pump: 3.0.0 rc: 1.2.8 simple-get: 4.0.1 - tar-fs: 2.1.4 + tar-fs: 2.1.1 tunnel-agent: 0.6.0 - preferred-pm@3.1.4: + preferred-pm@3.0.3: dependencies: find-up: 5.0.0 find-yarn-workspace-root2: 1.2.16 path-exists: 4.0.0 - which-pm: 2.2.0 + which-pm: 2.0.0 prepend-http@2.0.0: {} - prettier@2.8.8: {} + prettier@2.8.3: {} - prettier@3.8.1: {} + prettier@3.3.3: {} pretty-bytes@5.6.0: {} pretty-error@4.0.0: dependencies: - lodash: 4.17.23 + lodash: 4.17.21 renderkid: 3.0.0 pretty-format@27.5.1: @@ -31115,9 +29797,9 @@ snapshots: dependencies: "@jest/schemas": 29.6.3 ansi-styles: 5.2.0 - react-is: 18.3.1 + react-is: 18.2.0 - pretty-format@30.2.0: + pretty-format@30.3.0: dependencies: "@jest/schemas": 30.0.5 ansi-styles: 5.2.0 @@ -31127,18 +29809,18 @@ snapshots: proc-log@1.0.0: {} - proc-log@3.0.0: {} - proc-log@5.0.0: {} proc-log@6.1.0: {} process-nextick-args@2.0.1: {} - process-on-spawn@1.1.0: + process-on-spawn@1.0.0: dependencies: fromentries: 1.3.2 + process-warning@5.0.0: {} + process@0.11.10: {} proggy@3.0.0: {} @@ -31175,7 +29857,7 @@ snapshots: object-assign: 4.1.1 react-is: 16.13.1 - protocols@2.0.2: {} + protocols@2.0.1: {} proxy-addr@2.0.7: dependencies: @@ -31186,53 +29868,57 @@ snapshots: proxy-from-env@1.1.0: {} + proxy-from-env@2.1.0: {} + ps-list@8.1.1: {} pseudomap@1.0.2: {} - psl@1.15.0: - dependencies: - punycode: 2.3.1 + psl@1.9.0: {} pstree.remy@1.1.8: {} public-encrypt@4.0.3: dependencies: - bn.js: 4.12.3 + bn.js: 4.12.1 browserify-rsa: 4.1.1 create-hash: 1.2.0 - parse-asn1: 5.1.9 + parse-asn1: 5.1.7 randombytes: 2.1.0 safe-buffer: 5.2.1 - pump@3.0.4: + pump@3.0.0: dependencies: - end-of-stream: 1.4.5 + end-of-stream: 1.4.4 once: 1.4.0 punycode@1.3.2: {} punycode@1.4.1: {} - punycode@2.3.1: {} + punycode@2.1.1: {} - pure-rand@6.1.0: {} + pure-rand@6.0.2: {} - pvtsutils@1.3.6: + pvtsutils@1.3.2: dependencies: tslib: 2.8.1 - pvutils@1.1.5: {} + pvutils@1.1.3: {} + + qs@6.10.5: + dependencies: + side-channel: 1.1.0 - qs@6.10.7: + qs@6.11.0: dependencies: side-channel: 1.1.0 - qs@6.14.2: + qs@6.13.0: dependencies: side-channel: 1.1.0 - qs@6.15.0: + qs@6.14.0: dependencies: side-channel: 1.1.0 @@ -31244,10 +29930,14 @@ snapshots: queue-microtask@1.2.3: {} + queue-tick@1.0.1: {} + queue@6.0.2: dependencies: inherits: 2.0.4 + quick-format-unescaped@4.0.4: {} + quick-lru@4.0.1: {} quick-lru@5.1.1: {} @@ -31271,10 +29961,10 @@ snapshots: timed-out: 4.0.1 uuid: 3.3.2 - raw-body@2.5.3: + raw-body@2.5.2: dependencies: bytes: 3.1.2 - http-errors: 2.0.1 + http-errors: 2.0.0 iconv-lite: 0.4.24 unpipe: 1.0.0 @@ -31285,27 +29975,27 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - react-confetti@6.4.0(react@18.3.1): + react-confetti@6.2.2(react@18.3.1): dependencies: react: 18.3.1 tween-functions: 1.2.0 - react-docgen-typescript@2.4.0(typescript@5.3.2): + react-docgen-typescript@2.2.2(typescript@5.4.5): dependencies: - typescript: 5.3.2 + typescript: 5.4.5 react-docgen@7.1.1: dependencies: - "@babel/core": 7.29.0 - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 + "@babel/core": 7.26.7 + "@babel/traverse": 7.26.7 + "@babel/types": 7.26.7 "@types/babel__core": 7.20.5 - "@types/babel__traverse": 7.28.0 + "@types/babel__traverse": 7.20.6 "@types/doctrine": 0.0.9 "@types/resolve": 1.20.6 doctrine: 3.0.0 - resolve: 1.22.11 - strip-indent: 4.1.1 + resolve: 1.22.10 + strip-indent: 4.0.0 transitivePeerDependencies: - supports-color @@ -31324,7 +30014,7 @@ snapshots: react-error-boundary@3.1.4(react@18.3.1): dependencies: - "@babel/runtime": 7.28.6 + "@babel/runtime": 7.26.7 react: 18.3.1 react-intersection-observer@8.34.0(react@18.3.1): @@ -31335,11 +30025,13 @@ snapshots: react-is@17.0.2: {} + react-is@18.2.0: {} + react-is@18.3.1: {} react-refresh@0.14.2: {} - react-swipeable@7.0.2(react@18.3.1): + react-swipeable@7.0.0(react@18.3.1): dependencies: react: 18.3.1 @@ -31358,18 +30050,6 @@ snapshots: json-parse-even-better-errors: 2.3.1 npm-normalize-package-bin: 1.0.1 - read-package-json-fast@3.0.2: - dependencies: - json-parse-even-better-errors: 3.0.2 - npm-normalize-package-bin: 3.0.1 - - read-package-json@6.0.4: - dependencies: - glob: 10.5.0 - json-parse-even-better-errors: 3.0.2 - normalize-package-data: 5.0.0 - npm-normalize-package-bin: 3.0.1 - read-pkg-up@3.0.0: dependencies: find-up: 2.1.0 @@ -31440,16 +30120,18 @@ snapshots: dependencies: picomatch: 2.3.1 - readdirp@4.1.2: {} + readdirp@4.1.1: {} + + real-require@0.2.0: {} realistic-structured-clone@2.0.4: dependencies: - core-js: 3.48.0 + core-js: 3.27.1 domexception: 1.0.1 typeson: 6.1.0 typeson-registry: 1.0.0-alpha.39 - recast@0.23.11: + recast@0.23.9: dependencies: ast-types: 0.16.1 esprima: 4.0.1 @@ -31459,7 +30141,7 @@ snapshots: rechoir@0.6.2: dependencies: - resolve: 1.22.11 + resolve: 1.22.10 redent@3.0.0: dependencies: @@ -31470,31 +30152,34 @@ snapshots: dependencies: esprima: 4.0.1 - regenerate-unicode-properties@10.2.2: + regenerate-unicode-properties@10.2.0: dependencies: regenerate: 1.4.2 regenerate@1.4.2: {} - regex-parser@2.3.1: {} + regenerator-runtime@0.14.1: {} - regexp.prototype.flags@1.5.4: + regenerator-transform@0.15.2: dependencies: - call-bind: 1.0.8 - define-properties: 1.2.1 - es-errors: 1.3.0 - get-proto: 1.0.1 - gopd: 1.2.0 - set-function-name: 2.0.2 + "@babel/runtime": 7.26.7 - regexpu-core@6.4.0: + regex-parser@2.3.0: {} + + regexp.prototype.flags@1.4.3: + dependencies: + call-bind: 1.0.7 + define-properties: 1.1.4 + functions-have-names: 1.2.3 + + regexpu-core@6.2.0: dependencies: regenerate: 1.4.2 - regenerate-unicode-properties: 10.2.2 + regenerate-unicode-properties: 10.2.0 regjsgen: 0.8.0 - regjsparser: 0.13.0 + regjsparser: 0.12.0 unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.2.1 + unicode-match-property-value-ecmascript: 2.2.0 registry-auth-token@4.2.2: dependencies: @@ -31506,16 +30191,16 @@ snapshots: regjsgen@0.8.0: {} - regjsparser@0.13.0: + regjsparser@0.12.0: dependencies: - jsesc: 3.1.0 + jsesc: 3.0.2 relateurl@0.2.7: {} relay-runtime@12.0.0(encoding@0.1.13): dependencies: - "@babel/runtime": 7.28.6 - fbjs: 3.0.5(encoding@0.1.13) + "@babel/runtime": 7.26.7 + fbjs: 3.0.4(encoding@0.1.13) invariant: 2.2.4 transitivePeerDependencies: - encoding @@ -31528,21 +30213,21 @@ snapshots: remove-trailing-separator@1.1.0: {} - remove-trailing-spaces@1.0.9: {} + remove-trailing-spaces@1.0.8: {} renderkid@3.0.0: dependencies: css-select: 4.3.0 dom-converter: 0.2.0 htmlparser2: 6.1.0 - lodash: 4.17.23 + lodash: 4.17.21 strip-ansi: 6.0.1 replace-ext@1.0.1: {} request-progress@3.0.0: dependencies: - throttleit: 1.0.1 + throttleit: 1.0.0 require-directory@2.1.1: {} @@ -31569,12 +30254,14 @@ snapshots: adjust-sourcemap-loader: 4.0.0 convert-source-map: 1.9.0 loader-utils: 2.0.4 - postcss: 8.5.8 + postcss: 8.5.1 source-map: 0.6.1 + resolve.exports@2.0.2: {} + resolve.exports@2.0.3: {} - resolve@1.22.11: + resolve@1.22.10: dependencies: is-core-module: 2.16.1 path-parse: 1.0.7 @@ -31605,9 +30292,7 @@ snapshots: retry@0.12.0: {} - retry@0.13.1: {} - - reusify@1.1.0: {} + reusify@1.0.4: {} rfdc@1.4.1: {} @@ -31619,19 +30304,14 @@ snapshots: dependencies: glob: 7.2.3 - rimraf@6.1.3: - dependencies: - glob: 13.0.6 - package-json-from-dist: 1.0.1 - - ripemd160@2.0.3: + ripemd160@2.0.2: dependencies: - hash-base: 3.1.2 + hash-base: 3.1.0 inherits: 2.0.4 - robots-parser@3.0.1: {} + robots-parser@3.0.0: {} - rollup@2.80.0: + rollup@2.79.2: optionalDependencies: fsevents: 2.3.3 @@ -31647,6 +30327,10 @@ snapshots: dependencies: tslib: 1.14.1 + rxjs@7.8.1: + dependencies: + tslib: 2.8.1 + rxjs@7.8.2: dependencies: tslib: 2.8.1 @@ -31657,48 +30341,46 @@ snapshots: safe-buffer@5.2.1: {} - safe-regex-test@1.1.0: - dependencies: - call-bound: 1.0.4 - es-errors: 1.3.0 - is-regex: 1.2.1 + safe-stable-stringify@2.5.0: {} safer-buffer@2.1.2: {} - sanitize-html@2.17.1: + sanitize-html@2.12.1: dependencies: deepmerge: 4.3.1 escape-string-regexp: 4.0.0 htmlparser2: 8.0.2 is-plain-object: 5.0.0 parse-srcset: 1.0.2 - postcss: 8.5.8 + postcss: 8.5.1 - sass-loader@12.6.0(sass@1.97.3)(webpack@5.105.4(@swc/core@1.15.18)): + sass-loader@12.6.0(sass@1.83.4)(webpack@5.97.1(@swc/core@1.15.30)): dependencies: klona: 2.0.6 neo-async: 2.6.2 - webpack: 5.105.4(@swc/core@1.15.18) + webpack: 5.97.1(@swc/core@1.15.30) optionalDependencies: - sass: 1.97.3 + sass: 1.83.4 - sass-loader@14.2.1(sass@1.97.3)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)): + sass-loader@14.2.1(sass@1.83.4)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)): dependencies: neo-async: 2.6.2 optionalDependencies: - sass: 1.97.3 - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) + sass: 1.83.4 + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) - sass@1.97.3: + sass@1.83.4: dependencies: chokidar: 4.0.3 - immutable: 5.1.5 + immutable: 5.0.3 source-map-js: 1.2.1 optionalDependencies: - "@parcel/watcher": 2.5.6 + "@parcel/watcher": 2.5.1 sax@1.2.1: {} + sax@1.2.4: {} + saxes@6.0.0: dependencies: xmlchars: 2.2.0 @@ -31710,21 +30392,21 @@ snapshots: schema-utils@2.7.1: dependencies: "@types/json-schema": 7.0.15 - ajv: 6.14.0 - ajv-keywords: 3.5.2(ajv@6.14.0) + ajv: 6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) schema-utils@3.3.0: dependencies: "@types/json-schema": 7.0.15 - ajv: 6.14.0 - ajv-keywords: 3.5.2(ajv@6.14.0) + ajv: 6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) - schema-utils@4.3.3: + schema-utils@4.3.0: dependencies: "@types/json-schema": 7.0.15 - ajv: 8.18.0 - ajv-formats: 2.1.1(ajv@8.18.0) - ajv-keywords: 5.1.0(ajv@8.18.0) + ajv: 8.17.1 + ajv-formats: 2.1.1(ajv@8.17.1) + ajv-keywords: 5.1.0(ajv@8.17.1) scoped-regex@2.1.0: {} @@ -31742,25 +30424,45 @@ snapshots: dependencies: lru-cache: 6.0.0 + semver@7.7.0: {} + + semver@7.7.1: {} + semver@7.7.2: {} - semver@7.7.4: {} + send@0.18.0: + dependencies: + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 2.0.0 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: 1.2.1 + statuses: 2.0.1 + transitivePeerDependencies: + - supports-color - send@0.19.2: + send@0.19.0: dependencies: debug: 2.6.9 depd: 2.0.0 destroy: 1.2.0 - encodeurl: 2.0.0 + encodeurl: 1.0.2 escape-html: 1.0.3 etag: 1.8.1 fresh: 0.5.2 - http-errors: 2.0.1 + http-errors: 2.0.0 mime: 1.6.0 ms: 2.1.3 on-finished: 2.4.1 range-parser: 1.2.1 - statuses: 2.0.2 + statuses: 2.0.1 transitivePeerDependencies: - supports-color @@ -31770,12 +30472,16 @@ snapshots: tslib: 2.8.1 upper-case-first: 2.0.2 - serve-static@1.16.3: + serialize-javascript@6.0.2: dependencies: - encodeurl: 2.0.0 + randombytes: 2.1.0 + + serve-static@1.16.0: + dependencies: + encodeurl: 1.0.2 escape-html: 1.0.3 parseurl: 1.3.3 - send: 0.19.2 + send: 0.18.0 transitivePeerDependencies: - supports-color @@ -31786,47 +30492,35 @@ snapshots: define-data-property: 1.1.4 es-errors: 1.3.0 function-bind: 1.1.2 - get-intrinsic: 1.3.0 + get-intrinsic: 1.2.6 gopd: 1.2.0 has-property-descriptors: 1.0.2 - set-function-name@2.0.2: - dependencies: - define-data-property: 1.1.4 - es-errors: 1.3.0 - functions-have-names: 1.2.3 - has-property-descriptors: 1.0.2 - setimmediate@1.0.5: {} setprototypeof@1.2.0: {} - sha.js@2.4.12: + sha.js@2.4.11: dependencies: inherits: 2.0.4 safe-buffer: 5.2.1 - to-buffer: 1.2.2 sharp@0.32.6: dependencies: color: 4.2.3 - detect-libc: 2.1.2 + detect-libc: 2.0.3 node-addon-api: 6.1.0 - prebuild-install: 7.1.3 - semver: 7.7.4 + prebuild-install: 7.1.1 + semver: 7.7.0 simple-get: 4.0.1 - tar-fs: 3.1.2 + tar-fs: 3.0.4 tunnel-agent: 0.6.0 - transitivePeerDependencies: - - bare-abort-controller - - bare-buffer - - react-native-b4a sharp@0.33.5: dependencies: color: 4.2.3 - detect-libc: 2.1.2 - semver: 7.7.4 + detect-libc: 2.0.3 + semver: 7.7.1 optionalDependencies: "@img/sharp-darwin-arm64": 0.33.5 "@img/sharp-darwin-x64": 0.33.5 @@ -31849,38 +30543,6 @@ snapshots: "@img/sharp-win32-x64": 0.33.5 optional: true - sharp@0.34.5: - dependencies: - "@img/colour": 1.1.0 - detect-libc: 2.1.2 - semver: 7.7.4 - optionalDependencies: - "@img/sharp-darwin-arm64": 0.34.5 - "@img/sharp-darwin-x64": 0.34.5 - "@img/sharp-libvips-darwin-arm64": 1.2.4 - "@img/sharp-libvips-darwin-x64": 1.2.4 - "@img/sharp-libvips-linux-arm": 1.2.4 - "@img/sharp-libvips-linux-arm64": 1.2.4 - "@img/sharp-libvips-linux-ppc64": 1.2.4 - "@img/sharp-libvips-linux-riscv64": 1.2.4 - "@img/sharp-libvips-linux-s390x": 1.2.4 - "@img/sharp-libvips-linux-x64": 1.2.4 - "@img/sharp-libvips-linuxmusl-arm64": 1.2.4 - "@img/sharp-libvips-linuxmusl-x64": 1.2.4 - "@img/sharp-linux-arm": 0.34.5 - "@img/sharp-linux-arm64": 0.34.5 - "@img/sharp-linux-ppc64": 0.34.5 - "@img/sharp-linux-riscv64": 0.34.5 - "@img/sharp-linux-s390x": 0.34.5 - "@img/sharp-linux-x64": 0.34.5 - "@img/sharp-linuxmusl-arm64": 0.34.5 - "@img/sharp-linuxmusl-x64": 0.34.5 - "@img/sharp-wasm32": 0.34.5 - "@img/sharp-win32-arm64": 0.34.5 - "@img/sharp-win32-ia32": 0.34.5 - "@img/sharp-win32-x64": 0.34.5 - optional: true - shebang-command@1.2.0: dependencies: shebang-regex: 1.0.0 @@ -31893,7 +30555,7 @@ snapshots: shebang-regex@3.0.0: {} - shell-quote@1.8.3: {} + shell-quote@1.7.4: {} shelljs@0.8.5: dependencies: @@ -31909,27 +30571,27 @@ snapshots: side-channel-list@1.0.0: dependencies: es-errors: 1.3.0 - object-inspect: 1.13.4 + object-inspect: 1.13.3 side-channel-map@1.0.1: dependencies: - call-bound: 1.0.4 + call-bound: 1.0.3 es-errors: 1.3.0 - get-intrinsic: 1.3.0 - object-inspect: 1.13.4 + get-intrinsic: 1.2.6 + object-inspect: 1.13.3 side-channel-weakmap@1.0.2: dependencies: - call-bound: 1.0.4 + call-bound: 1.0.3 es-errors: 1.3.0 - get-intrinsic: 1.3.0 - object-inspect: 1.13.4 + get-intrinsic: 1.2.6 + object-inspect: 1.13.3 side-channel-map: 1.0.1 side-channel@1.1.0: dependencies: es-errors: 1.3.0 - object-inspect: 1.13.4 + object-inspect: 1.13.3 side-channel-list: 1.0.0 side-channel-map: 1.0.1 side-channel-weakmap: 1.0.2 @@ -31940,23 +30602,13 @@ snapshots: signedsource@1.0.0: {} - sigstore@1.9.0: - dependencies: - "@sigstore/bundle": 1.1.0 - "@sigstore/protobuf-specs": 0.2.1 - "@sigstore/sign": 1.0.0 - "@sigstore/tuf": 1.0.3 - make-fetch-happen: 11.1.1 - transitivePeerDependencies: - - supports-color - sigstore@4.1.0: dependencies: "@sigstore/bundle": 4.0.0 - "@sigstore/core": 3.1.0 - "@sigstore/protobuf-specs": 0.5.0 - "@sigstore/sign": 4.1.0 - "@sigstore/tuf": 4.0.1 + "@sigstore/core": 3.2.0 + "@sigstore/protobuf-specs": 0.5.1 + "@sigstore/sign": 4.1.1 + "@sigstore/tuf": 4.0.2 "@sigstore/verify": 3.1.0 transitivePeerDependencies: - supports-color @@ -31969,25 +30621,25 @@ snapshots: once: 1.4.0 simple-concat: 1.0.1 - simple-swizzle@0.2.4: + simple-swizzle@0.2.2: dependencies: - is-arrayish: 0.3.4 + is-arrayish: 0.3.2 simple-update-notifier@2.0.0: dependencies: - semver: 7.7.4 + semver: 7.7.0 sisteransi@1.0.5: {} size-limit@7.0.8: dependencies: bytes-iec: 3.1.1 - chokidar: 3.6.0 + chokidar: 3.5.3 ci-job-number: 1.2.2 globby: 11.1.0 - lilconfig: 2.1.0 + lilconfig: 2.0.6 mkdirp: 1.0.4 - nanospinner: 1.2.2 + nanospinner: 1.1.0 picocolors: 1.1.1 slash@3.0.0: {} @@ -32008,16 +30660,18 @@ snapshots: slice-ansi@5.0.0: dependencies: - ansi-styles: 6.2.3 + ansi-styles: 6.2.1 is-fullwidth-code-point: 4.0.0 - slice-ansi@7.1.2: + slice-ansi@7.1.0: dependencies: - ansi-styles: 6.2.3 - is-fullwidth-code-point: 5.1.0 + ansi-styles: 6.2.1 + is-fullwidth-code-point: 5.0.0 smart-buffer@4.2.0: {} + smol-toml@1.6.1: {} + snake-case@3.0.4: dependencies: dot-case: 3.0.4 @@ -32026,35 +30680,40 @@ snapshots: socks-proxy-agent@6.2.1: dependencies: agent-base: 6.0.2 - debug: 4.4.3 - socks: 2.8.7 + debug: 4.4.0 + socks: 2.8.3 transitivePeerDependencies: - supports-color socks-proxy-agent@7.0.0: dependencies: agent-base: 6.0.2 - debug: 4.4.3 - socks: 2.8.7 + debug: 4.4.0 + socks: 2.8.3 transitivePeerDependencies: - supports-color socks-proxy-agent@8.0.5: dependencies: - agent-base: 7.1.4 - debug: 4.4.3 - socks: 2.8.7 + agent-base: 7.1.3 + debug: 4.4.0 + socks: 2.8.4 transitivePeerDependencies: - supports-color - socks@2.8.7: + socks@2.8.3: dependencies: - ip-address: 10.1.0 + ip-address: 9.0.5 smart-buffer: 4.2.0 - sort-keys@2.0.0: + socks@2.8.4: dependencies: - is-plain-obj: 1.1.0 + ip-address: 9.0.5 + smart-buffer: 4.2.0 + + sonic-boom@4.2.0: + dependencies: + atomic-sleep: 1.0.0 sort-keys@4.2.0: dependencies: @@ -32074,9 +30733,9 @@ snapshots: source-map@0.6.1: {} - source-map@0.7.6: {} + source-map@0.7.4: {} - spawn-command@0.0.2: {} + spawn-command@0.0.2-1: {} spawn-wrap@2.0.0: dependencies: @@ -32090,20 +30749,20 @@ snapshots: spdx-correct@3.2.0: dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.23 + spdx-license-ids: 3.0.17 spdx-exceptions@2.5.0: {} spdx-expression-parse@3.0.1: dependencies: spdx-exceptions: 2.5.0 - spdx-license-ids: 3.0.23 + spdx-license-ids: 3.0.17 - spdx-license-ids@3.0.23: {} + spdx-license-ids@3.0.17: {} speedline-core@1.4.3: dependencies: - "@types/node": 18.19.130 + "@types/node": 18.19.74 image-ssim: 0.2.0 jpeg-js: 0.4.4 @@ -32111,6 +30770,8 @@ snapshots: dependencies: readable-stream: 3.6.2 + split2@4.2.0: {} + split@1.0.1: dependencies: through: 2.3.8 @@ -32121,7 +30782,9 @@ snapshots: sprintf-js@1.0.3: {} - sshpk@1.18.0: + sprintf-js@1.1.3: {} + + sshpk@1.17.0: dependencies: asn1: 0.2.6 assert-plus: 1.0.0 @@ -32133,17 +30796,13 @@ snapshots: safer-buffer: 2.1.2 tweetnacl: 0.14.5 - ssri@10.0.6: - dependencies: - minipass: 7.1.3 - ssri@12.0.0: dependencies: - minipass: 7.1.3 + minipass: 7.1.2 ssri@13.0.1: dependencies: - minipass: 7.1.3 + minipass: 7.1.2 ssri@8.0.1: dependencies: @@ -32163,18 +30822,17 @@ snapshots: statuses@1.5.0: {} - statuses@2.0.2: {} + statuses@2.0.1: {} - stop-iteration-iterator@1.1.0: + stop-iteration-iterator@1.0.0: dependencies: - es-errors: 1.3.0 - internal-slot: 1.1.0 + internal-slot: 1.0.4 - storybook@8.6.17(prettier@3.8.1): + storybook@8.5.2(prettier@3.3.3): dependencies: - "@storybook/core": 8.6.17(prettier@3.8.1)(storybook@8.6.17(prettier@3.8.1)) + "@storybook/core": 8.5.2(prettier@3.3.3) optionalDependencies: - prettier: 3.8.1 + prettier: 3.3.3 transitivePeerDependencies: - bufferutil - supports-color @@ -32194,14 +30852,10 @@ snapshots: streamsearch@1.1.0: {} - streamx@2.23.0: + streamx@2.15.5: dependencies: - events-universal: 1.0.1 fast-fifo: 1.3.2 - text-decoder: 1.2.7 - transitivePeerDependencies: - - bare-abort-controller - - react-native-b4a + queue-tick: 1.0.1 string-argv@0.3.2: {} @@ -32235,17 +30889,11 @@ snapshots: is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - string-width@5.1.2: - dependencies: - eastasianwidth: 0.2.0 - emoji-regex: 9.2.2 - strip-ansi: 7.2.0 - string-width@7.2.0: dependencies: - emoji-regex: 10.6.0 - get-east-asian-width: 1.5.0 - strip-ansi: 7.2.0 + emoji-regex: 10.3.0 + get-east-asian-width: 1.2.0 + strip-ansi: 7.1.0 string_decoder@0.10.31: {} @@ -32273,9 +30921,9 @@ snapshots: dependencies: ansi-regex: 5.0.1 - strip-ansi@7.2.0: + strip-ansi@7.1.0: dependencies: - ansi-regex: 6.2.2 + ansi-regex: 6.0.1 strip-bom-buf@1.0.0: dependencies: @@ -32304,54 +30952,49 @@ snapshots: dependencies: min-indent: 1.0.1 - strip-indent@4.1.1: {} + strip-indent@4.0.0: + dependencies: + min-indent: 1.0.1 strip-json-comments@2.0.1: {} strip-json-comments@3.1.1: {} - style-loader@3.3.4(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)): + style-loader@3.3.1(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)): dependencies: - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) - style-loader@3.3.4(webpack@5.105.4(@swc/core@1.15.18)): + style-loader@3.3.1(webpack@5.97.1(@swc/core@1.15.30)): dependencies: - webpack: 5.105.4(@swc/core@1.15.18) + webpack: 5.97.1(@swc/core@1.15.30) style-search@0.1.0: {} - styled-jsx@5.1.1(@babel/core@7.29.0)(react@18.3.1): - dependencies: - client-only: 0.0.1 - react: 18.3.1 - optionalDependencies: - "@babel/core": 7.29.0 - - styled-jsx@5.1.6(@babel/core@7.29.0)(react@18.3.1): + styled-jsx@5.1.1(@babel/core@7.26.7)(react@18.3.1): dependencies: client-only: 0.0.1 react: 18.3.1 optionalDependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 - styled-jsx@5.1.7(@babel/core@7.29.0)(react@18.3.1): + styled-jsx@5.1.6(@babel/core@7.26.7)(react@18.3.1): dependencies: client-only: 0.0.1 react: 18.3.1 optionalDependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 stylelint-config-recess-order@3.1.0(stylelint@14.16.1): dependencies: stylelint: 14.16.1 stylelint-order: 5.0.0(stylelint@14.16.1) - stylelint-config-recommended-scss@5.0.2(postcss@8.5.8)(stylelint@14.16.1): + stylelint-config-recommended-scss@5.0.2(postcss@8.5.1)(stylelint@14.16.1): dependencies: - postcss-scss: 4.0.9(postcss@8.5.8) + postcss-scss: 4.0.6(postcss@8.5.1) stylelint: 14.16.1 stylelint-config-recommended: 6.0.0(stylelint@14.16.1) - stylelint-scss: 4.7.0(stylelint@14.16.1) + stylelint-scss: 4.3.0(stylelint@14.16.1) transitivePeerDependencies: - postcss @@ -32359,10 +31002,10 @@ snapshots: dependencies: stylelint: 14.16.1 - stylelint-config-standard-scss@3.0.0(postcss@8.5.8)(stylelint@14.16.1): + stylelint-config-standard-scss@3.0.0(postcss@8.5.1)(stylelint@14.16.1): dependencies: stylelint: 14.16.1 - stylelint-config-recommended-scss: 5.0.2(postcss@8.5.8)(stylelint@14.16.1) + stylelint-config-recommended-scss: 5.0.2(postcss@8.5.1)(stylelint@14.16.1) stylelint-config-standard: 24.0.0(stylelint@14.16.1) transitivePeerDependencies: - postcss @@ -32374,34 +31017,35 @@ snapshots: stylelint-order@5.0.0(stylelint@14.16.1): dependencies: - postcss: 8.5.8 - postcss-sorting: 7.0.1(postcss@8.5.8) + postcss: 8.5.1 + postcss-sorting: 7.0.1(postcss@8.5.1) stylelint: 14.16.1 - stylelint-scss@4.7.0(stylelint@14.16.1): + stylelint-scss@4.3.0(stylelint@14.16.1): dependencies: + lodash: 4.17.21 postcss-media-query-parser: 0.2.3 - postcss-resolve-nested-selector: 0.1.6 - postcss-selector-parser: 6.1.2 + postcss-resolve-nested-selector: 0.1.1 + postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 stylelint: 14.16.1 stylelint@14.16.1: dependencies: - "@csstools/selector-specificity": 2.2.0(postcss-selector-parser@6.1.2) + "@csstools/selector-specificity": 2.1.1(postcss-selector-parser@6.0.11)(postcss@8.5.1) balanced-match: 2.0.0 colord: 2.9.3 cosmiconfig: 7.1.0 - css-functions-list: 3.3.3 - debug: 4.4.3 - fast-glob: 3.3.3 + css-functions-list: 3.1.0 + debug: 4.4.0 + fast-glob: 3.2.12 fastest-levenshtein: 1.0.16 file-entry-cache: 6.0.1 global-modules: 2.0.0 globby: 11.1.0 globjoin: 0.1.4 - html-tags: 3.3.1 - ignore: 5.3.2 + html-tags: 3.2.0 + ignore: 5.2.4 import-lazy: 4.0.0 imurmurhash: 0.1.4 is-plain-object: 5.0.0 @@ -32411,11 +31055,11 @@ snapshots: micromatch: 4.0.8 normalize-path: 3.0.0 picocolors: 1.1.1 - postcss: 8.5.8 + postcss: 8.5.1 postcss-media-query-parser: 0.2.3 - postcss-resolve-nested-selector: 0.1.6 - postcss-safe-parser: 6.0.0(postcss@8.5.8) - postcss-selector-parser: 6.1.2 + postcss-resolve-nested-selector: 0.1.1 + postcss-safe-parser: 6.0.0(postcss@8.5.1) + postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 string-width: 4.2.3 @@ -32423,8 +31067,8 @@ snapshots: style-search: 0.1.0 supports-hyperlinks: 2.3.0 svg-tags: 1.0.0 - table: 6.9.0 - v8-compile-cache: 2.4.0 + table: 6.8.1 + v8-compile-cache: 2.3.0 write-file-atomic: 4.0.2 transitivePeerDependencies: - supports-color @@ -32456,85 +31100,67 @@ snapshots: dependencies: tslib: 2.8.1 - swc-loader@0.2.7(@swc/core@1.15.18)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)): + swc-loader@0.2.7(@swc/core@1.15.30)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)): dependencies: - "@swc/core": 1.15.18 + "@swc/core": 1.15.30 "@swc/counter": 0.1.3 - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) - swr@2.4.1(react@18.3.1): + swr@2.3.1(react@18.3.1): dependencies: dequal: 2.0.3 react: 18.3.1 - use-sync-external-store: 1.6.0(react@18.3.1) + use-sync-external-store: 1.4.0(react@18.3.1) symbol-observable@1.2.0: {} symbol-tree@3.2.4: {} - sync-fetch@0.6.0: - dependencies: - node-fetch: 3.3.2 - timeout-signal: 2.0.0 - whatwg-mimetype: 4.0.0 - - sync-fetch@0.6.0-2: - dependencies: - node-fetch: 3.3.2 - timeout-signal: 2.0.0 - whatwg-mimetype: 4.0.0 - tabbable@5.3.3: {} tabbable@6.4.0: {} - table@6.9.0: + table@6.8.1: dependencies: - ajv: 8.18.0 + ajv: 8.17.1 lodash.truncate: 4.4.2 slice-ansi: 4.0.0 string-width: 4.2.3 strip-ansi: 6.0.1 - tapable@2.3.0: {} + taketalk@1.0.0: + dependencies: + get-stdin: 4.0.1 + minimist: 1.2.8 + + tapable@2.2.1: {} - tar-fs@2.1.4: + tar-fs@2.1.1: dependencies: chownr: 1.1.4 mkdirp-classic: 0.5.3 - pump: 3.0.4 + pump: 3.0.0 tar-stream: 2.2.0 - tar-fs@3.1.2: + tar-fs@3.0.4: dependencies: - pump: 3.0.4 - tar-stream: 3.1.8 - optionalDependencies: - bare-fs: 4.5.5 - bare-path: 3.0.0 - transitivePeerDependencies: - - bare-abort-controller - - bare-buffer - - react-native-b4a + mkdirp-classic: 0.5.3 + pump: 3.0.0 + tar-stream: 3.1.6 tar-stream@2.2.0: dependencies: bl: 4.1.0 - end-of-stream: 1.4.5 + end-of-stream: 1.4.4 fs-constants: 1.0.0 inherits: 2.0.4 readable-stream: 3.6.2 - tar-stream@3.1.8: + tar-stream@3.1.6: dependencies: - b4a: 1.8.0 - bare-fs: 4.5.5 + b4a: 1.6.4 fast-fifo: 1.3.2 - streamx: 2.23.0 - transitivePeerDependencies: - - bare-abort-controller - - bare-buffer - - react-native-b4a + streamx: 2.15.5 tar@6.2.1: dependencies: @@ -32545,52 +31171,45 @@ snapshots: mkdirp: 1.0.4 yallist: 4.0.0 - tar@7.5.8: + tar@7.5.11: dependencies: "@isaacs/fs-minipass": 4.0.1 chownr: 3.0.0 - minipass: 7.1.3 + minipass: 7.1.2 minizlib: 3.1.0 yallist: 5.0.0 - teex@1.0.1: - dependencies: - streamx: 2.23.0 - transitivePeerDependencies: - - bare-abort-controller - - react-native-b4a - - temp-dir@1.0.0: {} - term-size@1.2.0: dependencies: execa: 0.7.0 - terser-webpack-plugin@5.3.17(@swc/core@1.15.18)(esbuild@0.25.12)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)): + terser-webpack-plugin@5.3.11(@swc/core@1.15.30)(esbuild@0.24.2)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)): dependencies: - "@jridgewell/trace-mapping": 0.3.31 + "@jridgewell/trace-mapping": 0.3.25 jest-worker: 27.5.1 - schema-utils: 4.3.3 - terser: 5.46.0 - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) + schema-utils: 4.3.0 + serialize-javascript: 6.0.2 + terser: 5.37.0 + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) optionalDependencies: - "@swc/core": 1.15.18 - esbuild: 0.25.12 + "@swc/core": 1.15.30 + esbuild: 0.24.2 - terser-webpack-plugin@5.3.17(@swc/core@1.15.18)(webpack@5.105.4(@swc/core@1.15.18)): + terser-webpack-plugin@5.3.11(@swc/core@1.15.30)(webpack@5.97.1(@swc/core@1.15.30)): dependencies: - "@jridgewell/trace-mapping": 0.3.31 + "@jridgewell/trace-mapping": 0.3.25 jest-worker: 27.5.1 - schema-utils: 4.3.3 - terser: 5.46.0 - webpack: 5.105.4(@swc/core@1.15.18) + schema-utils: 4.3.0 + serialize-javascript: 6.0.2 + terser: 5.37.0 + webpack: 5.97.1(@swc/core@1.15.30) optionalDependencies: - "@swc/core": 1.15.18 + "@swc/core": 1.15.30 - terser@5.46.0: + terser@5.37.0: dependencies: - "@jridgewell/source-map": 0.3.11 - acorn: 8.16.0 + "@jridgewell/source-map": 0.3.6 + acorn: 8.14.0 commander: 2.20.3 source-map-support: 0.5.21 @@ -32598,23 +31217,23 @@ snapshots: dependencies: "@istanbuljs/schema": 0.1.3 glob: 7.2.3 - minimatch: 3.1.5 - - text-decoder@1.2.7: - dependencies: - b4a: 1.8.0 - transitivePeerDependencies: - - react-native-b4a + minimatch: 3.1.2 text-extensions@1.9.0: {} text-table@0.2.0: {} + textextensions@5.15.0: {} + textextensions@5.16.0: {} third-party-web@0.12.7: {} - throttleit@1.0.1: {} + thread-stream@3.1.0: + dependencies: + real-require: 0.2.0 + + throttleit@1.0.0: {} through2@2.0.5: dependencies: @@ -32625,8 +31244,6 @@ snapshots: timed-out@4.0.1: {} - timeout-signal@2.0.0: {} - timers-browserify@2.0.12: dependencies: setimmediate: 1.0.5 @@ -32635,13 +31252,8 @@ snapshots: tinyglobby@0.2.12: dependencies: - fdir: 6.5.0(picomatch@4.0.3) - picomatch: 4.0.3 - - tinyglobby@0.2.15: - dependencies: - fdir: 6.5.0(picomatch@4.0.3) - picomatch: 4.0.3 + fdir: 6.5.0(picomatch@4.0.4) + picomatch: 4.0.4 tinyrainbow@1.2.0: {} @@ -32659,16 +31271,10 @@ snapshots: dependencies: rimraf: 2.7.1 - tmp@0.2.5: {} + tmp@0.2.3: {} tmpl@1.0.5: {} - to-buffer@1.2.2: - dependencies: - isarray: 2.0.5 - safe-buffer: 5.2.1 - typed-array-buffer: 1.0.3 - to-readable-stream@1.0.0: {} to-regex-range@5.0.1: @@ -32679,12 +31285,14 @@ snapshots: toidentifier@1.0.1: {} - touch@3.1.1: {} + touch@3.1.0: + dependencies: + nopt: 1.0.10 - tough-cookie@4.1.4: + tough-cookie@4.1.3: dependencies: - psl: 1.15.0 - punycode: 2.3.1 + psl: 1.9.0 + punycode: 2.1.1 universalify: 0.2.0 url-parse: 1.5.10 @@ -32692,11 +31300,11 @@ snapshots: tr46@2.1.0: dependencies: - punycode: 2.3.1 + punycode: 2.1.1 tr46@3.0.0: dependencies: - punycode: 2.3.1 + punycode: 2.1.1 tree-kill@1.2.2: {} @@ -32708,170 +31316,168 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.1.1(@babel/core@7.29.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.0))(jest@29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)))(typescript@5.3.2): + ts-jest@29.1.1(@babel/core@7.26.7)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.7))(jest@29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)))(typescript@5.4.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)) + jest: 29.7.0(@types/node@18.19.74)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.7.4 - typescript: 5.3.2 + semver: 7.7.1 + typescript: 5.4.5 yargs-parser: 21.1.1 optionalDependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 "@jest/types": 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.0) + babel-jest: 29.7.0(@babel/core@7.26.7) - ts-jest@29.1.1(@babel/core@7.29.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.0))(jest@29.7.0(@types/node@18.19.130)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)))(typescript@5.3.2): + ts-jest@29.1.1(@babel/core@7.26.7)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.7))(jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)))(typescript@5.3.2): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@18.19.130)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2)) + jest: 29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.7.4 + semver: 7.7.1 typescript: 5.3.2 yargs-parser: 21.1.1 optionalDependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 "@jest/types": 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.0) + babel-jest: 29.7.0(@babel/core@7.26.7) - ts-jest@29.1.1(@babel/core@7.29.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.0))(jest@29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)))(typescript@5.3.2): + ts-jest@29.1.2(@babel/core@7.26.7)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.7))(jest@29.7.0(@types/node@16.18.57)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)))(typescript@5.4.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)) + jest: 29.7.0(@types/node@16.18.57)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.7.4 - typescript: 5.3.2 + semver: 7.7.0 + typescript: 5.4.5 yargs-parser: 21.1.1 optionalDependencies: - "@babel/core": 7.29.0 + "@babel/core": 7.26.7 "@jest/types": 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.0) + babel-jest: 29.7.0(@babel/core@7.26.7) - ts-jest@29.4.6(@babel/core@7.29.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.0))(jest-util@29.7.0)(jest@29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)))(typescript@5.3.2): + ts-jest@29.1.2(@babel/core@7.26.7)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.7))(jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)))(typescript@5.4.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - handlebars: 4.7.8 - jest: 29.7.0(@types/node@16.18.126)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2)) + jest: 29.7.0(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5)) + jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.7.4 - type-fest: 4.41.0 - typescript: 5.3.2 + semver: 7.7.0 + typescript: 5.4.5 yargs-parser: 21.1.1 optionalDependencies: - "@babel/core": 7.29.0 - "@jest/transform": 29.7.0 + "@babel/core": 7.26.7 "@jest/types": 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.0) - jest-util: 29.7.0 + babel-jest: 29.7.0(@babel/core@7.26.7) + + ts-log@2.2.5: {} - ts-jest@29.4.6(@babel/core@7.29.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.0))(jest-util@29.7.0)(jest@29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)))(typescript@5.3.2): + ts-node@10.9.1(@swc/core@1.15.30)(@types/node@16.18.57)(typescript@5.4.5): dependencies: - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - handlebars: 4.7.8 - jest: 29.7.0(@types/node@22.19.13)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2)) - json5: 2.2.3 - lodash.memoize: 4.1.2 + "@cspotcode/source-map-support": 0.8.1 + "@tsconfig/node10": 1.0.9 + "@tsconfig/node12": 1.0.11 + "@tsconfig/node14": 1.0.3 + "@tsconfig/node16": 1.0.3 + "@types/node": 16.18.57 + acorn: 8.14.0 + acorn-walk: 8.3.1 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 make-error: 1.3.6 - semver: 7.7.4 - type-fest: 4.41.0 - typescript: 5.3.2 - yargs-parser: 21.1.1 + typescript: 5.4.5 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 optionalDependencies: - "@babel/core": 7.29.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.0) - jest-util: 29.7.0 - - ts-log@2.2.7: {} + "@swc/core": 1.15.30 - ts-node@10.9.2(@swc/core@1.15.18)(@types/node@16.18.126)(typescript@5.3.2): + ts-node@10.9.1(@swc/core@1.15.30)(@types/node@18.19.74)(typescript@5.4.5): dependencies: "@cspotcode/source-map-support": 0.8.1 - "@tsconfig/node10": 1.0.12 + "@tsconfig/node10": 1.0.9 "@tsconfig/node12": 1.0.11 "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 - "@types/node": 16.18.126 - acorn: 8.16.0 - acorn-walk: 8.3.5 + "@tsconfig/node16": 1.0.3 + "@types/node": 18.19.74 + acorn: 8.14.0 + acorn-walk: 8.3.1 arg: 4.1.3 create-require: 1.1.1 - diff: 4.0.4 + diff: 4.0.2 make-error: 1.3.6 - typescript: 5.3.2 + typescript: 5.4.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: - "@swc/core": 1.15.18 + "@swc/core": 1.15.30 + optional: true - ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.3.2): + ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.3.2): dependencies: "@cspotcode/source-map-support": 0.8.1 - "@tsconfig/node10": 1.0.12 + "@tsconfig/node10": 1.0.9 "@tsconfig/node12": 1.0.11 "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 - "@types/node": 18.19.130 - acorn: 8.16.0 - acorn-walk: 8.3.5 + "@tsconfig/node16": 1.0.3 + "@types/node": 20.14.9 + acorn: 8.14.0 + acorn-walk: 8.3.1 arg: 4.1.3 create-require: 1.1.1 - diff: 4.0.4 + diff: 4.0.2 make-error: 1.3.6 typescript: 5.3.2 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: - "@swc/core": 1.15.18 + "@swc/core": 1.15.30 optional: true - ts-node@10.9.2(@swc/core@1.15.18)(@types/node@22.19.13)(typescript@5.3.2): + ts-node@10.9.1(@swc/core@1.15.30)(@types/node@20.14.9)(typescript@5.4.5): dependencies: "@cspotcode/source-map-support": 0.8.1 - "@tsconfig/node10": 1.0.12 + "@tsconfig/node10": 1.0.9 "@tsconfig/node12": 1.0.11 "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 - "@types/node": 22.19.13 - acorn: 8.16.0 - acorn-walk: 8.3.5 + "@tsconfig/node16": 1.0.3 + "@types/node": 20.14.9 + acorn: 8.14.0 + acorn-walk: 8.3.1 arg: 4.1.3 create-require: 1.1.1 - diff: 4.0.4 + diff: 4.0.2 make-error: 1.3.6 - typescript: 5.3.2 + typescript: 5.4.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: - "@swc/core": 1.15.18 + "@swc/core": 1.15.30 optional: true - ts-pnp@1.2.0(typescript@5.3.2): + ts-pnp@1.2.0(typescript@5.4.5): optionalDependencies: - typescript: 5.3.2 + typescript: 5.4.5 tsconfig-paths-webpack-plugin@4.2.0: dependencies: chalk: 4.1.2 - enhanced-resolve: 5.20.0 - tapable: 2.3.0 + enhanced-resolve: 5.18.0 + tapable: 2.2.1 tsconfig-paths: 4.2.0 tsconfig-paths@4.2.0: @@ -32890,23 +31496,15 @@ snapshots: tslib@2.8.1: {} - tsx@4.21.0: + tsx@4.6.2: dependencies: - esbuild: 0.27.3 - get-tsconfig: 4.13.6 + esbuild: 0.18.20 + get-tsconfig: 4.7.2 optionalDependencies: fsevents: 2.3.3 tty-browserify@0.0.1: {} - tuf-js@1.1.7: - dependencies: - "@tufjs/models": 1.0.4 - debug: 4.4.3 - make-fetch-happen: 11.1.1 - transitivePeerDependencies: - - supports-color - tuf-js@4.1.0: dependencies: "@tufjs/models": 4.1.0 @@ -32919,32 +31517,32 @@ snapshots: dependencies: safe-buffer: 5.2.1 - turbo-darwin-64@2.8.13: + turbo-darwin-64@2.3.4: optional: true - turbo-darwin-arm64@2.8.13: + turbo-darwin-arm64@2.3.4: optional: true - turbo-linux-64@2.8.13: + turbo-linux-64@2.3.4: optional: true - turbo-linux-arm64@2.8.13: + turbo-linux-arm64@2.3.4: optional: true - turbo-windows-64@2.8.13: + turbo-windows-64@2.3.4: optional: true - turbo-windows-arm64@2.8.13: + turbo-windows-arm64@2.3.4: optional: true - turbo@2.8.13: + turbo@2.3.4: optionalDependencies: - turbo-darwin-64: 2.8.13 - turbo-darwin-arm64: 2.8.13 - turbo-linux-64: 2.8.13 - turbo-linux-arm64: 2.8.13 - turbo-windows-64: 2.8.13 - turbo-windows-arm64: 2.8.13 + turbo-darwin-64: 2.3.4 + turbo-darwin-arm64: 2.3.4 + turbo-linux-64: 2.3.4 + turbo-linux-arm64: 2.3.4 + turbo-windows-64: 2.3.4 + turbo-windows-arm64: 2.3.4 tween-functions@1.2.0: {} @@ -32952,35 +31550,23 @@ snapshots: type-detect@4.0.8: {} - type-detect@4.1.0: {} - type-fest@0.18.1: {} type-fest@0.21.3: {} type-fest@0.3.1: {} - type-fest@0.4.1: {} - type-fest@0.6.0: {} type-fest@0.8.1: {} type-fest@2.19.0: {} - type-fest@4.41.0: {} - type-is@1.6.18: dependencies: media-typer: 0.3.0 mime-types: 2.1.35 - typed-array-buffer@1.0.3: - dependencies: - call-bound: 1.0.4 - es-errors: 1.3.0 - is-typed-array: 1.1.15 - typedarray-to-buffer@3.1.5: dependencies: is-typedarray: 1.0.0 @@ -32989,6 +31575,8 @@ snapshots: typescript@5.3.2: {} + typescript@5.4.5: {} + typeson-registry@1.0.0-alpha.39: dependencies: base64-arraybuffer-es6: 0.7.0 @@ -32997,9 +31585,9 @@ snapshots: typeson@6.1.0: {} - ua-parser-js@1.0.41: {} + ua-parser-js@0.7.33: {} - uglify-js@3.19.3: + uglify-js@3.17.4: optional: true unc-path-regex@0.1.2: {} @@ -33008,7 +31596,7 @@ snapshots: undici-types@5.26.5: {} - undici-types@6.21.0: {} + undici@6.25.0: {} unfetch@4.2.0: {} @@ -33017,11 +31605,11 @@ snapshots: unicode-match-property-ecmascript@2.0.0: dependencies: unicode-canonical-property-names-ecmascript: 2.0.1 - unicode-property-aliases-ecmascript: 2.2.0 + unicode-property-aliases-ecmascript: 2.1.0 - unicode-match-property-value-ecmascript@2.2.1: {} + unicode-match-property-value-ecmascript@2.2.0: {} - unicode-property-aliases-ecmascript@2.2.0: {} + unicode-property-aliases-ecmascript@2.1.0: {} unique-filename@1.1.1: dependencies: @@ -33031,14 +31619,6 @@ snapshots: dependencies: unique-slug: 3.0.0 - unique-filename@3.0.0: - dependencies: - unique-slug: 4.0.0 - - unique-filename@5.0.0: - dependencies: - unique-slug: 6.0.0 - unique-slug@2.0.2: dependencies: imurmurhash: 0.1.4 @@ -33047,14 +31627,6 @@ snapshots: dependencies: imurmurhash: 0.1.4 - unique-slug@4.0.0: - dependencies: - imurmurhash: 0.1.4 - - unique-slug@6.0.0: - dependencies: - imurmurhash: 0.1.4 - unique-string@1.0.0: dependencies: crypto-random-string: 1.0.0 @@ -33079,16 +31651,16 @@ snapshots: unplugin@1.16.1: dependencies: - acorn: 8.16.0 + acorn: 8.14.0 webpack-virtual-modules: 0.6.2 untildify@4.0.0: {} upath@2.0.1: {} - update-browserslist-db@1.2.3(browserslist@4.28.1): + update-browserslist-db@1.1.2(browserslist@4.24.4): dependencies: - browserslist: 4.28.1 + browserslist: 4.24.4 escalade: 3.2.0 picocolors: 1.1.1 @@ -33117,7 +31689,7 @@ snapshots: uri-js@4.4.1: dependencies: - punycode: 2.3.1 + punycode: 2.1.1 url-parse-lax@3.0.0: dependencies: @@ -33136,13 +31708,13 @@ snapshots: url@0.11.4: dependencies: punycode: 1.4.1 - qs: 6.15.0 + qs: 6.14.0 - urlpattern-polyfill@10.1.0: {} + urlpattern-polyfill@10.0.0: {} urlpattern-polyfill@8.0.2: {} - use-sync-external-store@1.6.0(react@18.3.1): + use-sync-external-store@1.4.0(react@18.3.1): dependencies: react: 18.3.1 @@ -33155,17 +31727,15 @@ snapshots: util@0.12.5: dependencies: inherits: 2.0.4 - is-arguments: 1.2.0 - is-generator-function: 1.1.2 - is-typed-array: 1.1.15 - which-typed-array: 1.1.20 + is-arguments: 1.1.1 + is-generator-function: 1.0.10 + is-typed-array: 1.1.10 + which-typed-array: 1.1.9 utila@0.4.0: {} utils-merge@1.0.1: {} - uuid@11.1.0: {} - uuid@3.3.2: {} uuid@8.0.0: {} @@ -33176,13 +31746,13 @@ snapshots: v8-compile-cache-lib@3.0.1: {} - v8-compile-cache@2.4.0: {} + v8-compile-cache@2.3.0: {} - v8-to-istanbul@9.3.0: + v8-to-istanbul@9.1.0: dependencies: - "@jridgewell/trace-mapping": 0.3.31 - "@types/istanbul-lib-coverage": 2.0.6 - convert-source-map: 2.0.0 + "@jridgewell/trace-mapping": 0.3.25 + "@types/istanbul-lib-coverage": 2.0.4 + convert-source-map: 1.9.0 valid-url@1.0.9: {} @@ -33195,8 +31765,6 @@ snapshots: dependencies: builtins: 1.0.3 - validate-npm-package-name@5.0.1: {} - validate-npm-package-name@6.0.2: {} value-or-promise@1.0.11: {} @@ -33209,7 +31777,7 @@ snapshots: dependencies: assert-plus: 1.0.0 core-util-is: 1.0.2 - extsprintf: 1.3.0 + extsprintf: 1.4.1 vinyl-file@3.0.0: dependencies: @@ -33247,7 +31815,7 @@ snapshots: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 - watchpack@2.5.1: + watchpack@2.4.2: dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 @@ -33256,14 +31824,14 @@ snapshots: dependencies: defaults: 1.0.4 - web-streams-polyfill@3.3.3: {} + web-streams-polyfill@3.2.1: {} - webcrypto-core@1.8.1: + webcrypto-core@1.7.5: dependencies: - "@peculiar/asn1-schema": 2.6.0 + "@peculiar/asn1-schema": 2.3.3 "@peculiar/json-schema": 1.1.12 - asn1js: 3.0.7 - pvtsutils: 1.3.6 + asn1js: 3.0.5 + pvtsutils: 1.3.2 tslib: 2.8.1 webidl-conversions@3.0.1: {} @@ -33274,85 +31842,83 @@ snapshots: webidl-conversions@7.0.0: {} - webpack-dev-middleware@6.1.3(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)): + webpack-dev-middleware@6.1.3(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)): dependencies: colorette: 2.0.20 - memfs: 3.5.3 + memfs: 3.6.0 mime-types: 2.1.35 range-parser: 1.2.1 - schema-utils: 4.3.3 + schema-utils: 4.3.0 optionalDependencies: - webpack: 5.101.2(@swc/core@1.15.18)(esbuild@0.25.12) + webpack: 5.97.1(@swc/core@1.15.30)(esbuild@0.24.2) webpack-hot-middleware@2.26.1: dependencies: ansi-html-community: 0.0.8 - html-entities: 2.6.0 + html-entities: 2.5.2 strip-ansi: 6.0.1 - webpack-sources@3.3.4: {} + webpack-sources@3.2.3: {} + + webpack-virtual-modules@0.4.6: {} webpack-virtual-modules@0.6.2: {} - webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12): + webpack@5.97.1(@swc/core@1.15.30): dependencies: "@types/eslint-scope": 3.7.7 - "@types/estree": 1.0.8 - "@types/json-schema": 7.0.15 + "@types/estree": 1.0.6 "@webassemblyjs/ast": 1.14.1 "@webassemblyjs/wasm-edit": 1.14.1 "@webassemblyjs/wasm-parser": 1.14.1 - acorn: 8.16.0 - acorn-import-phases: 1.0.4(acorn@8.16.0) - browserslist: 4.28.1 + acorn: 8.14.0 + browserslist: 4.24.4 chrome-trace-event: 1.0.4 - enhanced-resolve: 5.20.0 - es-module-lexer: 1.7.0 + enhanced-resolve: 5.18.0 + es-module-lexer: 1.6.0 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.1 + loader-runner: 4.3.0 mime-types: 2.1.35 neo-async: 2.6.2 - schema-utils: 4.3.3 - tapable: 2.3.0 - terser-webpack-plugin: 5.3.17(@swc/core@1.15.18)(esbuild@0.25.12)(webpack@5.101.2(@swc/core@1.15.18)(esbuild@0.25.12)) - watchpack: 2.5.1 - webpack-sources: 3.3.4 + schema-utils: 3.3.0 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.11(@swc/core@1.15.30)(webpack@5.97.1(@swc/core@1.15.30)) + watchpack: 2.4.2 + webpack-sources: 3.2.3 transitivePeerDependencies: - "@swc/core" - esbuild - uglify-js - webpack@5.105.4(@swc/core@1.15.18): + webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2): dependencies: "@types/eslint-scope": 3.7.7 - "@types/estree": 1.0.8 - "@types/json-schema": 7.0.15 + "@types/estree": 1.0.6 "@webassemblyjs/ast": 1.14.1 "@webassemblyjs/wasm-edit": 1.14.1 "@webassemblyjs/wasm-parser": 1.14.1 - acorn: 8.16.0 - acorn-import-phases: 1.0.4(acorn@8.16.0) - browserslist: 4.28.1 + acorn: 8.14.0 + browserslist: 4.24.4 chrome-trace-event: 1.0.4 - enhanced-resolve: 5.20.0 - es-module-lexer: 2.0.0 + enhanced-resolve: 5.18.0 + es-module-lexer: 1.6.0 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.1 + loader-runner: 4.3.0 mime-types: 2.1.35 neo-async: 2.6.2 - schema-utils: 4.3.3 - tapable: 2.3.0 - terser-webpack-plugin: 5.3.17(@swc/core@1.15.18)(webpack@5.105.4(@swc/core@1.15.18)) - watchpack: 2.5.1 - webpack-sources: 3.3.4 + schema-utils: 3.3.0 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.11(@swc/core@1.15.30)(esbuild@0.24.2)(webpack@5.97.1(@swc/core@1.15.30)(esbuild@0.24.2)) + watchpack: 2.4.2 + webpack-sources: 3.2.3 transitivePeerDependencies: - "@swc/core" - esbuild @@ -33362,12 +31928,10 @@ snapshots: dependencies: iconv-lite: 0.6.3 - whatwg-fetch@3.6.20: {} + whatwg-fetch@3.6.2: {} whatwg-mimetype@3.0.0: {} - whatwg-mimetype@4.0.0: {} - whatwg-url@11.0.0: dependencies: tr46: 3.0.0 @@ -33380,41 +31944,40 @@ snapshots: whatwg-url@8.7.0: dependencies: - lodash: 4.17.23 + lodash: 4.17.21 tr46: 2.1.0 webidl-conversions: 6.1.0 - which-boxed-primitive@1.1.1: + which-boxed-primitive@1.0.2: dependencies: - is-bigint: 1.1.0 - is-boolean-object: 1.2.2 - is-number-object: 1.1.1 - is-string: 1.1.1 - is-symbol: 1.1.1 + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 - which-collection@1.0.2: + which-collection@1.0.1: dependencies: - is-map: 2.0.3 - is-set: 2.0.3 - is-weakmap: 2.0.2 - is-weakset: 2.0.4 + is-map: 2.0.2 + is-set: 2.0.2 + is-weakmap: 2.0.1 + is-weakset: 2.0.2 - which-module@2.0.1: {} + which-module@2.0.0: {} - which-pm@2.2.0: + which-pm@2.0.0: dependencies: load-yaml-file: 0.2.0 path-exists: 4.0.0 - which-typed-array@1.1.20: + which-typed-array@1.1.9: dependencies: - available-typed-arrays: 1.0.7 - call-bind: 1.0.8 - call-bound: 1.0.4 - for-each: 0.3.5 - get-proto: 1.0.1 + available-typed-arrays: 1.0.5 + call-bind: 1.0.7 + for-each: 0.3.3 gopd: 1.2.0 - has-tostringtag: 1.0.2 + has-tostringtag: 1.0.0 + is-typed-array: 1.1.10 which@1.3.1: dependencies: @@ -33424,13 +31987,9 @@ snapshots: dependencies: isexe: 2.0.0 - which@3.0.1: - dependencies: - isexe: 2.0.0 - which@5.0.0: dependencies: - isexe: 3.1.5 + isexe: 3.1.1 which@6.0.1: dependencies: @@ -33450,6 +32009,11 @@ snapshots: wordwrap@1.0.0: {} + wrap-ansi@2.1.0: + dependencies: + string-width: 1.0.2 + strip-ansi: 3.0.1 + wrap-ansi@3.0.1: dependencies: string-width: 2.1.1 @@ -33467,17 +32031,11 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 - wrap-ansi@8.1.0: + wrap-ansi@9.0.0: dependencies: - ansi-styles: 6.2.3 - string-width: 5.1.2 - strip-ansi: 7.2.0 - - wrap-ansi@9.0.2: - dependencies: - ansi-styles: 6.2.3 + ansi-styles: 6.2.1 string-width: 7.2.0 - strip-ansi: 7.2.0 + strip-ansi: 7.1.0 wrappy@1.0.2: {} @@ -33509,26 +32067,11 @@ snapshots: imurmurhash: 0.1.4 signal-exit: 4.1.0 - write-json-file@3.2.0: - dependencies: - detect-indent: 5.0.0 - graceful-fs: 4.2.11 - make-dir: 2.1.0 - pify: 4.0.1 - sort-keys: 2.0.0 - write-file-atomic: 2.4.3 - - write-pkg@4.0.0: - dependencies: - sort-keys: 2.0.0 - type-fest: 0.4.1 - write-json-file: 3.2.0 - - ws@7.5.10: {} + ws@7.5.9: {} ws@8.13.0: {} - ws@8.19.0: {} + ws@8.18.0: {} xdg-basedir@3.0.0: {} @@ -33536,12 +32079,12 @@ snapshots: xml-name-validator@4.0.0: {} - xml2js@0.6.2: + xml2js@0.4.19: dependencies: - sax: 1.2.1 - xmlbuilder: 11.0.1 + sax: 1.2.4 + xmlbuilder: 9.0.7 - xmlbuilder@11.0.1: {} + xmlbuilder@9.0.7: {} xmlchars@2.2.0: {} @@ -33563,7 +32106,7 @@ snapshots: yaml@1.10.2: {} - yaml@2.8.2: {} + yaml@2.7.0: {} yargs-parser@13.1.2: dependencies: @@ -33589,7 +32132,7 @@ snapshots: require-main-filename: 2.0.0 set-blocking: 2.0.0 string-width: 4.2.3 - which-module: 2.0.1 + which-module: 2.0.0 y18n: 4.0.3 yargs-parser: 18.1.3 @@ -33618,76 +32161,70 @@ snapshots: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 - yeoman-environment@3.19.3(@types/node@16.18.126): + yeoman-environment@3.13.0(mem-fs-editor@9.5.0(mem-fs@2.2.1))(mem-fs@2.2.1): dependencies: "@npmcli/arborist": 4.3.1 are-we-there-yet: 2.0.0 arrify: 2.0.1 - binaryextensions: 4.19.0 + binaryextensions: 4.18.0 chalk: 4.1.2 cli-table: 0.3.11 commander: 7.1.0 dateformat: 4.6.3 - debug: 4.4.3 - diff: 5.2.2 + debug: 4.4.0 + diff: 5.1.0 error: 10.4.0 escape-string-regexp: 4.0.0 execa: 5.1.1 find-up: 5.0.0 globby: 11.1.0 - grouped-queue: 2.1.0 - inquirer: 8.2.7(@types/node@16.18.126) + grouped-queue: 2.0.0 + inquirer: 8.2.6 is-scoped: 2.1.0 isbinaryfile: 4.0.10 - lodash: 4.17.23 + lodash: 4.17.21 log-symbols: 4.1.0 - mem-fs: 2.3.0 - mem-fs-editor: 9.7.0(mem-fs@2.3.0) - minimatch: 3.1.5 + mem-fs: 2.2.1 + mem-fs-editor: 9.5.0(mem-fs@2.2.1) + minimatch: 3.1.2 npmlog: 5.0.1 p-queue: 6.6.2 p-transform: 1.3.0 pacote: 12.0.3 - preferred-pm: 3.1.4 + preferred-pm: 3.0.3 pretty-bytes: 5.6.0 - readable-stream: 4.7.0 - semver: 7.7.4 + semver: 7.7.0 slash: 3.0.0 strip-ansi: 6.0.1 text-table: 0.2.0 - textextensions: 5.16.0 + textextensions: 5.15.0 untildify: 4.0.0 transitivePeerDependencies: - - "@types/node" - bluebird - supports-color - yeoman-generator@5.10.0(encoding@0.1.13)(mem-fs@2.3.0)(yeoman-environment@3.19.3(@types/node@16.18.126)): + yeoman-generator@5.7.0(encoding@0.1.13)(yeoman-environment@3.13.0(mem-fs-editor@9.5.0(mem-fs@2.2.1))(mem-fs@2.2.1)): dependencies: chalk: 4.1.2 dargs: 7.0.0 - debug: 4.4.3 + debug: 4.4.0 execa: 5.1.1 github-username: 6.0.0(encoding@0.1.13) - lodash: 4.17.23 - mem-fs-editor: 9.7.0(mem-fs@2.3.0) + lodash: 4.17.21 minimist: 1.2.8 - pacote: 15.2.0 read-pkg-up: 7.0.1 run-async: 2.4.1 - semver: 7.7.4 + semver: 7.7.0 shelljs: 0.8.5 sort-keys: 4.2.0 text-table: 0.2.0 optionalDependencies: - yeoman-environment: 3.19.3(@types/node@16.18.126) + yeoman-environment: 3.13.0(mem-fs-editor@9.5.0(mem-fs@2.2.1))(mem-fs@2.2.1) transitivePeerDependencies: - - bluebird - encoding - - mem-fs - supports-color - yjs@13.6.29: + yjs@13.6.30: dependencies: lib0: 0.2.117 @@ -33695,12 +32232,26 @@ snapshots: yocto-queue@0.1.0: {} - yocto-queue@1.2.2: {} + yocto-queue@1.1.1: {} + + yoctocolors-cjs@2.1.2: {} yoctocolors-cjs@2.1.3: {} - zustand@5.0.11(@types/react@18.3.28)(react@18.3.1)(use-sync-external-store@1.6.0(react@18.3.1)): + yosay@2.0.2: + dependencies: + ansi-regex: 2.1.1 + ansi-styles: 3.2.1 + chalk: 1.1.3 + cli-boxes: 1.0.0 + pad-component: 0.0.1 + string-width: 2.1.1 + strip-ansi: 3.0.1 + taketalk: 1.0.0 + wrap-ansi: 2.1.0 + + zustand@5.0.5(@types/react@18.2.42)(react@18.3.1)(use-sync-external-store@1.4.0(react@18.3.1)): optionalDependencies: - "@types/react": 18.3.28 + "@types/react": 18.2.42 react: 18.3.1 - use-sync-external-store: 1.6.0(react@18.3.1) + use-sync-external-store: 1.4.0(react@18.3.1)