From 58cb2bec327f0a0601d36aadcb05faec049f53c0 Mon Sep 17 00:00:00 2001 From: Angular Robot Date: Wed, 27 Aug 2025 22:07:52 +0000 Subject: [PATCH] build: update cross-repo angular dependencies (#63395) See associated pull request for more information. PR Close #63395 --- .github/actions/deploy-docs-site/main.js | 6 + .github/actions/saucelabs-legacy/action.yml | 4 +- .github/workflows/adev-preview-build.yml | 8 +- .github/workflows/adev-preview-deploy.yml | 2 +- .../assistant-to-the-branch-manager.yml | 2 +- .github/workflows/benchmark-compare.yml | 2 +- .github/workflows/ci.yml | 44 +- .github/workflows/dev-infra.yml | 4 +- .github/workflows/google-internal-tests.yml | 2 +- .github/workflows/manual.yml | 8 +- .github/workflows/merge-ready-status.yml | 2 +- .github/workflows/perf.yml | 6 +- .github/workflows/pr.yml | 34 +- MODULE.bazel | 2 +- MODULE.bazel.lock | 8 +- adev/package.json | 12 +- modules/package.json | 2 +- package.json | 22 +- packages/core/test/bundling/package.json | 2 +- pnpm-lock.yaml | 1362 +++++++++-------- 20 files changed, 849 insertions(+), 685 deletions(-) diff --git a/.github/actions/deploy-docs-site/main.js b/.github/actions/deploy-docs-site/main.js index a3e0f36ca29..6c6060e70c4 100644 --- a/.github/actions/deploy-docs-site/main.js +++ b/.github/actions/deploy-docs-site/main.js @@ -25711,6 +25711,9 @@ function _supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) { if (env.TERM === "xterm-ghostty") { return 3; } + if (env.TERM === "wezterm") { + return 3; + } if ("TERM_PROGRAM" in env) { const version = Number.parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10); switch (env.TERM_PROGRAM) { @@ -26025,6 +26028,9 @@ function _supportsColor2(haveStream, { streamIsTTY, sniffFlags = true } = {}) { if (env2.TERM === "xterm-ghostty") { return 3; } + if (env2.TERM === "wezterm") { + return 3; + } if ("TERM_PROGRAM" in env2) { const version = Number.parseInt((env2.TERM_PROGRAM_VERSION || "").split(".")[0], 10); switch (env2.TERM_PROGRAM) { diff --git a/.github/actions/saucelabs-legacy/action.yml b/.github/actions/saucelabs-legacy/action.yml index 2722775ee82..dc062a7df5c 100644 --- a/.github/actions/saucelabs-legacy/action.yml +++ b/.github/actions/saucelabs-legacy/action.yml @@ -5,9 +5,9 @@ runs: using: 'composite' steps: - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Saucelabs Variables - uses: angular/dev-infra/github-actions/saucelabs@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/saucelabs@7e2eefa1375195fa7616f78a76f538a188852067 - name: Starting Saucelabs tunnel service shell: bash run: ./tools/saucelabs/sauce-service.sh run & diff --git a/.github/workflows/adev-preview-build.yml b/.github/workflows/adev-preview-build.yml index 874b5595933..65f8841865a 100644 --- a/.github/workflows/adev-preview-build.yml +++ b/.github/workflows/adev-preview-build.yml @@ -21,16 +21,16 @@ jobs: (github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'adev: preview')) steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/configure-remote@7e2eefa1375195fa7616f78a76f538a188852067 - name: Install node modules run: pnpm install --frozen-lockfile - name: Build adev to ensure it continues to work run: pnpm bazel build //adev:build --full_build_adev --config=release - - uses: angular/dev-infra/github-actions/previews/pack-and-upload-artifact@80db036355181684ed07021a175e9f039190d3d6 + - uses: angular/dev-infra/github-actions/previews/pack-and-upload-artifact@7e2eefa1375195fa7616f78a76f538a188852067 with: workflow-artifact-name: 'adev-preview' pull-number: '${{github.event.pull_request.number}}' diff --git a/.github/workflows/adev-preview-deploy.yml b/.github/workflows/adev-preview-deploy.yml index f6a9730fc46..6264542382e 100644 --- a/.github/workflows/adev-preview-deploy.yml +++ b/.github/workflows/adev-preview-deploy.yml @@ -40,7 +40,7 @@ jobs: npx -y firebase-tools@latest target:clear --config adev/firebase.json --project ${{env.PREVIEW_PROJECT}} hosting angular-docs npx -y firebase-tools@latest target:apply --config adev/firebase.json --project ${{env.PREVIEW_PROJECT}} hosting angular-docs ${{env.PREVIEW_SITE}} - - uses: angular/dev-infra/github-actions/previews/upload-artifacts-to-firebase@80db036355181684ed07021a175e9f039190d3d6 + - uses: angular/dev-infra/github-actions/previews/upload-artifacts-to-firebase@7e2eefa1375195fa7616f78a76f538a188852067 with: github-token: '${{secrets.GITHUB_TOKEN}}' workflow-artifact-name: 'adev-preview' diff --git a/.github/workflows/assistant-to-the-branch-manager.yml b/.github/workflows/assistant-to-the-branch-manager.yml index 2b6fbec020e..db63ab206ee 100644 --- a/.github/workflows/assistant-to-the-branch-manager.yml +++ b/.github/workflows/assistant-to-the-branch-manager.yml @@ -16,6 +16,6 @@ jobs: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: persist-credentials: false - - uses: angular/dev-infra/github-actions/branch-manager@80db036355181684ed07021a175e9f039190d3d6 + - uses: angular/dev-infra/github-actions/branch-manager@7e2eefa1375195fa7616f78a76f538a188852067 with: angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }} diff --git a/.github/workflows/benchmark-compare.yml b/.github/workflows/benchmark-compare.yml index ea370b76af9..9c0dbed7f96 100644 --- a/.github/workflows/benchmark-compare.yml +++ b/.github/workflows/benchmark-compare.yml @@ -38,7 +38,7 @@ jobs: - run: pnpm install --frozen-lockfile - - uses: angular/dev-infra/github-actions/bazel/configure-remote@80db036355181684ed07021a175e9f039190d3d6 + - uses: angular/dev-infra/github-actions/bazel/configure-remote@7e2eefa1375195fa7616f78a76f538a188852067 with: bazelrc: ./.bazelrc.user diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db461b92172..8afa7871144 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 with: cache-node-modules: true - name: Install node modules @@ -41,13 +41,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 with: cache-node-modules: true - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/configure-remote@7e2eefa1375195fa7616f78a76f538a188852067 with: google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }} - name: Install node modules @@ -68,13 +68,13 @@ jobs: runs-on: ubuntu-latest-4core steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 with: cache-node-modules: true - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel Remote Caching - uses: angular/dev-infra/github-actions/bazel/configure-remote@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/configure-remote@7e2eefa1375195fa7616f78a76f538a188852067 with: google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }} - name: Install node modules @@ -86,13 +86,13 @@ jobs: runs-on: ubuntu-latest-4core steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 with: cache-node-modules: true - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel Remote Caching - uses: angular/dev-infra/github-actions/bazel/configure-remote@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/configure-remote@7e2eefa1375195fa7616f78a76f538a188852067 with: google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }} - name: Install node modules @@ -105,11 +105,11 @@ jobs: labels: ubuntu-latest-4core steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/configure-remote@7e2eefa1375195fa7616f78a76f538a188852067 with: google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }} - name: Install node modules @@ -124,13 +124,13 @@ jobs: labels: ubuntu-latest steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 with: cache-node-modules: true - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/configure-remote@7e2eefa1375195fa7616f78a76f538a188852067 - name: Install node modules run: pnpm install --frozen-lockfile - run: echo "https://${{secrets.SNAPSHOT_BUILDS_GITHUB_TOKEN}}:@github.com" > ${HOME}/.git_credentials @@ -142,7 +142,7 @@ jobs: labels: ubuntu-latest-4core steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 with: cache-node-modules: true node-module-directories: | @@ -150,9 +150,9 @@ jobs: ./packages/zone.js/node_modules ./packages/zone.js/test/typings/node_modules - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/configure-remote@7e2eefa1375195fa7616f78a76f538a188852067 with: google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }} - name: Install node modules @@ -204,11 +204,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/configure-remote@7e2eefa1375195fa7616f78a76f538a188852067 - name: Install node modules run: pnpm install --frozen-lockfile - name: Build adev to ensure it continues to work diff --git a/.github/workflows/dev-infra.yml b/.github/workflows/dev-infra.yml index 0bf86f24632..edb9a8eaaf7 100644 --- a/.github/workflows/dev-infra.yml +++ b/.github/workflows/dev-infra.yml @@ -13,13 +13,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - - uses: angular/dev-infra/github-actions/pull-request-labeling@80db036355181684ed07021a175e9f039190d3d6 + - uses: angular/dev-infra/github-actions/pull-request-labeling@7e2eefa1375195fa7616f78a76f538a188852067 with: angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }} post_approval_changes: runs-on: ubuntu-latest steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - - uses: angular/dev-infra/github-actions/post-approval-changes@80db036355181684ed07021a175e9f039190d3d6 + - uses: angular/dev-infra/github-actions/post-approval-changes@7e2eefa1375195fa7616f78a76f538a188852067 with: angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }} diff --git a/.github/workflows/google-internal-tests.yml b/.github/workflows/google-internal-tests.yml index 49536db2867..93d6d81b3f9 100644 --- a/.github/workflows/google-internal-tests.yml +++ b/.github/workflows/google-internal-tests.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - - uses: angular/dev-infra/github-actions/google-internal-tests@80db036355181684ed07021a175e9f039190d3d6 + - uses: angular/dev-infra/github-actions/google-internal-tests@7e2eefa1375195fa7616f78a76f538a188852067 with: run-tests-guide-url: http://go/angular-g3sync-start github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 08647f7a5c6..2e3a8543af2 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -13,17 +13,17 @@ jobs: JOBS: 2 steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 with: cache-node-modules: true - name: Install node modules run: pnpm install --frozen-lockfile - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel Remote Caching - uses: angular/dev-infra/github-actions/bazel/configure-remote@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/configure-remote@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Saucelabs Variables - uses: angular/dev-infra/github-actions/saucelabs@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/saucelabs@7e2eefa1375195fa7616f78a76f538a188852067 - name: Set up Sauce Tunnel Daemon run: pnpm bazel run //tools/saucelabs-daemon/background-service -- $JOBS & env: diff --git a/.github/workflows/merge-ready-status.yml b/.github/workflows/merge-ready-status.yml index 44887887174..370cfc001fe 100644 --- a/.github/workflows/merge-ready-status.yml +++ b/.github/workflows/merge-ready-status.yml @@ -9,6 +9,6 @@ jobs: status: runs-on: ubuntu-latest steps: - - uses: angular/dev-infra/github-actions/unified-status-check@80db036355181684ed07021a175e9f039190d3d6 + - uses: angular/dev-infra/github-actions/unified-status-check@7e2eefa1375195fa7616f78a76f538a188852067 with: angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }} diff --git a/.github/workflows/perf.yml b/.github/workflows/perf.yml index 8a13dea1981..9c0a23a7b01 100644 --- a/.github/workflows/perf.yml +++ b/.github/workflows/perf.yml @@ -21,7 +21,7 @@ jobs: workflows: ${{ steps.workflows.outputs.workflows }} steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 - name: Install node modules run: pnpm install --frozen-lockfile - id: workflows @@ -36,9 +36,9 @@ jobs: workflow: ${{ fromJSON(needs.list.outputs.workflows) }} steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Install node modules run: pnpm install --frozen-lockfile # We utilize the google-github-actions/auth action to allow us to get an active credential using workflow diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index a5dea8781f2..a347098085d 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 with: cache-node-modules: true - name: Install node modules @@ -39,7 +39,7 @@ jobs: - name: Check code format run: pnpm ng-dev format changed --check ${{ github.event.pull_request.base.sha }} - name: Check Package Licenses - uses: angular/dev-infra/github-actions/linting/licenses@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/linting/licenses@7e2eefa1375195fa7616f78a76f538a188852067 with: allow-dependencies-licenses: 'pkg:npm/google-protobuf@' @@ -47,13 +47,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 with: cache-node-modules: true - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/configure-remote@7e2eefa1375195fa7616f78a76f538a188852067 - name: Install node modules run: pnpm install --frozen-lockfile - name: Run unit tests @@ -72,13 +72,13 @@ jobs: runs-on: ubuntu-latest-8core steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 with: cache-node-modules: true - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel Remote Caching - uses: angular/dev-infra/github-actions/bazel/configure-remote@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/configure-remote@7e2eefa1375195fa7616f78a76f538a188852067 - name: Install node modules run: pnpm install --frozen-lockfile - name: Run CI tests for framework @@ -98,13 +98,13 @@ jobs: runs-on: ubuntu-latest-4core steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 with: cache-node-modules: true - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel Remote Caching - uses: angular/dev-infra/github-actions/bazel/configure-remote@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/configure-remote@7e2eefa1375195fa7616f78a76f538a188852067 - name: Install node modules run: pnpm install --frozen-lockfile - name: Run integration CI tests for framework @@ -115,11 +115,11 @@ jobs: labels: ubuntu-latest-8core steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/configure-remote@7e2eefa1375195fa7616f78a76f538a188852067 - name: Install node modules run: pnpm install --frozen-lockfile - name: Run tests @@ -132,7 +132,7 @@ jobs: labels: ubuntu-latest-4core steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@7e2eefa1375195fa7616f78a76f538a188852067 with: cache-node-modules: true node-module-directories: | @@ -140,9 +140,9 @@ jobs: ./packages/zone.js/node_modules ./packages/zone.js/test/typings/node_modules - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/setup@7e2eefa1375195fa7616f78a76f538a188852067 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@80db036355181684ed07021a175e9f039190d3d6 + uses: angular/dev-infra/github-actions/bazel/configure-remote@7e2eefa1375195fa7616f78a76f538a188852067 - name: Install node modules run: pnpm install --frozen-lockfile - run: | diff --git a/MODULE.bazel b/MODULE.bazel index 5360488d2e8..84d61a69a6b 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -25,7 +25,7 @@ git_override( bazel_dep(name = "devinfra") git_override( module_name = "devinfra", - commit = "00a4cf14cdc374867673a52ecb556f356da8bec0", + commit = "7e2eefa1375195fa7616f78a76f538a188852067", remote = "https://github.com/angular/dev-infra.git", ) diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index 3542f0f393b..71fd2dbdd51 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -545,10 +545,9 @@ "@@aspect_rules_ts~//ts:extensions.bzl%ext": { "general": { "bzlTransitiveDigest": "9IJp6IlB/FMHFBJe4MX/DQM4zi3oArC8yqYE/+NyPwk=", - "usagesDigest": "1rX5zKEA5AF0V7MwOa4Uu00O9/xtmOXAgV3jUGUxeQk=", + "usagesDigest": "VEukiyPNBCfwTk3eLa/G6XI3Kv7diVRz/46ULqKcb78=", "recordedFileInputs": { - "@@//package.json": "0e9f348b26dc22ddbdfbf9c66202ff6e2c84e3c3494f76bc28770a7996ecde24", - "@@devinfra~//bazel/package.json": "960bcecf963a211f96a3967c7cfb5d3e1cea08d94b27056a3e8dbf2fad1e2dd3", + "@@//package.json": "33655c4160fe393beb831b00b2696dfca1c68e594dba2a751ec74b90bd89185b", "@@rules_browsers~//package.json": "45572077938c7a4916e4aaedf7db7ce8425854ab92f35348cff02a2134023bb8" }, "recordedDirentsInputs": {}, @@ -581,8 +580,7 @@ "bzlFile": "@@aspect_rules_ts~//ts/private:npm_repositories.bzl", "ruleClassName": "http_archive_version", "attributes": { - "version": "", - "version_from": "@@devinfra~//bazel:package.json", + "version": "5.9.2", "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", "urls": [ "https://registry.npmjs.org/typescript/-/typescript-{}.tgz" diff --git a/adev/package.json b/adev/package.json index 143a9e097df..2708bb6fb0b 100644 --- a/adev/package.json +++ b/adev/package.json @@ -1,21 +1,21 @@ { "dependencies": { - "@angular-devkit/build-angular": "21.0.0-next.0", + "@angular-devkit/build-angular": "21.0.0-next.1", "@angular/animations": "workspace:*", - "@angular/build": "21.0.0-next.0", - "@angular/cdk": "21.0.0-next.0", - "@angular/cli": "21.0.0-next.0", + "@angular/build": "21.0.0-next.1", + "@angular/cdk": "21.0.0-next.1", + "@angular/cli": "21.0.0-next.1", "@angular/common": "workspace:*", "@angular/compiler-cli": "workspace:*", "@angular/compiler": "workspace:*", "@angular/core": "workspace:*", "@angular/docs": "workspace:*", "@angular/forms": "workspace:*", - "@angular/material": "21.0.0-next.0", + "@angular/material": "21.0.0-next.1", "@angular/platform-browser": "workspace:*", "@angular/platform-server": "workspace:*", "@angular/router": "workspace:*", - "@angular/ssr": "21.0.0-next.0", + "@angular/ssr": "21.0.0-next.1", "@codemirror/autocomplete": "6.18.6", "@codemirror/commands": "6.8.1", "@codemirror/lang-angular": "0.1.4", diff --git a/modules/package.json b/modules/package.json index 37a6b9d47e0..a7970865119 100644 --- a/modules/package.json +++ b/modules/package.json @@ -2,7 +2,7 @@ "dependencies": { "@angular/animations": "workspace:*", "@angular/benchpress": "workspace:*", - "@angular/build": "21.0.0-next.0", + "@angular/build": "21.0.0-next.1", "@angular/common": "workspace:*", "@angular/compiler": "workspace:*", "@angular/compiler-cli": "workspace:*", diff --git a/package.json b/package.json index 4e635ad3b88..448849837e2 100644 --- a/package.json +++ b/package.json @@ -48,14 +48,14 @@ }, "// 1": "dependencies are used locally and by bazel", "dependencies": { - "@angular-devkit/build-angular": "21.0.0-next.0", - "@angular-devkit/core": "21.0.0-next.0", - "@angular-devkit/schematics": "21.0.0-next.0", + "@angular-devkit/build-angular": "21.0.0-next.1", + "@angular-devkit/core": "21.0.0-next.1", + "@angular-devkit/schematics": "21.0.0-next.1", "@angular/animations": "workspace:*", "@angular/benchpress": "workspace: *", - "@angular/build": "21.0.0-next.0", - "@angular/cdk": "21.0.0-next.0", - "@angular/cli": "21.0.0-next.0", + "@angular/build": "21.0.0-next.1", + "@angular/cdk": "21.0.0-next.1", + "@angular/cli": "21.0.0-next.1", "@angular/common": "workspace:*", "@angular/compiler": "workspace:*", "@angular/compiler-cli": "workspace:*", @@ -64,13 +64,13 @@ "@angular/forms": "workspace:*", "@angular/language-service": "workspace: *", "@angular/localize": "workspace: *", - "@angular/material": "21.0.0-next.0", + "@angular/material": "21.0.0-next.1", "@angular/platform-browser": "workspace:*", "@angular/platform-browser-dynamic": "workspace:*", "@angular/platform-server": "workspace:*", "@angular/router": "workspace:*", "@angular/service-worker": "workspace:*", - "@angular/ssr": "21.0.0-next.0", + "@angular/ssr": "21.0.0-next.1", "@angular/upgrade": "workspace: *", "@babel/cli": "7.28.3", "@babel/core": "7.28.3", @@ -80,7 +80,7 @@ "@rollup/plugin-babel": "^6.0.0", "@rollup/plugin-commonjs": "^28.0.0", "@rollup/plugin-node-resolve": "^16.0.0", - "@schematics/angular": "21.0.0-next.0", + "@schematics/angular": "21.0.0-next.1", "@types/angular": "^1.6.47", "@types/babel__core": "7.20.5", "@types/babel__generator": "7.27.0", @@ -166,8 +166,8 @@ "devDependencies": { "@actions/core": "^1.10.0", "@actions/github": "^6.0.0", - "@angular-devkit/architect-cli": "0.2100.0-next.0", - "@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#e5cf193487333c2dbb5eaaa0941a6b23b34af262", + "@angular-devkit/architect-cli": "0.2100.0-next.1", + "@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#f915c2e621df0682a968237c1c38ea86ca76e9b7", "@babel/plugin-proposal-async-generator-functions": "7.20.7", "@babel/plugin-transform-async-generator-functions": "^7.27.1", "@bazel/bazelisk": "^1.7.5", diff --git a/packages/core/test/bundling/package.json b/packages/core/test/bundling/package.json index 1bf9ed84557..adbcfc9e3dd 100644 --- a/packages/core/test/bundling/package.json +++ b/packages/core/test/bundling/package.json @@ -1,7 +1,7 @@ { "dependencies": { "@angular/animations": "workspace:*", - "@angular/build": "21.0.0-next.0", + "@angular/build": "21.0.0-next.1", "@angular/common": "workspace:*", "@angular/compiler-cli": "workspace:*", "@angular/compiler": "workspace:*", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f4a2e769598..6f072d9f69a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -25,14 +25,14 @@ importers: .: dependencies: '@angular-devkit/build-angular': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0(@angular/ssr@21.0.0-next.0)(@types/node@18.19.122)(bufferutil@4.0.9)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9))(protractor@7.0.0)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1) + specifier: 21.0.0-next.1 + version: 21.0.0-next.1(@angular/ssr@21.0.0-next.1)(@types/node@18.19.122)(bufferutil@4.0.9)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9))(protractor@7.0.0)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1) '@angular-devkit/core': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0(chokidar@4.0.3) + specifier: 21.0.0-next.1 + version: 21.0.0-next.1(chokidar@4.0.3) '@angular-devkit/schematics': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0(chokidar@4.0.3) + specifier: 21.0.0-next.1 + version: 21.0.0-next.1(chokidar@4.0.3) '@angular/animations': specifier: workspace:* version: link:packages/animations @@ -40,14 +40,14 @@ importers: specifier: 'workspace: *' version: link:packages/benchpress '@angular/build': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.0)(@types/node@18.19.122)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1) + specifier: 21.0.0-next.1 + version: 21.0.0-next.1(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.1)(@types/node@18.19.122)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1) '@angular/cdk': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0(rxjs@7.8.2) + specifier: 21.0.0-next.1 + version: 21.0.0-next.1(rxjs@7.8.2) '@angular/cli': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0(@types/node@18.19.122)(chokidar@4.0.3) + specifier: 21.0.0-next.1 + version: 21.0.0-next.1(@types/node@18.19.122)(chokidar@4.0.3) '@angular/common': specifier: workspace:* version: link:packages/common @@ -73,8 +73,8 @@ importers: specifier: 'workspace: *' version: link:packages/localize '@angular/material': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0(@angular/cdk@21.0.0-next.0(rxjs@7.8.2))(rxjs@7.8.2) + specifier: 21.0.0-next.1 + version: 21.0.0-next.1(@angular/cdk@21.0.0-next.1(rxjs@7.8.2))(rxjs@7.8.2) '@angular/platform-browser': specifier: workspace:* version: link:packages/platform-browser @@ -91,8 +91,8 @@ importers: specifier: workspace:* version: link:packages/service-worker '@angular/ssr': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0 + specifier: 21.0.0-next.1 + version: 21.0.0-next.1 '@angular/upgrade': specifier: 'workspace: *' version: link:packages/upgrade @@ -121,8 +121,8 @@ importers: specifier: ^16.0.0 version: 16.0.1(rollup@4.48.1) '@schematics/angular': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0(chokidar@4.0.3) + specifier: 21.0.0-next.1 + version: 21.0.0-next.1(chokidar@4.0.3) '@types/angular': specifier: ^1.6.47 version: 1.8.9 @@ -275,7 +275,7 @@ importers: version: 0.1.1 ngx-progressbar: specifier: ^14.0.0 - version: 14.0.0(@angular/cdk@21.0.0-next.0(rxjs@7.8.2))(rxjs@7.8.2) + version: 14.0.0(@angular/cdk@21.0.0-next.1(rxjs@7.8.2))(rxjs@7.8.2) open-in-idx: specifier: ^0.1.1 version: 0.1.1 @@ -371,11 +371,11 @@ importers: specifier: ^6.0.0 version: 6.0.1 '@angular-devkit/architect-cli': - specifier: 0.2100.0-next.0 - version: 0.2100.0-next.0(chokidar@4.0.3) + specifier: 0.2100.0-next.1 + version: 0.2100.0-next.1(chokidar@4.0.3) '@angular/ng-dev': - specifier: https://github.com/angular/dev-infra-private-ng-dev-builds.git#e5cf193487333c2dbb5eaaa0941a6b23b34af262 - version: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/e5cf193487333c2dbb5eaaa0941a6b23b34af262(@modelcontextprotocol/sdk@1.17.3) + specifier: https://github.com/angular/dev-infra-private-ng-dev-builds.git#f915c2e621df0682a968237c1c38ea86ca76e9b7 + version: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/f915c2e621df0682a968237c1c38ea86ca76e9b7(@modelcontextprotocol/sdk@1.17.4) '@babel/plugin-proposal-async-generator-functions': specifier: 7.20.7 version: 7.20.7(@babel/core@7.28.3) @@ -527,20 +527,20 @@ importers: specifier: 5.35.0 version: 5.35.0 '@angular-devkit/build-angular': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0(@angular/ssr@21.0.0-next.0)(@types/node@24.3.0)(bufferutil@4.0.9)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(protractor@7.0.0)(tsx@4.20.4)(typescript@5.9.2)(utf-8-validate@6.0.5)(yaml@2.8.1) + specifier: 21.0.0-next.1 + version: 21.0.0-next.1(@angular/ssr@21.0.0-next.1)(@types/node@24.3.0)(bufferutil@4.0.9)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(protractor@7.0.0)(tsx@4.20.4)(typescript@5.9.2)(utf-8-validate@6.0.5)(yaml@2.8.1) '@angular/animations': specifier: workspace:* version: link:../packages/animations '@angular/build': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.0)(@types/node@24.3.0)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1) + specifier: 21.0.0-next.1 + version: 21.0.0-next.1(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.1)(@types/node@24.3.0)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1) '@angular/cdk': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0(rxjs@7.8.2) + specifier: 21.0.0-next.1 + version: 21.0.0-next.1(rxjs@7.8.2) '@angular/cli': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0(@types/node@24.3.0)(chokidar@4.0.3) + specifier: 21.0.0-next.1 + version: 21.0.0-next.1(@types/node@24.3.0)(chokidar@4.0.3) '@angular/common': specifier: workspace:* version: link:../packages/common @@ -560,8 +560,8 @@ importers: specifier: workspace:* version: link:../packages/forms '@angular/material': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0(@angular/cdk@21.0.0-next.0(rxjs@7.8.2))(rxjs@7.8.2) + specifier: 21.0.0-next.1 + version: 21.0.0-next.1(@angular/cdk@21.0.0-next.1(rxjs@7.8.2))(rxjs@7.8.2) '@angular/platform-browser': specifier: workspace:* version: link:../packages/platform-browser @@ -572,8 +572,8 @@ importers: specifier: workspace:* version: link:../packages/router '@angular/ssr': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0 + specifier: 21.0.0-next.1 + version: 21.0.0-next.1 '@codemirror/autocomplete': specifier: 6.18.6 version: 6.18.6 @@ -705,7 +705,7 @@ importers: version: 11.10.1 ngx-progressbar: specifier: 14.0.0 - version: 14.0.0(@angular/cdk@21.0.0-next.0(rxjs@7.8.2))(rxjs@7.8.2) + version: 14.0.0(@angular/cdk@21.0.0-next.1(rxjs@7.8.2))(rxjs@7.8.2) open-in-idx: specifier: 0.1.1 version: 0.1.1 @@ -821,8 +821,8 @@ importers: specifier: workspace:* version: link:../packages/benchpress '@angular/build': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.0)(@types/node@24.3.0)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1) + specifier: 21.0.0-next.1 + version: 21.0.0-next.1(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.1)(@types/node@24.3.0)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1) '@angular/common': specifier: workspace:* version: link:../packages/common @@ -995,8 +995,8 @@ importers: specifier: workspace:* version: link:../../../animations '@angular/build': - specifier: 21.0.0-next.0 - version: 21.0.0-next.0(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.0)(@types/node@24.3.0)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1) + specifier: 21.0.0-next.1 + version: 21.0.0-next.1(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.1)(@types/node@24.3.0)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1) '@angular/common': specifier: workspace:* version: link:../../../common @@ -1204,76 +1204,132 @@ packages: resolution: {integrity: sha512-sEyWjw28a/9iluA37KLGu8vjxEIlb60uxznfTUmXImy7H5NvbpSO6yYgmgH5KiD7j+zTUUihiST0jEP12IoXow==} engines: {node: '>= 14.0.0'} + '@algolia/abtesting@1.2.0': + resolution: {integrity: sha512-Z6Liq7US5CpdHExZLfPMBPxQHHUObV587kGvCLniLr1UTx0fGFIeGNWd005WIqQXqEda9GyAi7T2e7DUupVv0g==} + engines: {node: '>= 14.0.0'} + '@algolia/client-abtesting@5.35.0': resolution: {integrity: sha512-uUdHxbfHdoppDVflCHMxRlj49/IllPwwQ2cQ8DLC4LXr3kY96AHBpW0dMyi6ygkn2MtFCc6BxXCzr668ZRhLBQ==} engines: {node: '>= 14.0.0'} + '@algolia/client-abtesting@5.36.0': + resolution: {integrity: sha512-uGr57O1UqDDeZHYXr1VnUomtdgQMxb6fS8yC/LXCMOn5ucN4k6FlcCRqXQnUyiiFZNG/rVK3zpRiyomq4JWXdQ==} + engines: {node: '>= 14.0.0'} + '@algolia/client-analytics@5.35.0': resolution: {integrity: sha512-SunAgwa9CamLcRCPnPHx1V2uxdQwJGqb1crYrRWktWUdld0+B2KyakNEeVn5lln4VyeNtW17Ia7V7qBWyM/Skw==} engines: {node: '>= 14.0.0'} + '@algolia/client-analytics@5.36.0': + resolution: {integrity: sha512-/zrf0NMxcvBBQ4r9lIqM7rMt7oI7gY7bZ+bNcgpZAQMvzXbKJVla3MqKGuPC/bfOthKvAcAr0mCZ8/7GwBmkVw==} + engines: {node: '>= 14.0.0'} + '@algolia/client-common@5.35.0': resolution: {integrity: sha512-ipE0IuvHu/bg7TjT2s+187kz/E3h5ssfTtjpg1LbWMgxlgiaZIgTTbyynM7NfpSJSKsgQvCQxWjGUO51WSCu7w==} engines: {node: '>= 14.0.0'} + '@algolia/client-common@5.36.0': + resolution: {integrity: sha512-fDsg9w6xXWQyNkm/VfiWF2D9wnpTPv0fRVei7lWtz7cXJewhOmP1kKE2GaDTI4QDxVxgDkoPJ1+3UVMIzTcjjQ==} + engines: {node: '>= 14.0.0'} + '@algolia/client-insights@5.35.0': resolution: {integrity: sha512-UNbCXcBpqtzUucxExwTSfAe8gknAJ485NfPN6o1ziHm6nnxx97piIbcBQ3edw823Tej2Wxu1C0xBY06KgeZ7gA==} engines: {node: '>= 14.0.0'} + '@algolia/client-insights@5.36.0': + resolution: {integrity: sha512-x6ZICyIN3BZjja47lqlMLG+AZwfx9wrYWttd6Daxp+wX/fFGxha6gdqxeoi5J44BmFqK8CUU4u8vpwHqGOCl4g==} + engines: {node: '>= 14.0.0'} + '@algolia/client-personalization@5.35.0': resolution: {integrity: sha512-/KWjttZ6UCStt4QnWoDAJ12cKlQ+fkpMtyPmBgSS2WThJQdSV/4UWcqCUqGH7YLbwlj3JjNirCu3Y7uRTClxvA==} engines: {node: '>= 14.0.0'} + '@algolia/client-personalization@5.36.0': + resolution: {integrity: sha512-gnH9VHrC+/9OuaumbgxNXzzEq1AY2j3tm00ymNXNz35T7RQ2AK/x4T5b2UnjOUJejuXaSJ88gFyPk3nM5OhJZQ==} + engines: {node: '>= 14.0.0'} + '@algolia/client-query-suggestions@5.35.0': resolution: {integrity: sha512-8oCuJCFf/71IYyvQQC+iu4kgViTODbXDk3m7yMctEncRSRV+u2RtDVlpGGfPlJQOrAY7OONwJlSHkmbbm2Kp/w==} engines: {node: '>= 14.0.0'} + '@algolia/client-query-suggestions@5.36.0': + resolution: {integrity: sha512-GkWIS+cAMoxsNPHEp3j7iywO9JJMVHVCWHzPPHFXIe0iNIOfsnZy5MqC1T9sifjqoU9b0GGbzzdxB3TEdwfiFA==} + engines: {node: '>= 14.0.0'} + '@algolia/client-search@5.35.0': resolution: {integrity: sha512-FfmdHTrXhIduWyyuko1YTcGLuicVbhUyRjO3HbXE4aP655yKZgdTIfMhZ/V5VY9bHuxv/fGEh3Od1Lvv2ODNTg==} engines: {node: '>= 14.0.0'} + '@algolia/client-search@5.36.0': + resolution: {integrity: sha512-MLx32nSeDSNxfx28IfvwfHEfeo3AYe9JgEj0rLeYtJGmt0W30K6tCNokxhWGUUKrggQTH6H1lnohWsoj2OC2bw==} + engines: {node: '>= 14.0.0'} + '@algolia/ingestion@1.35.0': resolution: {integrity: sha512-gPzACem9IL1Co8mM1LKMhzn1aSJmp+Vp434An4C0OBY4uEJRcqsLN3uLBlY+bYvFg8C8ImwM9YRiKczJXRk0XA==} engines: {node: '>= 14.0.0'} + '@algolia/ingestion@1.36.0': + resolution: {integrity: sha512-6zmlPLCsyzShOsfs1G1uqxwLTojte3NLyukwyUmJFfa46DSq3wkIOE9hFtqAoV951dXp4sZd2KCFYJmgRjcYbA==} + engines: {node: '>= 14.0.0'} + '@algolia/monitoring@1.35.0': resolution: {integrity: sha512-w9MGFLB6ashI8BGcQoVt7iLgDIJNCn4OIu0Q0giE3M2ItNrssvb8C0xuwJQyTy1OFZnemG0EB1OvXhIHOvQwWw==} engines: {node: '>= 14.0.0'} + '@algolia/monitoring@1.36.0': + resolution: {integrity: sha512-SjJeDqlzAKJiWhquqfDWLEu5X/PIM+5KvUH65c4LBvt8T+USOVJbijtzA9UHZ1eUIfFSDBmbzEH0YvlS6Di2mg==} + engines: {node: '>= 14.0.0'} + '@algolia/recommend@5.35.0': resolution: {integrity: sha512-AhrVgaaXAb8Ue0u2nuRWwugt0dL5UmRgS9LXe0Hhz493a8KFeZVUE56RGIV3hAa6tHzmAV7eIoqcWTQvxzlJeQ==} engines: {node: '>= 14.0.0'} + '@algolia/recommend@5.36.0': + resolution: {integrity: sha512-FalJm3h9fwoZZpkkMpA0r4Grcvjk32FzmC4CXvlpyF/gBvu6pXE01yygjJBU20zGVLGsXU+Ad8nYPf+oGD7Zkg==} + engines: {node: '>= 14.0.0'} + '@algolia/requester-browser-xhr@5.35.0': resolution: {integrity: sha512-diY415KLJZ6x1Kbwl9u96Jsz0OstE3asjXtJ9pmk1d+5gPuQ5jQyEsgC+WmEXzlec3iuVszm8AzNYYaqw6B+Zw==} engines: {node: '>= 14.0.0'} + '@algolia/requester-browser-xhr@5.36.0': + resolution: {integrity: sha512-weE9SImWIDmQrfGLb1pSPEfP3mioKQ84GaQRpUmjFxlxG/4nW2bSsmkV+kNp1s+iomL2gnxFknSmcQuuAy+kPA==} + engines: {node: '>= 14.0.0'} + '@algolia/requester-fetch@5.35.0': resolution: {integrity: sha512-uydqnSmpAjrgo8bqhE9N1wgcB98psTRRQXcjc4izwMB7yRl9C8uuAQ/5YqRj04U0mMQ+fdu2fcNF6m9+Z1BzDQ==} engines: {node: '>= 14.0.0'} + '@algolia/requester-fetch@5.36.0': + resolution: {integrity: sha512-zGPI2sgzvOwCHTVMmDvc301iirOKCtJ+Egh+HQB/+DG0zTGUT1DpdwQVT25A7Yin/twnO8CkFpI/S+74FVYNjg==} + engines: {node: '>= 14.0.0'} + '@algolia/requester-node-http@5.35.0': resolution: {integrity: sha512-RgLX78ojYOrThJHrIiPzT4HW3yfQa0D7K+MQ81rhxqaNyNBu4F1r+72LNHYH/Z+y9I1Mrjrd/c/Ue5zfDgAEjQ==} engines: {node: '>= 14.0.0'} + '@algolia/requester-node-http@5.36.0': + resolution: {integrity: sha512-dNbBGE/O6VG/6vFhv3CFm5za4rubAVrhQf/ef0YWiDqPMmalPxGEzIijw4xV1mU1JmX2ffyp/x8Kdtz24sDkOQ==} + engines: {node: '>= 14.0.0'} + '@ampproject/remapping@2.3.0': resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@angular-devkit/architect-cli@0.2100.0-next.0': - resolution: {integrity: sha512-f3zlTCknRhI8b4S2BmlLrFsx43IMePb0wbV1Hbes2AbKjd+JOwTUmT7rp1cmFVOyazBsDTi71rp3Rgdv+KN0Ow==} + '@angular-devkit/architect-cli@0.2100.0-next.1': + resolution: {integrity: sha512-Jh+o09W4cCw5N77V1LbHwczsgL12SbuCd1vbFt4sogJ5LbXknTYWiy3RDBtTUbVhONZfYknmz1+3tnXLbrBzrg==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} hasBin: true - '@angular-devkit/architect@0.2100.0-next.0': - resolution: {integrity: sha512-7b4H9bUCsImjgB80n2L90UFjY5DoDtZcJBRoErR4I3ZRw2RKW+IEhqJ/ooAVr7qdxprFiQ76/xBuAM1NrkU4Mg==} + '@angular-devkit/architect@0.2100.0-next.1': + resolution: {integrity: sha512-fxIzzVAmxqK2vvdrmwXcksMvksk1P6u8vclGmDFRfdj1GTsZm8DsKLjDJqOugDv1ziJ+rDlvaZ/3xOQLmYQg0Q==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - '@angular-devkit/build-angular@21.0.0-next.0': - resolution: {integrity: sha512-qFH8DUU9vUqx9FvHG8VkQPKgktrhNPIJ8Xnl2AZA/7Tmwfx1Un3gUmq/BRu5g6RsxQhQAr99OxiIyDk7D2R34w==} + '@angular-devkit/build-angular@21.0.0-next.1': + resolution: {integrity: sha512-Mb+XUEec59kuvKPgAaRRcsxvM3swlcCLxVgXMXxq+kW7tPIkcezV4zTp0/jU/RvJWkdoBm3hqkOz/b6Nr5PVIw==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: - '@angular/ssr': ^21.0.0-next.0 + '@angular/ssr': ^21.0.0-next.1 '@web/test-runner': ^0.20.0 browser-sync: ^3.0.2 jest: ^29.5.0 @@ -1308,15 +1364,15 @@ packages: engines: {node: '>= 8.9.0', npm: '>= 5.5.1'} hasBin: true - '@angular-devkit/build-webpack@0.2100.0-next.0': - resolution: {integrity: sha512-YZqsw2NVIfrMaTWmPBp4LB9MwaRurDYSLXY3fLzflnMnmZfHJW2sc+y1XVyHpGg0LZt4TIh3lEJ6uKrmOs3KfQ==} + '@angular-devkit/build-webpack@0.2100.0-next.1': + resolution: {integrity: sha512-/cwOqPxfZ6uzy99oHbWJd04yECkseXMJaNI4U8WmSWxPUHqZkkEcNh8HRFzlVJ/8+RDGZju4vfR8LlzUzb1q0A==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: webpack: ^5.30.0 webpack-dev-server: ^5.0.2 - '@angular-devkit/core@21.0.0-next.0': - resolution: {integrity: sha512-b5or1kdG1vyDCd7DZRL3D0SmtsOWEdRjuDKt2feuy8mvMiSMT1XjFcB48qwqjI/ygwKDxOGZB5RQL9PeZkvgaA==} + '@angular-devkit/core@21.0.0-next.1': + resolution: {integrity: sha512-iDf3a1lcyQFmU/bj5MoE6zcrkW5C98m1NDglRy2Z2pSEVDNR5t3kTB2x8Q4kU9AFNbNTuE2QxuN5rMS1+fPuzg==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: chokidar: ^4.0.0 @@ -1324,15 +1380,15 @@ packages: chokidar: optional: true - '@angular-devkit/schematics@21.0.0-next.0': - resolution: {integrity: sha512-sSPkCkongYy85g+067uepAyd8xbGvjp48+yFyrB2etZynoEUHs9lAED1LqilZiiaF0glXTZVJ1nRtJldqZDeCQ==} + '@angular-devkit/schematics@21.0.0-next.1': + resolution: {integrity: sha512-bDQRC5VMVfMoQsbSNLJJaBqRG7XM2WYLMERfMqlo0WhySvnGep9dmI4dR6tSgwngA+sCNZKAXWD0YRRLpmlmWw==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - '@angular/build@21.0.0-next.0': - resolution: {integrity: sha512-pazaMkgMi+hq31yLuMFbYJLiTx+wcfQFybdjwRLyb7XbejN1xh8Mznegb8wrDDSSr5dhzYnWXCZRLqtXWIu6fQ==} + '@angular/build@21.0.0-next.1': + resolution: {integrity: sha512-8M6/9ZWxU8iQCXUce3TDimkKvMAV+W/lkOScAAjWatV0CQvmIEditoMT03RFbTue6zfVZQtlMbdSRLMZePsEfQ==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: - '@angular/ssr': ^21.0.0-next.0 + '@angular/ssr': ^21.0.0-next.1 karma: ^6.4.0 less: ^4.2.0 ng-packagr: ^21.0.0-next.0 @@ -1357,13 +1413,13 @@ packages: vitest: optional: true - '@angular/cdk@21.0.0-next.0': - resolution: {integrity: sha512-zM4s/N8ouy7t5kk43X5yqLHqz7n/l4CsBpPcGoK9AR/j3aaAs3jdjRosercYhbbZ/hupMgdfki6cG3ZNVb1HTQ==} + '@angular/cdk@21.0.0-next.1': + resolution: {integrity: sha512-0lExWmXoteQiZSv0d/+ZRFP2UIb3AQR3yQW4ju+LL1TDfM+1xDXIAv6OWX8EkUAOmxdaH5qc/8iiPjwLUIO9vw==} peerDependencies: rxjs: ^6.5.3 || ^7.4.0 - '@angular/cli@21.0.0-next.0': - resolution: {integrity: sha512-P5iuVE58kItzBzGpS+5XimBPTTGr0qfyBjwr/jU+5JcIvDTXSbv6LX5iJdDUPedCo44unoV8y2zHeeCdyaBnIA==} + '@angular/cli@21.0.0-next.1': + resolution: {integrity: sha512-uUUxlebMdF45sIWC2eZpeTqfMy1B1JPEFbtN4CkjtoyNZbHQOqxXTfufQxw1nAGKnVEjvD5qNecMoAYQSqTkYw==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} hasBin: true @@ -1375,19 +1431,19 @@ packages: resolution: {tarball: https://codeload.github.com/angular/domino/tar.gz/93e720f143d0296dd2726ffbcf4fc12283363a7b} version: 2.1.6 - '@angular/material@21.0.0-next.0': - resolution: {integrity: sha512-5vUAVDjnvyJggs91hSh43fsK1b9wN+MtuhYoHKcnLkze29i3M45BwJCCvpxOR0A4Ln0qRPOVAw7w9h6NyITqAg==} + '@angular/material@21.0.0-next.1': + resolution: {integrity: sha512-no8LyIHG7+DRR2jftUNnvB8xMD3V01D9gHFtvzBjnUbt+Obwt7qmXivlpSbjPeTrmiBeq3GhiDlSdTchgV9BeQ==} peerDependencies: - '@angular/cdk': 21.0.0-next.0 + '@angular/cdk': 21.0.0-next.1 rxjs: ^6.5.3 || ^7.4.0 - '@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/e5cf193487333c2dbb5eaaa0941a6b23b34af262': - resolution: {tarball: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/e5cf193487333c2dbb5eaaa0941a6b23b34af262} - version: 0.0.0-80db036355181684ed07021a175e9f039190d3d6 + '@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/f915c2e621df0682a968237c1c38ea86ca76e9b7': + resolution: {tarball: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/f915c2e621df0682a968237c1c38ea86ca76e9b7} + version: 0.0.0-7e2eefa1375195fa7616f78a76f538a188852067 hasBin: true - '@angular/ssr@21.0.0-next.0': - resolution: {integrity: sha512-MR0TrF7SyuA46Roqcl/stwHQbP6112oXzxx2RSFbxYK7jQYRoIBOTBxQJY6UbRMJRcA0pFwx3AfZfEElbdAVhQ==} + '@angular/ssr@21.0.0-next.1': + resolution: {integrity: sha512-Yw96UfURSalC20WzRixcgrRNIv5y/Zlq/H8QleTnQ3DRXwhBXqIHpIUr8fPXyepCAScjqeJ2VHCh4yddp2bPsg==} '@antfu/install-pkg@1.1.0': resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==} @@ -1436,12 +1492,6 @@ packages: resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} engines: {node: '>=6.9.0'} - '@babel/helper-create-class-features-plugin@7.27.1': - resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/helper-create-class-features-plugin@7.28.3': resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==} engines: {node: '>=6.9.0'} @@ -2288,8 +2338,8 @@ packages: resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==} engines: {node: '>=14'} - '@firebase/ai@2.0.0': - resolution: {integrity: sha512-N/aSHjqOpU+KkYU3piMkbcuxzvqsOvxflLUXBAkYAPAz8wjE2Ye3BQDgKHEYuhMmEWqj6LFgEBUN8wwc6dfMTw==} + '@firebase/ai@2.1.0': + resolution: {integrity: sha512-4HvFr4YIzNFh0MowJLahOjJDezYSTjQar0XYVu/sAycoxQ+kBsfXuTPRLVXCYfMR5oNwQgYe4Q2gAOYKKqsOyA==} engines: {node: '>=20.0.0'} peerDependencies: '@firebase/app': 0.x @@ -2326,15 +2376,15 @@ packages: peerDependencies: '@firebase/app': 0.x - '@firebase/app-compat@0.5.0': - resolution: {integrity: sha512-nUnNpOeRj0KZzVzHsyuyrmZKKHfykZ8mn40FtG28DeSTWeM5b/2P242Va4bmQpJsy5y32vfv50+jvdckrpzy7Q==} + '@firebase/app-compat@0.5.1': + resolution: {integrity: sha512-BEy1L6Ufd85ZSP79HDIv0//T9p7d5Bepwy+2mKYkgdXBGKTbFm2e2KxyF1nq4zSQ6RRBxWi0IY0zFVmoBTZlUA==} engines: {node: '>=20.0.0'} '@firebase/app-types@0.9.3': resolution: {integrity: sha512-kRVpIl4vVGJ4baogMDINbyrIOtOxqhkZQg4jTq3l8Lw6WSk0xfpEYzezFu+Kl4ve4fbPl79dvwRtaFqAC/ucCw==} - '@firebase/app@0.14.0': - resolution: {integrity: sha512-APIAeKvRNFWKJLjIL8wLDjh7u8g6ZjaeVmItyqSjCdEkJj14UuVlus74D8ofsOMWh45HEwxwkd96GYbi+CImEg==} + '@firebase/app@0.14.1': + resolution: {integrity: sha512-jxTrDbxnGoX7cGz7aP9E7v9iKvBbQfZ8Gz4TH3SfrrkcyIojJM3+hJnlbGnGxHrABts844AxRcg00arMZEyA6Q==} engines: {node: '>=20.0.0'} '@firebase/auth-compat@0.6.0': @@ -2447,16 +2497,16 @@ packages: peerDependencies: '@firebase/app': 0.x - '@firebase/performance-compat@0.2.21': - resolution: {integrity: sha512-OQfYRsIQiEf9ez1SOMLb5TRevBHNIyA2x1GI1H10lZ432W96AK5r4LTM+SNApg84dxOuHt6RWSQWY7TPWffKXg==} + '@firebase/performance-compat@0.2.22': + resolution: {integrity: sha512-xLKxaSAl/FVi10wDX/CHIYEUP13jXUjinL+UaNXT9ByIvxII5Ne5150mx6IgM8G6Q3V+sPiw9C8/kygkyHUVxg==} peerDependencies: '@firebase/app-compat': 0.x '@firebase/performance-types@0.2.3': resolution: {integrity: sha512-IgkyTz6QZVPAq8GSkLYJvwSLr3LS9+V6vNPQr0x4YozZJiLF5jYixj0amDtATf1X0EtYHqoPO48a9ija8GocxQ==} - '@firebase/performance@0.7.8': - resolution: {integrity: sha512-k6xfNM/CdTl4RaV4gT/lH53NU+wP33JiN0pUeNBzGVNvfXZ3HbCkoISE3M/XaiOwHgded1l6XfLHa4zHgm0Wyg==} + '@firebase/performance@0.7.9': + resolution: {integrity: sha512-UzybENl1EdM2I1sjYm74xGt/0JzRnU/0VmfMAKo2LSpHJzaj77FCLZXmYQ4oOuE+Pxtt8Wy2BVJEENiZkaZAzQ==} peerDependencies: '@firebase/app': 0.x @@ -2546,8 +2596,8 @@ packages: resolution: {integrity: sha512-IJn+8A3QZJfe7FUtWqHVNo3xJs7KFpurCWGWCiCz3oEh+BkRymKZ1QxfAbU2yGMDzTytLGQ2IV6T2r3cuo75/w==} engines: {node: '>=18'} - '@google/genai@1.13.0': - resolution: {integrity: sha512-BxilXzE8cJ0zt5/lXk6KwuBcIT9P2Lbi2WXhwWMbxf1RNeC68/8DmYQqMrzQP333CieRMdbDXs0eNCphLoScWg==} + '@google/genai@1.15.0': + resolution: {integrity: sha512-4CSW+hRTESWl3xVtde7pkQ3E+dDFhDq+m4ztmccRctZfx1gKy3v0M9STIMGk6Nq0s6O2uKMXupOZQ1JGorXVwQ==} engines: {node: '>=20.0.0'} peerDependencies: '@modelcontextprotocol/sdk': ^1.11.0 @@ -2604,8 +2654,8 @@ packages: '@types/node': optional: true - '@inquirer/checkbox@4.2.1': - resolution: {integrity: sha512-bevKGO6kX1eM/N+pdh9leS5L7TBF4ICrzi9a+cbWkrxeAeIcwlo/7OfWGCDERdRCI2/Q6tjltX4bt07ALHDwFw==} + '@inquirer/checkbox@4.2.2': + resolution: {integrity: sha512-E+KExNurKcUJJdxmjglTl141EwxWyAHplvsYJQgSwXf8qiNWkTxTuCCqmhFEmbIXd4zLaGMfQFJ6WrZ7fSeV3g==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -2622,8 +2672,8 @@ packages: '@types/node': optional: true - '@inquirer/confirm@5.1.15': - resolution: {integrity: sha512-SwHMGa8Z47LawQN0rog0sT+6JpiL0B7eW9p1Bb7iCeKDGTI5Ez25TSc2l8kw52VV7hA4sX/C78CGkMrKXfuspA==} + '@inquirer/confirm@5.1.16': + resolution: {integrity: sha512-j1a5VstaK5KQy8Mu8cHmuQvN1Zc62TbLhjJxwHvKPPKEoowSF6h/0UdOpA9DNdWZ+9Inq73+puRq1df6OJ8Sag==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -2640,6 +2690,15 @@ packages: '@types/node': optional: true + '@inquirer/core@10.2.0': + resolution: {integrity: sha512-NyDSjPqhSvpZEMZrLCYUquWNl+XC/moEcVFqS55IEYIYsY0a1cUCevSqk7ctOlnm/RaSBU5psFryNlxcmGrjaA==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/editor@4.2.16': resolution: {integrity: sha512-iSzLjT4C6YKp2DU0fr8T7a97FnRRxMO6CushJnW5ktxLNM2iNeuyUuUA5255eOLPORoGYCrVnuDOEBdGkHGkpw==} engines: {node: '>=18'} @@ -2649,8 +2708,8 @@ packages: '@types/node': optional: true - '@inquirer/editor@4.2.17': - resolution: {integrity: sha512-r6bQLsyPSzbWrZZ9ufoWL+CztkSatnJ6uSxqd6N+o41EZC51sQeWOzI6s5jLb+xxTWxl7PlUppqm8/sow241gg==} + '@inquirer/editor@4.2.18': + resolution: {integrity: sha512-yeQN3AXjCm7+Hmq5L6Dm2wEDeBRdAZuyZ4I7tWSSanbxDzqM0KqzoDbKM7p4ebllAYdoQuPJS6N71/3L281i6w==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -2667,6 +2726,15 @@ packages: '@types/node': optional: true + '@inquirer/expand@4.0.18': + resolution: {integrity: sha512-xUjteYtavH7HwDMzq4Cn2X4Qsh5NozoDHCJTdoXg9HfZ4w3R6mxV1B9tL7DGJX2eq/zqtsFjhm0/RJIMGlh3ag==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/external-editor@1.0.0': resolution: {integrity: sha512-5v3YXc5ZMfL6OJqXPrX9csb4l7NlQA2doO1yynUjpUChT9hg4JcuBVP0RbsEJ/3SL/sxWEyFjT2W69ZhtoBWqg==} engines: {node: '>=18'} @@ -2695,6 +2763,15 @@ packages: '@types/node': optional: true + '@inquirer/input@4.2.2': + resolution: {integrity: sha512-hqOvBZj/MhQCpHUuD3MVq18SSoDNHy7wEnQ8mtvs71K8OPZVXJinOzcvQna33dNYLYE4LkA9BlhAhK6MJcsVbw==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/number@3.0.17': resolution: {integrity: sha512-GcvGHkyIgfZgVnnimURdOueMk0CztycfC8NZTiIY9arIAkeOgt6zG57G+7vC59Jns3UX27LMkPKnKWAOF5xEYg==} engines: {node: '>=18'} @@ -2704,6 +2781,15 @@ packages: '@types/node': optional: true + '@inquirer/number@3.0.18': + resolution: {integrity: sha512-7exgBm52WXZRczsydCVftozFTrrwbG5ySE0GqUd2zLNSBXyIucs2Wnm7ZKLe/aUu6NUg9dg7Q80QIHCdZJiY4A==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/password@4.0.17': resolution: {integrity: sha512-DJolTnNeZ00E1+1TW+8614F7rOJJCM4y4BAGQ3Gq6kQIG+OJ4zr3GLjIjVVJCbKsk2jmkmv6v2kQuN/vriHdZA==} engines: {node: '>=18'} @@ -2713,8 +2799,8 @@ packages: '@types/node': optional: true - '@inquirer/prompts@7.8.0': - resolution: {integrity: sha512-JHwGbQ6wjf1dxxnalDYpZwZxUEosT+6CPGD9Zh4sm9WXdtUp9XODCQD3NjSTmu+0OAyxWXNOqf0spjIymJa2Tw==} + '@inquirer/password@4.0.18': + resolution: {integrity: sha512-zXvzAGxPQTNk/SbT3carAD4Iqi6A2JS2qtcqQjsL22uvD+JfQzUrDEtPjLL7PLn8zlSNyPdY02IiQjzoL9TStA==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -2731,8 +2817,8 @@ packages: '@types/node': optional: true - '@inquirer/prompts@7.8.3': - resolution: {integrity: sha512-iHYp+JCaCRktM/ESZdpHI51yqsDgXu+dMs4semzETftOaF8u5hwlqnbIsuIR/LrWZl8Pm1/gzteK9I7MAq5HTA==} + '@inquirer/prompts@7.8.4': + resolution: {integrity: sha512-MuxVZ1en1g5oGamXV3DWP89GEkdD54alcfhHd7InUW5BifAdKQEK9SLFa/5hlWbvuhMPlobF0WAx7Okq988Jxg==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -2749,6 +2835,15 @@ packages: '@types/node': optional: true + '@inquirer/rawlist@4.1.6': + resolution: {integrity: sha512-KOZqa3QNr3f0pMnufzL7K+nweFFCCBs6LCXZzXDrVGTyssjLeudn5ySktZYv1XiSqobyHRYYK0c6QsOxJEhXKA==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/search@3.1.0': resolution: {integrity: sha512-PMk1+O/WBcYJDq2H7foV0aAZSmDdkzZB9Mw2v/DmONRJopwA/128cS9M/TXWLKKdEQKZnKwBzqu2G4x/2Nqx8Q==} engines: {node: '>=18'} @@ -2758,6 +2853,15 @@ packages: '@types/node': optional: true + '@inquirer/search@3.1.1': + resolution: {integrity: sha512-TkMUY+A2p2EYVY3GCTItYGvqT6LiLzHBnqsU1rJbrpXUijFfM6zvUx0R4civofVwFCmJZcKqOVwwWAjplKkhxA==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/select@4.3.1': resolution: {integrity: sha512-Gfl/5sqOF5vS/LIrSndFgOh7jgoe0UXEizDqahFRkq5aJBLegZ6WjuMh/hVEJwlFQjyLq1z9fRtvUMkb7jM1LA==} engines: {node: '>=18'} @@ -2767,6 +2871,15 @@ packages: '@types/node': optional: true + '@inquirer/select@4.3.2': + resolution: {integrity: sha512-nwous24r31M+WyDEHV+qckXkepvihxhnyIaod2MG7eCE6G0Zm/HUF6jgN8GXgf4U7AU6SLseKdanY195cwvU6w==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/type@3.0.8': resolution: {integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==} engines: {node: '>=18'} @@ -2881,12 +2994,12 @@ packages: '@lezer/sass@1.1.0': resolution: {integrity: sha512-3mMGdCTUZ/84ArHOuXWQr37pnf7f+Nw9ycPUeKX+wu19b7pSMcZGLbaXwvD2APMBDOGxPmpK/O6S1v1EvLoqgQ==} - '@listr2/prompt-adapter-inquirer@3.0.1': - resolution: {integrity: sha512-3XFmGwm3u6ioREG+ynAQB7FoxfajgQnMhIu8wC5eo/Lsih4aKDg0VuIMGaOsYn7hJSJagSeaD4K8yfpkEoDEmA==} + '@listr2/prompt-adapter-inquirer@3.0.2': + resolution: {integrity: sha512-/270wjZctsJhGsR38/OqlZmjTKnbm3H2mrhhmm1Y1Oe1gbNYpM1iP5dX8b0ocyjKH9nlneRJI5z0npPQnaMG0g==} engines: {node: '>=20.0.0'} peerDependencies: '@inquirer/prompts': '>= 3 < 8' - listr2: 9.0.1 + listr2: 9.0.2 '@lmdb/lmdb-darwin-arm64@3.4.2': resolution: {integrity: sha512-NK80WwDoODyPaSazKbzd3NEJ3ygePrkERilZshxBViBARNz21rmediktGHExoj9n5t9+ChlgLlxecdFKLCuCKg==} @@ -2946,8 +3059,8 @@ packages: resolution: {integrity: sha512-EFLRNXR/ixpXQWu6/3Cu30ndDFIFNaqUXcTqsGebujeMan9FzhAaFFswLRiFj61rgygDRr8WO1N+UijjgRxX9g==} engines: {node: '>=18'} - '@modelcontextprotocol/sdk@1.17.3': - resolution: {integrity: sha512-JPwUKWSsbzx+DLFznf/QZ32Qa+ptfbUlHhRLrBQBAFu9iI1iYvizM4p+zhhRDceSsPutXp4z+R/HPVphlIiclg==} + '@modelcontextprotocol/sdk@1.17.4': + resolution: {integrity: sha512-zq24hfuAmmlNZvik0FLI58uE5sriN0WWsQzIlYnzSuKDAHFqJtBFrl/LfB1NLgJT5Y7dEBzaX4yAKqOPrcetaw==} engines: {node: '>=18'} '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3': @@ -3090,8 +3203,8 @@ packages: '@nginfra/angular-linking@1.0.10': resolution: {integrity: sha512-31zx+PCN8tBlC0FYUuCxS4uVPJLAlBhi4UVp6QgoQG44RsOHKTmcRORMVSJdPLRgRuCJkY45kj+PE3AxsgiUKA==} - '@ngtools/webpack@21.0.0-next.0': - resolution: {integrity: sha512-6Sq75NxK5MLkdzNUL37pkj2hLJusglvGKpkAW5zWqcF3ytQP4dQArrDIflm+UzsnP1zD43+Kakv0uru4ie3hpg==} + '@ngtools/webpack@21.0.0-next.1': + resolution: {integrity: sha512-YAr2sTSyAqq+vFn5pwRFfWOhxeO2TboRqU1U2nl+KycqKIdB8r8VYEXp+gaVVhAIDRawgnMNJLfgfWwotDH5yA==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: typescript: '>=5.8 <6.0' @@ -3149,8 +3262,8 @@ packages: resolution: {integrity: sha512-aoNSbxtkePXUlbZB+anS1LqsJdctG5n3UVhfU47+CDdwMi6uNTBMF9gPcQRnqghQd2FGzcwwIFBruFMxjhBewg==} engines: {node: ^18.17.0 || >=20.5.0} - '@octokit/auth-app@8.0.2': - resolution: {integrity: sha512-dLTmmA9gUlqiAJZgozfOsZFfpN/OldH3xweb7lqSnngax5Rs+PfO5dDlokaBfc41H1xOtsLYV5QqR0DkBAtPmw==} + '@octokit/auth-app@8.1.0': + resolution: {integrity: sha512-6bWhyvLXqCSfHiqlwzn9pScLZ+Qnvh/681GR/UEEPCMIVwfpRDBw0cCzy3/t2Dq8B7W2X/8pBgmw6MOiyE0DXQ==} engines: {node: '>= 20'} '@octokit/auth-oauth-app@9.0.1': @@ -3309,12 +3422,12 @@ packages: resolution: {integrity: sha512-TtxJSRD8Ohxp6bKkhrm27JRHAxPczQA7idtcTOMYI+wQRRrfgqxHv1cFbCApcSnNjtXkmzFozn6jQtFrOmbjPQ==} engines: {node: '>=14'} - '@oxc-project/runtime@0.82.2': - resolution: {integrity: sha512-cYxcj5CPn/vo5QSpCZcYzBiLidU5+GlFSqIeNaMgBDtcVRBsBJHZg3pHw999W6nHamFQ1EHuPPByB26tjaJiJw==} + '@oxc-project/runtime@0.82.3': + resolution: {integrity: sha512-LNh5GlJvYHAnMurO+EyA8jJwN1rki7l3PSHuosDh2I7h00T6/u9rCkUjg/SvPmT1CZzvhuW0y+gf7jcqUy/Usg==} engines: {node: '>=6.9.0'} - '@oxc-project/types@0.82.2': - resolution: {integrity: sha512-WMGSwd9FsNBs/WfqIOH0h3k1LBdjZJQGYjGnC+vla/fh6HUsu5HzGPerRljiq1hgMQ6gs031YJR12VyP57b/hQ==} + '@oxc-project/types@0.82.3': + resolution: {integrity: sha512-6nCUxBnGX0c6qfZW5MaF6/fmu5dHJDMiMPaioKHKs5mi5+8/FHQ7WGjgQIz1zxpmceMYfdIXkOaLYE+ejbuOtA==} '@parcel/watcher-android-arm64@2.5.1': resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==} @@ -3469,78 +3582,78 @@ packages: engines: {node: '>=18'} hasBin: true - '@rolldown/binding-android-arm64@1.0.0-beta.33': - resolution: {integrity: sha512-xhDQXKftRkEULIxCddrKMR8y0YO/Y+6BKk/XrQP2B29YjV2wr8DByoEz+AHX9BfLHb2srfpdN46UquBW2QXWpQ==} + '@rolldown/binding-android-arm64@1.0.0-beta.34': + resolution: {integrity: sha512-jf5GNe5jP3Sr1Tih0WKvg2bzvh5T/1TA0fn1u32xSH7ca/p5t+/QRr4VRFCV/na5vjwKEhwWrChsL2AWlY+eoA==} cpu: [arm64] os: [android] - '@rolldown/binding-darwin-arm64@1.0.0-beta.33': - resolution: {integrity: sha512-7lhhY08v5ZtRq8JJQaJ49fnJombAPnqllKKCDLU/UvaqNAOEyTGC8J1WVOLC4EA4zbXO5U3CCRgVGyAFNH2VtQ==} + '@rolldown/binding-darwin-arm64@1.0.0-beta.34': + resolution: {integrity: sha512-2F/TqH4QuJQ34tgWxqBjFL3XV1gMzeQgUO8YRtCPGBSP0GhxtoFzsp7KqmQEothsxztlv+KhhT9Dbg3HHwHViQ==} cpu: [arm64] os: [darwin] - '@rolldown/binding-darwin-x64@1.0.0-beta.33': - resolution: {integrity: sha512-U2iGjcDV7NWyYyhap8YuY0nwrLX6TvX/9i7gBtdEMPm9z3wIUVGNMVdGlA43uqg7xDpRGpEqGnxbeDgiEwYdnA==} + '@rolldown/binding-darwin-x64@1.0.0-beta.34': + resolution: {integrity: sha512-E1QuFslgLWbHQ8Qli/AqUKdfg0pockQPwRxVbhNQ74SciZEZpzLaujkdmOLSccMlSXDfFCF8RPnMoRAzQ9JV8Q==} cpu: [x64] os: [darwin] - '@rolldown/binding-freebsd-x64@1.0.0-beta.33': - resolution: {integrity: sha512-gd6ASromVHFLlzrjJWMG5CXHkS7/36DEZ8HhvGt2NN8eZALCIuyEx8HMMLqvKA7z4EAztVkdToVrdxpGMsKZxw==} + '@rolldown/binding-freebsd-x64@1.0.0-beta.34': + resolution: {integrity: sha512-VS8VInNCwnkpI9WeQaWu3kVBq9ty6g7KrHdLxYMzeqz24+w9hg712TcWdqzdY6sn+24lUoMD9jTZrZ/qfVpk0g==} cpu: [x64] os: [freebsd] - '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.33': - resolution: {integrity: sha512-xmeLfkfGthuynO1EpCdyTVr0r4G+wqvnKCuyR6rXOet+hLrq5HNAC2XtP/jU2TB4Bc6aiLYxl868B8CGtFDhcw==} + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.34': + resolution: {integrity: sha512-4St4emjcnULnxJYb/5ZDrH/kK/j6PcUgc3eAqH5STmTrcF+I9m/X2xvSF2a2bWv1DOQhxBewThu0KkwGHdgu5w==} cpu: [arm] os: [linux] - '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.33': - resolution: {integrity: sha512-cHGp8yfHL4pes6uaLbO5L58ceFkUK4efd8iE86jClD1QPPDLKiqEXJCFYeuK3OfODuF5EBOmf0SlcUZNEYGdmw==} + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.34': + resolution: {integrity: sha512-a737FTqhFUoWfnebS2SnQ2BS50p0JdukdkUBwy2J06j4hZ6Eej0zEB8vTfAqoCjn8BQKkXBy+3Sx0IRkgwz1gA==} cpu: [arm64] os: [linux] - '@rolldown/binding-linux-arm64-musl@1.0.0-beta.33': - resolution: {integrity: sha512-wZ1t7JAvVeFgskH1L9y7c47ITitPytpL0s8FmAT8pVfXcaTmS58ZyoXT+y6cz8uCkQnETjrX3YezTGI18u3ecg==} + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.34': + resolution: {integrity: sha512-NH+FeQWKyuw0k+PbXqpFWNfvD8RPvfJk766B/njdaWz4TmiEcSB0Nb6guNw1rBpM1FmltQYb3fFnTumtC6pRfA==} cpu: [arm64] os: [linux] - '@rolldown/binding-linux-x64-gnu@1.0.0-beta.33': - resolution: {integrity: sha512-cDndWo3VEYbm7yeujOV6Ie2XHz0K8YX/R/vbNmMo03m1QwtBKKvbYNSyJb3B9+8igltDjd8zNM9mpiNNrq/ekQ==} + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.34': + resolution: {integrity: sha512-Q3RSCivp8pNadYK8ke3hLnQk08BkpZX9BmMjgwae2FWzdxhxxUiUzd9By7kneUL0vRQ4uRnhD9VkFQ+Haeqdvw==} cpu: [x64] os: [linux] - '@rolldown/binding-linux-x64-musl@1.0.0-beta.33': - resolution: {integrity: sha512-bl7uzi6es/l6LT++NZcBpiX43ldLyKXCPwEZGY1rZJ99HQ7m1g3KxWwYCcGxtKjlb2ExVvDZicF6k+96vxOJKg==} + '@rolldown/binding-linux-x64-musl@1.0.0-beta.34': + resolution: {integrity: sha512-wDd/HrNcVoBhWWBUW3evJHoo7GJE/RofssBy3Dsiip05YUBmokQVrYAyrboOY4dzs/lJ7HYeBtWQ9hj8wlyF0A==} cpu: [x64] os: [linux] - '@rolldown/binding-openharmony-arm64@1.0.0-beta.33': - resolution: {integrity: sha512-TrgzQanpLgcmmzolCbYA9BPZgF1gYxkIGZhU/HROnJPsq67gcyaYw/JBLioqQLjIwMipETkn25YY799D2OZzJA==} + '@rolldown/binding-openharmony-arm64@1.0.0-beta.34': + resolution: {integrity: sha512-dH3FTEV6KTNWpYSgjSXZzeX7vLty9oBYn6R3laEdhwZftQwq030LKL+5wyQdlbX5pnbh4h127hpv3Hl1+sj8dg==} cpu: [arm64] os: [openharmony] - '@rolldown/binding-wasm32-wasi@1.0.0-beta.33': - resolution: {integrity: sha512-z0LltdUfvoKak9SuaLz/M9AVSg+RTOZjFksbZXzC6Svl1odyW4ai21VHhZy3m2Faeeb/rl/9efVLayj+qYEGxw==} + '@rolldown/binding-wasm32-wasi@1.0.0-beta.34': + resolution: {integrity: sha512-y5BUf+QtO0JsIDKA51FcGwvhJmv89BYjUl8AmN7jqD6k/eU55mH6RJYnxwCsODq5m7KSSTigVb6O7/GqB8wbPw==} engines: {node: '>=14.0.0'} cpu: [wasm32] - '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.33': - resolution: {integrity: sha512-CpvOHyqDNOYx9riD4giyXQDIu72bWRU2Dwt1xFSPlBudk6NumK0OJl6Ch+LPnkp5podQHcQg0mMauAXPVKct7g==} + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.34': + resolution: {integrity: sha512-ga5hFhdTwpaNxEiuxZHWnD3ed0GBAzbgzS5tRHpe0ObptxM1a9Xrq6TVfNQirBLwb5Y7T/FJmJi3pmdLy95ljg==} cpu: [arm64] os: [win32] - '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.33': - resolution: {integrity: sha512-/tNTvZTWHz6HiVuwpR3zR0kGIyCNb+/tFhnJmti+Aw2fAXs3l7Aj0DcXd0646eFKMX8L2w5hOW9H08FXTUkN0g==} + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.34': + resolution: {integrity: sha512-4/MBp9T9eRnZskxWr8EXD/xHvLhdjWaeX/qY9LPRG1JdCGV3DphkLTy5AWwIQ5jhAy2ZNJR5z2fYRlpWU0sIyQ==} cpu: [ia32] os: [win32] - '@rolldown/binding-win32-x64-msvc@1.0.0-beta.33': - resolution: {integrity: sha512-Bb2qK3z7g2mf4zaKRvkohHzweaP1lLbaoBmXZFkY6jJWMm0Z8Pfnh8cOoRlH1IVM1Ufbo8ZZ1WXp1LbOpRMtXw==} + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.34': + resolution: {integrity: sha512-7O5iUBX6HSBKlQU4WykpUoEmb0wQmonb6ziKFr3dJTHud2kzDnWMqk344T0qm3uGv9Ddq6Re/94pInxo1G2d4w==} cpu: [x64] os: [win32] - '@rolldown/pluginutils@1.0.0-beta.33': - resolution: {integrity: sha512-she25NCG6NoEPC/SEB4pHs5STcnfI4VBFOzjeI63maSPrWME5J2XC8ogrBgp8NaE/xzj28/kbpSaebiMvFRj+w==} + '@rolldown/pluginutils@1.0.0-beta.34': + resolution: {integrity: sha512-LyAREkZHP5pMom7c24meKmJCdhf2hEyvam2q0unr3or9ydwDL+DJ8chTF6Av/RFPb3rH8UFBdMzO5MxTZW97oA==} '@rollup/plugin-babel@6.0.4': resolution: {integrity: sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==} @@ -3710,8 +3823,8 @@ packages: '@rushstack/ts-command-line@5.0.2': resolution: {integrity: sha512-+AkJDbu1GFMPIU8Sb7TLVXDv/Q7Mkvx+wAjEl8XiXVVq+p1FmWW6M3LYpJMmoHNckSofeMecgWg5lfMwNAAsEQ==} - '@schematics/angular@21.0.0-next.0': - resolution: {integrity: sha512-ku2LxG4jhzRUMUiRQethsd1Ne15M8SEZHdTbHmXrV7YYXEn/M+cDqXpa3NR58PXBGms5UC7X86ac9EQCEcVt5w==} + '@schematics/angular@21.0.0-next.1': + resolution: {integrity: sha512-f6fsAnIG2x7JT082gDZKsDTy5wAcWFo+duWdyd4ifAF/wORXy9gf0Nda9DZNUKOFbGpS761FeCWMaEZ5CnIUpw==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} '@shikijs/core@3.11.0': @@ -4030,8 +4143,8 @@ packages: '@types/geojson@7946.0.16': resolution: {integrity: sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==} - '@types/git-raw-commits@2.0.0': - resolution: {integrity: sha512-sHXOKjKqu1kQxbxkZiz2s0yx2kc7g20g6tE98LYGq5jQyT9r+GRyTn19NBfPotOlXhGO6oPvYT3tdnPl8MYYyA==} + '@types/git-raw-commits@2.0.4': + resolution: {integrity: sha512-PYmTK156j6TilbwtnO2JErH4TCC1izpgP3kRE3KUX35bjBOD2A+syCGeercqHXBcM6wL+DU0WbJB2Gz8fPR+8A==} '@types/hammerjs@2.0.46': resolution: {integrity: sha512-ynRvcq6wvqexJ9brDMS4BnBLzmr0e14d6ZJTEShTBWKymQiHwlAyGu0ZPEFI2Fh1U53F7tN9ufClWM5KvqkKOw==} @@ -4097,9 +4210,6 @@ packages: '@types/node@22.17.1': resolution: {integrity: sha512-y3tBaz+rjspDTylNjAX37jEC3TETEFGNJL6uQDxwF9/8GLLIjW1rvVHlynyuUKMnMr1Roq8jOv3vkopBjC4/VA==} - '@types/node@24.2.0': - resolution: {integrity: sha512-3xyG3pMCq3oYCNg7/ZP+E1ooTaGB4cG8JWRsqqOYQdbWNY4zbaV0Ennrd7stjiJEFZCaybcIgpTjJWHRfBSIDw==} - '@types/node@24.3.0': resolution: {integrity: sha512-aPTXCrfwnDLj4VvXrm+UUCQjNEvJgNA8s5F1cvwQU+3KNltTOkBm1j30uNLyqqPNe7gE3KFzImYoZEfLhp4Yow==} @@ -4422,6 +4532,10 @@ packages: resolution: {integrity: sha512-Y+moNhsqgLmvJdgTsO4GZNgsaDWv8AOGAaPeIeHKlDn/XunoAqYbA+XNpBd1dW8GOXAUDyxC9Rxc7AV4kpFcIg==} engines: {node: '>= 14.0.0'} + algoliasearch@5.36.0: + resolution: {integrity: sha512-FpwQ+p4x4RIsWnPj2z9idOC70T90ga7Oeh8BURSFKpqp5lITRsgkIj/bwYj2bY5xbyD7uBuP9AZRnM5EV20WOw==} + engines: {node: '>= 14.0.0'} + angular-mocks@1.5.11: resolution: {integrity: sha512-eDVhiwiHlMEK6W47sIkiZh4We35Lqskg+G5rSTpUBPndwd2XM/uwuW+eklzOZhx+ODaFLuMsxeLY1h9rA3utIA==} @@ -5021,6 +5135,10 @@ packages: resolution: {integrity: sha512-1tm8DTaJhPBG3bIkVeZt1iZM9GfSX2lzOeDVZH9R9ffRHpmHvxZ/QhgQH/aDTkswQVt+YHdXAdS/In/30OjCbg==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + chalk@5.6.0: + resolution: {integrity: sha512-46QrSQFyVSEyYAgQ22hQ+zDa60YHA4fBstHmtSApj1Y5vKtG27fWowW03jCk5KcbXEWPZUIR894aARCA/G1kfQ==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + change-case@4.1.2: resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} @@ -6466,8 +6584,8 @@ packages: engines: {node: '>=20.0.0 || >=22.0.0'} hasBin: true - firebase@12.0.0: - resolution: {integrity: sha512-KV+OrMJpi2uXlqL2zaCcXb7YuQbY/gMIWT1hf8hKeTW1bSumWaHT5qfmn0WTpHwKQa3QEVOtZR2ta9EchcmYuw==} + firebase@12.1.0: + resolution: {integrity: sha512-oZucxvfWKuAW4eHHRqGKzC43fLiPqPwHYBHPRNsnkgonqYaq0VurYgqgBosRlEulW+TWja/5Tpo2FpUU+QrfEQ==} flagged-respawn@2.0.0: resolution: {integrity: sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA==} @@ -7936,8 +8054,8 @@ packages: enquirer: optional: true - listr2@9.0.1: - resolution: {integrity: sha512-SL0JY3DaxylDuo/MecFeiC+7pedM0zia33zl0vcjgwcq1q1FWWF1To9EIauPbl8GbMCU0R2e0uJ8bZunhYKD2g==} + listr2@9.0.2: + resolution: {integrity: sha512-VVd7cS6W+vLJu2wmq4QmfVj14Iep7cz4r/OWNk36Aq5ZOY7G8/BfCrQFexcwB1OIxB3yERiePfE/REBjEFulag==} engines: {node: '>=20.0.0'} live-server@1.2.2: @@ -8117,6 +8235,9 @@ packages: magic-string@0.30.17: resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + magic-string@0.30.18: + resolution: {integrity: sha512-yi8swmWbO17qHhwIBNeeZxTceJMeBvWJaId6dyvTSOwTipqeHhMhOrz6513r1sOKnpvQ7zkhlG8tPrpilwTxHQ==} + make-dir@2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} engines: {node: '>=6'} @@ -8489,8 +8610,8 @@ packages: no-case@3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} - nock@14.0.8: - resolution: {integrity: sha512-5DCGrkwK1f8kxUvqvzLWb97XuDUY4/t5M3ZcogPfLGvC2wO8wjRQsIDSXj2L6e1J0Dv8xscf9wWSvGnS3OL29Q==} + nock@14.0.10: + resolution: {integrity: sha512-Q7HjkpyPeLa0ZVZC5qpxBt5EyLczFJ91MEewQiIi9taWuA0KB/MDJlUWtON+7dGouVdADTQsf9RA7TZk6D8VMw==} engines: {node: '>=18.20.0 <20 || >=20.12.1'} node-addon-api@6.1.0: @@ -9549,8 +9670,8 @@ packages: robust-predicates@3.0.2: resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==} - rolldown@1.0.0-beta.33: - resolution: {integrity: sha512-mgu118ZuRguC8unhPCbdZbyRbjQfEMiWqlojBA5aRIncBelRaBomnHNpGKYkYWeK7twRz5Cql30xgqqrA3Xelw==} + rolldown@1.0.0-beta.34: + resolution: {integrity: sha512-Wwh7EwalMzzX3Yy3VN58VEajeR2Si8+HDNMf706jPLIqU7CxneRW+dQVfznf5O0TWTnJyu4npelwg2bzTXB1Nw==} hasBin: true rollup-plugin-dts@6.2.1: @@ -9674,8 +9795,8 @@ packages: webpack: optional: true - sass@1.90.0: - resolution: {integrity: sha512-9GUyuksjw70uNpb1MTYWsH9MQHOHY6kwfnkafC24+7aOMZn9+rVMBxRbLvw756mrBFbIsFg6Xw9IkR2Fnn3k+Q==} + sass@1.91.0: + resolution: {integrity: sha512-aFOZHGf+ur+bp1bCHZ+u8otKGh77ZtmFyXDo4tlYvT7PWql41Kwd8wdkPqhhT+h2879IVblcHFglIMofsFd1EA==} engines: {node: '>=14.0.0'} hasBin: true @@ -10202,8 +10323,8 @@ packages: engines: {node: 18 || 20 || 22} hasBin: true - supports-color@10.1.0: - resolution: {integrity: sha512-GBuewsPrhJPftT+fqDa9oI/zc5HNsG9nREqwzoSFDOIqf0NggOZbHQj2TE1P1CDJK8ZogFnlZY9hWoUiur7I/A==} + supports-color@10.2.0: + resolution: {integrity: sha512-5eG9FQjEjDbAlI5+kdpdyPIBMRH4GfTVDGREVupaZHmVoppknhM29b/S9BkQz7cathp85BVgRi/As3Siln7e0Q==} engines: {node: '>=18'} supports-color@2.0.0: @@ -11378,6 +11499,13 @@ snapshots: '@algolia/requester-fetch': 5.35.0 '@algolia/requester-node-http': 5.35.0 + '@algolia/abtesting@1.2.0': + dependencies: + '@algolia/client-common': 5.36.0 + '@algolia/requester-browser-xhr': 5.36.0 + '@algolia/requester-fetch': 5.36.0 + '@algolia/requester-node-http': 5.36.0 + '@algolia/client-abtesting@5.35.0': dependencies: '@algolia/client-common': 5.35.0 @@ -11385,6 +11513,13 @@ snapshots: '@algolia/requester-fetch': 5.35.0 '@algolia/requester-node-http': 5.35.0 + '@algolia/client-abtesting@5.36.0': + dependencies: + '@algolia/client-common': 5.36.0 + '@algolia/requester-browser-xhr': 5.36.0 + '@algolia/requester-fetch': 5.36.0 + '@algolia/requester-node-http': 5.36.0 + '@algolia/client-analytics@5.35.0': dependencies: '@algolia/client-common': 5.35.0 @@ -11392,8 +11527,17 @@ snapshots: '@algolia/requester-fetch': 5.35.0 '@algolia/requester-node-http': 5.35.0 + '@algolia/client-analytics@5.36.0': + dependencies: + '@algolia/client-common': 5.36.0 + '@algolia/requester-browser-xhr': 5.36.0 + '@algolia/requester-fetch': 5.36.0 + '@algolia/requester-node-http': 5.36.0 + '@algolia/client-common@5.35.0': {} + '@algolia/client-common@5.36.0': {} + '@algolia/client-insights@5.35.0': dependencies: '@algolia/client-common': 5.35.0 @@ -11401,6 +11545,13 @@ snapshots: '@algolia/requester-fetch': 5.35.0 '@algolia/requester-node-http': 5.35.0 + '@algolia/client-insights@5.36.0': + dependencies: + '@algolia/client-common': 5.36.0 + '@algolia/requester-browser-xhr': 5.36.0 + '@algolia/requester-fetch': 5.36.0 + '@algolia/requester-node-http': 5.36.0 + '@algolia/client-personalization@5.35.0': dependencies: '@algolia/client-common': 5.35.0 @@ -11408,6 +11559,13 @@ snapshots: '@algolia/requester-fetch': 5.35.0 '@algolia/requester-node-http': 5.35.0 + '@algolia/client-personalization@5.36.0': + dependencies: + '@algolia/client-common': 5.36.0 + '@algolia/requester-browser-xhr': 5.36.0 + '@algolia/requester-fetch': 5.36.0 + '@algolia/requester-node-http': 5.36.0 + '@algolia/client-query-suggestions@5.35.0': dependencies: '@algolia/client-common': 5.35.0 @@ -11415,6 +11573,13 @@ snapshots: '@algolia/requester-fetch': 5.35.0 '@algolia/requester-node-http': 5.35.0 + '@algolia/client-query-suggestions@5.36.0': + dependencies: + '@algolia/client-common': 5.36.0 + '@algolia/requester-browser-xhr': 5.36.0 + '@algolia/requester-fetch': 5.36.0 + '@algolia/requester-node-http': 5.36.0 + '@algolia/client-search@5.35.0': dependencies: '@algolia/client-common': 5.35.0 @@ -11422,6 +11587,13 @@ snapshots: '@algolia/requester-fetch': 5.35.0 '@algolia/requester-node-http': 5.35.0 + '@algolia/client-search@5.36.0': + dependencies: + '@algolia/client-common': 5.36.0 + '@algolia/requester-browser-xhr': 5.36.0 + '@algolia/requester-fetch': 5.36.0 + '@algolia/requester-node-http': 5.36.0 + '@algolia/ingestion@1.35.0': dependencies: '@algolia/client-common': 5.35.0 @@ -11429,6 +11601,13 @@ snapshots: '@algolia/requester-fetch': 5.35.0 '@algolia/requester-node-http': 5.35.0 + '@algolia/ingestion@1.36.0': + dependencies: + '@algolia/client-common': 5.36.0 + '@algolia/requester-browser-xhr': 5.36.0 + '@algolia/requester-fetch': 5.36.0 + '@algolia/requester-node-http': 5.36.0 + '@algolia/monitoring@1.35.0': dependencies: '@algolia/client-common': 5.35.0 @@ -11436,6 +11615,13 @@ snapshots: '@algolia/requester-fetch': 5.35.0 '@algolia/requester-node-http': 5.35.0 + '@algolia/monitoring@1.36.0': + dependencies: + '@algolia/client-common': 5.36.0 + '@algolia/requester-browser-xhr': 5.36.0 + '@algolia/requester-fetch': 5.36.0 + '@algolia/requester-node-http': 5.36.0 + '@algolia/recommend@5.35.0': dependencies: '@algolia/client-common': 5.35.0 @@ -11443,47 +11629,66 @@ snapshots: '@algolia/requester-fetch': 5.35.0 '@algolia/requester-node-http': 5.35.0 + '@algolia/recommend@5.36.0': + dependencies: + '@algolia/client-common': 5.36.0 + '@algolia/requester-browser-xhr': 5.36.0 + '@algolia/requester-fetch': 5.36.0 + '@algolia/requester-node-http': 5.36.0 + '@algolia/requester-browser-xhr@5.35.0': dependencies: '@algolia/client-common': 5.35.0 + '@algolia/requester-browser-xhr@5.36.0': + dependencies: + '@algolia/client-common': 5.36.0 + '@algolia/requester-fetch@5.35.0': dependencies: '@algolia/client-common': 5.35.0 + '@algolia/requester-fetch@5.36.0': + dependencies: + '@algolia/client-common': 5.36.0 + '@algolia/requester-node-http@5.35.0': dependencies: '@algolia/client-common': 5.35.0 + '@algolia/requester-node-http@5.36.0': + dependencies: + '@algolia/client-common': 5.36.0 + '@ampproject/remapping@2.3.0': dependencies: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.30 - '@angular-devkit/architect-cli@0.2100.0-next.0(chokidar@4.0.3)': + '@angular-devkit/architect-cli@0.2100.0-next.1(chokidar@4.0.3)': dependencies: - '@angular-devkit/architect': 0.2100.0-next.0(chokidar@4.0.3) - '@angular-devkit/core': 21.0.0-next.0(chokidar@4.0.3) + '@angular-devkit/architect': 0.2100.0-next.1(chokidar@4.0.3) + '@angular-devkit/core': 21.0.0-next.1(chokidar@4.0.3) ansi-colors: 4.1.3 progress: 2.0.3 yargs-parser: 22.0.0 transitivePeerDependencies: - chokidar - '@angular-devkit/architect@0.2100.0-next.0(chokidar@4.0.3)': + '@angular-devkit/architect@0.2100.0-next.1(chokidar@4.0.3)': dependencies: - '@angular-devkit/core': 21.0.0-next.0(chokidar@4.0.3) + '@angular-devkit/core': 21.0.0-next.1(chokidar@4.0.3) rxjs: 7.8.2 transitivePeerDependencies: - chokidar - '@angular-devkit/build-angular@21.0.0-next.0(@angular/ssr@21.0.0-next.0)(@types/node@18.19.122)(bufferutil@4.0.9)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9))(protractor@7.0.0)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1)': + '@angular-devkit/build-angular@21.0.0-next.1(@angular/ssr@21.0.0-next.1)(@types/node@18.19.122)(bufferutil@4.0.9)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9))(protractor@7.0.0)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1)': dependencies: '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.2100.0-next.0(chokidar@4.0.3) - '@angular-devkit/build-webpack': 0.2100.0-next.0(chokidar@4.0.3)(webpack-dev-server@5.2.2(bufferutil@4.0.9)(webpack@5.101.3(esbuild@0.25.9)))(webpack@5.101.3(esbuild@0.25.9)) - '@angular-devkit/core': 21.0.0-next.0(chokidar@4.0.3) - '@angular/build': 21.0.0-next.0(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.0)(@types/node@18.19.122)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1) + '@angular-devkit/architect': 0.2100.0-next.1(chokidar@4.0.3) + '@angular-devkit/build-webpack': 0.2100.0-next.1(chokidar@4.0.3)(webpack-dev-server@5.2.2(bufferutil@4.0.9)(webpack@5.101.3(esbuild@0.25.9)))(webpack@5.101.3(esbuild@0.25.9)) + '@angular-devkit/core': 21.0.0-next.1(chokidar@4.0.3) + '@angular/build': 21.0.0-next.1(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.1)(@types/node@18.19.122)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1) '@angular/compiler-cli': link:packages/compiler-cli '@angular/core': link:packages/core '@angular/localize': link:packages/localize @@ -11500,7 +11705,7 @@ snapshots: '@babel/preset-env': 7.28.3(@babel/core@7.28.3) '@babel/runtime': 7.28.3 '@discoveryjs/json-ext': 0.6.3 - '@ngtools/webpack': 21.0.0-next.0(typescript@5.9.2)(webpack@5.101.3(esbuild@0.25.9)) + '@ngtools/webpack': 21.0.0-next.1(typescript@5.9.2)(webpack@5.101.3(esbuild@0.25.9)) ansi-colors: 4.1.3 autoprefixer: 10.4.21(postcss@8.5.6) babel-loader: 10.0.0(@babel/core@7.28.3)(webpack@5.101.3(esbuild@0.25.9)) @@ -11526,8 +11731,8 @@ snapshots: postcss-loader: 8.1.1(postcss@8.5.6)(typescript@5.9.2)(webpack@5.101.3(esbuild@0.25.9)) resolve-url-loader: 5.0.0 rxjs: 7.8.2 - sass: 1.90.0 - sass-loader: 16.0.5(sass@1.90.0)(webpack@5.101.3(esbuild@0.25.9)) + sass: 1.91.0 + sass-loader: 16.0.5(sass@1.91.0)(webpack@5.101.3(esbuild@0.25.9)) semver: 7.7.2 source-map-loader: 5.0.0(webpack@5.101.3(esbuild@0.25.9)) source-map-support: 0.5.21 @@ -11541,7 +11746,7 @@ snapshots: webpack-merge: 6.0.1 webpack-subresource-integrity: 5.1.0(webpack@5.101.3(esbuild@0.25.9)) optionalDependencies: - '@angular/ssr': 21.0.0-next.0 + '@angular/ssr': 21.0.0-next.1 esbuild: 0.25.9 karma: 6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5) protractor: 7.0.0 @@ -11567,13 +11772,13 @@ snapshots: - webpack-cli - yaml - '@angular-devkit/build-angular@21.0.0-next.0(@angular/ssr@21.0.0-next.0)(@types/node@24.3.0)(bufferutil@4.0.9)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(protractor@7.0.0)(tsx@4.20.4)(typescript@5.9.2)(utf-8-validate@6.0.5)(yaml@2.8.1)': + '@angular-devkit/build-angular@21.0.0-next.1(@angular/ssr@21.0.0-next.1)(@types/node@24.3.0)(bufferutil@4.0.9)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(protractor@7.0.0)(tsx@4.20.4)(typescript@5.9.2)(utf-8-validate@6.0.5)(yaml@2.8.1)': dependencies: '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.2100.0-next.0(chokidar@4.0.3) - '@angular-devkit/build-webpack': 0.2100.0-next.0(chokidar@4.0.3)(webpack-dev-server@5.2.2(bufferutil@4.0.9)(webpack@5.101.3(esbuild@0.25.9)))(webpack@5.101.3(esbuild@0.25.9)) - '@angular-devkit/core': 21.0.0-next.0(chokidar@4.0.3) - '@angular/build': 21.0.0-next.0(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.0)(@types/node@24.3.0)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1) + '@angular-devkit/architect': 0.2100.0-next.1(chokidar@4.0.3) + '@angular-devkit/build-webpack': 0.2100.0-next.1(chokidar@4.0.3)(webpack-dev-server@5.2.2(bufferutil@4.0.9)(webpack@5.101.3(esbuild@0.25.9)))(webpack@5.101.3(esbuild@0.25.9)) + '@angular-devkit/core': 21.0.0-next.1(chokidar@4.0.3) + '@angular/build': 21.0.0-next.1(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.1)(@types/node@24.3.0)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1) '@angular/compiler-cli': link:packages/compiler-cli '@angular/core': link:packages/core '@angular/localize': link:packages/localize @@ -11590,7 +11795,7 @@ snapshots: '@babel/preset-env': 7.28.3(@babel/core@7.28.3) '@babel/runtime': 7.28.3 '@discoveryjs/json-ext': 0.6.3 - '@ngtools/webpack': 21.0.0-next.0(typescript@5.9.2)(webpack@5.101.3(esbuild@0.25.9)) + '@ngtools/webpack': 21.0.0-next.1(typescript@5.9.2)(webpack@5.101.3(esbuild@0.25.9)) ansi-colors: 4.1.3 autoprefixer: 10.4.21(postcss@8.5.6) babel-loader: 10.0.0(@babel/core@7.28.3)(webpack@5.101.3(esbuild@0.25.9)) @@ -11616,8 +11821,8 @@ snapshots: postcss-loader: 8.1.1(postcss@8.5.6)(typescript@5.9.2)(webpack@5.101.3(esbuild@0.25.9)) resolve-url-loader: 5.0.0 rxjs: 7.8.2 - sass: 1.90.0 - sass-loader: 16.0.5(sass@1.90.0)(webpack@5.101.3(esbuild@0.25.9)) + sass: 1.91.0 + sass-loader: 16.0.5(sass@1.91.0)(webpack@5.101.3(esbuild@0.25.9)) semver: 7.7.2 source-map-loader: 5.0.0(webpack@5.101.3(esbuild@0.25.9)) source-map-support: 0.5.21 @@ -11631,7 +11836,7 @@ snapshots: webpack-merge: 6.0.1 webpack-subresource-integrity: 5.1.0(webpack@5.101.3(esbuild@0.25.9)) optionalDependencies: - '@angular/ssr': 21.0.0-next.0 + '@angular/ssr': 21.0.0-next.1 esbuild: 0.25.9 karma: 6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5) protractor: 7.0.0 @@ -11664,16 +11869,16 @@ snapshots: typescript: 3.2.4 webpack-sources: 1.3.0 - '@angular-devkit/build-webpack@0.2100.0-next.0(chokidar@4.0.3)(webpack-dev-server@5.2.2(bufferutil@4.0.9)(webpack@5.101.3(esbuild@0.25.9)))(webpack@5.101.3(esbuild@0.25.9))': + '@angular-devkit/build-webpack@0.2100.0-next.1(chokidar@4.0.3)(webpack-dev-server@5.2.2(bufferutil@4.0.9)(webpack@5.101.3(esbuild@0.25.9)))(webpack@5.101.3(esbuild@0.25.9))': dependencies: - '@angular-devkit/architect': 0.2100.0-next.0(chokidar@4.0.3) + '@angular-devkit/architect': 0.2100.0-next.1(chokidar@4.0.3) rxjs: 7.8.2 webpack: 5.101.3(esbuild@0.25.9) webpack-dev-server: 5.2.2(bufferutil@4.0.9)(utf-8-validate@6.0.5)(webpack@5.101.3(esbuild@0.25.9)) transitivePeerDependencies: - chokidar - '@angular-devkit/core@21.0.0-next.0(chokidar@4.0.3)': + '@angular-devkit/core@21.0.0-next.1(chokidar@4.0.3)': dependencies: ajv: 8.17.1 ajv-formats: 3.0.1 @@ -11684,20 +11889,20 @@ snapshots: optionalDependencies: chokidar: 4.0.3 - '@angular-devkit/schematics@21.0.0-next.0(chokidar@4.0.3)': + '@angular-devkit/schematics@21.0.0-next.1(chokidar@4.0.3)': dependencies: - '@angular-devkit/core': 21.0.0-next.0(chokidar@4.0.3) + '@angular-devkit/core': 21.0.0-next.1(chokidar@4.0.3) jsonc-parser: 3.3.1 - magic-string: 0.30.17 + magic-string: 0.30.18 ora: 8.2.0 rxjs: 7.8.2 transitivePeerDependencies: - chokidar - '@angular/build@21.0.0-next.0(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.0)(@types/node@18.19.122)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1)': + '@angular/build@21.0.0-next.1(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.1)(@types/node@18.19.122)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1)': dependencies: '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.2100.0-next.0(chokidar@4.0.3) + '@angular-devkit/architect': 0.2100.0-next.1(chokidar@4.0.3) '@angular/compiler': link:packages/compiler '@angular/compiler-cli': link:packages/compiler-cli '@angular/core': link:packages/core @@ -11708,31 +11913,31 @@ snapshots: '@babel/core': 7.28.3 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-split-export-declaration': 7.24.7 - '@inquirer/confirm': 5.1.15(@types/node@18.19.122) - '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.1.3(@types/node@18.19.122)(jiti@1.21.7)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1)) + '@inquirer/confirm': 5.1.16(@types/node@18.19.122) + '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.1.3(@types/node@18.19.122)(jiti@1.21.7)(less@4.4.1)(sass@1.91.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1)) beasties: 0.3.5 browserslist: 4.25.2 esbuild: 0.25.9 https-proxy-agent: 7.0.6 istanbul-lib-instrument: 6.0.3 jsonc-parser: 3.3.1 - listr2: 9.0.1 - magic-string: 0.30.17 + listr2: 9.0.2 + magic-string: 0.30.18 mrmime: 2.0.1 parse5-html-rewriting-stream: 8.0.0 picomatch: 4.0.3 piscina: 5.1.3 - rolldown: 1.0.0-beta.33 - sass: 1.90.0 + rolldown: 1.0.0-beta.34 + sass: 1.91.0 semver: 7.7.2 source-map-support: 0.5.21 tinyglobby: 0.2.14 tslib: 2.8.1 typescript: 5.9.2 - vite: 7.1.3(@types/node@18.19.122)(jiti@1.21.7)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1) + vite: 7.1.3(@types/node@18.19.122)(jiti@1.21.7)(less@4.4.1)(sass@1.91.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1) watchpack: 2.4.4 optionalDependencies: - '@angular/ssr': 21.0.0-next.0 + '@angular/ssr': 21.0.0-next.1 karma: 6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5) less: 4.4.1 lmdb: 3.4.2 @@ -11750,10 +11955,10 @@ snapshots: - tsx - yaml - '@angular/build@21.0.0-next.0(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.0)(@types/node@24.3.0)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1)': + '@angular/build@21.0.0-next.1(patch_hash=b8e52088ccbe9b635571913e01d7ec761946ddc95d048d0f1218fb1b71e7007e)(@angular/ssr@21.0.0-next.1)(@types/node@24.3.0)(chokidar@4.0.3)(jiti@1.21.7)(karma@6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.1)(postcss@8.5.6)(terser@5.43.1)(tslib@2.8.1)(tsx@4.20.4)(typescript@5.9.2)(yaml@2.8.1)': dependencies: '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.2100.0-next.0(chokidar@4.0.3) + '@angular-devkit/architect': 0.2100.0-next.1(chokidar@4.0.3) '@angular/compiler': link:packages/compiler '@angular/compiler-cli': link:packages/compiler-cli '@angular/core': link:packages/core @@ -11764,31 +11969,31 @@ snapshots: '@babel/core': 7.28.3 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-split-export-declaration': 7.24.7 - '@inquirer/confirm': 5.1.15(@types/node@24.3.0) - '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.1.3(@types/node@24.3.0)(jiti@1.21.7)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1)) + '@inquirer/confirm': 5.1.16(@types/node@24.3.0) + '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.1.3(@types/node@24.3.0)(jiti@1.21.7)(less@4.4.1)(sass@1.91.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1)) beasties: 0.3.5 browserslist: 4.25.2 esbuild: 0.25.9 https-proxy-agent: 7.0.6 istanbul-lib-instrument: 6.0.3 jsonc-parser: 3.3.1 - listr2: 9.0.1 - magic-string: 0.30.17 + listr2: 9.0.2 + magic-string: 0.30.18 mrmime: 2.0.1 parse5-html-rewriting-stream: 8.0.0 picomatch: 4.0.3 piscina: 5.1.3 - rolldown: 1.0.0-beta.33 - sass: 1.90.0 + rolldown: 1.0.0-beta.34 + sass: 1.91.0 semver: 7.7.2 source-map-support: 0.5.21 tinyglobby: 0.2.14 tslib: 2.8.1 typescript: 5.9.2 - vite: 7.1.3(@types/node@24.3.0)(jiti@1.21.7)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1) + vite: 7.1.3(@types/node@24.3.0)(jiti@1.21.7)(less@4.4.1)(sass@1.91.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1) watchpack: 2.4.4 optionalDependencies: - '@angular/ssr': 21.0.0-next.0 + '@angular/ssr': 21.0.0-next.1 karma: 6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5) less: 4.4.1 lmdb: 3.4.2 @@ -11806,7 +12011,7 @@ snapshots: - tsx - yaml - '@angular/cdk@21.0.0-next.0(rxjs@7.8.2)': + '@angular/cdk@21.0.0-next.1(rxjs@7.8.2)': dependencies: '@angular/common': link:packages/common '@angular/core': link:packages/core @@ -11814,20 +12019,20 @@ snapshots: rxjs: 7.8.2 tslib: 2.8.1 - '@angular/cli@21.0.0-next.0(@types/node@18.19.122)(chokidar@4.0.3)': + '@angular/cli@21.0.0-next.1(@types/node@18.19.122)(chokidar@4.0.3)': dependencies: - '@angular-devkit/architect': 0.2100.0-next.0(chokidar@4.0.3) - '@angular-devkit/core': 21.0.0-next.0(chokidar@4.0.3) - '@angular-devkit/schematics': 21.0.0-next.0(chokidar@4.0.3) - '@inquirer/prompts': 7.8.3(@types/node@18.19.122) - '@listr2/prompt-adapter-inquirer': 3.0.1(@inquirer/prompts@7.8.3(@types/node@18.19.122))(@types/node@18.19.122)(listr2@9.0.1) - '@modelcontextprotocol/sdk': 1.17.3 - '@schematics/angular': 21.0.0-next.0(chokidar@4.0.3) + '@angular-devkit/architect': 0.2100.0-next.1(chokidar@4.0.3) + '@angular-devkit/core': 21.0.0-next.1(chokidar@4.0.3) + '@angular-devkit/schematics': 21.0.0-next.1(chokidar@4.0.3) + '@inquirer/prompts': 7.8.4(@types/node@18.19.122) + '@listr2/prompt-adapter-inquirer': 3.0.2(@inquirer/prompts@7.8.4(@types/node@18.19.122))(@types/node@18.19.122)(listr2@9.0.2) + '@modelcontextprotocol/sdk': 1.17.4 + '@schematics/angular': 21.0.0-next.1(chokidar@4.0.3) '@yarnpkg/lockfile': 1.1.0 - algoliasearch: 5.35.0 + algoliasearch: 5.36.0 ini: 5.0.0 jsonc-parser: 3.3.1 - listr2: 9.0.1 + listr2: 9.0.2 npm-package-arg: 13.0.0 pacote: 21.0.0 resolve: 1.22.10 @@ -11839,20 +12044,20 @@ snapshots: - chokidar - supports-color - '@angular/cli@21.0.0-next.0(@types/node@24.3.0)(chokidar@4.0.3)': + '@angular/cli@21.0.0-next.1(@types/node@24.3.0)(chokidar@4.0.3)': dependencies: - '@angular-devkit/architect': 0.2100.0-next.0(chokidar@4.0.3) - '@angular-devkit/core': 21.0.0-next.0(chokidar@4.0.3) - '@angular-devkit/schematics': 21.0.0-next.0(chokidar@4.0.3) - '@inquirer/prompts': 7.8.3(@types/node@24.3.0) - '@listr2/prompt-adapter-inquirer': 3.0.1(@inquirer/prompts@7.8.3(@types/node@24.3.0))(@types/node@24.3.0)(listr2@9.0.1) - '@modelcontextprotocol/sdk': 1.17.3 - '@schematics/angular': 21.0.0-next.0(chokidar@4.0.3) + '@angular-devkit/architect': 0.2100.0-next.1(chokidar@4.0.3) + '@angular-devkit/core': 21.0.0-next.1(chokidar@4.0.3) + '@angular-devkit/schematics': 21.0.0-next.1(chokidar@4.0.3) + '@inquirer/prompts': 7.8.4(@types/node@24.3.0) + '@listr2/prompt-adapter-inquirer': 3.0.2(@inquirer/prompts@7.8.4(@types/node@24.3.0))(@types/node@24.3.0)(listr2@9.0.2) + '@modelcontextprotocol/sdk': 1.17.4 + '@schematics/angular': 21.0.0-next.1(chokidar@4.0.3) '@yarnpkg/lockfile': 1.1.0 - algoliasearch: 5.35.0 + algoliasearch: 5.36.0 ini: 5.0.0 jsonc-parser: 3.3.1 - listr2: 9.0.1 + listr2: 9.0.2 npm-package-arg: 13.0.0 pacote: 21.0.0 resolve: 1.22.10 @@ -11873,9 +12078,9 @@ snapshots: '@angular/domino@https://codeload.github.com/angular/domino/tar.gz/93e720f143d0296dd2726ffbcf4fc12283363a7b': {} - '@angular/material@21.0.0-next.0(@angular/cdk@21.0.0-next.0(rxjs@7.8.2))(rxjs@7.8.2)': + '@angular/material@21.0.0-next.1(@angular/cdk@21.0.0-next.1(rxjs@7.8.2))(rxjs@7.8.2)': dependencies: - '@angular/cdk': 21.0.0-next.0(rxjs@7.8.2) + '@angular/cdk': 21.0.0-next.1(rxjs@7.8.2) '@angular/common': link:packages/common '@angular/core': link:packages/core '@angular/forms': link:packages/forms @@ -11883,14 +12088,14 @@ snapshots: rxjs: 7.8.2 tslib: 2.8.1 - '@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/e5cf193487333c2dbb5eaaa0941a6b23b34af262(@modelcontextprotocol/sdk@1.17.3)': + '@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/f915c2e621df0682a968237c1c38ea86ca76e9b7(@modelcontextprotocol/sdk@1.17.4)': dependencies: '@actions/core': 1.11.1 - '@google-cloud/spanner': 8.0.0(supports-color@10.1.0) - '@google/genai': 1.13.0(@modelcontextprotocol/sdk@1.17.3)(bufferutil@4.0.9)(encoding@0.1.13)(supports-color@10.1.0)(utf-8-validate@6.0.5) - '@inquirer/prompts': 7.8.0(@types/node@24.2.0) - '@inquirer/type': 3.0.8(@types/node@24.2.0) - '@octokit/auth-app': 8.0.2 + '@google-cloud/spanner': 8.0.0(supports-color@10.2.0) + '@google/genai': 1.15.0(@modelcontextprotocol/sdk@1.17.4)(bufferutil@4.0.9)(encoding@0.1.13)(supports-color@10.2.0)(utf-8-validate@6.0.5) + '@inquirer/prompts': 7.8.4(@types/node@24.3.0) + '@inquirer/type': 3.0.8(@types/node@24.3.0) + '@octokit/auth-app': 8.1.0 '@octokit/core': 7.0.3 '@octokit/graphql': 9.0.1 '@octokit/graphql-schema': 15.26.0 @@ -11906,10 +12111,10 @@ snapshots: '@types/ejs': 3.1.5 '@types/events': 3.0.3 '@types/folder-hash': 4.0.4 - '@types/git-raw-commits': 2.0.0 - '@types/jasmine': 5.1.8 + '@types/git-raw-commits': 2.0.4 + '@types/jasmine': 5.1.9 '@types/minimatch': 6.0.0 - '@types/node': 24.2.0 + '@types/node': 24.3.0 '@types/semver': 7.7.0 '@types/supports-color': 10.0.0 '@types/which': 3.0.4 @@ -11917,14 +12122,14 @@ snapshots: '@types/yarnpkg__lockfile': 1.1.9 '@yarnpkg/lockfile': 1.1.0 bufferutil: 4.0.9 - chalk: 5.5.0 + chalk: 5.6.0 cli-progress: 3.12.0 conventional-commits-parser: 5.0.0 ejs: 3.1.10 encoding: 0.1.13 fast-glob: 3.3.3 - firebase: 12.0.0 - folder-hash: 4.1.1(supports-color@10.1.0) + firebase: 12.1.0 + folder-hash: 4.1.1(supports-color@10.2.0) git-raw-commits: 4.0.0 jasmine: 5.9.0 jasmine-core: 5.9.0 @@ -11932,9 +12137,9 @@ snapshots: jsonc-parser: 3.3.1 minimatch: 10.0.3 multimatch: 7.0.0 - nock: 14.0.8 + nock: 14.0.10 semver: 7.7.2 - supports-color: 10.1.0 + supports-color: 10.2.0 typed-graphqlify: 3.1.6 typescript: 5.9.2 utf-8-validate: 6.0.5 @@ -11945,7 +12150,7 @@ snapshots: - '@modelcontextprotocol/sdk' - '@react-native-async-storage/async-storage' - '@angular/ssr@21.0.0-next.0': + '@angular/ssr@21.0.0-next.1': dependencies: '@angular/common': link:packages/common '@angular/core': link:packages/core @@ -12057,19 +12262,6 @@ snapshots: lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.28.3)': - dependencies: - '@babel/core': 7.28.3 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-member-expression-to-functions': 7.27.1 - '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.3) - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.28.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - '@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.3)': dependencies: '@babel/core': 7.28.3 @@ -12312,7 +12504,7 @@ snapshots: '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.3)': dependencies: '@babel/core': 7.28.3 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.3) + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color @@ -12523,7 +12715,7 @@ snapshots: '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.3)': dependencies: '@babel/core': 7.28.3 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.3) + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color @@ -12532,7 +12724,7 @@ snapshots: dependencies: '@babel/core': 7.28.3 '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.3) + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color @@ -13051,9 +13243,9 @@ snapshots: '@fastify/busboy@2.1.1': {} - '@firebase/ai@2.0.0(@firebase/app-types@0.9.3)(@firebase/app@0.14.0)': + '@firebase/ai@2.1.0(@firebase/app-types@0.9.3)(@firebase/app@0.14.1)': dependencies: - '@firebase/app': 0.14.0 + '@firebase/app': 0.14.1 '@firebase/app-check-interop-types': 0.3.3 '@firebase/app-types': 0.9.3 '@firebase/component': 0.7.0 @@ -13061,11 +13253,11 @@ snapshots: '@firebase/util': 1.13.0 tslib: 2.8.1 - '@firebase/analytics-compat@0.2.24(@firebase/app-compat@0.5.0)(@firebase/app@0.14.0)': + '@firebase/analytics-compat@0.2.24(@firebase/app-compat@0.5.1)(@firebase/app@0.14.1)': dependencies: - '@firebase/analytics': 0.10.18(@firebase/app@0.14.0) + '@firebase/analytics': 0.10.18(@firebase/app@0.14.1) '@firebase/analytics-types': 0.8.3 - '@firebase/app-compat': 0.5.0 + '@firebase/app-compat': 0.5.1 '@firebase/component': 0.7.0 '@firebase/util': 1.13.0 tslib: 2.8.1 @@ -13074,20 +13266,20 @@ snapshots: '@firebase/analytics-types@0.8.3': {} - '@firebase/analytics@0.10.18(@firebase/app@0.14.0)': + '@firebase/analytics@0.10.18(@firebase/app@0.14.1)': dependencies: - '@firebase/app': 0.14.0 + '@firebase/app': 0.14.1 '@firebase/component': 0.7.0 - '@firebase/installations': 0.6.19(@firebase/app@0.14.0) + '@firebase/installations': 0.6.19(@firebase/app@0.14.1) '@firebase/logger': 0.5.0 '@firebase/util': 1.13.0 tslib: 2.8.1 - '@firebase/app-check-compat@0.4.0(@firebase/app-compat@0.5.0)(@firebase/app@0.14.0)': + '@firebase/app-check-compat@0.4.0(@firebase/app-compat@0.5.1)(@firebase/app@0.14.1)': dependencies: - '@firebase/app-check': 0.11.0(@firebase/app@0.14.0) + '@firebase/app-check': 0.11.0(@firebase/app@0.14.1) '@firebase/app-check-types': 0.5.3 - '@firebase/app-compat': 0.5.0 + '@firebase/app-compat': 0.5.1 '@firebase/component': 0.7.0 '@firebase/logger': 0.5.0 '@firebase/util': 1.13.0 @@ -13099,17 +13291,17 @@ snapshots: '@firebase/app-check-types@0.5.3': {} - '@firebase/app-check@0.11.0(@firebase/app@0.14.0)': + '@firebase/app-check@0.11.0(@firebase/app@0.14.1)': dependencies: - '@firebase/app': 0.14.0 + '@firebase/app': 0.14.1 '@firebase/component': 0.7.0 '@firebase/logger': 0.5.0 '@firebase/util': 1.13.0 tslib: 2.8.1 - '@firebase/app-compat@0.5.0': + '@firebase/app-compat@0.5.1': dependencies: - '@firebase/app': 0.14.0 + '@firebase/app': 0.14.1 '@firebase/component': 0.7.0 '@firebase/logger': 0.5.0 '@firebase/util': 1.13.0 @@ -13117,7 +13309,7 @@ snapshots: '@firebase/app-types@0.9.3': {} - '@firebase/app@0.14.0': + '@firebase/app@0.14.1': dependencies: '@firebase/component': 0.7.0 '@firebase/logger': 0.5.0 @@ -13125,10 +13317,10 @@ snapshots: idb: 7.1.1 tslib: 2.8.1 - '@firebase/auth-compat@0.6.0(@firebase/app-compat@0.5.0)(@firebase/app-types@0.9.3)(@firebase/app@0.14.0)': + '@firebase/auth-compat@0.6.0(@firebase/app-compat@0.5.1)(@firebase/app-types@0.9.3)(@firebase/app@0.14.1)': dependencies: - '@firebase/app-compat': 0.5.0 - '@firebase/auth': 1.11.0(@firebase/app@0.14.0) + '@firebase/app-compat': 0.5.1 + '@firebase/auth': 1.11.0(@firebase/app@0.14.1) '@firebase/auth-types': 0.13.0(@firebase/app-types@0.9.3)(@firebase/util@1.13.0) '@firebase/component': 0.7.0 '@firebase/util': 1.13.0 @@ -13145,9 +13337,9 @@ snapshots: '@firebase/app-types': 0.9.3 '@firebase/util': 1.13.0 - '@firebase/auth@1.11.0(@firebase/app@0.14.0)': + '@firebase/auth@1.11.0(@firebase/app@0.14.1)': dependencies: - '@firebase/app': 0.14.0 + '@firebase/app': 0.14.1 '@firebase/component': 0.7.0 '@firebase/logger': 0.5.0 '@firebase/util': 1.13.0 @@ -13158,9 +13350,9 @@ snapshots: '@firebase/util': 1.13.0 tslib: 2.8.1 - '@firebase/data-connect@0.3.11(@firebase/app@0.14.0)': + '@firebase/data-connect@0.3.11(@firebase/app@0.14.1)': dependencies: - '@firebase/app': 0.14.0 + '@firebase/app': 0.14.1 '@firebase/auth-interop-types': 0.2.4 '@firebase/component': 0.7.0 '@firebase/logger': 0.5.0 @@ -13191,11 +13383,11 @@ snapshots: faye-websocket: 0.11.4 tslib: 2.8.1 - '@firebase/firestore-compat@0.4.0(@firebase/app-compat@0.5.0)(@firebase/app-types@0.9.3)(@firebase/app@0.14.0)': + '@firebase/firestore-compat@0.4.0(@firebase/app-compat@0.5.1)(@firebase/app-types@0.9.3)(@firebase/app@0.14.1)': dependencies: - '@firebase/app-compat': 0.5.0 + '@firebase/app-compat': 0.5.1 '@firebase/component': 0.7.0 - '@firebase/firestore': 4.9.0(@firebase/app@0.14.0) + '@firebase/firestore': 4.9.0(@firebase/app@0.14.1) '@firebase/firestore-types': 3.0.3(@firebase/app-types@0.9.3)(@firebase/util@1.13.0) '@firebase/util': 1.13.0 tslib: 2.8.1 @@ -13208,9 +13400,9 @@ snapshots: '@firebase/app-types': 0.9.3 '@firebase/util': 1.13.0 - '@firebase/firestore@4.9.0(@firebase/app@0.14.0)': + '@firebase/firestore@4.9.0(@firebase/app@0.14.1)': dependencies: - '@firebase/app': 0.14.0 + '@firebase/app': 0.14.1 '@firebase/component': 0.7.0 '@firebase/logger': 0.5.0 '@firebase/util': 1.13.0 @@ -13219,11 +13411,11 @@ snapshots: '@grpc/proto-loader': 0.7.15 tslib: 2.8.1 - '@firebase/functions-compat@0.4.0(@firebase/app-compat@0.5.0)(@firebase/app@0.14.0)': + '@firebase/functions-compat@0.4.0(@firebase/app-compat@0.5.1)(@firebase/app@0.14.1)': dependencies: - '@firebase/app-compat': 0.5.0 + '@firebase/app-compat': 0.5.1 '@firebase/component': 0.7.0 - '@firebase/functions': 0.13.0(@firebase/app@0.14.0) + '@firebase/functions': 0.13.0(@firebase/app@0.14.1) '@firebase/functions-types': 0.6.3 '@firebase/util': 1.13.0 tslib: 2.8.1 @@ -13232,9 +13424,9 @@ snapshots: '@firebase/functions-types@0.6.3': {} - '@firebase/functions@0.13.0(@firebase/app@0.14.0)': + '@firebase/functions@0.13.0(@firebase/app@0.14.1)': dependencies: - '@firebase/app': 0.14.0 + '@firebase/app': 0.14.1 '@firebase/app-check-interop-types': 0.3.3 '@firebase/auth-interop-types': 0.2.4 '@firebase/component': 0.7.0 @@ -13242,11 +13434,11 @@ snapshots: '@firebase/util': 1.13.0 tslib: 2.8.1 - '@firebase/installations-compat@0.2.19(@firebase/app-compat@0.5.0)(@firebase/app-types@0.9.3)(@firebase/app@0.14.0)': + '@firebase/installations-compat@0.2.19(@firebase/app-compat@0.5.1)(@firebase/app-types@0.9.3)(@firebase/app@0.14.1)': dependencies: - '@firebase/app-compat': 0.5.0 + '@firebase/app-compat': 0.5.1 '@firebase/component': 0.7.0 - '@firebase/installations': 0.6.19(@firebase/app@0.14.0) + '@firebase/installations': 0.6.19(@firebase/app@0.14.1) '@firebase/installations-types': 0.5.3(@firebase/app-types@0.9.3) '@firebase/util': 1.13.0 tslib: 2.8.1 @@ -13258,9 +13450,9 @@ snapshots: dependencies: '@firebase/app-types': 0.9.3 - '@firebase/installations@0.6.19(@firebase/app@0.14.0)': + '@firebase/installations@0.6.19(@firebase/app@0.14.1)': dependencies: - '@firebase/app': 0.14.0 + '@firebase/app': 0.14.1 '@firebase/component': 0.7.0 '@firebase/util': 1.13.0 idb: 7.1.1 @@ -13270,11 +13462,11 @@ snapshots: dependencies: tslib: 2.8.1 - '@firebase/messaging-compat@0.2.23(@firebase/app-compat@0.5.0)(@firebase/app@0.14.0)': + '@firebase/messaging-compat@0.2.23(@firebase/app-compat@0.5.1)(@firebase/app@0.14.1)': dependencies: - '@firebase/app-compat': 0.5.0 + '@firebase/app-compat': 0.5.1 '@firebase/component': 0.7.0 - '@firebase/messaging': 0.12.23(@firebase/app@0.14.0) + '@firebase/messaging': 0.12.23(@firebase/app@0.14.1) '@firebase/util': 1.13.0 tslib: 2.8.1 transitivePeerDependencies: @@ -13282,22 +13474,22 @@ snapshots: '@firebase/messaging-interop-types@0.2.3': {} - '@firebase/messaging@0.12.23(@firebase/app@0.14.0)': + '@firebase/messaging@0.12.23(@firebase/app@0.14.1)': dependencies: - '@firebase/app': 0.14.0 + '@firebase/app': 0.14.1 '@firebase/component': 0.7.0 - '@firebase/installations': 0.6.19(@firebase/app@0.14.0) + '@firebase/installations': 0.6.19(@firebase/app@0.14.1) '@firebase/messaging-interop-types': 0.2.3 '@firebase/util': 1.13.0 idb: 7.1.1 tslib: 2.8.1 - '@firebase/performance-compat@0.2.21(@firebase/app-compat@0.5.0)(@firebase/app@0.14.0)': + '@firebase/performance-compat@0.2.22(@firebase/app-compat@0.5.1)(@firebase/app@0.14.1)': dependencies: - '@firebase/app-compat': 0.5.0 + '@firebase/app-compat': 0.5.1 '@firebase/component': 0.7.0 '@firebase/logger': 0.5.0 - '@firebase/performance': 0.7.8(@firebase/app@0.14.0) + '@firebase/performance': 0.7.9(@firebase/app@0.14.1) '@firebase/performance-types': 0.2.3 '@firebase/util': 1.13.0 tslib: 2.8.1 @@ -13306,22 +13498,22 @@ snapshots: '@firebase/performance-types@0.2.3': {} - '@firebase/performance@0.7.8(@firebase/app@0.14.0)': + '@firebase/performance@0.7.9(@firebase/app@0.14.1)': dependencies: - '@firebase/app': 0.14.0 + '@firebase/app': 0.14.1 '@firebase/component': 0.7.0 - '@firebase/installations': 0.6.19(@firebase/app@0.14.0) + '@firebase/installations': 0.6.19(@firebase/app@0.14.1) '@firebase/logger': 0.5.0 '@firebase/util': 1.13.0 tslib: 2.8.1 web-vitals: 4.2.4 - '@firebase/remote-config-compat@0.2.19(@firebase/app-compat@0.5.0)(@firebase/app@0.14.0)': + '@firebase/remote-config-compat@0.2.19(@firebase/app-compat@0.5.1)(@firebase/app@0.14.1)': dependencies: - '@firebase/app-compat': 0.5.0 + '@firebase/app-compat': 0.5.1 '@firebase/component': 0.7.0 '@firebase/logger': 0.5.0 - '@firebase/remote-config': 0.6.6(@firebase/app@0.14.0) + '@firebase/remote-config': 0.6.6(@firebase/app@0.14.1) '@firebase/remote-config-types': 0.4.0 '@firebase/util': 1.13.0 tslib: 2.8.1 @@ -13330,20 +13522,20 @@ snapshots: '@firebase/remote-config-types@0.4.0': {} - '@firebase/remote-config@0.6.6(@firebase/app@0.14.0)': + '@firebase/remote-config@0.6.6(@firebase/app@0.14.1)': dependencies: - '@firebase/app': 0.14.0 + '@firebase/app': 0.14.1 '@firebase/component': 0.7.0 - '@firebase/installations': 0.6.19(@firebase/app@0.14.0) + '@firebase/installations': 0.6.19(@firebase/app@0.14.1) '@firebase/logger': 0.5.0 '@firebase/util': 1.13.0 tslib: 2.8.1 - '@firebase/storage-compat@0.4.0(@firebase/app-compat@0.5.0)(@firebase/app-types@0.9.3)(@firebase/app@0.14.0)': + '@firebase/storage-compat@0.4.0(@firebase/app-compat@0.5.1)(@firebase/app-types@0.9.3)(@firebase/app@0.14.1)': dependencies: - '@firebase/app-compat': 0.5.0 + '@firebase/app-compat': 0.5.1 '@firebase/component': 0.7.0 - '@firebase/storage': 0.14.0(@firebase/app@0.14.0) + '@firebase/storage': 0.14.0(@firebase/app@0.14.1) '@firebase/storage-types': 0.8.3(@firebase/app-types@0.9.3)(@firebase/util@1.13.0) '@firebase/util': 1.13.0 tslib: 2.8.1 @@ -13356,9 +13548,9 @@ snapshots: '@firebase/app-types': 0.9.3 '@firebase/util': 1.13.0 - '@firebase/storage@0.14.0(@firebase/app@0.14.0)': + '@firebase/storage@0.14.0(@firebase/app@0.14.1)': dependencies: - '@firebase/app': 0.14.0 + '@firebase/app': 0.14.1 '@firebase/component': 0.7.0 '@firebase/util': 1.13.0 tslib: 2.8.1 @@ -13378,17 +13570,17 @@ snapshots: transitivePeerDependencies: - supports-color - '@google-cloud/common@6.0.0(supports-color@10.1.0)': + '@google-cloud/common@6.0.0(supports-color@10.2.0)': dependencies: '@google-cloud/projectify': 4.0.0 '@google-cloud/promisify': 4.1.0 arrify: 2.0.1 duplexify: 4.1.3 extend: 3.0.2 - google-auth-library: 10.2.1(supports-color@10.1.0) + google-auth-library: 10.2.1(supports-color@10.2.0) html-entities: 2.6.0 - retry-request: 8.0.2(supports-color@10.1.0) - teeny-request: 10.1.0(supports-color@10.1.0) + retry-request: 8.0.2(supports-color@10.2.0) + teeny-request: 10.1.0(supports-color@10.2.0) transitivePeerDependencies: - supports-color @@ -13431,9 +13623,9 @@ snapshots: - encoding - supports-color - '@google-cloud/spanner@8.0.0(supports-color@10.1.0)': + '@google-cloud/spanner@8.0.0(supports-color@10.2.0)': dependencies: - '@google-cloud/common': 6.0.0(supports-color@10.1.0) + '@google-cloud/common': 6.0.0(supports-color@10.2.0) '@google-cloud/precise-date': 5.0.0 '@google-cloud/projectify': 5.0.0 '@google-cloud/promisify': 5.0.0 @@ -13449,29 +13641,29 @@ snapshots: duplexify: 4.1.3 events-intercept: 2.0.0 extend: 3.0.2 - google-auth-library: 10.2.1(supports-color@10.1.0) - google-gax: 5.0.3(supports-color@10.1.0) + google-auth-library: 10.2.1(supports-color@10.2.0) + google-gax: 5.0.3(supports-color@10.2.0) grpc-gcp: 1.0.1(protobufjs@7.5.3) is: 3.3.2 lodash.snakecase: 4.1.1 merge-stream: 2.0.0 p-queue: 6.6.2 protobufjs: 7.5.3 - retry-request: 8.0.2(supports-color@10.1.0) + retry-request: 8.0.2(supports-color@10.2.0) split-array-stream: 2.0.0 stack-trace: 0.0.10 stream-events: 1.0.5 - teeny-request: 10.1.0(supports-color@10.1.0) + teeny-request: 10.1.0(supports-color@10.2.0) through2: 4.0.2 transitivePeerDependencies: - supports-color - '@google/genai@1.13.0(@modelcontextprotocol/sdk@1.17.3)(bufferutil@4.0.9)(encoding@0.1.13)(supports-color@10.1.0)(utf-8-validate@6.0.5)': + '@google/genai@1.15.0(@modelcontextprotocol/sdk@1.17.4)(bufferutil@4.0.9)(encoding@0.1.13)(supports-color@10.2.0)(utf-8-validate@6.0.5)': dependencies: - google-auth-library: 9.15.1(encoding@0.1.13)(supports-color@10.1.0) + google-auth-library: 9.15.1(encoding@0.1.13)(supports-color@10.2.0) ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@6.0.5) optionalDependencies: - '@modelcontextprotocol/sdk': 1.17.3 + '@modelcontextprotocol/sdk': 1.17.4 transitivePeerDependencies: - bufferutil - encoding @@ -13541,9 +13733,9 @@ snapshots: optionalDependencies: '@types/node': 18.19.122 - '@inquirer/checkbox@4.2.1(@types/node@18.19.122)': + '@inquirer/checkbox@4.2.2(@types/node@18.19.122)': dependencies: - '@inquirer/core': 10.1.15(@types/node@18.19.122) + '@inquirer/core': 10.2.0(@types/node@18.19.122) '@inquirer/figures': 1.0.13 '@inquirer/type': 3.0.8(@types/node@18.19.122) ansi-escapes: 4.3.2 @@ -13551,19 +13743,9 @@ snapshots: optionalDependencies: '@types/node': 18.19.122 - '@inquirer/checkbox@4.2.1(@types/node@24.2.0)': + '@inquirer/checkbox@4.2.2(@types/node@24.3.0)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.2.0) - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.2.0) - ansi-escapes: 4.3.2 - yoctocolors-cjs: 2.1.2 - optionalDependencies: - '@types/node': 24.2.0 - - '@inquirer/checkbox@4.2.1(@types/node@24.3.0)': - dependencies: - '@inquirer/core': 10.1.15(@types/node@24.3.0) + '@inquirer/core': 10.2.0(@types/node@24.3.0) '@inquirer/figures': 1.0.13 '@inquirer/type': 3.0.8(@types/node@24.3.0) ansi-escapes: 4.3.2 @@ -13578,23 +13760,16 @@ snapshots: optionalDependencies: '@types/node': 18.19.122 - '@inquirer/confirm@5.1.15(@types/node@18.19.122)': + '@inquirer/confirm@5.1.16(@types/node@18.19.122)': dependencies: - '@inquirer/core': 10.1.15(@types/node@18.19.122) + '@inquirer/core': 10.2.0(@types/node@18.19.122) '@inquirer/type': 3.0.8(@types/node@18.19.122) optionalDependencies: '@types/node': 18.19.122 - '@inquirer/confirm@5.1.15(@types/node@24.2.0)': + '@inquirer/confirm@5.1.16(@types/node@24.3.0)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.2.0) - '@inquirer/type': 3.0.8(@types/node@24.2.0) - optionalDependencies: - '@types/node': 24.2.0 - - '@inquirer/confirm@5.1.15(@types/node@24.3.0)': - dependencies: - '@inquirer/core': 10.1.15(@types/node@24.3.0) + '@inquirer/core': 10.2.0(@types/node@24.3.0) '@inquirer/type': 3.0.8(@types/node@24.3.0) optionalDependencies: '@types/node': 24.3.0 @@ -13612,10 +13787,10 @@ snapshots: optionalDependencies: '@types/node': 18.19.122 - '@inquirer/core@10.1.15(@types/node@24.2.0)': + '@inquirer/core@10.2.0(@types/node@18.19.122)': dependencies: '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.2.0) + '@inquirer/type': 3.0.8(@types/node@18.19.122) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -13623,9 +13798,9 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 24.2.0 + '@types/node': 18.19.122 - '@inquirer/core@10.1.15(@types/node@24.3.0)': + '@inquirer/core@10.2.0(@types/node@24.3.0)': dependencies: '@inquirer/figures': 1.0.13 '@inquirer/type': 3.0.8(@types/node@24.3.0) @@ -13646,25 +13821,17 @@ snapshots: optionalDependencies: '@types/node': 18.19.122 - '@inquirer/editor@4.2.17(@types/node@18.19.122)': + '@inquirer/editor@4.2.18(@types/node@18.19.122)': dependencies: - '@inquirer/core': 10.1.15(@types/node@18.19.122) + '@inquirer/core': 10.2.0(@types/node@18.19.122) '@inquirer/external-editor': 1.0.1(@types/node@18.19.122) '@inquirer/type': 3.0.8(@types/node@18.19.122) optionalDependencies: '@types/node': 18.19.122 - '@inquirer/editor@4.2.17(@types/node@24.2.0)': + '@inquirer/editor@4.2.18(@types/node@24.3.0)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.2.0) - '@inquirer/external-editor': 1.0.1(@types/node@24.2.0) - '@inquirer/type': 3.0.8(@types/node@24.2.0) - optionalDependencies: - '@types/node': 24.2.0 - - '@inquirer/editor@4.2.17(@types/node@24.3.0)': - dependencies: - '@inquirer/core': 10.1.15(@types/node@24.3.0) + '@inquirer/core': 10.2.0(@types/node@24.3.0) '@inquirer/external-editor': 1.0.1(@types/node@24.3.0) '@inquirer/type': 3.0.8(@types/node@24.3.0) optionalDependencies: @@ -13678,17 +13845,17 @@ snapshots: optionalDependencies: '@types/node': 18.19.122 - '@inquirer/expand@4.0.17(@types/node@24.2.0)': + '@inquirer/expand@4.0.18(@types/node@18.19.122)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.2.0) - '@inquirer/type': 3.0.8(@types/node@24.2.0) + '@inquirer/core': 10.2.0(@types/node@18.19.122) + '@inquirer/type': 3.0.8(@types/node@18.19.122) yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 24.2.0 + '@types/node': 18.19.122 - '@inquirer/expand@4.0.17(@types/node@24.3.0)': + '@inquirer/expand@4.0.18(@types/node@24.3.0)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.3.0) + '@inquirer/core': 10.2.0(@types/node@24.3.0) '@inquirer/type': 3.0.8(@types/node@24.3.0) yoctocolors-cjs: 2.1.2 optionalDependencies: @@ -13707,13 +13874,6 @@ snapshots: optionalDependencies: '@types/node': 18.19.122 - '@inquirer/external-editor@1.0.1(@types/node@24.2.0)': - dependencies: - chardet: 2.1.0 - iconv-lite: 0.6.3 - optionalDependencies: - '@types/node': 24.2.0 - '@inquirer/external-editor@1.0.1(@types/node@24.3.0)': dependencies: chardet: 2.1.0 @@ -13730,16 +13890,16 @@ snapshots: optionalDependencies: '@types/node': 18.19.122 - '@inquirer/input@4.2.1(@types/node@24.2.0)': + '@inquirer/input@4.2.2(@types/node@18.19.122)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.2.0) - '@inquirer/type': 3.0.8(@types/node@24.2.0) + '@inquirer/core': 10.2.0(@types/node@18.19.122) + '@inquirer/type': 3.0.8(@types/node@18.19.122) optionalDependencies: - '@types/node': 24.2.0 + '@types/node': 18.19.122 - '@inquirer/input@4.2.1(@types/node@24.3.0)': + '@inquirer/input@4.2.2(@types/node@24.3.0)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.3.0) + '@inquirer/core': 10.2.0(@types/node@24.3.0) '@inquirer/type': 3.0.8(@types/node@24.3.0) optionalDependencies: '@types/node': 24.3.0 @@ -13751,16 +13911,16 @@ snapshots: optionalDependencies: '@types/node': 18.19.122 - '@inquirer/number@3.0.17(@types/node@24.2.0)': + '@inquirer/number@3.0.18(@types/node@18.19.122)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.2.0) - '@inquirer/type': 3.0.8(@types/node@24.2.0) + '@inquirer/core': 10.2.0(@types/node@18.19.122) + '@inquirer/type': 3.0.8(@types/node@18.19.122) optionalDependencies: - '@types/node': 24.2.0 + '@types/node': 18.19.122 - '@inquirer/number@3.0.17(@types/node@24.3.0)': + '@inquirer/number@3.0.18(@types/node@24.3.0)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.3.0) + '@inquirer/core': 10.2.0(@types/node@24.3.0) '@inquirer/type': 3.0.8(@types/node@24.3.0) optionalDependencies: '@types/node': 24.3.0 @@ -13773,37 +13933,22 @@ snapshots: optionalDependencies: '@types/node': 18.19.122 - '@inquirer/password@4.0.17(@types/node@24.2.0)': + '@inquirer/password@4.0.18(@types/node@18.19.122)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.2.0) - '@inquirer/type': 3.0.8(@types/node@24.2.0) + '@inquirer/core': 10.2.0(@types/node@18.19.122) + '@inquirer/type': 3.0.8(@types/node@18.19.122) ansi-escapes: 4.3.2 optionalDependencies: - '@types/node': 24.2.0 + '@types/node': 18.19.122 - '@inquirer/password@4.0.17(@types/node@24.3.0)': + '@inquirer/password@4.0.18(@types/node@24.3.0)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.3.0) + '@inquirer/core': 10.2.0(@types/node@24.3.0) '@inquirer/type': 3.0.8(@types/node@24.3.0) ansi-escapes: 4.3.2 optionalDependencies: '@types/node': 24.3.0 - '@inquirer/prompts@7.8.0(@types/node@24.2.0)': - dependencies: - '@inquirer/checkbox': 4.2.1(@types/node@24.2.0) - '@inquirer/confirm': 5.1.15(@types/node@24.2.0) - '@inquirer/editor': 4.2.17(@types/node@24.2.0) - '@inquirer/expand': 4.0.17(@types/node@24.2.0) - '@inquirer/input': 4.2.1(@types/node@24.2.0) - '@inquirer/number': 3.0.17(@types/node@24.2.0) - '@inquirer/password': 4.0.17(@types/node@24.2.0) - '@inquirer/rawlist': 4.1.5(@types/node@24.2.0) - '@inquirer/search': 3.1.0(@types/node@24.2.0) - '@inquirer/select': 4.3.1(@types/node@24.2.0) - optionalDependencies: - '@types/node': 24.2.0 - '@inquirer/prompts@7.8.1(@types/node@18.19.122)': dependencies: '@inquirer/checkbox': 4.2.0(@types/node@18.19.122) @@ -13819,33 +13964,33 @@ snapshots: optionalDependencies: '@types/node': 18.19.122 - '@inquirer/prompts@7.8.3(@types/node@18.19.122)': + '@inquirer/prompts@7.8.4(@types/node@18.19.122)': dependencies: - '@inquirer/checkbox': 4.2.1(@types/node@18.19.122) - '@inquirer/confirm': 5.1.15(@types/node@18.19.122) - '@inquirer/editor': 4.2.17(@types/node@18.19.122) - '@inquirer/expand': 4.0.17(@types/node@18.19.122) - '@inquirer/input': 4.2.1(@types/node@18.19.122) - '@inquirer/number': 3.0.17(@types/node@18.19.122) - '@inquirer/password': 4.0.17(@types/node@18.19.122) - '@inquirer/rawlist': 4.1.5(@types/node@18.19.122) - '@inquirer/search': 3.1.0(@types/node@18.19.122) - '@inquirer/select': 4.3.1(@types/node@18.19.122) + '@inquirer/checkbox': 4.2.2(@types/node@18.19.122) + '@inquirer/confirm': 5.1.16(@types/node@18.19.122) + '@inquirer/editor': 4.2.18(@types/node@18.19.122) + '@inquirer/expand': 4.0.18(@types/node@18.19.122) + '@inquirer/input': 4.2.2(@types/node@18.19.122) + '@inquirer/number': 3.0.18(@types/node@18.19.122) + '@inquirer/password': 4.0.18(@types/node@18.19.122) + '@inquirer/rawlist': 4.1.6(@types/node@18.19.122) + '@inquirer/search': 3.1.1(@types/node@18.19.122) + '@inquirer/select': 4.3.2(@types/node@18.19.122) optionalDependencies: '@types/node': 18.19.122 - '@inquirer/prompts@7.8.3(@types/node@24.3.0)': + '@inquirer/prompts@7.8.4(@types/node@24.3.0)': dependencies: - '@inquirer/checkbox': 4.2.1(@types/node@24.3.0) - '@inquirer/confirm': 5.1.15(@types/node@24.3.0) - '@inquirer/editor': 4.2.17(@types/node@24.3.0) - '@inquirer/expand': 4.0.17(@types/node@24.3.0) - '@inquirer/input': 4.2.1(@types/node@24.3.0) - '@inquirer/number': 3.0.17(@types/node@24.3.0) - '@inquirer/password': 4.0.17(@types/node@24.3.0) - '@inquirer/rawlist': 4.1.5(@types/node@24.3.0) - '@inquirer/search': 3.1.0(@types/node@24.3.0) - '@inquirer/select': 4.3.1(@types/node@24.3.0) + '@inquirer/checkbox': 4.2.2(@types/node@24.3.0) + '@inquirer/confirm': 5.1.16(@types/node@24.3.0) + '@inquirer/editor': 4.2.18(@types/node@24.3.0) + '@inquirer/expand': 4.0.18(@types/node@24.3.0) + '@inquirer/input': 4.2.2(@types/node@24.3.0) + '@inquirer/number': 3.0.18(@types/node@24.3.0) + '@inquirer/password': 4.0.18(@types/node@24.3.0) + '@inquirer/rawlist': 4.1.6(@types/node@24.3.0) + '@inquirer/search': 3.1.1(@types/node@24.3.0) + '@inquirer/select': 4.3.2(@types/node@24.3.0) optionalDependencies: '@types/node': 24.3.0 @@ -13857,17 +14002,17 @@ snapshots: optionalDependencies: '@types/node': 18.19.122 - '@inquirer/rawlist@4.1.5(@types/node@24.2.0)': + '@inquirer/rawlist@4.1.6(@types/node@18.19.122)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.2.0) - '@inquirer/type': 3.0.8(@types/node@24.2.0) + '@inquirer/core': 10.2.0(@types/node@18.19.122) + '@inquirer/type': 3.0.8(@types/node@18.19.122) yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 24.2.0 + '@types/node': 18.19.122 - '@inquirer/rawlist@4.1.5(@types/node@24.3.0)': + '@inquirer/rawlist@4.1.6(@types/node@24.3.0)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.3.0) + '@inquirer/core': 10.2.0(@types/node@24.3.0) '@inquirer/type': 3.0.8(@types/node@24.3.0) yoctocolors-cjs: 2.1.2 optionalDependencies: @@ -13882,18 +14027,18 @@ snapshots: optionalDependencies: '@types/node': 18.19.122 - '@inquirer/search@3.1.0(@types/node@24.2.0)': + '@inquirer/search@3.1.1(@types/node@18.19.122)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.2.0) + '@inquirer/core': 10.2.0(@types/node@18.19.122) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.2.0) + '@inquirer/type': 3.0.8(@types/node@18.19.122) yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 24.2.0 + '@types/node': 18.19.122 - '@inquirer/search@3.1.0(@types/node@24.3.0)': + '@inquirer/search@3.1.1(@types/node@24.3.0)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.3.0) + '@inquirer/core': 10.2.0(@types/node@24.3.0) '@inquirer/figures': 1.0.13 '@inquirer/type': 3.0.8(@types/node@24.3.0) yoctocolors-cjs: 2.1.2 @@ -13910,19 +14055,19 @@ snapshots: optionalDependencies: '@types/node': 18.19.122 - '@inquirer/select@4.3.1(@types/node@24.2.0)': + '@inquirer/select@4.3.2(@types/node@18.19.122)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.2.0) + '@inquirer/core': 10.2.0(@types/node@18.19.122) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.2.0) + '@inquirer/type': 3.0.8(@types/node@18.19.122) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 24.2.0 + '@types/node': 18.19.122 - '@inquirer/select@4.3.1(@types/node@24.3.0)': + '@inquirer/select@4.3.2(@types/node@24.3.0)': dependencies: - '@inquirer/core': 10.1.15(@types/node@24.3.0) + '@inquirer/core': 10.2.0(@types/node@24.3.0) '@inquirer/figures': 1.0.13 '@inquirer/type': 3.0.8(@types/node@24.3.0) ansi-escapes: 4.3.2 @@ -13934,10 +14079,6 @@ snapshots: optionalDependencies: '@types/node': 18.19.122 - '@inquirer/type@3.0.8(@types/node@24.2.0)': - optionalDependencies: - '@types/node': 24.2.0 - '@inquirer/type@3.0.8(@types/node@24.3.0)': optionalDependencies: '@types/node': 24.3.0 @@ -14061,19 +14202,19 @@ snapshots: '@lezer/highlight': 1.2.1 '@lezer/lr': 1.4.2 - '@listr2/prompt-adapter-inquirer@3.0.1(@inquirer/prompts@7.8.3(@types/node@18.19.122))(@types/node@18.19.122)(listr2@9.0.1)': + '@listr2/prompt-adapter-inquirer@3.0.2(@inquirer/prompts@7.8.4(@types/node@18.19.122))(@types/node@18.19.122)(listr2@9.0.2)': dependencies: - '@inquirer/prompts': 7.8.3(@types/node@18.19.122) + '@inquirer/prompts': 7.8.4(@types/node@18.19.122) '@inquirer/type': 3.0.8(@types/node@18.19.122) - listr2: 9.0.1 + listr2: 9.0.2 transitivePeerDependencies: - '@types/node' - '@listr2/prompt-adapter-inquirer@3.0.1(@inquirer/prompts@7.8.3(@types/node@24.3.0))(@types/node@24.3.0)(listr2@9.0.1)': + '@listr2/prompt-adapter-inquirer@3.0.2(@inquirer/prompts@7.8.4(@types/node@24.3.0))(@types/node@24.3.0)(listr2@9.0.2)': dependencies: - '@inquirer/prompts': 7.8.3(@types/node@24.3.0) + '@inquirer/prompts': 7.8.4(@types/node@24.3.0) '@inquirer/type': 3.0.8(@types/node@24.3.0) - listr2: 9.0.1 + listr2: 9.0.2 transitivePeerDependencies: - '@types/node' @@ -14156,7 +14297,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@modelcontextprotocol/sdk@1.17.3': + '@modelcontextprotocol/sdk@1.17.4': dependencies: ajv: 6.12.6 content-type: 1.0.5 @@ -14286,7 +14427,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@ngtools/webpack@21.0.0-next.0(typescript@5.9.2)(webpack@5.101.3(esbuild@0.25.9))': + '@ngtools/webpack@21.0.0-next.1(typescript@5.9.2)(webpack@5.101.3(esbuild@0.25.9))': dependencies: '@angular/compiler-cli': link:packages/compiler-cli typescript: 5.9.2 @@ -14366,7 +14507,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@octokit/auth-app@8.0.2': + '@octokit/auth-app@8.1.0': dependencies: '@octokit/auth-oauth-app': 9.0.1 '@octokit/auth-oauth-user': 6.0.0 @@ -14558,9 +14699,9 @@ snapshots: '@opentelemetry/semantic-conventions@1.36.0': {} - '@oxc-project/runtime@0.82.2': {} + '@oxc-project/runtime@0.82.3': {} - '@oxc-project/types@0.82.2': {} + '@oxc-project/types@0.82.3': {} '@parcel/watcher-android-arm64@2.5.1': optional: true @@ -14694,51 +14835,51 @@ snapshots: - bare-buffer - supports-color - '@rolldown/binding-android-arm64@1.0.0-beta.33': + '@rolldown/binding-android-arm64@1.0.0-beta.34': optional: true - '@rolldown/binding-darwin-arm64@1.0.0-beta.33': + '@rolldown/binding-darwin-arm64@1.0.0-beta.34': optional: true - '@rolldown/binding-darwin-x64@1.0.0-beta.33': + '@rolldown/binding-darwin-x64@1.0.0-beta.34': optional: true - '@rolldown/binding-freebsd-x64@1.0.0-beta.33': + '@rolldown/binding-freebsd-x64@1.0.0-beta.34': optional: true - '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.33': + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.34': optional: true - '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.33': + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.34': optional: true - '@rolldown/binding-linux-arm64-musl@1.0.0-beta.33': + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.34': optional: true - '@rolldown/binding-linux-x64-gnu@1.0.0-beta.33': + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.34': optional: true - '@rolldown/binding-linux-x64-musl@1.0.0-beta.33': + '@rolldown/binding-linux-x64-musl@1.0.0-beta.34': optional: true - '@rolldown/binding-openharmony-arm64@1.0.0-beta.33': + '@rolldown/binding-openharmony-arm64@1.0.0-beta.34': optional: true - '@rolldown/binding-wasm32-wasi@1.0.0-beta.33': + '@rolldown/binding-wasm32-wasi@1.0.0-beta.34': dependencies: '@napi-rs/wasm-runtime': 1.0.3 optional: true - '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.33': + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.34': optional: true - '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.33': + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.34': optional: true - '@rolldown/binding-win32-x64-msvc@1.0.0-beta.33': + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.34': optional: true - '@rolldown/pluginutils@1.0.0-beta.33': {} + '@rolldown/pluginutils@1.0.0-beta.34': {} '@rollup/plugin-babel@6.0.4(@babel/core@7.28.3)(@types/babel__core@7.20.5)(rollup@4.48.1)': dependencies: @@ -14882,10 +15023,10 @@ snapshots: transitivePeerDependencies: - '@types/node' - '@schematics/angular@21.0.0-next.0(chokidar@4.0.3)': + '@schematics/angular@21.0.0-next.1(chokidar@4.0.3)': dependencies: - '@angular-devkit/core': 21.0.0-next.0(chokidar@4.0.3) - '@angular-devkit/schematics': 21.0.0-next.0(chokidar@4.0.3) + '@angular-devkit/core': 21.0.0-next.1(chokidar@4.0.3) + '@angular-devkit/schematics': 21.0.0-next.1(chokidar@4.0.3) jsonc-parser: 3.3.1 transitivePeerDependencies: - chokidar @@ -15277,7 +15418,7 @@ snapshots: '@types/geojson@7946.0.16': {} - '@types/git-raw-commits@2.0.0': + '@types/git-raw-commits@2.0.4': dependencies: '@types/node': 18.19.122 @@ -15345,10 +15486,6 @@ snapshots: dependencies: undici-types: 6.21.0 - '@types/node@24.2.0': - dependencies: - undici-types: 7.10.0 - '@types/node@24.3.0': dependencies: undici-types: 7.10.0 @@ -15446,7 +15583,7 @@ snapshots: '@types/supports-color@10.0.0': dependencies: - supports-color: 10.1.0 + supports-color: 10.2.0 '@types/systemjs@6.15.3': {} @@ -15491,13 +15628,13 @@ snapshots: '@ungap/structured-clone@1.3.0': {} - '@vitejs/plugin-basic-ssl@2.1.0(vite@7.1.3(@types/node@18.19.122)(jiti@1.21.7)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1))': + '@vitejs/plugin-basic-ssl@2.1.0(vite@7.1.3(@types/node@18.19.122)(jiti@1.21.7)(less@4.4.1)(sass@1.91.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1))': dependencies: - vite: 7.1.3(@types/node@18.19.122)(jiti@1.21.7)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1) + vite: 7.1.3(@types/node@18.19.122)(jiti@1.21.7)(less@4.4.1)(sass@1.91.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1) - '@vitejs/plugin-basic-ssl@2.1.0(vite@7.1.3(@types/node@24.3.0)(jiti@1.21.7)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1))': + '@vitejs/plugin-basic-ssl@2.1.0(vite@7.1.3(@types/node@24.3.0)(jiti@1.21.7)(less@4.4.1)(sass@1.91.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1))': dependencies: - vite: 7.1.3(@types/node@24.3.0)(jiti@1.21.7)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1) + vite: 7.1.3(@types/node@24.3.0)(jiti@1.21.7)(less@4.4.1)(sass@1.91.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1) '@wdio/config@6.12.1': dependencies: @@ -15662,9 +15799,9 @@ snapshots: transitivePeerDependencies: - supports-color - agent-base@6.0.2(supports-color@10.1.0): + agent-base@6.0.2(supports-color@10.2.0): dependencies: - debug: 4.4.1(supports-color@10.1.0) + debug: 4.4.1(supports-color@10.2.0) transitivePeerDependencies: - supports-color @@ -15737,6 +15874,23 @@ snapshots: '@algolia/requester-fetch': 5.35.0 '@algolia/requester-node-http': 5.35.0 + algoliasearch@5.36.0: + dependencies: + '@algolia/abtesting': 1.2.0 + '@algolia/client-abtesting': 5.36.0 + '@algolia/client-analytics': 5.36.0 + '@algolia/client-common': 5.36.0 + '@algolia/client-insights': 5.36.0 + '@algolia/client-personalization': 5.36.0 + '@algolia/client-query-suggestions': 5.36.0 + '@algolia/client-search': 5.36.0 + '@algolia/ingestion': 1.36.0 + '@algolia/monitoring': 1.36.0 + '@algolia/recommend': 5.36.0 + '@algolia/requester-browser-xhr': 5.36.0 + '@algolia/requester-fetch': 5.36.0 + '@algolia/requester-node-http': 5.36.0 + angular-mocks@1.5.11: {} angular-mocks@1.6.10: {} @@ -16390,6 +16544,8 @@ snapshots: chalk@5.5.0: {} + chalk@5.6.0: {} + change-case@4.1.2: dependencies: camel-case: 4.1.2 @@ -17295,17 +17451,17 @@ snapshots: dependencies: ms: 2.1.3 - debug@4.4.0(supports-color@10.1.0): + debug@4.4.0(supports-color@10.2.0): dependencies: ms: 2.1.3 optionalDependencies: - supports-color: 10.1.0 + supports-color: 10.2.0 - debug@4.4.1(supports-color@10.1.0): + debug@4.4.1(supports-color@10.2.0): dependencies: ms: 2.1.3 optionalDependencies: - supports-color: 10.1.0 + supports-color: 10.2.0 debug@4.4.1(supports-color@8.1.1): dependencies: @@ -18245,35 +18401,35 @@ snapshots: - supports-color - utf-8-validate - firebase@12.0.0: + firebase@12.1.0: dependencies: - '@firebase/ai': 2.0.0(@firebase/app-types@0.9.3)(@firebase/app@0.14.0) - '@firebase/analytics': 0.10.18(@firebase/app@0.14.0) - '@firebase/analytics-compat': 0.2.24(@firebase/app-compat@0.5.0)(@firebase/app@0.14.0) - '@firebase/app': 0.14.0 - '@firebase/app-check': 0.11.0(@firebase/app@0.14.0) - '@firebase/app-check-compat': 0.4.0(@firebase/app-compat@0.5.0)(@firebase/app@0.14.0) - '@firebase/app-compat': 0.5.0 + '@firebase/ai': 2.1.0(@firebase/app-types@0.9.3)(@firebase/app@0.14.1) + '@firebase/analytics': 0.10.18(@firebase/app@0.14.1) + '@firebase/analytics-compat': 0.2.24(@firebase/app-compat@0.5.1)(@firebase/app@0.14.1) + '@firebase/app': 0.14.1 + '@firebase/app-check': 0.11.0(@firebase/app@0.14.1) + '@firebase/app-check-compat': 0.4.0(@firebase/app-compat@0.5.1)(@firebase/app@0.14.1) + '@firebase/app-compat': 0.5.1 '@firebase/app-types': 0.9.3 - '@firebase/auth': 1.11.0(@firebase/app@0.14.0) - '@firebase/auth-compat': 0.6.0(@firebase/app-compat@0.5.0)(@firebase/app-types@0.9.3)(@firebase/app@0.14.0) - '@firebase/data-connect': 0.3.11(@firebase/app@0.14.0) + '@firebase/auth': 1.11.0(@firebase/app@0.14.1) + '@firebase/auth-compat': 0.6.0(@firebase/app-compat@0.5.1)(@firebase/app-types@0.9.3)(@firebase/app@0.14.1) + '@firebase/data-connect': 0.3.11(@firebase/app@0.14.1) '@firebase/database': 1.1.0 '@firebase/database-compat': 2.1.0 - '@firebase/firestore': 4.9.0(@firebase/app@0.14.0) - '@firebase/firestore-compat': 0.4.0(@firebase/app-compat@0.5.0)(@firebase/app-types@0.9.3)(@firebase/app@0.14.0) - '@firebase/functions': 0.13.0(@firebase/app@0.14.0) - '@firebase/functions-compat': 0.4.0(@firebase/app-compat@0.5.0)(@firebase/app@0.14.0) - '@firebase/installations': 0.6.19(@firebase/app@0.14.0) - '@firebase/installations-compat': 0.2.19(@firebase/app-compat@0.5.0)(@firebase/app-types@0.9.3)(@firebase/app@0.14.0) - '@firebase/messaging': 0.12.23(@firebase/app@0.14.0) - '@firebase/messaging-compat': 0.2.23(@firebase/app-compat@0.5.0)(@firebase/app@0.14.0) - '@firebase/performance': 0.7.8(@firebase/app@0.14.0) - '@firebase/performance-compat': 0.2.21(@firebase/app-compat@0.5.0)(@firebase/app@0.14.0) - '@firebase/remote-config': 0.6.6(@firebase/app@0.14.0) - '@firebase/remote-config-compat': 0.2.19(@firebase/app-compat@0.5.0)(@firebase/app@0.14.0) - '@firebase/storage': 0.14.0(@firebase/app@0.14.0) - '@firebase/storage-compat': 0.4.0(@firebase/app-compat@0.5.0)(@firebase/app-types@0.9.3)(@firebase/app@0.14.0) + '@firebase/firestore': 4.9.0(@firebase/app@0.14.1) + '@firebase/firestore-compat': 0.4.0(@firebase/app-compat@0.5.1)(@firebase/app-types@0.9.3)(@firebase/app@0.14.1) + '@firebase/functions': 0.13.0(@firebase/app@0.14.1) + '@firebase/functions-compat': 0.4.0(@firebase/app-compat@0.5.1)(@firebase/app@0.14.1) + '@firebase/installations': 0.6.19(@firebase/app@0.14.1) + '@firebase/installations-compat': 0.2.19(@firebase/app-compat@0.5.1)(@firebase/app-types@0.9.3)(@firebase/app@0.14.1) + '@firebase/messaging': 0.12.23(@firebase/app@0.14.1) + '@firebase/messaging-compat': 0.2.23(@firebase/app-compat@0.5.1)(@firebase/app@0.14.1) + '@firebase/performance': 0.7.9(@firebase/app@0.14.1) + '@firebase/performance-compat': 0.2.22(@firebase/app-compat@0.5.1)(@firebase/app@0.14.1) + '@firebase/remote-config': 0.6.6(@firebase/app@0.14.1) + '@firebase/remote-config-compat': 0.2.19(@firebase/app-compat@0.5.1)(@firebase/app@0.14.1) + '@firebase/storage': 0.14.0(@firebase/app@0.14.1) + '@firebase/storage-compat': 0.4.0(@firebase/app-compat@0.5.1)(@firebase/app-types@0.9.3)(@firebase/app@0.14.1) '@firebase/util': 1.13.0 transitivePeerDependencies: - '@react-native-async-storage/async-storage' @@ -18288,9 +18444,9 @@ snapshots: fn.name@1.1.0: {} - folder-hash@4.1.1(supports-color@10.1.0): + folder-hash@4.1.1(supports-color@10.2.0): dependencies: - debug: 4.4.0(supports-color@10.1.0) + debug: 4.4.0(supports-color@10.2.0) minimatch: 7.4.6 transitivePeerDependencies: - supports-color @@ -18436,10 +18592,10 @@ snapshots: - encoding - supports-color - gaxios@6.7.1(encoding@0.1.13)(supports-color@10.1.0): + gaxios@6.7.1(encoding@0.1.13)(supports-color@10.2.0): dependencies: extend: 3.0.2 - https-proxy-agent: 7.0.6(supports-color@10.1.0) + https-proxy-agent: 7.0.6(supports-color@10.2.0) is-stream: 2.0.1 node-fetch: 2.7.0(encoding@0.1.13) uuid: 9.0.1 @@ -18455,10 +18611,10 @@ snapshots: transitivePeerDependencies: - supports-color - gaxios@7.1.1(supports-color@10.1.0): + gaxios@7.1.1(supports-color@10.2.0): dependencies: extend: 3.0.2 - https-proxy-agent: 7.0.6(supports-color@10.1.0) + https-proxy-agent: 7.0.6(supports-color@10.2.0) node-fetch: 3.3.2 transitivePeerDependencies: - supports-color @@ -18472,9 +18628,9 @@ snapshots: - encoding - supports-color - gcp-metadata@6.1.1(encoding@0.1.13)(supports-color@10.1.0): + gcp-metadata@6.1.1(encoding@0.1.13)(supports-color@10.2.0): dependencies: - gaxios: 6.7.1(encoding@0.1.13)(supports-color@10.1.0) + gaxios: 6.7.1(encoding@0.1.13)(supports-color@10.2.0) google-logging-utils: 0.0.2 json-bigint: 1.0.0 transitivePeerDependencies: @@ -18489,9 +18645,9 @@ snapshots: transitivePeerDependencies: - supports-color - gcp-metadata@7.0.1(supports-color@10.1.0): + gcp-metadata@7.0.1(supports-color@10.2.0): dependencies: - gaxios: 7.1.1(supports-color@10.1.0) + gaxios: 7.1.1(supports-color@10.2.0) google-logging-utils: 1.1.1 json-bigint: 1.0.0 transitivePeerDependencies: @@ -18707,14 +18863,14 @@ snapshots: transitivePeerDependencies: - supports-color - google-auth-library@10.2.1(supports-color@10.1.0): + google-auth-library@10.2.1(supports-color@10.2.0): dependencies: base64-js: 1.5.1 ecdsa-sig-formatter: 1.0.11 - gaxios: 7.1.1(supports-color@10.1.0) - gcp-metadata: 7.0.1(supports-color@10.1.0) + gaxios: 7.1.1(supports-color@10.2.0) + gcp-metadata: 7.0.1(supports-color@10.2.0) google-logging-utils: 1.1.1 - gtoken: 8.0.0(supports-color@10.1.0) + gtoken: 8.0.0(supports-color@10.2.0) jws: 4.0.0 transitivePeerDependencies: - supports-color @@ -18731,13 +18887,13 @@ snapshots: - encoding - supports-color - google-auth-library@9.15.1(encoding@0.1.13)(supports-color@10.1.0): + google-auth-library@9.15.1(encoding@0.1.13)(supports-color@10.2.0): dependencies: base64-js: 1.5.1 ecdsa-sig-formatter: 1.0.11 - gaxios: 6.7.1(encoding@0.1.13)(supports-color@10.1.0) - gcp-metadata: 6.1.1(encoding@0.1.13)(supports-color@10.1.0) - gtoken: 7.1.0(encoding@0.1.13)(supports-color@10.1.0) + gaxios: 6.7.1(encoding@0.1.13)(supports-color@10.2.0) + gcp-metadata: 6.1.1(encoding@0.1.13)(supports-color@10.2.0) + gtoken: 7.1.0(encoding@0.1.13)(supports-color@10.2.0) jws: 4.0.0 transitivePeerDependencies: - encoding @@ -18761,19 +18917,19 @@ snapshots: - encoding - supports-color - google-gax@5.0.3(supports-color@10.1.0): + google-gax@5.0.3(supports-color@10.2.0): dependencies: '@grpc/grpc-js': 1.13.4 '@grpc/proto-loader': 0.8.0 abort-controller: 3.0.0 duplexify: 4.1.3 - google-auth-library: 10.2.1(supports-color@10.1.0) + google-auth-library: 10.2.1(supports-color@10.2.0) google-logging-utils: 1.1.1 node-fetch: 3.3.2 object-hash: 3.0.0 proto3-json-serializer: 3.0.1 protobufjs: 7.5.3 - retry-request: 8.0.2(supports-color@10.1.0) + retry-request: 8.0.2(supports-color@10.2.0) transitivePeerDependencies: - supports-color @@ -18833,9 +18989,9 @@ snapshots: - encoding - supports-color - gtoken@7.1.0(encoding@0.1.13)(supports-color@10.1.0): + gtoken@7.1.0(encoding@0.1.13)(supports-color@10.2.0): dependencies: - gaxios: 6.7.1(encoding@0.1.13)(supports-color@10.1.0) + gaxios: 6.7.1(encoding@0.1.13)(supports-color@10.2.0) jws: 4.0.0 transitivePeerDependencies: - encoding @@ -18848,9 +19004,9 @@ snapshots: transitivePeerDependencies: - supports-color - gtoken@8.0.0(supports-color@10.1.0): + gtoken@8.0.0(supports-color@10.2.0): dependencies: - gaxios: 7.1.1(supports-color@10.1.0) + gaxios: 7.1.1(supports-color@10.2.0) jws: 4.0.0 transitivePeerDependencies: - supports-color @@ -19085,11 +19241,11 @@ snapshots: transitivePeerDependencies: - supports-color - http-proxy-agent@5.0.0(supports-color@10.1.0): + http-proxy-agent@5.0.0(supports-color@10.2.0): dependencies: '@tootallnate/once': 2.0.0 - agent-base: 6.0.2(supports-color@10.1.0) - debug: 4.4.1(supports-color@10.1.0) + agent-base: 6.0.2(supports-color@10.2.0) + debug: 4.4.1(supports-color@10.2.0) transitivePeerDependencies: - supports-color @@ -19174,10 +19330,10 @@ snapshots: transitivePeerDependencies: - supports-color - https-proxy-agent@7.0.6(supports-color@10.1.0): + https-proxy-agent@7.0.6(supports-color@10.2.0): dependencies: agent-base: 7.1.4 - debug: 4.4.1(supports-color@10.1.0) + debug: 4.4.1(supports-color@10.2.0) transitivePeerDependencies: - supports-color @@ -20042,7 +20198,7 @@ snapshots: optionalDependencies: enquirer: 2.4.1 - listr2@9.0.1: + listr2@9.0.2: dependencies: cli-truncate: 4.0.0 colorette: 2.0.20 @@ -20249,6 +20405,10 @@ snapshots: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 + magic-string@0.30.18: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + make-dir@2.1.0: dependencies: pify: 4.0.1 @@ -20674,9 +20834,9 @@ snapshots: '@angular/core': link:packages/core tslib: 2.8.1 - ngx-progressbar@14.0.0(@angular/cdk@21.0.0-next.0(rxjs@7.8.2))(rxjs@7.8.2): + ngx-progressbar@14.0.0(@angular/cdk@21.0.0-next.1(rxjs@7.8.2))(rxjs@7.8.2): dependencies: - '@angular/cdk': 21.0.0-next.0(rxjs@7.8.2) + '@angular/cdk': 21.0.0-next.1(rxjs@7.8.2) '@angular/common': link:packages/common '@angular/core': link:packages/core rxjs: 7.8.2 @@ -20687,7 +20847,7 @@ snapshots: lower-case: 2.0.2 tslib: 2.8.1 - nock@14.0.8: + nock@14.0.10: dependencies: '@mswjs/interceptors': 0.39.6 json-stringify-safe: 5.0.1 @@ -21830,10 +21990,10 @@ snapshots: - encoding - supports-color - retry-request@8.0.2(supports-color@10.1.0): + retry-request@8.0.2(supports-color@10.2.0): dependencies: extend: 3.0.2 - teeny-request: 10.1.0(supports-color@10.1.0) + teeny-request: 10.1.0(supports-color@10.2.0) transitivePeerDependencies: - supports-color @@ -21866,27 +22026,27 @@ snapshots: robust-predicates@3.0.2: {} - rolldown@1.0.0-beta.33: + rolldown@1.0.0-beta.34: dependencies: - '@oxc-project/runtime': 0.82.2 - '@oxc-project/types': 0.82.2 - '@rolldown/pluginutils': 1.0.0-beta.33 + '@oxc-project/runtime': 0.82.3 + '@oxc-project/types': 0.82.3 + '@rolldown/pluginutils': 1.0.0-beta.34 ansis: 4.1.0 optionalDependencies: - '@rolldown/binding-android-arm64': 1.0.0-beta.33 - '@rolldown/binding-darwin-arm64': 1.0.0-beta.33 - '@rolldown/binding-darwin-x64': 1.0.0-beta.33 - '@rolldown/binding-freebsd-x64': 1.0.0-beta.33 - '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.33 - '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.33 - '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.33 - '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.33 - '@rolldown/binding-linux-x64-musl': 1.0.0-beta.33 - '@rolldown/binding-openharmony-arm64': 1.0.0-beta.33 - '@rolldown/binding-wasm32-wasi': 1.0.0-beta.33 - '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.33 - '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.33 - '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.33 + '@rolldown/binding-android-arm64': 1.0.0-beta.34 + '@rolldown/binding-darwin-arm64': 1.0.0-beta.34 + '@rolldown/binding-darwin-x64': 1.0.0-beta.34 + '@rolldown/binding-freebsd-x64': 1.0.0-beta.34 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.34 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.34 + '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.34 + '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.34 + '@rolldown/binding-linux-x64-musl': 1.0.0-beta.34 + '@rolldown/binding-openharmony-arm64': 1.0.0-beta.34 + '@rolldown/binding-wasm32-wasi': 1.0.0-beta.34 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.34 + '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.34 + '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.34 rollup-plugin-dts@6.2.1(rollup@4.48.1)(typescript@5.9.2): dependencies: @@ -22024,14 +22184,14 @@ snapshots: safer-buffer@2.1.2: {} - sass-loader@16.0.5(sass@1.90.0)(webpack@5.101.3(esbuild@0.25.9)): + sass-loader@16.0.5(sass@1.91.0)(webpack@5.101.3(esbuild@0.25.9)): dependencies: neo-async: 2.6.2 optionalDependencies: - sass: 1.90.0 + sass: 1.91.0 webpack: 5.101.3(esbuild@0.25.9) - sass@1.90.0: + sass@1.91.0: dependencies: chokidar: 4.0.3 immutable: 5.1.3 @@ -22746,7 +22906,7 @@ snapshots: - encoding - supports-color - supports-color@10.1.0: {} + supports-color@10.2.0: {} supports-color@2.0.0: {} @@ -22848,10 +23008,10 @@ snapshots: transitivePeerDependencies: - supports-color - teeny-request@10.1.0(supports-color@10.1.0): + teeny-request@10.1.0(supports-color@10.2.0): dependencies: - http-proxy-agent: 5.0.0(supports-color@10.1.0) - https-proxy-agent: 7.0.6(supports-color@10.1.0) + http-proxy-agent: 5.0.0(supports-color@10.2.0) + https-proxy-agent: 7.0.6(supports-color@10.2.0) node-fetch: 3.3.2 stream-events: 1.0.5 transitivePeerDependencies: @@ -23478,7 +23638,7 @@ snapshots: replace-ext: 2.0.0 teex: 1.0.1 - vite@7.1.3(@types/node@18.19.122)(jiti@1.21.7)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1): + vite@7.1.3(@types/node@18.19.122)(jiti@1.21.7)(less@4.4.1)(sass@1.91.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1): dependencies: esbuild: 0.25.9 fdir: 6.5.0(picomatch@4.0.3) @@ -23491,12 +23651,12 @@ snapshots: fsevents: 2.3.3 jiti: 1.21.7 less: 4.4.1 - sass: 1.90.0 + sass: 1.91.0 terser: 5.43.1 tsx: 4.20.4 yaml: 2.8.1 - vite@7.1.3(@types/node@24.3.0)(jiti@1.21.7)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1): + vite@7.1.3(@types/node@24.3.0)(jiti@1.21.7)(less@4.4.1)(sass@1.91.0)(terser@5.43.1)(tsx@4.20.4)(yaml@2.8.1): dependencies: esbuild: 0.25.9 fdir: 6.5.0(picomatch@4.0.3) @@ -23509,7 +23669,7 @@ snapshots: fsevents: 2.3.3 jiti: 1.21.7 less: 4.4.1 - sass: 1.90.0 + sass: 1.91.0 terser: 5.43.1 tsx: 4.20.4 yaml: 2.8.1