diff --git a/.github/actions/cache-core-sdk-build/action.yml b/.github/actions/cache-core-sdk-build/action.yml new file mode 100644 index 000000000..b4f9a7317 --- /dev/null +++ b/.github/actions/cache-core-sdk-build/action.yml @@ -0,0 +1,47 @@ +name: Cache Core SDK Build +description: Cache core SDK build artifacts (common, sdk/core) + +inputs: + mode: + description: "save or restore" + required: true + cache-version: + description: Cache version string + required: false + default: v1 + fail-on-cache-miss: + description: Fail if cache not found (restore mode only) + required: false + default: "false" + +outputs: + cache-hit: + description: Whether cache was hit + value: ${{ steps.restore.outputs.cache-hit }} + +runs: + using: composite + steps: + - id: restore + if: inputs.mode == 'restore' + uses: actions/cache/restore@v4 + with: + path: | + common/dist + sdk/core/dist + node_modules + sdk/core/node_modules + common/node_modules + key: core-sdk-build-${{ inputs.cache-version }}-${{ github.sha }} + fail-on-cache-miss: ${{ inputs.fail-on-cache-miss }} + - id: save + if: inputs.mode == 'save' + uses: actions/cache/save@v4 + with: + path: | + common/dist + sdk/core/dist + node_modules + sdk/core/node_modules + common/node_modules + key: core-sdk-build-${{ inputs.cache-version }}-${{ github.sha }} diff --git a/.github/actions/cache-mobile-sdk-build/action.yml b/.github/actions/cache-mobile-sdk-build/action.yml new file mode 100644 index 000000000..e7aa6db18 --- /dev/null +++ b/.github/actions/cache-mobile-sdk-build/action.yml @@ -0,0 +1,47 @@ +name: Cache Mobile SDK Build +description: Cache mobile SDK build artifacts (common, mobile-sdk-alpha) + +inputs: + mode: + description: "save or restore" + required: true + cache-version: + description: Cache version string + required: false + default: v1 + fail-on-cache-miss: + description: Fail if cache not found (restore mode only) + required: false + default: "false" + +outputs: + cache-hit: + description: Whether cache was hit + value: ${{ steps.restore.outputs.cache-hit }} + +runs: + using: composite + steps: + - id: restore + if: inputs.mode == 'restore' + uses: actions/cache/restore@v4 + with: + path: | + common/dist + packages/mobile-sdk-alpha/dist + node_modules + packages/mobile-sdk-alpha/node_modules + common/node_modules + key: mobile-sdk-alpha-build-${{ inputs.cache-version }}-${{ github.sha }} + fail-on-cache-miss: ${{ inputs.fail-on-cache-miss }} + - id: save + if: inputs.mode == 'save' + uses: actions/cache/save@v4 + with: + path: | + common/dist + packages/mobile-sdk-alpha/dist + node_modules + packages/mobile-sdk-alpha/node_modules + common/node_modules + key: mobile-sdk-alpha-build-${{ inputs.cache-version }}-${{ github.sha }} diff --git a/.github/actions/cache-sdk-build/action.yml b/.github/actions/cache-sdk-build/action.yml new file mode 100644 index 000000000..16305276f --- /dev/null +++ b/.github/actions/cache-sdk-build/action.yml @@ -0,0 +1,43 @@ +name: Cache SDK Build +description: Cache SDK build artifacts (common, sdk-common, qrcode) + +inputs: + mode: + description: "save or restore" + required: true + cache-version: + description: Cache version string + required: false + default: v1 + fail-on-cache-miss: + description: Fail if cache not found (restore mode only) + required: false + default: "false" + +outputs: + cache-hit: + description: Whether cache was hit + value: ${{ steps.restore.outputs.cache-hit }} + +runs: + using: composite + steps: + - id: restore + if: inputs.mode == 'restore' + uses: actions/cache/restore@v4 + with: + path: | + common/dist + sdk/sdk-common/dist + sdk/qrcode/dist + key: qrcode-sdk-build-${{ inputs.cache-version }}-${{ github.sha }} + fail-on-cache-miss: ${{ inputs.fail-on-cache-miss }} + - id: save + if: inputs.mode == 'save' + uses: actions/cache/save@v4 + with: + path: | + common/dist + sdk/sdk-common/dist + sdk/qrcode/dist + key: qrcode-sdk-build-${{ inputs.cache-version }}-${{ github.sha }} diff --git a/.github/workflows/core-sdk-ci.yml b/.github/workflows/core-sdk-ci.yml index 5d9166588..2df6f4601 100644 --- a/.github/workflows/core-sdk-ci.yml +++ b/.github/workflows/core-sdk-ci.yml @@ -22,15 +22,10 @@ jobs: yarn workspace @selfxyz/common build yarn workspace @selfxyz/core build - name: Cache build artifacts - uses: actions/cache/save@v4 + uses: ./.github/actions/cache-core-sdk-build with: - path: | - common/dist - sdk/core/dist - node_modules - sdk/core/node_modules - common/node_modules - key: core-sdk-build-${{ github.sha }} + mode: save + cache-version: v1 lint: runs-on: ubuntu-latest @@ -45,19 +40,19 @@ jobs: corepack prepare yarn@4.12.0 --activate - name: Restore build artifacts id: build-cache - uses: actions/cache/restore@v4 + uses: ./.github/actions/cache-core-sdk-build with: - path: | - common/dist - sdk/core/dist - node_modules - sdk/core/node_modules - common/node_modules - key: core-sdk-build-${{ github.sha }} - fail-on-cache-miss: true + mode: restore + cache-version: v1 + fail-on-cache-miss: false - name: Install Dependencies if: steps.build-cache.outputs.cache-hit != 'true' uses: ./.github/actions/yarn-install + - name: Build dependencies (fallback on cache miss) + if: steps.build-cache.outputs.cache-hit != 'true' + run: | + yarn workspace @selfxyz/common build + yarn workspace @selfxyz/core build - name: Run linter run: yarn workspace @selfxyz/core lint @@ -74,19 +69,19 @@ jobs: corepack prepare yarn@4.12.0 --activate - name: Restore build artifacts id: build-cache - uses: actions/cache/restore@v4 + uses: ./.github/actions/cache-core-sdk-build with: - path: | - common/dist - sdk/core/dist - node_modules - sdk/core/node_modules - common/node_modules - key: core-sdk-build-${{ github.sha }} - fail-on-cache-miss: true + mode: restore + cache-version: v1 + fail-on-cache-miss: false - name: Install Dependencies if: steps.build-cache.outputs.cache-hit != 'true' uses: ./.github/actions/yarn-install + - name: Build dependencies (fallback on cache miss) + if: steps.build-cache.outputs.cache-hit != 'true' + run: | + yarn workspace @selfxyz/common build + yarn workspace @selfxyz/core build - name: Type checking run: yarn workspace @selfxyz/core types @@ -103,18 +98,18 @@ jobs: corepack prepare yarn@4.12.0 --activate - name: Restore build artifacts id: build-cache - uses: actions/cache/restore@v4 + uses: ./.github/actions/cache-core-sdk-build with: - path: | - common/dist - sdk/core/dist - node_modules - sdk/core/node_modules - common/node_modules - key: core-sdk-build-${{ github.sha }} - fail-on-cache-miss: true + mode: restore + cache-version: v1 + fail-on-cache-miss: false - name: Install Dependencies if: steps.build-cache.outputs.cache-hit != 'true' uses: ./.github/actions/yarn-install + - name: Build dependencies (fallback on cache miss) + if: steps.build-cache.outputs.cache-hit != 'true' + run: | + yarn workspace @selfxyz/common build + yarn workspace @selfxyz/core build - name: Run tests run: yarn workspace @selfxyz/core test diff --git a/.github/workflows/mobile-sdk-ci.yml b/.github/workflows/mobile-sdk-ci.yml index e39e94407..2f8498952 100644 --- a/.github/workflows/mobile-sdk-ci.yml +++ b/.github/workflows/mobile-sdk-ci.yml @@ -21,15 +21,10 @@ jobs: yarn workspace @selfxyz/common build yarn workspace @selfxyz/mobile-sdk-alpha build - name: Cache build artifacts - uses: actions/cache/save@v4 + uses: ./.github/actions/cache-mobile-sdk-build with: - path: | - common/dist - packages/mobile-sdk-alpha/dist - node_modules - packages/mobile-sdk-alpha/node_modules - common/node_modules - key: mobile-sdk-alpha-build-${{ github.sha }} + mode: save + cache-version: v1 lint: runs-on: ubuntu-latest @@ -39,16 +34,17 @@ jobs: - name: Install Dependencies uses: ./.github/actions/yarn-install - name: Restore build artifacts - uses: actions/cache/restore@v4 + id: restore-build + uses: ./.github/actions/cache-mobile-sdk-build with: - path: | - common/dist - packages/mobile-sdk-alpha/dist - node_modules - packages/mobile-sdk-alpha/node_modules - common/node_modules - key: mobile-sdk-alpha-build-${{ github.sha }} - fail-on-cache-miss: true + mode: restore + cache-version: v1 + fail-on-cache-miss: false + - name: Build dependencies (fallback on cache miss) + if: steps.restore-build.outputs.cache-hit != 'true' + run: | + yarn workspace @selfxyz/common build + yarn workspace @selfxyz/mobile-sdk-alpha build - name: Run linter run: yarn workspace @selfxyz/mobile-sdk-alpha lint @@ -60,16 +56,17 @@ jobs: - name: Install Dependencies uses: ./.github/actions/yarn-install - name: Restore build artifacts - uses: actions/cache/restore@v4 + id: restore-build + uses: ./.github/actions/cache-mobile-sdk-build with: - path: | - common/dist - packages/mobile-sdk-alpha/dist - node_modules - packages/mobile-sdk-alpha/node_modules - common/node_modules - key: mobile-sdk-alpha-build-${{ github.sha }} - fail-on-cache-miss: true + mode: restore + cache-version: v1 + fail-on-cache-miss: false + - name: Build dependencies (fallback on cache miss) + if: steps.restore-build.outputs.cache-hit != 'true' + run: | + yarn workspace @selfxyz/common build + yarn workspace @selfxyz/mobile-sdk-alpha build - name: Check Prettier formatting run: yarn workspace @selfxyz/mobile-sdk-alpha prettier --check . @@ -81,16 +78,17 @@ jobs: - name: Install Dependencies uses: ./.github/actions/yarn-install - name: Restore build artifacts - uses: actions/cache/restore@v4 + id: restore-build + uses: ./.github/actions/cache-mobile-sdk-build with: - path: | - common/dist - packages/mobile-sdk-alpha/dist - node_modules - packages/mobile-sdk-alpha/node_modules - common/node_modules - key: mobile-sdk-alpha-build-${{ github.sha }} - fail-on-cache-miss: true + mode: restore + cache-version: v1 + fail-on-cache-miss: false + - name: Build dependencies (fallback on cache miss) + if: steps.restore-build.outputs.cache-hit != 'true' + run: | + yarn workspace @selfxyz/common build + yarn workspace @selfxyz/mobile-sdk-alpha build - name: Type checking run: yarn workspace @selfxyz/mobile-sdk-alpha types @@ -102,15 +100,16 @@ jobs: - name: Install Dependencies uses: ./.github/actions/yarn-install - name: Restore build artifacts - uses: actions/cache/restore@v4 + id: restore-build + uses: ./.github/actions/cache-mobile-sdk-build with: - path: | - common/dist - packages/mobile-sdk-alpha/dist - node_modules - packages/mobile-sdk-alpha/node_modules - common/node_modules - key: mobile-sdk-alpha-build-${{ github.sha }} - fail-on-cache-miss: true + mode: restore + cache-version: v1 + fail-on-cache-miss: false + - name: Build dependencies (fallback on cache miss) + if: steps.restore-build.outputs.cache-hit != 'true' + run: | + yarn workspace @selfxyz/common build + yarn workspace @selfxyz/mobile-sdk-alpha build - name: Run tests run: yarn workspace @selfxyz/mobile-sdk-alpha test diff --git a/.github/workflows/qrcode-sdk-ci.yml b/.github/workflows/qrcode-sdk-ci.yml index 10202c07e..60f722bda 100644 --- a/.github/workflows/qrcode-sdk-ci.yml +++ b/.github/workflows/qrcode-sdk-ci.yml @@ -50,16 +50,14 @@ jobs: - name: Cache Yarn dependencies id: yarn-cache - uses: actions/cache@v4 + uses: ./.github/actions/cache-yarn with: path: | .yarn/cache node_modules sdk/qrcode/node_modules common/node_modules - key: ${{ runner.os }}-${{ env.GH_YARN_CACHE_VERSION }}-node-${{ env.NODE_VERSION_SANITIZED }}-yarn-${{ hashFiles('yarn.lock') }} - restore-keys: | - ${{ runner.os }}-${{ env.GH_YARN_CACHE_VERSION }}-node-${{ env.NODE_VERSION_SANITIZED }}-yarn- + cache-version: ${{ env.GH_YARN_CACHE_VERSION }}-node-${{ env.NODE_VERSION_SANITIZED }} - name: Install Dependencies uses: ./.github/actions/yarn-install @@ -72,13 +70,10 @@ jobs: yarn workspace @selfxyz/qrcode build - name: Cache build artifacts - uses: actions/cache/save@v4 + uses: ./.github/actions/cache-sdk-build with: - path: | - common/dist - sdk/sdk-common/dist - sdk/qrcode/dist - key: qrcode-sdk-build-${{ env.GH_SDK_CACHE_VERSION }}-${{ github.sha }} + mode: save + cache-version: ${{ env.GH_SDK_CACHE_VERSION }} # Quality checks job quality-checks: @@ -110,29 +105,32 @@ jobs: - name: Cache Yarn dependencies id: yarn-cache - uses: actions/cache@v4 + uses: ./.github/actions/cache-yarn with: path: | .yarn/cache node_modules sdk/qrcode/node_modules common/node_modules - key: ${{ runner.os }}-${{ env.GH_YARN_CACHE_VERSION }}-node-${{ env.NODE_VERSION_SANITIZED }}-yarn-${{ hashFiles('yarn.lock') }} - restore-keys: | - ${{ runner.os }}-${{ env.GH_YARN_CACHE_VERSION }}-node-${{ env.NODE_VERSION_SANITIZED }}-yarn- + cache-version: ${{ env.GH_YARN_CACHE_VERSION }}-node-${{ env.NODE_VERSION_SANITIZED }} - name: Install Dependencies uses: ./.github/actions/yarn-install - name: Restore build artifacts - uses: actions/cache/restore@v4 + id: restore-build + uses: ./.github/actions/cache-sdk-build with: - path: | - common/dist - sdk/sdk-common/dist - sdk/qrcode/dist - key: qrcode-sdk-build-${{ env.GH_SDK_CACHE_VERSION }}-${{ github.sha }} - fail-on-cache-miss: true + mode: restore + cache-version: ${{ env.GH_SDK_CACHE_VERSION }} + fail-on-cache-miss: false + + - name: Build dependencies (fallback on cache miss) + if: steps.restore-build.outputs.cache-hit != 'true' + run: | + yarn workspace @selfxyz/common build + yarn workspace @selfxyz/sdk-common build + yarn workspace @selfxyz/qrcode build - name: Run linter run: yarn workspace @selfxyz/qrcode lint:imports:check @@ -178,29 +176,32 @@ jobs: - name: Cache Yarn dependencies id: yarn-cache - uses: actions/cache@v4 + uses: ./.github/actions/cache-yarn with: path: | .yarn/cache node_modules sdk/qrcode/node_modules common/node_modules - key: ${{ runner.os }}-${{ env.GH_YARN_CACHE_VERSION }}-node-${{ env.NODE_VERSION_SANITIZED }}-yarn-${{ hashFiles('yarn.lock') }} - restore-keys: | - ${{ runner.os }}-${{ env.GH_YARN_CACHE_VERSION }}-node-${{ env.NODE_VERSION_SANITIZED }}-yarn- + cache-version: ${{ env.GH_YARN_CACHE_VERSION }}-node-${{ env.NODE_VERSION_SANITIZED }} - name: Install Dependencies uses: ./.github/actions/yarn-install - name: Restore build artifacts - uses: actions/cache/restore@v4 + id: restore-build + uses: ./.github/actions/cache-sdk-build with: - path: | - common/dist - sdk/sdk-common/dist - sdk/qrcode/dist - key: qrcode-sdk-build-${{ env.GH_SDK_CACHE_VERSION }}-${{ github.sha }} - fail-on-cache-miss: true + mode: restore + cache-version: ${{ env.GH_SDK_CACHE_VERSION }} + fail-on-cache-miss: false + + - name: Build dependencies (fallback on cache miss) + if: steps.restore-build.outputs.cache-hit != 'true' + run: | + yarn workspace @selfxyz/common build + yarn workspace @selfxyz/sdk-common build + yarn workspace @selfxyz/qrcode build - name: Verify build artifacts run: | @@ -240,29 +241,41 @@ jobs: - name: Cache Yarn dependencies id: yarn-cache - uses: actions/cache@v4 + uses: ./.github/actions/cache-yarn with: path: | .yarn/cache node_modules sdk/qrcode/node_modules common/node_modules - key: ${{ runner.os }}-${{ env.GH_YARN_CACHE_VERSION }}-node-${{ env.NODE_VERSION_SANITIZED }}-yarn-${{ hashFiles('yarn.lock') }} - restore-keys: | - ${{ runner.os }}-${{ env.GH_YARN_CACHE_VERSION }}-node-${{ env.NODE_VERSION_SANITIZED }}-yarn- + cache-version: ${{ env.GH_YARN_CACHE_VERSION }}-node-${{ env.NODE_VERSION_SANITIZED }} - name: Install Dependencies uses: ./.github/actions/yarn-install - name: Restore build artifacts - uses: actions/cache/restore@v4 + id: restore-build + uses: ./.github/actions/cache-sdk-build with: - path: | - common/dist - sdk/sdk-common/dist - sdk/qrcode/dist - key: qrcode-sdk-build-${{ env.GH_SDK_CACHE_VERSION }}-${{ github.sha }} - fail-on-cache-miss: true + mode: restore + cache-version: ${{ env.GH_SDK_CACHE_VERSION }} + fail-on-cache-miss: false + + - name: Build dependencies (fallback on cache miss) + if: steps.restore-build.outputs.cache-hit != 'true' + run: | + yarn workspace @selfxyz/common build + yarn workspace @selfxyz/sdk-common build + yarn workspace @selfxyz/qrcode build + + - name: Check for nested require() in tests + run: | + # Check SDK tests for nested require patterns that cause OOM + if grep -rE "require\(['\"]react(-native)?['\"])" sdk/qrcode/src/ sdk/qrcode/tests/ 2>/dev/null; then + echo "❌ Found nested require() patterns that cause OOM in CI" + exit 1 + fi + echo "✅ No nested require() patterns found" - name: Run tests run: yarn workspace @selfxyz/qrcode test diff --git a/app/ios/PassportReader.swift b/app/ios/PassportReader.swift index 4a54c24d0..efbf1cec8 100644 --- a/app/ios/PassportReader.swift +++ b/app/ios/PassportReader.swift @@ -11,9 +11,9 @@ import Foundation import React #if !E2E_TESTING import NFCPassportReader +import Mixpanel #endif import Security -import Mixpanel import Sentry #if !E2E_TESTING diff --git a/app/ios/Podfile b/app/ios/Podfile index b08972387..e033f03f8 100755 --- a/app/ios/Podfile +++ b/app/ios/Podfile @@ -53,8 +53,6 @@ end target "Self" do # Native module exclusion for E2E testing is handled in react-native.config.cjs config = use_native_modules! - - use_frameworks! # Skip NFCPassportReader for e2e testing to avoid build issues unless ENV["E2E_TESTING"] == "1" # Check if we're running in a selfxyz repo or an external fork @@ -79,10 +77,13 @@ target "Self" do pod "NFCPassportReader", git: nfc_repo_url, commit: "9eff7c4e3a9037fdc1e03301584e0d5dcf14d76b" end + # Explicitly declare Mixpanel to ensure it's available even in E2E builds + # (NFCPassportReader also includes Mixpanel, but is skipped during E2E testing) + pod "Mixpanel-swift", :modular_headers => true + pod "QKMRZScanner" pod "lottie-ios" pod "SwiftQRScanner", :git => "https://github.com/vinodiOS/SwiftQRScanner" - pod "Mixpanel-swift", "~> 5.0.0" # RNReactNativeHapticFeedback is handled by autolinking use_react_native!( diff --git a/app/ios/Podfile.lock b/app/ios/Podfile.lock index 57d0412d9..3a44a4f13 100644 --- a/app/ios/Podfile.lock +++ b/app/ios/Podfile.lock @@ -1558,7 +1558,7 @@ PODS: - React-Core - react-native-netinfo (11.4.1): - React-Core - - react-native-nfc-manager (3.16.3): + - react-native-nfc-manager (3.17.2): - React-Core - react-native-passkey (3.3.1): - DoubleConversion @@ -1984,7 +1984,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNDeviceInfo (14.1.1): + - RNDeviceInfo (15.0.1): - React-Core - RNFBApp (19.3.0): - Firebase/CoreOnly (= 10.24.0) @@ -2042,7 +2042,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNLocalize (3.6.0): + - RNLocalize (3.6.1): - DoubleConversion - glog - hermes-engine @@ -2129,7 +2129,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNSentry (7.0.1): + - RNSentry (7.0.0): - DoubleConversion - glog - hermes-engine @@ -2152,7 +2152,7 @@ PODS: - ReactCommon/turbomodule/core - Sentry/HybridSDK (= 8.53.2) - Yoga - - RNSVG (15.15.0): + - RNSVG (15.12.1): - DoubleConversion - glog - hermes-engine @@ -2172,9 +2172,9 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNSVG/common (= 15.15.0) + - RNSVG/common (= 15.12.1) - Yoga - - RNSVG/common (15.15.0): + - RNSVG/common (15.12.1): - DoubleConversion - glog - hermes-engine @@ -2223,7 +2223,7 @@ DEPENDENCIES: - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`) - lottie-ios - lottie-react-native (from `../node_modules/lottie-react-native`) - - Mixpanel-swift (~> 5.0.0) + - Mixpanel-swift - "NFCPassportReader (from `git@github.com:selfxyz/NFCPassportReader.git`, commit `9eff7c4e3a9037fdc1e03301584e0d5dcf14d76b`)" - QKMRZScanner - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) @@ -2626,7 +2626,7 @@ SPEC CHECKSUMS: react-native-get-random-values: d16467cf726c618e9c7a8c3c39c31faa2244bbba react-native-mobilesdk-module: 4770cb45fdd19dc4eed04615f0fcdab013b3dfe2 react-native-netinfo: cec9c4e86083cb5b6aba0e0711f563e2fbbff187 - react-native-nfc-manager: 66a00e5ddab9704efebe19d605b1b8afb0bb1bd7 + react-native-nfc-manager: c8891e460b4943b695d63f7f4effc6345bbefc83 react-native-passkey: 8853c3c635164864da68a6dbbcec7148506c3bcf react-native-safe-area-context: a7aad44fe544b55e2369a3086e16a01be60ce398 react-native-sqlite-storage: 0c84826214baaa498796c7e46a5ccc9a82e114ed @@ -2660,18 +2660,18 @@ SPEC CHECKSUMS: ReactCommon: b2eb96a61b826ff327a773a74357b302cf6da678 RNCAsyncStorage: 0003b916f1a69fe2d20b7910e0d08da3d32c7bd6 RNCClipboard: a4827e134e4774e97fa86f7f986694dd89320f13 - RNDeviceInfo: bcce8752b5043a623fe3c26789679b473f705d3c + RNDeviceInfo: 36d7f232bfe7c9b5c494cb7793230424ed32c388 RNFBApp: 4097f75673f8b42a7cd1ba17e6ea85a94b45e4d1 RNFBMessaging: 92325b0d5619ac90ef023a23cfd16fd3b91d0a88 RNFBRemoteConfig: a569bacaa410acfcaba769370e53a787f80fd13b RNGestureHandler: a63b531307e5b2e6ea21d053a1a7ad4cf9695c57 RNInAppBrowser: 6d3eb68d471b9834335c664704719b8be1bfdb20 RNKeychain: 471ceef8c13f15a5534c3cd2674dbbd9d0680e52 - RNLocalize: 4f5e4a46d2bccd04ccb96721e438dcb9de17c2e0 + RNLocalize: 2760999d1e2fc95fb7b7e5247631feb3c08156dc RNReactNativeHapticFeedback: e526ac4a7ca9fb23c7843ea4fd7d823166054c73 RNScreens: 806e1449a8ec63c2a4e4cf8a63cc80203ccda9b8 - RNSentry: 6ad982be2c8e32dab912afb4132b6a0d88484ea0 - RNSVG: 39476f26bbbe72ffe6194c6fc8f6acd588087957 + RNSentry: f79dd124cc49088445c16d23955860dd0d1db6f3 + RNSVG: 0c1fc3e7b147949dc15644845e9124947ac8c9bb segment-analytics-react-native: 0eae155b0e9fa560fa6b17d78941df64537c35b7 Sentry: 59993bffde4a1ac297ba6d268dc4bbce068d7c1b SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 @@ -2681,6 +2681,6 @@ SPEC CHECKSUMS: TwilioVideo: 9f51085d4e4fb3aff8e168b8215b31cb0f486a2f Yoga: 1259c7a8cbaccf7b4c3ddf8ee36ca11be9dee407 -PODFILE CHECKSUM: f03c12b5d96fb6e22afe20fba517840fef44e76f +PODFILE CHECKSUM: 8cfd84595c3e826f512f5c545d232a27f1850ff3 COCOAPODS: 1.16.2 diff --git a/app/ios/SelfAnalytics.swift b/app/ios/SelfAnalytics.swift index de0acfba1..b056e4dbe 100644 --- a/app/ios/SelfAnalytics.swift +++ b/app/ios/SelfAnalytics.swift @@ -1,9 +1,9 @@ // SPDX-License-Identifier: BUSL-1.1; Copyright (c) 2025 Social Connect Labs, Inc.; Licensed under BUSL-1.1 (see LICENSE); Apache-2.0 from 2029-06-11 import Foundation -import Mixpanel #if !E2E_TESTING +import Mixpanel import NFCPassportReader public class SelfAnalytics: Analytics { diff --git a/app/package.json b/app/package.json index e6fb8dca6..39b1fb5a4 100644 --- a/app/package.json +++ b/app/package.json @@ -85,13 +85,13 @@ "react-native-webview": "13.16.0" }, "dependencies": { - "@babel/runtime": "^7.28.3", - "@ethersproject/shims": "^5.7.0", + "@babel/runtime": "^7.28.6", + "@ethersproject/shims": "^5.8.0", "@noble/hashes": "^1.5.0", "@openpassport/zk-kit-imt": "^0.0.5", "@openpassport/zk-kit-lean-imt": "^0.0.6", "@openpassport/zk-kit-smt": "^0.0.1", - "@peculiar/x509": "^1.13.0", + "@peculiar/x509": "^1.14.3", "@react-native-async-storage/async-storage": "^2.2.0", "@react-native-clipboard/clipboard": "1.16.3", "@react-native-community/blur": "^4.4.1", @@ -108,7 +108,7 @@ "@selfxyz/euclid": "^0.6.1", "@selfxyz/mobile-sdk-alpha": "workspace:^", "@sentry/react": "^9.32.0", - "@sentry/react-native": "7.0.1", + "@sentry/react-native": "7.0.0", "@stablelib/cbor": "^2.0.1", "@sumsub/react-native-mobilesdk-module": "1.40.2", "@tamagui/animations-css": "1.126.14", @@ -122,7 +122,7 @@ "@turnkey/react-native-wallet-kit": "1.1.5", "@walletconnect/react-native-compat": "^2.23.0", "@xstate/react": "^5.0.3", - "asn1js": "^3.0.6", + "asn1js": "^3.0.7", "axios": "^1.13.2", "buffer": "^6.0.3", "country-emoji": "^1.5.6", @@ -136,8 +136,8 @@ "js-sha512": "^0.9.0", "lottie-react": "^2.4.1", "lottie-react-native": "7.2.2", - "node-forge": "^1.3.1", - "pkijs": "^3.2.5", + "node-forge": "^1.3.3", + "pkijs": "^3.3.3", "poseidon-lite": "^0.2.0", "react": "^18.3.1", "react-dom": "^18.3.1", @@ -147,7 +147,7 @@ "react-native-blur-effect": "^1.1.3", "react-native-check-version": "^1.3.0", "react-native-cloud-storage": "^2.2.2", - "react-native-device-info": "^14.0.4", + "react-native-device-info": "^15.0.1", "react-native-dotenv": "^3.4.11", "react-native-edge-to-edge": "^1.7.0", "react-native-gesture-handler": "2.19.0", @@ -156,18 +156,18 @@ "react-native-inappbrowser-reborn": "^3.7.0", "react-native-keychain": "^10.0.0", "react-native-linear-gradient": "^2.8.3", - "react-native-localize": "^3.5.2", - "react-native-logs": "^5.3.0", - "react-native-nfc-manager": "3.16.3", - "react-native-passkey": "^3.3.1", + "react-native-localize": "^3.6.1", + "react-native-logs": "^5.5.0", + "react-native-nfc-manager": "3.17.2", + "react-native-passkey": "^3.3.2", "react-native-passport-reader": "1.0.3", - "react-native-safe-area-context": "^5.6.1", + "react-native-safe-area-context": "^5.6.2", "react-native-screens": "4.15.3", "react-native-sqlite-storage": "^6.0.1", - "react-native-svg": "15.15.0", + "react-native-svg": "15.12.1", "react-native-svg-web": "1.0.9", "react-native-url-polyfill": "^3.0.0", - "react-native-web": "^0.19.0", + "react-native-web": "^0.21.2", "react-native-webview": "^13.16.0", "react-qr-barcode-scanner": "^2.1.8", "socket.io-client": "^4.8.3", @@ -177,14 +177,14 @@ "zustand": "^4.5.2" }, "devDependencies": { - "@babel/core": "^7.28.3", - "@babel/plugin-syntax-flow": "^7.27.1", - "@babel/plugin-transform-classes": "^7.27.1", + "@babel/core": "^7.28.6", + "@babel/plugin-syntax-flow": "^7.28.6", + "@babel/plugin-transform-classes": "^7.28.6", "@babel/plugin-transform-export-namespace-from": "^7.27.1", "@babel/plugin-transform-flow-strip-types": "^7.27.1", - "@babel/plugin-transform-private-methods": "^7.27.1", - "@babel/preset-env": "^7.28.3", - "@babel/preset-react": "^7.27.1", + "@babel/plugin-transform-private-methods": "^7.28.6", + "@babel/preset-env": "^7.28.6", + "@babel/preset-react": "^7.28.5", "@react-native-community/cli": "^16.0.3", "@react-native/babel-preset": "0.76.9", "@react-native/eslint-config": "0.76.9", @@ -210,11 +210,11 @@ "@types/react-test-renderer": "^18", "@typescript-eslint/eslint-plugin": "^8.39.0", "@typescript-eslint/parser": "^8.39.0", - "@vitejs/plugin-react-swc": "^3.10.2", + "@vitejs/plugin-react-swc": "^4.2.2", "babel-plugin-module-resolver": "^5.0.2", "babel-plugin-transform-remove-console": "^6.9.4", "constants-browserify": "^1.0.0", - "dompurify": "^3.2.6", + "dompurify": "^3.3.1", "eslint": "^8.57.0", "eslint-config-prettier": "10.1.8", "eslint-import-resolver-typescript": "^3.7.0", @@ -229,14 +229,15 @@ "jest": "^30.2.0", "path-browserify": "^1.0.1", "prettier": "^3.5.3", - "react-native-svg-transformer": "^1.5.1", + "prop-types": "^15.8.1", + "react-native-svg-transformer": "^1.5.2", "react-test-renderer": "^18.3.1", - "rollup-plugin-visualizer": "^6.0.3", + "rollup-plugin-visualizer": "^6.0.5", "stream-browserify": "^3.0.0", "ts-morph": "^22.0.0", "ts-node": "^10.9.2", - "typescript": "^5.9.2", - "vite": "^7.0.0", + "typescript": "^5.9.3", + "vite": "^7.3.1", "vite-plugin-svgr": "^4.5.0" }, "packageManager": "yarn@4.12.0", diff --git a/circuits/package.json b/circuits/package.json index 82db68cb0..a63ffa256 100644 --- a/circuits/package.json +++ b/circuits/package.json @@ -23,8 +23,8 @@ "test-custom-hasher": "yarn test-base 'tests/other_circuits/custom_hasher.test.ts' --exit", "test-disclose": "yarn test-base 'tests/disclose/vc_and_disclose.test.ts' --exit", "test-disclose-aadhaar": "yarn test-base 'tests/disclose/vc_and_disclose_aadhaar.test.ts' --exit", - "test-disclose-kyc": "yarn test-base 'tests/disclose/vc_and_disclose_kyc.test.ts' --exit", "test-disclose-id": "yarn test-base 'tests/disclose/vc_and_disclose_id.test.ts' --exit", + "test-disclose-kyc": "yarn test-base 'tests/disclose/vc_and_disclose_kyc.test.ts' --exit", "test-dsc": "yarn test-base --max-old-space-size=51200 'tests/dsc/dsc.test.ts' --exit", "test-ecdsa": "yarn test-base 'tests/utils/ecdsa.test.ts' --exit", "test-gcp-jwt-verifier": "yarn test-base 'tests/gcp_jwt_verifier/gcp_jwt_verifier.test.ts' --exit", @@ -35,8 +35,8 @@ "test-qr-extractor": "yarn test-base 'tests/other_circuits/qrdata_extractor.test.ts' --exit", "test-register": "yarn test-base --max-old-space-size=40960 'tests/register/register.test.ts' --exit", "test-register-aadhaar": "yarn test-base 'tests/register/register_aadhaar.test.ts' --exit", - "test-register-kyc": "yarn test-base 'tests/register/register_kyc.test.ts' --exit", "test-register-id": "yarn test-base --max-old-space-size=40960 'tests/register_id/register_id.test.ts' --exit", + "test-register-kyc": "yarn test-base 'tests/register/register_kyc.test.ts' --exit", "test-rsa": "yarn test-base 'tests/utils/rsaPkcs1v1_5.test.ts' --exit", "test-rsa-pss": "yarn test-base 'tests/utils/rsapss.test.ts' --exit" }, @@ -77,6 +77,7 @@ "snarkjs": "^0.7.1" }, "devDependencies": { + "@babel/core": "^7.28.6", "@types/chai": "4.3.11", "@types/chai-as-promised": "^7.1.6", "@types/circomlibjs": "^0.1.6", @@ -85,6 +86,8 @@ "@types/node-forge": "^1.3.5", "@yarnpkg/sdks": "^3.2.0", "chai": "^4.4.1", + "eslint": "^8.57.0", + "eslint-plugin-import": "^2.31.0", "mocha": "^10.7.3", "prettier": "^3.5.3", "ts-mocha": "^10.0.0", diff --git a/common/package.json b/common/package.json index 4c0108708..4f54e8371 100644 --- a/common/package.json +++ b/common/package.json @@ -685,12 +685,12 @@ "@openpassport/zk-kit-imt": "^0.0.5", "@openpassport/zk-kit-lean-imt": "^0.0.6", "@openpassport/zk-kit-smt": "^0.0.1", - "@peculiar/x509": "^1.12.3", + "@peculiar/x509": "^1.14.3", "@stablelib/cbor": "^2.0.1", "@zk-kit/baby-jubjub": "^1.0.3", "@zk-kit/eddsa-poseidon": "^1.1.0", "asn1.js": "^5.4.1", - "asn1js": "^3.0.5", + "asn1js": "^3.0.7", "axios": "^1.7.2", "buffer": "^6.0.3", "country-emoji": "^1.5.6", @@ -706,7 +706,7 @@ "jsrsasign": "^11.1.0", "node-forge": "github:remicolin/forge#17a11a632dd0e50343b3b8393245a2696f78afbb", "path": "^0.12.7", - "pkijs": "^3.2.4", + "pkijs": "^3.3.3", "poseidon-lite": "^0.2.0", "snarkjs": "^0.7.5", "typescript-parser": "^2.6.1", @@ -727,7 +727,7 @@ "eslint-plugin-sort-exports": "^0.9.1", "prettier": "^3.5.3", "tsup": "^8.5.0", - "typescript": "^5.9.2", + "typescript": "^5.9.3", "vitest": "^2.1.8" }, "packageManager": "yarn@4.12.0", diff --git a/contracts/contracts/libraries/CustomVerifier.sol b/contracts/contracts/libraries/CustomVerifier.sol index c9f18ce29..9e6d3cd2c 100644 --- a/contracts/contracts/libraries/CustomVerifier.sol +++ b/contracts/contracts/libraries/CustomVerifier.sol @@ -323,9 +323,7 @@ library CustomVerifier { if (verificationConfig.forbiddenCountriesEnabled) { for (uint256 i = 0; i < 4; i++) { - if ( - kycOutput.forbiddenCountriesListPacked[i] != verificationConfig.forbiddenCountriesListPacked[i] - ) { + if (kycOutput.forbiddenCountriesListPacked[i] != verificationConfig.forbiddenCountriesListPacked[i]) { revert InvalidForbiddenCountries(); } } diff --git a/contracts/test/utils/deploymentV2.ts b/contracts/test/utils/deploymentV2.ts index 1607b8d1f..ec5691f2f 100644 --- a/contracts/test/utils/deploymentV2.ts +++ b/contracts/test/utils/deploymentV2.ts @@ -375,10 +375,7 @@ export async function deploySystemFixturesV2(): Promise { let registryKycContract, updateKycHubTx; { - registryKycContract = await ethers.getContractAt( - "IdentityRegistryKycImplV1", - identityRegistryKycProxy.target, - ); + registryKycContract = await ethers.getContractAt("IdentityRegistryKycImplV1", identityRegistryKycProxy.target); updateKycHubTx = await registryKycContract.updateHub(identityVerificationHubV2.target); await updateKycHubTx.wait(); diff --git a/contracts/test/utils/generateProof.ts b/contracts/test/utils/generateProof.ts index e41022a41..5473f212f 100644 --- a/contracts/test/utils/generateProof.ts +++ b/contracts/test/utils/generateProof.ts @@ -589,12 +589,8 @@ export function getSMTs() { ) as typeof SMT; const nameAndDob_id_smt = importSMTFromJsonFile("../circuits/tests/consts/ofac/nameAndDobSMT_ID.json") as typeof SMT; const nameAndYob_id_smt = importSMTFromJsonFile("../circuits/tests/consts/ofac/nameAndYobSMT_ID.json") as typeof SMT; - const nameAndDob_kyc_smt = importSMTFromJsonFile( - "../circuits/tests/consts/ofac/nameAndDobKycSMT.json", - ) as typeof SMT; - const nameAndYob_kyc_smt = importSMTFromJsonFile( - "../circuits/tests/consts/ofac/nameAndYobKycSMT.json", - ) as typeof SMT; + const nameAndDob_kyc_smt = importSMTFromJsonFile("../circuits/tests/consts/ofac/nameAndDobKycSMT.json") as typeof SMT; + const nameAndYob_kyc_smt = importSMTFromJsonFile("../circuits/tests/consts/ofac/nameAndYobKycSMT.json") as typeof SMT; return { passportNo_smt, diff --git a/contracts/test/v2/registerKyc.test.ts b/contracts/test/v2/registerKyc.test.ts index e40eecb80..96e3775bc 100644 --- a/contracts/test/v2/registerKyc.test.ts +++ b/contracts/test/v2/registerKyc.test.ts @@ -145,12 +145,7 @@ describe("KYC Registration test", function () { }); it("should successfully register an identity commitment", async () => { - await deployedActors.registryKyc.registerPubkeyCommitment( - mockProof.a, - mockProof.b, - mockProof.c, - mockPubSignals, - ); + await deployedActors.registryKyc.registerPubkeyCommitment(mockProof.a, mockProof.b, mockProof.c, mockPubSignals); await expect(deployedActors.hub.registerCommitment(attestationIdBytes32, 0n, registerProof)).to.emit( deployedActors.registryKyc, @@ -168,12 +163,7 @@ describe("KYC Registration test", function () { }); it("should not register an identity commitment if the proof is invalid", async () => { - await deployedActors.registryKyc.registerPubkeyCommitment( - mockProof.a, - mockProof.b, - mockProof.c, - mockPubSignals, - ); + await deployedActors.registryKyc.registerPubkeyCommitment(mockProof.a, mockProof.b, mockProof.c, mockPubSignals); const invalidRegisterProof = structuredClone(registerProof); invalidRegisterProof.pubSignals[1] = 0n; @@ -434,12 +424,7 @@ describe("KYC Registration test", function () { ]; await expect( - deployedActors.registryKyc.registerPubkeyCommitment( - mockProof.a, - mockProof.b, - mockProof.c, - mockPubSignals, - ), + deployedActors.registryKyc.registerPubkeyCommitment(mockProof.a, mockProof.b, mockProof.c, mockPubSignals), ).to.be.revertedWithCustomError(deployedActors.registryKyc, "INVALID_PROOF"); }); @@ -456,12 +441,7 @@ describe("KYC Registration test", function () { ]; await expect( - deployedActors.registryKyc.registerPubkeyCommitment( - mockProof.a, - mockProof.b, - mockProof.c, - mockPubSignals, - ), + deployedActors.registryKyc.registerPubkeyCommitment(mockProof.a, mockProof.b, mockProof.c, mockPubSignals), ).to.be.revertedWithCustomError(deployedActors.registryKyc, "INVALID_ROOT_CA"); }); @@ -478,12 +458,7 @@ describe("KYC Registration test", function () { ]; await expect( - deployedActors.registryKyc.registerPubkeyCommitment( - mockProof.a, - mockProof.b, - mockProof.c, - mockPubSignals, - ), + deployedActors.registryKyc.registerPubkeyCommitment(mockProof.a, mockProof.b, mockProof.c, mockPubSignals), ).to.be.revertedWithCustomError(deployedActors.registryKyc, "INVALID_IMAGE"); }); }); diff --git a/package.json b/package.json index ff4ca06d0..ac43b47c7 100644 --- a/package.json +++ b/package.json @@ -37,16 +37,17 @@ "types": "yarn workspaces foreach --topological-dev --parallel --exclude @selfxyz/contracts --exclude @selfxyz/common --exclude @selfxyz/mobile-app -i --all run types" }, "resolutions": { - "@babel/core": "^7.28.4", - "@babel/runtime": "^7.28.4", + "@babel/core": "^7.28.6", + "@babel/runtime": "^7.28.6", "@noble/curves": "1.9.7", "@noble/hashes": "1.8.0", - "ethereum-cryptography": "3.2.0", "@swc/core": "1.7.36", "@tamagui/animations-react-native": "1.126.14", "@tamagui/toast": "1.126.14", "@types/node": "^22.18.3", "@types/react": "^18.3.4", + "@types/react-dom": "^18.3.0", + "ethereum-cryptography": "3.2.0", "punycode": "npm:punycode.js@^2.3.1", "react": "^18.3.1", "react-dom": "^18.3.1", @@ -56,7 +57,7 @@ "react-native-webview": "13.16.0" }, "dependencies": { - "@babel/runtime": "^7.28.3", + "@babel/runtime": "^7.28.6", "js-sha1": "^0.7.0", "react": "^18.3.1", "react-native": "0.76.9", @@ -71,7 +72,7 @@ "patch-package": "^8.0.0", "prettier": "^3.6.2", "tsx": "^4.21.0", - "typescript": "^5.9.2" + "typescript": "^5.9.3" }, "packageManager": "yarn@4.12.0", "engines": { diff --git a/packages/mobile-sdk-alpha/package.json b/packages/mobile-sdk-alpha/package.json index a5a77be84..e14606e71 100644 --- a/packages/mobile-sdk-alpha/package.json +++ b/packages/mobile-sdk-alpha/package.json @@ -149,14 +149,14 @@ "watch": "pkill -f 'tsup.*--watch' 2>/dev/null || true && tsup && yarn postbuild && tsup --watch" }, "dependencies": { - "@babel/runtime": "^7.28.3", + "@babel/runtime": "^7.28.6", "@selfxyz/common": "workspace:^", "@selfxyz/euclid": "^0.6.1", "@xstate/react": "^5.0.5", - "node-forge": "^1.3.1", - "react-native-nfc-manager": "^3.17.1", + "node-forge": "^1.3.3", + "react-native-nfc-manager": "^3.17.2", "react-native-svg-circle-country-flags": "^0.2.2", - "socket.io-client": "^4.8.1", + "socket.io-client": "^4.8.3", "uuid": "^11.1.0", "xstate": "^5.20.2", "zustand": "^4.5.2" @@ -183,11 +183,14 @@ "react": "^18.3.1", "react-dom": "^18.3.1", "react-native": "0.76.9", + "react-native-blur-effect": "^1.1.3", "react-native-haptic-feedback": "^2.3.3", - "react-native-localize": "^3.5.2", - "react-native-web": "^0.21.1", + "react-native-localize": "^3.6.1", + "react-native-svg": "15.15.1", + "react-native-web": "^0.21.2", + "react-native-webview": "13.16.0", "tsup": "^8.0.1", - "typescript": "^5.9.2", + "typescript": "^5.9.3", "vitest": "^2.1.8" }, "peerDependencies": { diff --git a/packages/mobile-sdk-demo/package.json b/packages/mobile-sdk-demo/package.json index 713669dd2..9a9a9a281 100644 --- a/packages/mobile-sdk-demo/package.json +++ b/packages/mobile-sdk-demo/package.json @@ -28,7 +28,7 @@ "types": "yarn prebuild && tsc --noEmit" }, "dependencies": { - "@babel/runtime": "^7.28.3", + "@babel/runtime": "^7.28.6", "@faker-js/faker": "^10.0.0", "@noble/hashes": "^1.5.0", "@react-native-async-storage/async-storage": "^2.2.0", @@ -46,16 +46,16 @@ "react-native-get-random-values": "^1.11.0", "react-native-haptic-feedback": "^2.3.3", "react-native-keychain": "^10.0.0", - "react-native-localize": "^3.5.4", - "react-native-safe-area-context": "^5.6.1", - "react-native-svg": "15.12.1", + "react-native-localize": "^3.6.1", + "react-native-safe-area-context": "^5.6.2", + "react-native-svg": "15.15.1", "react-native-vector-icons": "^10.3.0", "react-native-webview": "13.16.0", "stream-browserify": "^3.0.0", "util": "^0.12.5" }, "devDependencies": { - "@babel/core": "^7.28.3", + "@babel/core": "^7.28.6", "@react-native-community/cli": "^16.0.3", "@react-native/gradle-plugin": "0.76.9", "@react-native/metro-config": "0.76.9", @@ -83,8 +83,8 @@ "metro-react-native-babel-preset": "0.76.9", "prettier": "^3.6.2", "react-dom": "^18.3.1", - "react-native-svg-transformer": "^1.5.1", - "typescript": "^5.9.2", + "react-native-svg-transformer": "^1.5.2", + "typescript": "^5.9.3", "vitest": "^2.1.8" } } diff --git a/patches/@sumsub+react-native-mobilesdk-module+1.40.2.patch b/patches/@sumsub+react-native-mobilesdk-module+1.40.2.patch index 8b514d876..fccb8e539 100644 --- a/patches/@sumsub+react-native-mobilesdk-module+1.40.2.patch +++ b/patches/@sumsub+react-native-mobilesdk-module+1.40.2.patch @@ -1,8 +1,8 @@ diff --git a/node_modules/@sumsub/react-native-mobilesdk-module/android/build.gradle b/node_modules/@sumsub/react-native-mobilesdk-module/android/build.gradle -index 1234567..abcdefg 100644 +index 0000000..0000001 100644 --- a/node_modules/@sumsub/react-native-mobilesdk-module/android/build.gradle +++ b/node_modules/@sumsub/react-native-mobilesdk-module/android/build.gradle -@@ -69,9 +69,9 @@ dependencies { +@@ -77,11 +77,11 @@ dependencies { implementation "com.sumsub.sns:idensic-mobile-sdk:1.40.2" // remove comment to enable Device Intelligence @@ -12,3 +12,7 @@ index 1234567..abcdefg 100644 - // implementation "com.sumsub.sns:idensic-mobile-sdk-videoident:1.40.2" + implementation "com.sumsub.sns:idensic-mobile-sdk-videoident:1.40.2" // remove comment if you need EID support + // implementation "com.sumsub.sns:idensic-mobile-sdk-eid:1.40.2" + // remove comment if you need NFC support + // implementation "com.sumsub.sns:idensic-mobile-sdk-nfc:1.40.2" + } diff --git a/patches/ethereum-cryptography+2.2.1.patch b/patches/ethereum-cryptography+2.2.1.patch deleted file mode 100644 index 3ba0a2381..000000000 --- a/patches/ethereum-cryptography+2.2.1.patch +++ /dev/null @@ -1,44 +0,0 @@ -diff --git a/node_modules/ethereum-cryptography/utils.js b/node_modules/ethereum-cryptography/utils.js -index cedfa36..b494c49 100644 ---- a/node_modules/ethereum-cryptography/utils.js -+++ b/node_modules/ethereum-cryptography/utils.js -@@ -8,11 +8,18 @@ exports.bytesToUtf8 = bytesToUtf8; - exports.hexToBytes = hexToBytes; - exports.equalsBytes = equalsBytes; - exports.wrapHash = wrapHash; --const _assert_1 = __importDefault(require("@noble/hashes/_assert")); -+const assertModule = __importDefault(require("@noble/hashes/_assert")); - const utils_1 = require("@noble/hashes/utils"); --const assertBool = _assert_1.default.bool; -+const assertBool = (assertModule.default && assertModule.default.bool) || -+ assertModule.bool || -+ ((value) => { -+ if (typeof value !== "boolean") -+ throw new TypeError(`Expected boolean, not ${value}`); -+ }); - exports.assertBool = assertBool; --const assertBytes = _assert_1.default.bytes; -+const assertBytes = (assertModule.default && assertModule.default.bytes) || -+ assertModule.bytes || -+ assertModule.abytes; - exports.assertBytes = assertBytes; - var utils_2 = require("@noble/hashes/utils"); - Object.defineProperty(exports, "bytesToHex", { enumerable: true, get: function () { return utils_2.bytesToHex; } }); -diff --git a/node_modules/ethereum-cryptography/esm/utils.js b/node_modules/ethereum-cryptography/esm/utils.js -index 8e771ea..b3eed9d 100644 ---- a/node_modules/ethereum-cryptography/esm/utils.js -+++ b/node_modules/ethereum-cryptography/esm/utils.js -@@ -1,7 +1,11 @@ - import assert from "@noble/hashes/_assert"; - import { hexToBytes as _hexToBytes } from "@noble/hashes/utils"; --const assertBool = assert.bool; --const assertBytes = assert.bytes; -+const assertBool = (assert?.bool) || -+ ((value) => { -+ if (typeof value !== "boolean") -+ throw new TypeError(`Expected boolean, not ${value}`); -+ }); -+const assertBytes = assert.bytes || assert.abytes; - export { assertBool, assertBytes }; - export { bytesToHex, bytesToHex as toHex, concatBytes, createView, utf8ToBytes } from "@noble/hashes/utils"; - // buf.toString('utf8') -> bytesToUtf8(buf) diff --git a/patches/react-native-gesture-handler+2.30.0.patch b/patches/react-native-gesture-handler+2.30.0.patch new file mode 100644 index 000000000..05cb86259 --- /dev/null +++ b/patches/react-native-gesture-handler+2.30.0.patch @@ -0,0 +1,15 @@ +diff --git a/node_modules/react-native-gesture-handler/android/build.gradle b/node_modules/react-native-gesture-handler/android/build.gradle +--- a/node_modules/react-native-gesture-handler/android/build.gradle ++++ b/node_modules/react-native-gesture-handler/android/build.gradle +@@ -229,9 +229,10 @@ + } + + def kotlin_version = safeExtGet('kotlinVersion', project.properties['RNGH_kotlinVersion']) ++def reactNativeDependency = safeExtGet("reactNativeDependency", "com.facebook.react:react-android") + + dependencies { +- implementation 'com.facebook.react:react-native:+' // from node_modules ++ implementation reactNativeDependency + + + if (shouldUseCommonInterfaceFromReanimated()) { diff --git a/patches/react-native-svg+15.14.0.patch b/patches/react-native-svg+15.14.0.patch deleted file mode 100644 index 18f7e025e..000000000 --- a/patches/react-native-svg+15.14.0.patch +++ /dev/null @@ -1,98 +0,0 @@ -diff --git a/node_modules/react-native-svg/android/.project b/node_modules/react-native-svg/android/.project -new file mode 100644 -index 0000000..dd0da62 ---- /dev/null -+++ b/node_modules/react-native-svg/android/.project -@@ -0,0 +1,28 @@ -+ -+ -+ react-native-svg -+ Project OpenPassport-android-react-native-svg created by Buildship. -+ -+ -+ -+ -+ org.eclipse.buildship.core.gradleprojectbuilder -+ -+ -+ -+ -+ -+ org.eclipse.buildship.core.gradleprojectnature -+ -+ -+ -+ 1759738232589 -+ -+ 30 -+ -+ org.eclipse.core.resources.regexFilterMatcher -+ node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ -+ -+ -+ -+ -diff --git a/node_modules/react-native-svg/common/cpp/react/renderer/components/rnsvg/RNSVGLayoutableShadowNode.cpp b/node_modules/react-native-svg/common/cpp/react/renderer/components/rnsvg/RNSVGLayoutableShadowNode.cpp -index 11718dd..fe993b3 100644 ---- a/node_modules/react-native-svg/common/cpp/react/renderer/components/rnsvg/RNSVGLayoutableShadowNode.cpp -+++ b/node_modules/react-native-svg/common/cpp/react/renderer/components/rnsvg/RNSVGLayoutableShadowNode.cpp -@@ -28,8 +28,8 @@ void RNSVGLayoutableShadowNode::setZeroDimensions() { - // views in the layout inspector when Yoga attempts to interpret SVG - // properties like width when viewBox scale is set. - auto style = yogaNode_.style(); -- style.setDimension(yoga::Dimension::Width, yoga::StyleSizeLength::points(0)); -- style.setDimension(yoga::Dimension::Height, yoga::StyleSizeLength::points(0)); -+ style.setDimension(yoga::Dimension::Width, yoga::StyleLength::points(0)); -+ style.setDimension(yoga::Dimension::Height, yoga::StyleLength::points(0)); - yogaNode_.setStyle(style); - } - -diff --git a/node_modules/react-native-svg/common/cpp/react/renderer/components/rnsvg/RNSVGLayoutableShadowNode.cpp.bak b/node_modules/react-native-svg/common/cpp/react/renderer/components/rnsvg/RNSVGLayoutableShadowNode.cpp.bak -new file mode 100644 -index 0000000..11718dd ---- /dev/null -+++ b/node_modules/react-native-svg/common/cpp/react/renderer/components/rnsvg/RNSVGLayoutableShadowNode.cpp.bak -@@ -0,0 +1,43 @@ -+#include "RNSVGLayoutableShadowNode.h" -+#include -+ -+namespace facebook::react { -+ -+RNSVGLayoutableShadowNode::RNSVGLayoutableShadowNode( -+ const ShadowNodeFragment &fragment, -+ const ShadowNodeFamily::Shared &family, -+ ShadowNodeTraits traits) -+ : YogaLayoutableShadowNode(fragment, family, traits) { -+ if (std::strcmp(this->getComponentName(), "RNSVGGroup") != 0) { -+ setZeroDimensions(); -+ } -+} -+ -+RNSVGLayoutableShadowNode::RNSVGLayoutableShadowNode( -+ const ShadowNode &sourceShadowNode, -+ const ShadowNodeFragment &fragment) -+ : YogaLayoutableShadowNode(sourceShadowNode, fragment) { -+ if (std::strcmp(this->getComponentName(), "RNSVGGroup") != 0) { -+ setZeroDimensions(); -+ } -+} -+ -+void RNSVGLayoutableShadowNode::setZeroDimensions() { -+ // SVG handles its layout manually on the native side and does not depend on -+ // the Yoga layout. Setting the dimensions to 0 eliminates randomly positioned -+ // views in the layout inspector when Yoga attempts to interpret SVG -+ // properties like width when viewBox scale is set. -+ auto style = yogaNode_.style(); -+ style.setDimension(yoga::Dimension::Width, yoga::StyleSizeLength::points(0)); -+ style.setDimension(yoga::Dimension::Height, yoga::StyleSizeLength::points(0)); -+ yogaNode_.setStyle(style); -+} -+ -+void RNSVGLayoutableShadowNode::layout(LayoutContext layoutContext) { -+ auto affectedNodes = layoutContext.affectedNodes; -+ layoutContext.affectedNodes = nullptr; -+ YogaLayoutableShadowNode::layout(layoutContext); -+ layoutContext.affectedNodes = affectedNodes; -+} -+ -+} // namespace facebook::react diff --git a/scripts/run-patch-package.cjs b/scripts/run-patch-package.cjs index a5fb6503f..088673fef 100644 --- a/scripts/run-patch-package.cjs +++ b/scripts/run-patch-package.cjs @@ -88,30 +88,45 @@ if (!isExecutableAvailableOnPath('patch-package')) { process.exit(0); } +// Workspaces with isolated node_modules due to nmHoistingLimits: workspaces +// Most packages are in workspace node_modules, not root +const workspaceRoots = [ + { name: 'app', path: path.join(repositoryRootPath, 'app') }, + { name: 'contracts', path: path.join(repositoryRootPath, 'contracts') } +]; + // Run patch-package with better error handling try { - const rootPatchRun = spawnSync('patch-package', ['--patch-dir', 'patches'], { - cwd: repositoryRootPath, - shell: true, - stdio: isCI ? 'pipe' : 'inherit', - timeout: 30000 - }); - if (rootPatchRun.status === 0) { - if (!isCI) console.log('✓ Patches applied to root workspace'); - } else { - const errorOutput = rootPatchRun.stderr?.toString() || rootPatchRun.stdout?.toString() || ''; - console.error(`patch-package failed for root workspace (exit code ${rootPatchRun.status})`); - if (errorOutput) console.error(errorOutput); - if (!isCI) process.exit(1); + let anyPatchApplied = false; + let anyPatchFailed = false; + + // Try root node_modules first (some packages may be hoisted here) + const rootNodeModules = path.join(repositoryRootPath, 'node_modules'); + if (fs.existsSync(rootNodeModules)) { + const rootPatchRun = spawnSync('patch-package', ['--patch-dir', 'patches'], { + cwd: repositoryRootPath, + shell: true, + stdio: 'pipe', // Always capture output to check for real errors vs missing packages + timeout: 30000 + }); + const output = rootPatchRun.stdout?.toString() || ''; + const stderrOutput = rootPatchRun.stderr?.toString() || ''; + const hasRealError = (output.includes('**ERROR**') && !output.includes('which is not present at')) || + (stderrOutput.length > 0 && rootPatchRun.status !== 0); + + if (rootPatchRun.status === 0) { + if (!isCI) console.log('✓ Patches applied to root workspace'); + anyPatchApplied = true; + } else if (hasRealError) { + console.error(`patch-package failed for root workspace`); + console.error(output); + if (stderrOutput) console.error(stderrOutput); + anyPatchFailed = true; + } + // If packages are just missing (not hoisted to root), that's expected - continue to workspace patches } - // Also patch app/node_modules if it exists - // Workspaces with isolated node_modules due to limited hoisting - const workspaceRoots = [ - { name: 'app', path: path.join(repositoryRootPath, 'app') }, - { name: 'contracts', path: path.join(repositoryRootPath, 'contracts') } - ]; - + // Apply patches to workspace node_modules (where most packages are with nmHoistingLimits) for (const workspace of workspaceRoots) { const workspaceNodeModules = path.join(workspace.path, 'node_modules'); if (!fs.existsSync(workspaceNodeModules)) continue; @@ -119,19 +134,41 @@ try { const workspacePatchRun = spawnSync('patch-package', ['--patch-dir', '../patches'], { cwd: workspace.path, shell: true, - stdio: isCI ? 'pipe' : 'inherit', + stdio: 'pipe', timeout: 30000 }); + const output = workspacePatchRun.stdout?.toString() || ''; + const stderrOutput = workspacePatchRun.stderr?.toString() || ''; + const hasRealError = (output.includes('**ERROR**') && !output.includes('which is not present at')) || + (stderrOutput.length > 0 && workspacePatchRun.status !== 0); + if (workspacePatchRun.status === 0) { if (!isCI) console.log(`✓ Patches applied to ${workspace.name} workspace`); - } else { - const errorOutput = workspacePatchRun.stderr?.toString() || workspacePatchRun.stdout?.toString() || ''; - console.error(`patch-package failed for ${workspace.name} workspace (exit code ${workspacePatchRun.status})`); - if (errorOutput) console.error(errorOutput); - if (!isCI) process.exit(1); + anyPatchApplied = true; + } else if (hasRealError) { + console.error(`patch-package failed for ${workspace.name} workspace`); + console.error(output); + if (stderrOutput) console.error(stderrOutput); + anyPatchFailed = true; } } + + if (anyPatchFailed && !isCI) { + console.error('Some patches failed to apply. Check if patch versions match installed package versions.'); + process.exit(1); + } + if (anyPatchFailed && isCI) { + console.warn('⚠️ CI Warning: Some patches failed to apply. Review patch compatibility.'); + } + + if (anyPatchApplied) { + if (!isCI) console.log('✓ patch-package completed'); + else console.log('patch-package completed'); + } else { + if (!isCI) console.log('patch-package: no patches applied (packages may be in different locations)'); + else console.log('patch-package: no patches applied'); + } } catch (error) { if (isCI) { console.log('patch-package: error during execution (CI mode):', error.message); diff --git a/sdk/core/package.json b/sdk/core/package.json index 2a232711a..d4a06479f 100644 --- a/sdk/core/package.json +++ b/sdk/core/package.json @@ -51,7 +51,7 @@ "js-sha1": "^0.7.0", "js-sha256": "^0.11.0", "js-sha512": "^0.9.0", - "node-forge": "^1.3.1", + "node-forge": "^1.3.3", "poseidon-lite": "^0.3.0", "snarkjs": "^0.7.4", "uuid": "^11.1.0" @@ -72,7 +72,7 @@ "ts-node": "^10.9.2", "tsup": "^8.5.0", "typechain": "^8.3.2", - "typescript": "^5.9.2", + "typescript": "^5.9.3", "webpack": "^5.95.0" }, "engines": { diff --git a/sdk/qrcode-angular/package.json b/sdk/qrcode-angular/package.json index 6971072f7..79881e045 100644 --- a/sdk/qrcode-angular/package.json +++ b/sdk/qrcode-angular/package.json @@ -38,7 +38,7 @@ "dependencies": { "angularx-qrcode": "^20.0.0", "lottie-web": "^5.12.2", - "socket.io-client": "^4.8.1", + "socket.io-client": "^4.8.3", "uuid": "^11.1.0" }, "devDependencies": { @@ -68,7 +68,7 @@ "prettier": "^3.5.3", "rxjs": "^7.8.0", "tslib": "^2.6.0", - "typescript": "~5.9.0", + "typescript": "~5.9.3", "zone.js": "^0.15.0" }, "peerDependencies": { diff --git a/sdk/qrcode/package.json b/sdk/qrcode/package.json index 315280460..921a4c687 100644 --- a/sdk/qrcode/package.json +++ b/sdk/qrcode/package.json @@ -72,11 +72,11 @@ "js-sha256": "^0.11.0", "js-sha512": "^0.9.0", "lottie-react": "^2.4.0", - "node-forge": "^1.3.1", + "node-forge": "^1.3.3", "poseidon-lite": "^0.3.0", "qrcode.react": "^4.1.0", "react-spinners": "^0.14.1", - "socket.io-client": "^4.8.1", + "socket.io-client": "^4.8.3", "uuid": "^11.1.0" }, "devDependencies": { @@ -104,7 +104,7 @@ "ts-mocha": "^10.0.0", "ts-node": "^10.9.2", "tsup": "^8.5.0", - "typescript": "^5.9.2", + "typescript": "^5.9.3", "webpack": "^5.95.0" }, "peerDependencies": { diff --git a/sdk/sdk-common/package.json b/sdk/sdk-common/package.json index 7eb7520e2..44bcc8027 100644 --- a/sdk/sdk-common/package.json +++ b/sdk/sdk-common/package.json @@ -32,6 +32,6 @@ "uuid": "^13.0.0" }, "devDependencies": { - "typescript": "^5.9.2" + "typescript": "^5.9.3" } } diff --git a/yarn.lock b/yarn.lock index a80c25d33..4b27c31c1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1298,33 +1298,51 @@ __metadata: languageName: node linkType: hard -"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.27.2, @babel/compat-data@npm:^7.27.7, @babel/compat-data@npm:^7.28.0, @babel/compat-data@npm:^7.28.5": +"@babel/code-frame@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/code-frame@npm:7.28.6" + dependencies: + "@babel/helper-validator-identifier": "npm:^7.28.5" + js-tokens: "npm:^4.0.0" + picocolors: "npm:^1.1.1" + checksum: 10c0/ed5d57f99455e3b1c23e75ebb8430c6b9800b4ecd0121b4348b97cecb65406a47778d6db61f0d538a4958bb01b4b277e90348a68d39bd3beff1d7c940ed6dd66 + languageName: node + linkType: hard + +"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.27.2, @babel/compat-data@npm:^7.27.7, @babel/compat-data@npm:^7.28.0": version: 7.28.5 resolution: "@babel/compat-data@npm:7.28.5" checksum: 10c0/702a25de73087b0eba325c1d10979eed7c9b6662677386ba7b5aa6eace0fc0676f78343bae080a0176ae26f58bd5535d73b9d0fbb547fef377692e8b249353a7 languageName: node linkType: hard -"@babel/core@npm:^7.28.4": - version: 7.28.5 - resolution: "@babel/core@npm:7.28.5" +"@babel/compat-data@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/compat-data@npm:7.28.6" + checksum: 10c0/2d047431041281eaf33e9943d1a269d3374dbc9b498cafe6a18f5ee9aee7bb96f7f6cac0304eab4d13c41fc4db00fe4ca16c7aa44469ca6a211b8b6343b78fc4 + languageName: node + linkType: hard + +"@babel/core@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/core@npm:7.28.6" dependencies: - "@babel/code-frame": "npm:^7.27.1" - "@babel/generator": "npm:^7.28.5" - "@babel/helper-compilation-targets": "npm:^7.27.2" - "@babel/helper-module-transforms": "npm:^7.28.3" - "@babel/helpers": "npm:^7.28.4" - "@babel/parser": "npm:^7.28.5" - "@babel/template": "npm:^7.27.2" - "@babel/traverse": "npm:^7.28.5" - "@babel/types": "npm:^7.28.5" + "@babel/code-frame": "npm:^7.28.6" + "@babel/generator": "npm:^7.28.6" + "@babel/helper-compilation-targets": "npm:^7.28.6" + "@babel/helper-module-transforms": "npm:^7.28.6" + "@babel/helpers": "npm:^7.28.6" + "@babel/parser": "npm:^7.28.6" + "@babel/template": "npm:^7.28.6" + "@babel/traverse": "npm:^7.28.6" + "@babel/types": "npm:^7.28.6" "@jridgewell/remapping": "npm:^2.3.5" convert-source-map: "npm:^2.0.0" debug: "npm:^4.1.0" gensync: "npm:^1.0.0-beta.2" json5: "npm:^2.2.3" semver: "npm:^6.3.1" - checksum: 10c0/535f82238027621da6bdffbdbe896ebad3558b311d6f8abc680637a9859b96edbf929ab010757055381570b29cf66c4a295b5618318d27a4273c0e2033925e72 + checksum: 10c0/716b88b1ab057aa53ffa40f2b2fb7e4ab7a35cd6a065fa60e55ca13d2a666672592329f7ea9269aec17e90cc7ce29f42eda566d07859bfd998329a9f283faadb languageName: node linkType: hard @@ -1368,6 +1386,19 @@ __metadata: languageName: node linkType: hard +"@babel/generator@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/generator@npm:7.28.6" + dependencies: + "@babel/parser": "npm:^7.28.6" + "@babel/types": "npm:^7.28.6" + "@jridgewell/gen-mapping": "npm:^0.3.12" + "@jridgewell/trace-mapping": "npm:^0.3.28" + jsesc: "npm:^3.0.2" + checksum: 10c0/162fa358484a9a18e8da1235d998f10ea77c63bab408c8d3e327d5833f120631a77ff022c5ed1d838ee00523f8bb75df1f08196d3657d0bca9f2cfeb8503cc12 + languageName: node + linkType: hard + "@babel/helper-annotate-as-pure@npm:7.27.3, @babel/helper-annotate-as-pure@npm:^7.27.1, @babel/helper-annotate-as-pure@npm:^7.27.3": version: 7.27.3 resolution: "@babel/helper-annotate-as-pure@npm:7.27.3" @@ -1390,6 +1421,19 @@ __metadata: languageName: node linkType: hard +"@babel/helper-compilation-targets@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/helper-compilation-targets@npm:7.28.6" + dependencies: + "@babel/compat-data": "npm:^7.28.6" + "@babel/helper-validator-option": "npm:^7.27.1" + browserslist: "npm:^4.24.0" + lru-cache: "npm:^5.1.1" + semver: "npm:^6.3.1" + checksum: 10c0/3fcdf3b1b857a1578e99d20508859dbd3f22f3c87b8a0f3dc540627b4be539bae7f6e61e49d931542fe5b557545347272bbdacd7f58a5c77025a18b745593a50 + languageName: node + linkType: hard + "@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.27.1, @babel/helper-create-class-features-plugin@npm:^7.28.3, @babel/helper-create-class-features-plugin@npm:^7.28.5": version: 7.28.5 resolution: "@babel/helper-create-class-features-plugin@npm:7.28.5" @@ -1407,7 +1451,24 @@ __metadata: languageName: node linkType: hard -"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.27.1": +"@babel/helper-create-class-features-plugin@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/helper-create-class-features-plugin@npm:7.28.6" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.27.3" + "@babel/helper-member-expression-to-functions": "npm:^7.28.5" + "@babel/helper-optimise-call-expression": "npm:^7.27.1" + "@babel/helper-replace-supers": "npm:^7.28.6" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1" + "@babel/traverse": "npm:^7.28.6" + semver: "npm:^6.3.1" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/0b62b46717891f4366006b88c9b7f277980d4f578c4c3789b7a4f5a2e09e121de4cda9a414ab403986745cd3ad1af3fe2d948c9f78ab80d4dc085afc9602af50 + languageName: node + linkType: hard + +"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.27.1, @babel/helper-create-regexp-features-plugin@npm:^7.28.5": version: 7.28.5 resolution: "@babel/helper-create-regexp-features-plugin@npm:7.28.5" dependencies: @@ -1471,6 +1532,16 @@ __metadata: languageName: node linkType: hard +"@babel/helper-module-imports@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/helper-module-imports@npm:7.28.6" + dependencies: + "@babel/traverse": "npm:^7.28.6" + "@babel/types": "npm:^7.28.6" + checksum: 10c0/b49d8d8f204d9dbfd5ac70c54e533e5269afb3cea966a9d976722b13e9922cc773a653405f53c89acb247d5aebdae4681d631a3ae3df77ec046b58da76eda2ac + languageName: node + linkType: hard + "@babel/helper-module-transforms@npm:^7.27.1, @babel/helper-module-transforms@npm:^7.28.3": version: 7.28.3 resolution: "@babel/helper-module-transforms@npm:7.28.3" @@ -1484,6 +1555,19 @@ __metadata: languageName: node linkType: hard +"@babel/helper-module-transforms@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/helper-module-transforms@npm:7.28.6" + dependencies: + "@babel/helper-module-imports": "npm:^7.28.6" + "@babel/helper-validator-identifier": "npm:^7.28.5" + "@babel/traverse": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/6f03e14fc30b287ce0b839474b5f271e72837d0cafe6b172d759184d998fbee3903a035e81e07c2c596449e504f453463d58baa65b6f40a37ded5bec74620b2b + languageName: node + linkType: hard + "@babel/helper-optimise-call-expression@npm:^7.27.1": version: 7.27.1 resolution: "@babel/helper-optimise-call-expression@npm:7.27.1" @@ -1500,6 +1584,13 @@ __metadata: languageName: node linkType: hard +"@babel/helper-plugin-utils@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/helper-plugin-utils@npm:7.28.6" + checksum: 10c0/3f5f8acc152fdbb69a84b8624145ff4f9b9f6e776cb989f9f968f8606eb7185c5c3cfcf3ba08534e37e1e0e1c118ac67080610333f56baa4f7376c99b5f1143d + languageName: node + linkType: hard + "@babel/helper-remap-async-to-generator@npm:^7.18.9, @babel/helper-remap-async-to-generator@npm:^7.27.1": version: 7.27.1 resolution: "@babel/helper-remap-async-to-generator@npm:7.27.1" @@ -1526,6 +1617,19 @@ __metadata: languageName: node linkType: hard +"@babel/helper-replace-supers@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/helper-replace-supers@npm:7.28.6" + dependencies: + "@babel/helper-member-expression-to-functions": "npm:^7.28.5" + "@babel/helper-optimise-call-expression": "npm:^7.27.1" + "@babel/traverse": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/04663c6389551b99b8c3e7ba4e2638b8ca2a156418c26771516124c53083aa8e74b6a45abe5dd46360af79709a0e9c6b72c076d0eab9efecdd5aaf836e79d8d5 + languageName: node + linkType: hard + "@babel/helper-skip-transparent-expression-wrappers@npm:^7.20.0, @babel/helper-skip-transparent-expression-wrappers@npm:^7.27.1": version: 7.27.1 resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.27.1" @@ -1577,13 +1681,13 @@ __metadata: languageName: node linkType: hard -"@babel/helpers@npm:^7.28.4": - version: 7.28.4 - resolution: "@babel/helpers@npm:7.28.4" +"@babel/helpers@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/helpers@npm:7.28.6" dependencies: - "@babel/template": "npm:^7.27.2" - "@babel/types": "npm:^7.28.4" - checksum: 10c0/aaa5fb8098926dfed5f223adf2c5e4c7fbba4b911b73dfec2d7d3083f8ba694d201a206db673da2d9b3ae8c01793e795767654558c450c8c14b4c2175b4fcb44 + "@babel/template": "npm:^7.28.6" + "@babel/types": "npm:^7.28.6" + checksum: 10c0/c4a779c66396bb0cf619402d92f1610601ff3832db2d3b86b9c9dd10983bf79502270e97ac6d5280cea1b1a37de2f06ecbac561bd2271545270407fbe64027cb languageName: node linkType: hard @@ -1598,6 +1702,17 @@ __metadata: languageName: node linkType: hard +"@babel/parser@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/parser@npm:7.28.6" + dependencies: + "@babel/types": "npm:^7.28.6" + bin: + parser: ./bin/babel-parser.js + checksum: 10c0/d6bfe8aa8e067ef58909e9905496157312372ca65d8d2a4f2b40afbea48d59250163755bba8ae626a615da53d192b084bcfc8c9dad8b01e315b96967600de581 + languageName: node + linkType: hard + "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.27.1, @babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.28.5": version: 7.28.5 resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.28.5" @@ -1657,6 +1772,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/traverse": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/f1a9194e8d1742081def7af748e9249eb5082c25d0ced292720a1f054895f99041c764a05f45af669a2c8898aeb79266058aedb0d3e1038963ad49be8288918a + languageName: node + linkType: hard + "@babel/plugin-proposal-async-generator-functions@npm:^7.0.0": version: 7.20.7 resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.20.7" @@ -1844,6 +1971,17 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-syntax-flow@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-syntax-flow@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/a00114adcbbdaef07638f6a2e8c3ea63d65b3d27f088e8e53c5f35b8dc50813c0e1006fac4fb109782f9cdd41ad2f1cb9838359fecbb3d1f6141b4002358f52c + languageName: node + linkType: hard + "@babel/plugin-syntax-import-assertions@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-syntax-import-assertions@npm:7.27.1" @@ -1855,6 +1993,17 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-syntax-import-assertions@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-syntax-import-assertions@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/f3b8bdccb9b4d3e3b9226684ca518e055399d05579da97dfe0160a38d65198cfe7dce809e73179d6463a863a040f980de32425a876d88efe4eda933d0d95982c + languageName: node + linkType: hard + "@babel/plugin-syntax-import-attributes@npm:^7.24.7, @babel/plugin-syntax-import-attributes@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-syntax-import-attributes@npm:7.27.1" @@ -1866,6 +2015,17 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-syntax-import-attributes@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-syntax-import-attributes@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/1be160e2c426faa74e5be2e30e39e8d0d8c543063bd5d06cd804f8751b8fbcb82ce824ca7f9ce4b09c003693f6c06a11ce503b7e34d85e1a259631e4c3f72ad2 + languageName: node + linkType: hard + "@babel/plugin-syntax-import-meta@npm:^7.10.4": version: 7.10.4 resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4" @@ -2034,6 +2194,19 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-async-generator-functions@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-async-generator-functions@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/helper-remap-async-to-generator": "npm:^7.27.1" + "@babel/traverse": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/eddb94b0b990d8057c9c3587db3453eb586d1835626a9d683e6e8bef0ac5f708a76002951fb9cca80c902b3074b21b3a81b8af9090492561d9179862ce5716d8 + languageName: node + linkType: hard + "@babel/plugin-transform-async-to-generator@npm:7.27.1, @babel/plugin-transform-async-to-generator@npm:^7.20.0, @babel/plugin-transform-async-to-generator@npm:^7.24.7, @babel/plugin-transform-async-to-generator@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-async-to-generator@npm:7.27.1" @@ -2047,6 +2220,19 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-async-to-generator@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-async-to-generator@npm:7.28.6" + dependencies: + "@babel/helper-module-imports": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/helper-remap-async-to-generator": "npm:^7.27.1" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/2eb0826248587df6e50038f36194a138771a7df22581020451c7779edeaf9ef39bf47c5b7a20ae2645af6416e8c896feeca273317329652e84abd79a4ab920ad + languageName: node + linkType: hard + "@babel/plugin-transform-block-scoped-functions@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.27.1" @@ -2058,7 +2244,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-block-scoping@npm:^7.0.0, @babel/plugin-transform-block-scoping@npm:^7.25.0, @babel/plugin-transform-block-scoping@npm:^7.28.0, @babel/plugin-transform-block-scoping@npm:^7.28.5": +"@babel/plugin-transform-block-scoping@npm:^7.0.0, @babel/plugin-transform-block-scoping@npm:^7.25.0, @babel/plugin-transform-block-scoping@npm:^7.28.0": version: 7.28.5 resolution: "@babel/plugin-transform-block-scoping@npm:7.28.5" dependencies: @@ -2069,6 +2255,17 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-block-scoping@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-block-scoping@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/2e3e09e1f9770b56cef4dcbffddf262508fd03416072f815ac66b2b224a3a12cd285cfec12fc067f1add414e7db5ce6dafb5164a6e0fb1a728e6a97d0c6f6e9d + languageName: node + linkType: hard + "@babel/plugin-transform-class-properties@npm:^7.25.4, @babel/plugin-transform-class-properties@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-class-properties@npm:7.27.1" @@ -2081,6 +2278,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-class-properties@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-class-properties@npm:7.28.6" + dependencies: + "@babel/helper-create-class-features-plugin": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/c4327fcd730c239d9f173f9b695b57b801729e273b4848aef1f75818069dfd31d985d75175db188d947b9b1bbe5353dae298849042026a5e4fcf07582ff3f9f1 + languageName: node + linkType: hard + "@babel/plugin-transform-class-static-block@npm:^7.28.3": version: 7.28.3 resolution: "@babel/plugin-transform-class-static-block@npm:7.28.3" @@ -2093,7 +2302,19 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-classes@npm:^7.0.0, @babel/plugin-transform-classes@npm:^7.25.4, @babel/plugin-transform-classes@npm:^7.27.1, @babel/plugin-transform-classes@npm:^7.28.3, @babel/plugin-transform-classes@npm:^7.28.4": +"@babel/plugin-transform-class-static-block@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-class-static-block@npm:7.28.6" + dependencies: + "@babel/helper-create-class-features-plugin": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.12.0 + checksum: 10c0/dbe9b1fd302ae41b73186e17ac8d8ecf625ebc2416a91f2dc8013977a1bdf21e6ea288a83f084752b412242f3866e789d4fddeb428af323fe35b60e0fae4f98c + languageName: node + linkType: hard + +"@babel/plugin-transform-classes@npm:^7.0.0, @babel/plugin-transform-classes@npm:^7.25.4, @babel/plugin-transform-classes@npm:^7.28.3": version: 7.28.4 resolution: "@babel/plugin-transform-classes@npm:7.28.4" dependencies: @@ -2109,6 +2330,22 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-classes@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-classes@npm:7.28.6" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.27.3" + "@babel/helper-compilation-targets": "npm:^7.28.6" + "@babel/helper-globals": "npm:^7.28.0" + "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/helper-replace-supers": "npm:^7.28.6" + "@babel/traverse": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/dc22f1f6eadab17305128fbf9cc5f30e87a51a77dd0a6d5498097994e8a9b9a90ab298c11edf2342acbeaac9edc9c601cad72eedcf4b592cd465a787d7f41490 + languageName: node + linkType: hard + "@babel/plugin-transform-computed-properties@npm:^7.0.0, @babel/plugin-transform-computed-properties@npm:^7.24.7, @babel/plugin-transform-computed-properties@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-computed-properties@npm:7.27.1" @@ -2121,6 +2358,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-computed-properties@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-computed-properties@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/template": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/1e9893503ae6d651125701cc29450e87c0b873c8febebff19da75da9c40cfb7968c52c28bf948244e461110aeb7b3591f2cc199b7406ff74a24c50c7a5729f39 + languageName: node + linkType: hard + "@babel/plugin-transform-destructuring@npm:^7.20.0, @babel/plugin-transform-destructuring@npm:^7.24.8, @babel/plugin-transform-destructuring@npm:^7.28.0, @babel/plugin-transform-destructuring@npm:^7.28.5": version: 7.28.5 resolution: "@babel/plugin-transform-destructuring@npm:7.28.5" @@ -2145,6 +2394,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-dotall-regex@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-dotall-regex@npm:7.28.6" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.28.5" + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/e2fb76b7ae99087cf4212013a3ca9dee07048f90f98fd6264855080fb6c3f169be11c9b8c9d8b26cf9a407e4d0a5fa6e103f7cef433a542b75cf7127c99d4f97 + languageName: node + linkType: hard + "@babel/plugin-transform-duplicate-keys@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-duplicate-keys@npm:7.27.1" @@ -2168,6 +2429,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:7.28.6" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.28.5" + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/a1b4161ed6a4a5e78f802035b38efd71db6691fc1b2b2a1aea49fcb449077105b4925f0c4670f117231462f5cb0a35df4ad297f7b1fac38ec76e89635f8dc51d + languageName: node + linkType: hard + "@babel/plugin-transform-dynamic-import@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-dynamic-import@npm:7.27.1" @@ -2191,7 +2464,19 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-exponentiation-operator@npm:^7.27.1, @babel/plugin-transform-exponentiation-operator@npm:^7.28.5": +"@babel/plugin-transform-explicit-resource-management@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-explicit-resource-management@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/plugin-transform-destructuring": "npm:^7.28.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/e6ea28c26e058fe61ada3e70b0def1992dd5a44f5fc14d8e2c6a3a512fb4d4c6dc96a3e1d0b466d83db32a9101e0b02df94051e48d3140da115b8ea9f8a31f37 + languageName: node + linkType: hard + +"@babel/plugin-transform-exponentiation-operator@npm:^7.27.1": version: 7.28.5 resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.28.5" dependencies: @@ -2202,6 +2487,17 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-exponentiation-operator@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/4572d955a50dbc9a652a19431b4bb822cb479ee6045f4e6df72659c499c13036da0a2adf650b07ca995f2781e80aa868943bea1e7bff1de3169ec3f0a73a902e + languageName: node + linkType: hard + "@babel/plugin-transform-export-namespace-from@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-export-namespace-from@npm:7.27.1" @@ -2261,6 +2557,17 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-json-strings@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-json-strings@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/ab1091798c58e6c0bb8a864ee2b727c400924592c6ed69797a26b4c205f850a935de77ad516570be0419c279a3d9f7740c2aa448762eb8364ea77a6a357a9653 + languageName: node + linkType: hard + "@babel/plugin-transform-literals@npm:^7.0.0, @babel/plugin-transform-literals@npm:^7.25.2, @babel/plugin-transform-literals@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-literals@npm:7.27.1" @@ -2272,7 +2579,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.7, @babel/plugin-transform-logical-assignment-operators@npm:^7.27.1, @babel/plugin-transform-logical-assignment-operators@npm:^7.28.5": +"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.7, @babel/plugin-transform-logical-assignment-operators@npm:^7.27.1": version: 7.28.5 resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.28.5" dependencies: @@ -2283,6 +2590,17 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-logical-assignment-operators@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/4632a35453d2131f0be466681d0a33e3db44d868ff51ec46cd87e0ebd1e47c6a39b894f7d1c9b06f931addf6efa9d30e60c4cdedeb4f69d426f683e11f8490cf + languageName: node + linkType: hard + "@babel/plugin-transform-member-expression-literals@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-member-expression-literals@npm:7.27.1" @@ -2318,6 +2636,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-modules-commonjs@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-modules-commonjs@npm:7.28.6" + dependencies: + "@babel/helper-module-transforms": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/7c45992797c6150644c8552feff4a016ba7bd6d59ff2b039ed969a9c5b20a6804cd9d21db5045fc8cca8ca7f08262497e354e93f8f2be6a1cdf3fbfa8c31a9b6 + languageName: node + linkType: hard + "@babel/plugin-transform-modules-systemjs@npm:^7.27.1, @babel/plugin-transform-modules-systemjs@npm:^7.28.5": version: 7.28.5 resolution: "@babel/plugin-transform-modules-systemjs@npm:7.28.5" @@ -2378,6 +2708,17 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/6607f2201d66ccb688f0b1db09475ef995837df19f14705da41f693b669f834c206147a854864ab107913d7b4f4748878b0cd9fe9ca8bfd1bee0c206fc027b49 + languageName: node + linkType: hard + "@babel/plugin-transform-numeric-separator@npm:^7.24.7, @babel/plugin-transform-numeric-separator@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-numeric-separator@npm:7.27.1" @@ -2389,7 +2730,18 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-object-rest-spread@npm:^7.24.7, @babel/plugin-transform-object-rest-spread@npm:^7.28.0, @babel/plugin-transform-object-rest-spread@npm:^7.28.4": +"@babel/plugin-transform-numeric-separator@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-numeric-separator@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/191097d8d2753cdd16d1acca65a945d1645ab20b65655c2f5b030a9e38967a52e093dcb21ebf391e342222705c6ffe5dea15dafd6257f7b51b77fb64a830b637 + languageName: node + linkType: hard + +"@babel/plugin-transform-object-rest-spread@npm:^7.24.7, @babel/plugin-transform-object-rest-spread@npm:^7.28.0": version: 7.28.4 resolution: "@babel/plugin-transform-object-rest-spread@npm:7.28.4" dependencies: @@ -2404,6 +2756,21 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-object-rest-spread@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-object-rest-spread@npm:7.28.6" + dependencies: + "@babel/helper-compilation-targets": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/plugin-transform-destructuring": "npm:^7.28.5" + "@babel/plugin-transform-parameters": "npm:^7.27.7" + "@babel/traverse": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/f55334352d4fcde385f2e8a58836687e71ff668c9b6e4c34d52575bf2789cdde92d9d3116edba13647ac0bc3e51fb2a6d1e8fb822dce7e8123334b82600bc4c3 + languageName: node + linkType: hard + "@babel/plugin-transform-object-super@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-object-super@npm:7.27.1" @@ -2427,7 +2794,18 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-optional-chaining@npm:^7.24.8, @babel/plugin-transform-optional-chaining@npm:^7.27.1, @babel/plugin-transform-optional-chaining@npm:^7.28.5": +"@babel/plugin-transform-optional-catch-binding@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/36e8face000ee65e478a55febf687ce9be7513ad498c60dfe585851555565e0c28e7cb891b3c59709318539ce46f7697d5f42130eb18f385cd47e47cfa297446 + languageName: node + linkType: hard + +"@babel/plugin-transform-optional-chaining@npm:^7.24.8, @babel/plugin-transform-optional-chaining@npm:^7.27.1": version: 7.28.5 resolution: "@babel/plugin-transform-optional-chaining@npm:7.28.5" dependencies: @@ -2439,6 +2817,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-optional-chaining@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-optional-chaining@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/c159cc74115c2266be21791f192dd079e2aeb65c8731157e53b80fcefa41e8e28ad370021d4dfbdb31f25e5afa0322669a8eb2d032cd96e65ac37e020324c763 + languageName: node + linkType: hard + "@babel/plugin-transform-parameters@npm:^7.0.0, @babel/plugin-transform-parameters@npm:^7.20.7, @babel/plugin-transform-parameters@npm:^7.24.7, @babel/plugin-transform-parameters@npm:^7.27.7": version: 7.27.7 resolution: "@babel/plugin-transform-parameters@npm:7.27.7" @@ -2462,6 +2852,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-private-methods@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-private-methods@npm:7.28.6" + dependencies: + "@babel/helper-create-class-features-plugin": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/fb504e2bfdcf3f734d2a90ab20d61427c58385f57f950d3de6ff4e6d12dd4aa7d552147312d218367e129b7920dccfc3230ba554de861986cda38921bad84067 + languageName: node + linkType: hard + "@babel/plugin-transform-private-property-in-object@npm:^7.24.7, @babel/plugin-transform-private-property-in-object@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-private-property-in-object@npm:7.27.1" @@ -2475,6 +2877,19 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-private-property-in-object@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-private-property-in-object@npm:7.28.6" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.27.3" + "@babel/helper-create-class-features-plugin": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/0f6bbc6ec3f93b556d3de7d56bf49335255fc4c43488e51a5025d6ee0286183fd3cf950ffcac1bbeed8a45777f860a49996455c8d3b4a04c3b1a5f28e697fe31 + languageName: node + linkType: hard + "@babel/plugin-transform-property-literals@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-property-literals@npm:7.27.1" @@ -2557,7 +2972,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-regenerator@npm:^7.24.7, @babel/plugin-transform-regenerator@npm:^7.28.3, @babel/plugin-transform-regenerator@npm:^7.28.4": +"@babel/plugin-transform-regenerator@npm:^7.24.7, @babel/plugin-transform-regenerator@npm:^7.28.3": version: 7.28.4 resolution: "@babel/plugin-transform-regenerator@npm:7.28.4" dependencies: @@ -2568,6 +2983,17 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-regenerator@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-regenerator@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/dbb65b7444548807aee558cdaf23996e7a0f6c3bced09c6b5d177734b3addcaf417532186e330341758979651e2af8cb98ae572f794f05c0e2e201e5593a5ffe + languageName: node + linkType: hard + "@babel/plugin-transform-regexp-modifiers@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-regexp-modifiers@npm:7.27.1" @@ -2580,6 +3006,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-regexp-modifiers@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-regexp-modifiers@npm:7.28.6" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.28.5" + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/97e36b086800f71694fa406abc00192e3833662f2bdd5f51c018bd0c95eef247c4ae187417c207d03a9c5374342eac0bb65a39112c431a9b23b09b1eda1562e5 + languageName: node + linkType: hard + "@babel/plugin-transform-reserved-words@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-reserved-words@npm:7.27.1" @@ -2646,6 +3084,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-spread@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-spread@npm:7.28.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/bcac50e558d6f0c501cbce19ec197af558cef51fe3b3a6eba27276e323e57a5be28109b4264a5425ac12a67bf95d6af9c2a42b05e79c522ce913fb9529259d76 + languageName: node + linkType: hard + "@babel/plugin-transform-sticky-regex@npm:^7.0.0, @babel/plugin-transform-sticky-regex@npm:^7.24.7, @babel/plugin-transform-sticky-regex@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-sticky-regex@npm:7.27.1" @@ -2717,6 +3167,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-unicode-property-regex@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.28.6" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.28.5" + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/b25f8cde643f4f47e0fa4f7b5c552e2dfbb6ad0ce07cf40f7e8ae40daa9855ad855d76d4d6d010153b74e48c8794685955c92ca637c0da152ce5f0fa9e7c90fa + languageName: node + linkType: hard + "@babel/plugin-transform-unicode-regex@npm:^7.0.0, @babel/plugin-transform-unicode-regex@npm:^7.24.7, @babel/plugin-transform-unicode-regex@npm:^7.27.1": version: 7.27.1 resolution: "@babel/plugin-transform-unicode-regex@npm:7.27.1" @@ -2741,6 +3203,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-unicode-sets-regex@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.28.6" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.28.5" + "@babel/helper-plugin-utils": "npm:^7.28.6" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/c03c8818736b138db73d1f7a96fbfa22d1994639164d743f0f00e6383d3b7b3144d333de960ff4afad0bddd0baaac257295e3316969eba995b1b6a1b4dec933e + languageName: node + linkType: hard + "@babel/preset-env@npm:7.28.3": version: 7.28.3 resolution: "@babel/preset-env@npm:7.28.3" @@ -2821,74 +3295,74 @@ __metadata: languageName: node linkType: hard -"@babel/preset-env@npm:^7.28.3": - version: 7.28.5 - resolution: "@babel/preset-env@npm:7.28.5" +"@babel/preset-env@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/preset-env@npm:7.28.6" dependencies: - "@babel/compat-data": "npm:^7.28.5" - "@babel/helper-compilation-targets": "npm:^7.27.2" - "@babel/helper-plugin-utils": "npm:^7.27.1" + "@babel/compat-data": "npm:^7.28.6" + "@babel/helper-compilation-targets": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.28.6" "@babel/helper-validator-option": "npm:^7.27.1" "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "npm:^7.28.5" "@babel/plugin-bugfix-safari-class-field-initializer-scope": "npm:^7.27.1" "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "npm:^7.27.1" "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^7.27.1" - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "npm:^7.28.3" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "npm:^7.28.6" "@babel/plugin-proposal-private-property-in-object": "npm:7.21.0-placeholder-for-preset-env.2" - "@babel/plugin-syntax-import-assertions": "npm:^7.27.1" - "@babel/plugin-syntax-import-attributes": "npm:^7.27.1" + "@babel/plugin-syntax-import-assertions": "npm:^7.28.6" + "@babel/plugin-syntax-import-attributes": "npm:^7.28.6" "@babel/plugin-syntax-unicode-sets-regex": "npm:^7.18.6" "@babel/plugin-transform-arrow-functions": "npm:^7.27.1" - "@babel/plugin-transform-async-generator-functions": "npm:^7.28.0" - "@babel/plugin-transform-async-to-generator": "npm:^7.27.1" + "@babel/plugin-transform-async-generator-functions": "npm:^7.28.6" + "@babel/plugin-transform-async-to-generator": "npm:^7.28.6" "@babel/plugin-transform-block-scoped-functions": "npm:^7.27.1" - "@babel/plugin-transform-block-scoping": "npm:^7.28.5" - "@babel/plugin-transform-class-properties": "npm:^7.27.1" - "@babel/plugin-transform-class-static-block": "npm:^7.28.3" - "@babel/plugin-transform-classes": "npm:^7.28.4" - "@babel/plugin-transform-computed-properties": "npm:^7.27.1" + "@babel/plugin-transform-block-scoping": "npm:^7.28.6" + "@babel/plugin-transform-class-properties": "npm:^7.28.6" + "@babel/plugin-transform-class-static-block": "npm:^7.28.6" + "@babel/plugin-transform-classes": "npm:^7.28.6" + "@babel/plugin-transform-computed-properties": "npm:^7.28.6" "@babel/plugin-transform-destructuring": "npm:^7.28.5" - "@babel/plugin-transform-dotall-regex": "npm:^7.27.1" + "@babel/plugin-transform-dotall-regex": "npm:^7.28.6" "@babel/plugin-transform-duplicate-keys": "npm:^7.27.1" - "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "npm:^7.27.1" + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "npm:^7.28.6" "@babel/plugin-transform-dynamic-import": "npm:^7.27.1" - "@babel/plugin-transform-explicit-resource-management": "npm:^7.28.0" - "@babel/plugin-transform-exponentiation-operator": "npm:^7.28.5" + "@babel/plugin-transform-explicit-resource-management": "npm:^7.28.6" + "@babel/plugin-transform-exponentiation-operator": "npm:^7.28.6" "@babel/plugin-transform-export-namespace-from": "npm:^7.27.1" "@babel/plugin-transform-for-of": "npm:^7.27.1" "@babel/plugin-transform-function-name": "npm:^7.27.1" - "@babel/plugin-transform-json-strings": "npm:^7.27.1" + "@babel/plugin-transform-json-strings": "npm:^7.28.6" "@babel/plugin-transform-literals": "npm:^7.27.1" - "@babel/plugin-transform-logical-assignment-operators": "npm:^7.28.5" + "@babel/plugin-transform-logical-assignment-operators": "npm:^7.28.6" "@babel/plugin-transform-member-expression-literals": "npm:^7.27.1" "@babel/plugin-transform-modules-amd": "npm:^7.27.1" - "@babel/plugin-transform-modules-commonjs": "npm:^7.27.1" + "@babel/plugin-transform-modules-commonjs": "npm:^7.28.6" "@babel/plugin-transform-modules-systemjs": "npm:^7.28.5" "@babel/plugin-transform-modules-umd": "npm:^7.27.1" "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.27.1" "@babel/plugin-transform-new-target": "npm:^7.27.1" - "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.27.1" - "@babel/plugin-transform-numeric-separator": "npm:^7.27.1" - "@babel/plugin-transform-object-rest-spread": "npm:^7.28.4" + "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.28.6" + "@babel/plugin-transform-numeric-separator": "npm:^7.28.6" + "@babel/plugin-transform-object-rest-spread": "npm:^7.28.6" "@babel/plugin-transform-object-super": "npm:^7.27.1" - "@babel/plugin-transform-optional-catch-binding": "npm:^7.27.1" - "@babel/plugin-transform-optional-chaining": "npm:^7.28.5" + "@babel/plugin-transform-optional-catch-binding": "npm:^7.28.6" + "@babel/plugin-transform-optional-chaining": "npm:^7.28.6" "@babel/plugin-transform-parameters": "npm:^7.27.7" - "@babel/plugin-transform-private-methods": "npm:^7.27.1" - "@babel/plugin-transform-private-property-in-object": "npm:^7.27.1" + "@babel/plugin-transform-private-methods": "npm:^7.28.6" + "@babel/plugin-transform-private-property-in-object": "npm:^7.28.6" "@babel/plugin-transform-property-literals": "npm:^7.27.1" - "@babel/plugin-transform-regenerator": "npm:^7.28.4" - "@babel/plugin-transform-regexp-modifiers": "npm:^7.27.1" + "@babel/plugin-transform-regenerator": "npm:^7.28.6" + "@babel/plugin-transform-regexp-modifiers": "npm:^7.28.6" "@babel/plugin-transform-reserved-words": "npm:^7.27.1" "@babel/plugin-transform-shorthand-properties": "npm:^7.27.1" - "@babel/plugin-transform-spread": "npm:^7.27.1" + "@babel/plugin-transform-spread": "npm:^7.28.6" "@babel/plugin-transform-sticky-regex": "npm:^7.27.1" "@babel/plugin-transform-template-literals": "npm:^7.27.1" "@babel/plugin-transform-typeof-symbol": "npm:^7.27.1" "@babel/plugin-transform-unicode-escapes": "npm:^7.27.1" - "@babel/plugin-transform-unicode-property-regex": "npm:^7.27.1" + "@babel/plugin-transform-unicode-property-regex": "npm:^7.28.6" "@babel/plugin-transform-unicode-regex": "npm:^7.27.1" - "@babel/plugin-transform-unicode-sets-regex": "npm:^7.27.1" + "@babel/plugin-transform-unicode-sets-regex": "npm:^7.28.6" "@babel/preset-modules": "npm:0.1.6-no-external-plugins" babel-plugin-polyfill-corejs2: "npm:^0.4.14" babel-plugin-polyfill-corejs3: "npm:^0.13.0" @@ -2897,7 +3371,7 @@ __metadata: semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/d1b730158de290f1c54ed7db0f4fed3f82db5f868ab0a4cb3fc2ea76ed683b986ae136f6e7eb0b44b91bc9a99039a2559851656b4fd50193af1a815a3e32e524 + checksum: 10c0/a08f007c5e8c95beb10a4ab8ad8fdbd823c8ace5f24f491f69a10b6cad079825d39cd1bc9dd312680bbd5aa5f95095cce7d01f51e31bae6720039b11e8105ace languageName: node linkType: hard @@ -2927,7 +3401,7 @@ __metadata: languageName: node linkType: hard -"@babel/preset-react@npm:^7.27.1": +"@babel/preset-react@npm:^7.28.5": version: 7.28.5 resolution: "@babel/preset-react@npm:7.28.5" dependencies: @@ -2973,10 +3447,10 @@ __metadata: languageName: node linkType: hard -"@babel/runtime@npm:^7.28.4": - version: 7.28.4 - resolution: "@babel/runtime@npm:7.28.4" - checksum: 10c0/792ce7af9750fb9b93879cc9d1db175701c4689da890e6ced242ea0207c9da411ccf16dc04e689cc01158b28d7898c40d75598f4559109f761c12ce01e959bf7 +"@babel/runtime@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/runtime@npm:7.28.6" + checksum: 10c0/358cf2429992ac1c466df1a21c1601d595c46930a13c1d4662fde908d44ee78ec3c183aaff513ecb01ef8c55c3624afe0309eeeb34715672dbfadb7feedb2c0d languageName: node linkType: hard @@ -2991,6 +3465,17 @@ __metadata: languageName: node linkType: hard +"@babel/template@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/template@npm:7.28.6" + dependencies: + "@babel/code-frame": "npm:^7.28.6" + "@babel/parser": "npm:^7.28.6" + "@babel/types": "npm:^7.28.6" + checksum: 10c0/66d87225ed0bc77f888181ae2d97845021838c619944877f7c4398c6748bcf611f216dfd6be74d39016af502bca876e6ce6873db3c49e4ac354c56d34d57e9f5 + languageName: node + linkType: hard + "@babel/traverse--for-generate-function-map@npm:@babel/traverse@^7.25.3, @babel/traverse@npm:^7.1.6, @babel/traverse@npm:^7.25.3, @babel/traverse@npm:^7.25.4, @babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.28.0, @babel/traverse@npm:^7.28.3, @babel/traverse@npm:^7.28.4, @babel/traverse@npm:^7.28.5": version: 7.28.5 resolution: "@babel/traverse@npm:7.28.5" @@ -3006,7 +3491,22 @@ __metadata: languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.1.6, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.24.7, @babel/types@npm:^7.25.2, @babel/types@npm:^7.25.4, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.2, @babel/types@npm:^7.28.4, @babel/types@npm:^7.28.5, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4": +"@babel/traverse@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/traverse@npm:7.28.6" + dependencies: + "@babel/code-frame": "npm:^7.28.6" + "@babel/generator": "npm:^7.28.6" + "@babel/helper-globals": "npm:^7.28.0" + "@babel/parser": "npm:^7.28.6" + "@babel/template": "npm:^7.28.6" + "@babel/types": "npm:^7.28.6" + debug: "npm:^4.3.1" + checksum: 10c0/ed5deb9c3f03e2d1ad2d44b9c92c84cce24593245c3f7871ce27ee1b36d98034e6cd895fa98a94eb44ebabe1d22f51b10b09432939d1c51a0fcaab98f17a97bc + languageName: node + linkType: hard + +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.1.6, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.24.7, @babel/types@npm:^7.25.2, @babel/types@npm:^7.25.4, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.2, @babel/types@npm:^7.28.5, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4": version: 7.28.5 resolution: "@babel/types@npm:7.28.5" dependencies: @@ -3016,6 +3516,16 @@ __metadata: languageName: node linkType: hard +"@babel/types@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/types@npm:7.28.6" + dependencies: + "@babel/helper-string-parser": "npm:^7.27.1" + "@babel/helper-validator-identifier": "npm:^7.28.5" + checksum: 10c0/54a6a9813e48ef6f35aa73c03b3c1572cad7fa32b61b35dd07e4230bc77b559194519c8a4d8106a041a27cc7a94052579e238a30a32d5509aa4da4d6fd83d990 + languageName: node + linkType: hard + "@bcoe/v8-coverage@npm:^0.2.3": version: 0.2.3 resolution: "@bcoe/v8-coverage@npm:0.2.3" @@ -4281,7 +4791,7 @@ __metadata: languageName: node linkType: hard -"@ethersproject/shims@npm:^5.7.0": +"@ethersproject/shims@npm:^5.8.0": version: 5.8.0 resolution: "@ethersproject/shims@npm:5.8.0" checksum: 10c0/4cb851dd366928694cfe186c782bf19015f5650758ba88541e0e50ec8188f82d6d5dfb7e22813989f1f46ebb2b19c30407b83639bba0aae9e9e131d2e046ea3e @@ -7001,9 +7511,9 @@ __metadata: languageName: node linkType: hard -"@peculiar/x509@npm:^1.12.3, @peculiar/x509@npm:^1.13.0": - version: 1.14.2 - resolution: "@peculiar/x509@npm:1.14.2" +"@peculiar/x509@npm:^1.14.3": + version: 1.14.3 + resolution: "@peculiar/x509@npm:1.14.3" dependencies: "@peculiar/asn1-cms": "npm:^2.6.0" "@peculiar/asn1-csr": "npm:^2.6.0" @@ -7016,7 +7526,7 @@ __metadata: reflect-metadata: "npm:^0.2.2" tslib: "npm:^2.8.1" tsyringe: "npm:^4.10.0" - checksum: 10c0/b62ecca8d7a3364f3541f8db811198877001480deca25fd90df77409e7c0bcaa08c7f12ce4401835b70e03014e8410fcc17a4fc49a09546dea5e55d7d1c61187 + checksum: 10c0/949231ca9daf84534bfe255f28a856df497302fed294d227c6a28e50f5cfb67ed1d91afe6db787b88294ce042295243dbcb44455fe2efa5ed07428a74392eec9 languageName: node linkType: hard @@ -7691,10 +8201,10 @@ __metadata: languageName: node linkType: hard -"@rolldown/pluginutils@npm:1.0.0-beta.27": - version: 1.0.0-beta.27 - resolution: "@rolldown/pluginutils@npm:1.0.0-beta.27" - checksum: 10c0/9658f235b345201d4f6bfb1f32da9754ca164f892d1cb68154fe5f53c1df42bd675ecd409836dff46884a7847d6c00bdc38af870f7c81e05bba5c2645eb4ab9c +"@rolldown/pluginutils@npm:1.0.0-beta.47": + version: 1.0.0-beta.47 + resolution: "@rolldown/pluginutils@npm:1.0.0-beta.47" + checksum: 10c0/eb0cfa7334d66f090c47eaac612174936b05f26e789352428cb6e03575b590f355de30d26b42576ea4e613d8887b587119d19b2e4b3a8909ceb232ca1cf746c8 languageName: node linkType: hard @@ -8232,6 +8742,7 @@ __metadata: resolution: "@selfxyz/circuits@workspace:circuits" dependencies: "@anon-aadhaar/core": "npm:@selfxyz/anon-aadhaar-core@^0.0.1" + "@babel/core": "npm:^7.28.6" "@noble/curves": "npm:^1.4.2" "@openpassport/zk-email-circuits": "npm:^6.1.2" "@openpassport/zk-kit-imt": "npm:^0.0.4" @@ -8266,6 +8777,8 @@ __metadata: crypto: "npm:^1.0.1" dotenv: "npm:^16.4.7" elliptic: "npm:^6.5.5" + eslint: "npm:^8.57.0" + eslint-plugin-import: "npm:^2.31.0" hash.js: "npm:^1.1.7" js-sha256: "npm:^0.10.1" jsrsasign: "npm:^11.1.0" @@ -8291,7 +8804,7 @@ __metadata: "@openpassport/zk-kit-imt": "npm:^0.0.5" "@openpassport/zk-kit-lean-imt": "npm:^0.0.6" "@openpassport/zk-kit-smt": "npm:^0.0.1" - "@peculiar/x509": "npm:^1.12.3" + "@peculiar/x509": "npm:^1.14.3" "@stablelib/cbor": "npm:^2.0.1" "@types/js-sha1": "npm:^0.6.3" "@types/node": "npm:^22.18.3" @@ -8302,7 +8815,7 @@ __metadata: "@zk-kit/baby-jubjub": "npm:^1.0.3" "@zk-kit/eddsa-poseidon": "npm:^1.1.0" asn1.js: "npm:^5.4.1" - asn1js: "npm:^3.0.5" + asn1js: "npm:^3.0.7" axios: "npm:^1.7.2" buffer: "npm:^6.0.3" country-emoji: "npm:^1.5.6" @@ -8324,12 +8837,12 @@ __metadata: jsrsasign: "npm:^11.1.0" node-forge: "github:remicolin/forge#17a11a632dd0e50343b3b8393245a2696f78afbb" path: "npm:^0.12.7" - pkijs: "npm:^3.2.4" + pkijs: "npm:^3.3.3" poseidon-lite: "npm:^0.2.0" prettier: "npm:^3.5.3" snarkjs: "npm:^0.7.5" tsup: "npm:^8.5.0" - typescript: "npm:^5.9.2" + typescript: "npm:^5.9.3" typescript-parser: "npm:^2.6.1" uuid: "npm:^11.1.0" vitest: "npm:^2.1.8" @@ -8416,7 +8929,7 @@ __metadata: js-sha1: "npm:^0.7.0" js-sha256: "npm:^0.11.0" js-sha512: "npm:^0.9.0" - node-forge: "npm:^1.3.1" + node-forge: "npm:^1.3.3" poseidon-lite: "npm:^0.3.0" prettier: "npm:^3.5.3" snarkjs: "npm:^0.7.4" @@ -8424,7 +8937,7 @@ __metadata: ts-node: "npm:^10.9.2" tsup: "npm:^8.5.0" typechain: "npm:^8.3.2" - typescript: "npm:^5.9.2" + typescript: "npm:^5.9.3" uuid: "npm:^11.1.0" webpack: "npm:^5.95.0" languageName: unknown @@ -8447,21 +8960,21 @@ __metadata: version: 0.0.0-use.local resolution: "@selfxyz/mobile-app@workspace:app" dependencies: - "@babel/core": "npm:^7.28.3" - "@babel/plugin-syntax-flow": "npm:^7.27.1" - "@babel/plugin-transform-classes": "npm:^7.27.1" + "@babel/core": "npm:^7.28.6" + "@babel/plugin-syntax-flow": "npm:^7.28.6" + "@babel/plugin-transform-classes": "npm:^7.28.6" "@babel/plugin-transform-export-namespace-from": "npm:^7.27.1" "@babel/plugin-transform-flow-strip-types": "npm:^7.27.1" - "@babel/plugin-transform-private-methods": "npm:^7.27.1" - "@babel/preset-env": "npm:^7.28.3" - "@babel/preset-react": "npm:^7.27.1" - "@babel/runtime": "npm:^7.28.3" - "@ethersproject/shims": "npm:^5.7.0" + "@babel/plugin-transform-private-methods": "npm:^7.28.6" + "@babel/preset-env": "npm:^7.28.6" + "@babel/preset-react": "npm:^7.28.5" + "@babel/runtime": "npm:^7.28.6" + "@ethersproject/shims": "npm:^5.8.0" "@noble/hashes": "npm:^1.5.0" "@openpassport/zk-kit-imt": "npm:^0.0.5" "@openpassport/zk-kit-lean-imt": "npm:^0.0.6" "@openpassport/zk-kit-smt": "npm:^0.0.1" - "@peculiar/x509": "npm:^1.13.0" + "@peculiar/x509": "npm:^1.14.3" "@react-native-async-storage/async-storage": "npm:^2.2.0" "@react-native-clipboard/clipboard": "npm:1.16.3" "@react-native-community/blur": "npm:^4.4.1" @@ -8484,7 +8997,7 @@ __metadata: "@selfxyz/euclid": "npm:^0.6.1" "@selfxyz/mobile-sdk-alpha": "workspace:^" "@sentry/react": "npm:^9.32.0" - "@sentry/react-native": "npm:7.0.1" + "@sentry/react-native": "npm:7.0.0" "@stablelib/cbor": "npm:^2.0.1" "@sumsub/react-native-mobilesdk-module": "npm:1.40.2" "@tamagui/animations-css": "npm:1.126.14" @@ -8515,17 +9028,17 @@ __metadata: "@types/react-test-renderer": "npm:^18" "@typescript-eslint/eslint-plugin": "npm:^8.39.0" "@typescript-eslint/parser": "npm:^8.39.0" - "@vitejs/plugin-react-swc": "npm:^3.10.2" + "@vitejs/plugin-react-swc": "npm:^4.2.2" "@walletconnect/react-native-compat": "npm:^2.23.0" "@xstate/react": "npm:^5.0.3" - asn1js: "npm:^3.0.6" + asn1js: "npm:^3.0.7" axios: "npm:^1.13.2" babel-plugin-module-resolver: "npm:^5.0.2" babel-plugin-transform-remove-console: "npm:^6.9.4" buffer: "npm:^6.0.3" constants-browserify: "npm:^1.0.0" country-emoji: "npm:^1.5.6" - dompurify: "npm:^3.2.6" + dompurify: "npm:^3.3.1" elliptic: "npm:^6.6.1" eslint: "npm:^8.57.0" eslint-config-prettier: "npm:10.1.8" @@ -8548,11 +9061,12 @@ __metadata: js-sha512: "npm:^0.9.0" lottie-react: "npm:^2.4.1" lottie-react-native: "npm:7.2.2" - node-forge: "npm:^1.3.1" + node-forge: "npm:^1.3.3" path-browserify: "npm:^1.0.1" - pkijs: "npm:^3.2.5" + pkijs: "npm:^3.3.3" poseidon-lite: "npm:^0.2.0" prettier: "npm:^3.5.3" + prop-types: "npm:^15.8.1" react: "npm:^18.3.1" react-dom: "npm:^18.3.1" react-native: "npm:0.76.9" @@ -8561,7 +9075,7 @@ __metadata: react-native-blur-effect: "npm:^1.1.3" react-native-check-version: "npm:^1.3.0" react-native-cloud-storage: "npm:^2.2.2" - react-native-device-info: "npm:^14.0.4" + react-native-device-info: "npm:^15.0.1" react-native-dotenv: "npm:^3.4.11" react-native-edge-to-edge: "npm:^1.7.0" react-native-gesture-handler: "npm:2.19.0" @@ -8570,31 +9084,31 @@ __metadata: react-native-inappbrowser-reborn: "npm:^3.7.0" react-native-keychain: "npm:^10.0.0" react-native-linear-gradient: "npm:^2.8.3" - react-native-localize: "npm:^3.5.2" - react-native-logs: "npm:^5.3.0" - react-native-nfc-manager: "npm:3.16.3" - react-native-passkey: "npm:^3.3.1" + react-native-localize: "npm:^3.6.1" + react-native-logs: "npm:^5.5.0" + react-native-nfc-manager: "npm:3.17.2" + react-native-passkey: "npm:^3.3.2" react-native-passport-reader: "npm:1.0.3" - react-native-safe-area-context: "npm:^5.6.1" + react-native-safe-area-context: "npm:^5.6.2" react-native-screens: "npm:4.15.3" react-native-sqlite-storage: "npm:^6.0.1" - react-native-svg: "npm:15.15.0" - react-native-svg-transformer: "npm:^1.5.1" + react-native-svg: "npm:15.12.1" + react-native-svg-transformer: "npm:^1.5.2" react-native-svg-web: "npm:1.0.9" react-native-url-polyfill: "npm:^3.0.0" - react-native-web: "npm:^0.19.0" + react-native-web: "npm:^0.21.2" react-native-webview: "npm:^13.16.0" react-qr-barcode-scanner: "npm:^2.1.8" react-test-renderer: "npm:^18.3.1" - rollup-plugin-visualizer: "npm:^6.0.3" + rollup-plugin-visualizer: "npm:^6.0.5" socket.io-client: "npm:^4.8.3" stream-browserify: "npm:^3.0.0" tamagui: "npm:1.126.14" ts-morph: "npm:^22.0.0" ts-node: "npm:^10.9.2" - typescript: "npm:^5.9.2" + typescript: "npm:^5.9.3" uuid: "npm:^11.1.0" - vite: "npm:^7.0.0" + vite: "npm:^7.3.1" vite-plugin-svgr: "npm:^4.5.0" xstate: "npm:^5.20.2" zustand: "npm:^4.5.2" @@ -8605,7 +9119,7 @@ __metadata: version: 0.0.0-use.local resolution: "@selfxyz/mobile-sdk-alpha@workspace:packages/mobile-sdk-alpha" dependencies: - "@babel/runtime": "npm:^7.28.3" + "@babel/runtime": "npm:^7.28.6" "@openpassport/zk-kit-lean-imt": "npm:^0.0.6" "@selfxyz/common": "workspace:^" "@selfxyz/euclid": "npm:^0.6.1" @@ -8625,20 +9139,23 @@ __metadata: eslint-plugin-sort-exports: "npm:^0.9.1" jsdom: "npm:^25.0.1" lottie-react-native: "npm:7.2.2" - node-forge: "npm:^1.3.1" + node-forge: "npm:^1.3.3" poseidon-lite: "npm:^0.3.0" prettier: "npm:^3.5.3" react: "npm:^18.3.1" react-dom: "npm:^18.3.1" react-native: "npm:0.76.9" + react-native-blur-effect: "npm:^1.1.3" react-native-haptic-feedback: "npm:^2.3.3" - react-native-localize: "npm:^3.5.2" - react-native-nfc-manager: "npm:^3.17.1" + react-native-localize: "npm:^3.6.1" + react-native-nfc-manager: "npm:^3.17.2" + react-native-svg: "npm:15.15.1" react-native-svg-circle-country-flags: "npm:^0.2.2" - react-native-web: "npm:^0.21.1" - socket.io-client: "npm:^4.8.1" + react-native-web: "npm:^0.21.2" + react-native-webview: "npm:13.16.0" + socket.io-client: "npm:^4.8.3" tsup: "npm:^8.0.1" - typescript: "npm:^5.9.2" + typescript: "npm:^5.9.3" uuid: "npm:^11.1.0" vitest: "npm:^2.1.8" xstate: "npm:^5.20.2" @@ -8686,9 +9203,9 @@ __metadata: ngx-lottie: "npm:^20.0.0" prettier: "npm:^3.5.3" rxjs: "npm:^7.8.0" - socket.io-client: "npm:^4.8.1" + socket.io-client: "npm:^4.8.3" tslib: "npm:^2.6.0" - typescript: "npm:~5.9.0" + typescript: "npm:~5.9.3" uuid: "npm:^11.1.0" zone.js: "npm:^0.15.0" peerDependencies: @@ -8725,7 +9242,7 @@ __metadata: js-sha512: "npm:^0.9.0" lottie-react: "npm:^2.4.0" mocha: "npm:^10.7.3" - node-forge: "npm:^1.3.1" + node-forge: "npm:^1.3.3" poseidon-lite: "npm:^0.3.0" prettier: "npm:^3.5.3" qrcode.react: "npm:^4.1.0" @@ -8733,12 +9250,12 @@ __metadata: react-dom: "npm:>=18.0.0 <20.0.0" react-spinners: "npm:^0.14.1" size-limit: "npm:^11.2.0" - socket.io-client: "npm:^4.8.1" + socket.io-client: "npm:^4.8.3" ts-loader: "npm:^9.5.1" ts-mocha: "npm:^10.0.0" ts-node: "npm:^10.9.2" tsup: "npm:^8.5.0" - typescript: "npm:^5.9.2" + typescript: "npm:^5.9.3" uuid: "npm:^11.1.0" webpack: "npm:^5.95.0" peerDependencies: @@ -8752,7 +9269,7 @@ __metadata: version: 0.0.0-use.local resolution: "@selfxyz/sdk-common@workspace:sdk/sdk-common" dependencies: - typescript: "npm:^5.9.2" + typescript: "npm:^5.9.3" uuid: "npm:^13.0.0" languageName: unknown linkType: soft @@ -8833,10 +9350,10 @@ __metadata: languageName: node linkType: hard -"@sentry/babel-plugin-component-annotate@npm:4.3.0": - version: 4.3.0 - resolution: "@sentry/babel-plugin-component-annotate@npm:4.3.0" - checksum: 10c0/3b75b9fe408d777f2a1601c636c980bec46cbca7d80715b5cb4a32c51173d8b400886637ef1453627408dc10884289c7e186267775737e08a23851ed9485c956 +"@sentry/babel-plugin-component-annotate@npm:4.2.0": + version: 4.2.0 + resolution: "@sentry/babel-plugin-component-annotate@npm:4.2.0" + checksum: 10c0/595a46e9436665371c668a7522ca59ee1b37bf72ac79d762de6e148f7ca2c6e7f67cee0cb07c3f42c35286401b0dd74e85e1a29368812befa8e66d3b35b83b50 languageName: node linkType: hard @@ -9028,11 +9545,11 @@ __metadata: languageName: node linkType: hard -"@sentry/react-native@npm:7.0.1": - version: 7.0.1 - resolution: "@sentry/react-native@npm:7.0.1" +"@sentry/react-native@npm:7.0.0": + version: 7.0.0 + resolution: "@sentry/react-native@npm:7.0.0" dependencies: - "@sentry/babel-plugin-component-annotate": "npm:4.3.0" + "@sentry/babel-plugin-component-annotate": "npm:4.2.0" "@sentry/browser": "npm:10.8.0" "@sentry/cli": "npm:2.53.0" "@sentry/core": "npm:10.8.0" @@ -9047,7 +9564,7 @@ __metadata: optional: true bin: sentry-expo-upload-sourcemaps: scripts/expo-upload-sourcemaps.js - checksum: 10c0/c8d877c8a64d01777ba68ae75594140ee1795b53cbe6130bc1319bab56ce92a63404fe346231efa42e030ecf05f969a02d40eb175495553bc3c32c1853d1f8b6 + checksum: 10c0/3b74712c9d79467aea969394b5bda1b2d954ac94997274abb686b0ba299341cfd3e96032eee71951e6e6627c02d3f6c947f617bae317ef2050618a04730a3c5b languageName: node linkType: hard @@ -13835,16 +14352,7 @@ __metadata: languageName: node linkType: hard -"@types/react-dom@npm:>=18.0.0 <20.0.0": - version: 19.2.3 - resolution: "@types/react-dom@npm:19.2.3" - peerDependencies: - "@types/react": ^19.2.0 - checksum: 10c0/b486ebe0f4e2fb35e2e108df1d8fc0927ca5d6002d5771e8a739de11239fe62d0e207c50886185253c99eb9dedfeeb956ea7429e5ba17f6693c7acb4c02f8cd1 - languageName: node - linkType: hard - -"@types/react-dom@npm:^18.0.0, @types/react-dom@npm:^18.3.0": +"@types/react-dom@npm:^18.3.0": version: 18.3.7 resolution: "@types/react-dom@npm:18.3.7" peerDependencies: @@ -14548,15 +15056,15 @@ __metadata: languageName: node linkType: hard -"@vitejs/plugin-react-swc@npm:^3.10.2": - version: 3.11.0 - resolution: "@vitejs/plugin-react-swc@npm:3.11.0" +"@vitejs/plugin-react-swc@npm:^4.2.2": + version: 4.2.2 + resolution: "@vitejs/plugin-react-swc@npm:4.2.2" dependencies: - "@rolldown/pluginutils": "npm:1.0.0-beta.27" - "@swc/core": "npm:^1.12.11" + "@rolldown/pluginutils": "npm:1.0.0-beta.47" + "@swc/core": "npm:^1.13.5" peerDependencies: vite: ^4 || ^5 || ^6 || ^7 - checksum: 10c0/0d12ee81f8c8acb74b35e7acfc45d23ecc2714ab3a0f6060e4bd900a6a739dd5a9be9c6bc842388f3c406f475f2a83e7ff3ade04ec6df9172faa1242e4faa424 + checksum: 10c0/fe6346df2659007fab2b4840716b8b15cb1e33aa23865998e0295750a98eaf6090c6b04d90e9f1efd91bc71d057a7bb89fbd008476b727fd20b68e06cac75fa0 languageName: node linkType: hard @@ -16222,7 +16730,7 @@ __metadata: languageName: node linkType: hard -"asn1js@npm:^3.0.5, asn1js@npm:^3.0.6": +"asn1js@npm:^3.0.5, asn1js@npm:^3.0.6, asn1js@npm:^3.0.7": version: 3.0.7 resolution: "asn1js@npm:3.0.7" dependencies: @@ -19264,7 +19772,7 @@ __metadata: languageName: node linkType: hard -"dompurify@npm:*, dompurify@npm:^3.2.6": +"dompurify@npm:*, dompurify@npm:^3.3.1": version: 3.3.1 resolution: "dompurify@npm:3.3.1" dependencies: @@ -21319,13 +21827,6 @@ __metadata: languageName: node linkType: hard -"fast-loops@npm:^1.1.3": - version: 1.1.4 - resolution: "fast-loops@npm:1.1.4" - checksum: 10c0/25e8a608fccc0d84c1d037efa715ab1e6f21576e1070931b3ed966657204c47ed2b1cba16e5c46ddde2d62aba0b4100d86616d995318b7367fa0a902a78ed885 - languageName: node - linkType: hard - "fast-text-encoding@npm:1.0.6": version: 1.0.6 resolution: "fast-text-encoding@npm:1.0.6" @@ -23352,16 +23853,6 @@ __metadata: languageName: node linkType: hard -"inline-style-prefixer@npm:^6.0.1": - version: 6.0.4 - resolution: "inline-style-prefixer@npm:6.0.4" - dependencies: - css-in-js-utils: "npm:^3.1.0" - fast-loops: "npm:^1.1.3" - checksum: 10c0/d3d42bf0c48d621ea4bcfb077b5d370b106995422300a3a472674f96c9b489d96b4aac6f29dea3bb26ff2dfd7293e4752098bc2b53407769eafdb66c6c4c1764 - languageName: node - linkType: hard - "inline-style-prefixer@npm:^7.0.1": version: 7.0.1 resolution: "inline-style-prefixer@npm:7.0.1" @@ -26808,8 +27299,8 @@ __metadata: version: 0.0.0-use.local resolution: "mobile-sdk-demo@workspace:packages/mobile-sdk-demo" dependencies: - "@babel/core": "npm:^7.28.3" - "@babel/runtime": "npm:^7.28.3" + "@babel/core": "npm:^7.28.6" + "@babel/runtime": "npm:^7.28.6" "@faker-js/faker": "npm:^10.0.0" "@noble/hashes": "npm:^1.5.0" "@react-native-async-storage/async-storage": "npm:^2.2.0" @@ -26854,14 +27345,14 @@ __metadata: react-native-get-random-values: "npm:^1.11.0" react-native-haptic-feedback: "npm:^2.3.3" react-native-keychain: "npm:^10.0.0" - react-native-localize: "npm:^3.5.4" - react-native-safe-area-context: "npm:^5.6.1" - react-native-svg: "npm:15.12.1" - react-native-svg-transformer: "npm:^1.5.1" + react-native-localize: "npm:^3.6.1" + react-native-safe-area-context: "npm:^5.6.2" + react-native-svg: "npm:15.15.1" + react-native-svg-transformer: "npm:^1.5.2" react-native-vector-icons: "npm:^10.3.0" react-native-webview: "npm:13.16.0" stream-browserify: "npm:^3.0.0" - typescript: "npm:^5.9.2" + typescript: "npm:^5.9.3" util: "npm:^0.12.5" vitest: "npm:^2.1.8" languageName: unknown @@ -27343,7 +27834,7 @@ __metadata: languageName: node linkType: hard -"node-forge@npm:^1, node-forge@npm:^1.3.1": +"node-forge@npm:^1, node-forge@npm:^1.3.1, node-forge@npm:^1.3.3": version: 1.3.3 resolution: "node-forge@npm:1.3.3" checksum: 10c0/9c6f53b0ebb34865872cf62a35b0aef8fb337e2efc766626c2e3a0040f4c02933bf29a62ba999eb44a2aca73bd512c4eda22705a47b94654b9fb8ed53db9a1db @@ -28767,7 +29258,7 @@ __metadata: languageName: node linkType: hard -"pkijs@npm:^3.2.4, pkijs@npm:^3.2.5": +"pkijs@npm:^3.3.3": version: 3.3.3 resolution: "pkijs@npm:3.3.3" dependencies: @@ -29597,12 +30088,12 @@ __metadata: languageName: node linkType: hard -"react-native-device-info@npm:^14.0.4": - version: 14.1.1 - resolution: "react-native-device-info@npm:14.1.1" +"react-native-device-info@npm:^15.0.1": + version: 15.0.1 + resolution: "react-native-device-info@npm:15.0.1" peerDependencies: react-native: "*" - checksum: 10c0/38ae82b2364b8af5b5cfdd142842bb7dd53b2e37b7225b375ac2f5ebf9272c5250fec2fb08cb58af494339c2341de617393717fc5488c575a5b9d817237d7f54 + checksum: 10c0/f33a28b44bc9a67939f2c837ea55c6f59f3096323b5ccc834093bece941d343bad3d86b0faa9340004c2e657abe47fac6cee539d9274f5fabfb5745bfdc77c92 languageName: node linkType: hard @@ -29701,9 +30192,9 @@ __metadata: languageName: node linkType: hard -"react-native-localize@npm:^3.5.2, react-native-localize@npm:^3.5.4": - version: 3.6.0 - resolution: "react-native-localize@npm:3.6.0" +"react-native-localize@npm:^3.6.1": + version: 3.6.1 + resolution: "react-native-localize@npm:3.6.1" peerDependencies: "@expo/config-plugins": "*" react: "*" @@ -29714,30 +30205,18 @@ __metadata: optional: true react-native-macos: optional: true - checksum: 10c0/3ab63261152f56a9ef9d7413f206b50615483d2fa2f0f07b4fda34b3f95bd66d54c1ec35c8eb445326252855db0299ff6fdb7167422711bb0337994d9605a94d + checksum: 10c0/d36f00c07d390aa86e72064266d4b21924920a900647bb99175aeccc7f67aad8e4fcebc7c4a932f3faf97221a0e3df78bd08f204bd4ba6fc5afc8386c8d4be71 languageName: node linkType: hard -"react-native-logs@npm:^5.3.0": +"react-native-logs@npm:^5.5.0": version: 5.5.0 resolution: "react-native-logs@npm:5.5.0" checksum: 10c0/38b011a5cff39c672821baa15bf09e6a98caeab0b64cf6778fcf765f89382799b04dcb604399d016940796106d4187411add84d1de485dd38655c5dc9fc078c9 languageName: node linkType: hard -"react-native-nfc-manager@npm:3.16.3": - version: 3.16.3 - resolution: "react-native-nfc-manager@npm:3.16.3" - peerDependencies: - "@expo/config-plugins": 9 || 10 - peerDependenciesMeta: - "@expo/config-plugins": - optional: true - checksum: 10c0/11f86b564cbd9b2cc8d8f54b069d2985b2eb491cf815136583641c8d10fcf19fc3c49b2c467de40a5324ba24daf83aed587b32bb04975e795ede0a76bd718e74 - languageName: node - linkType: hard - -"react-native-nfc-manager@npm:^3.17.1": +"react-native-nfc-manager@npm:3.17.2, react-native-nfc-manager@npm:^3.17.2": version: 3.17.2 resolution: "react-native-nfc-manager@npm:3.17.2" peerDependencies: @@ -29766,7 +30245,7 @@ __metadata: languageName: node linkType: hard -"react-native-safe-area-context@npm:^5.6.1": +"react-native-safe-area-context@npm:^5.6.2": version: 5.6.2 resolution: "react-native-safe-area-context@npm:5.6.2" peerDependencies: @@ -29810,7 +30289,7 @@ __metadata: languageName: node linkType: hard -"react-native-svg-transformer@npm:^1.5.1": +"react-native-svg-transformer@npm:^1.5.2": version: 1.5.2 resolution: "react-native-svg-transformer@npm:1.5.2" dependencies: @@ -29850,9 +30329,9 @@ __metadata: languageName: node linkType: hard -"react-native-svg@npm:15.15.0": - version: 15.15.0 - resolution: "react-native-svg@npm:15.15.0" +"react-native-svg@npm:15.15.1": + version: 15.15.1 + resolution: "react-native-svg@npm:15.15.1" dependencies: css-select: "npm:^5.1.0" css-tree: "npm:^1.1.3" @@ -29860,7 +30339,7 @@ __metadata: peerDependencies: react: "*" react-native: "*" - checksum: 10c0/0da39529fedcc84d2deaad19e261453069675520cb446a08d97eebc10f1205ce0393a9760ad58bc7b80feaa60e94c30d2d5b90d3111451f260b3888a4fbc2e06 + checksum: 10c0/9e047e8afdd5121296a3402c5c37363b9b37fbddc41f7b0b49b923ac4d2898954c8b57a6784a625321236987e494ee54f594e22f9de815f807e03a3433d7fefd languageName: node linkType: hard @@ -29901,25 +30380,6 @@ __metadata: languageName: node linkType: hard -"react-native-web@npm:^0.19.0": - version: 0.19.13 - resolution: "react-native-web@npm:0.19.13" - dependencies: - "@babel/runtime": "npm:^7.18.6" - "@react-native/normalize-colors": "npm:^0.74.1" - fbjs: "npm:^3.0.4" - inline-style-prefixer: "npm:^6.0.1" - memoize-one: "npm:^6.0.0" - nullthrows: "npm:^1.1.1" - postcss-value-parser: "npm:^4.2.0" - styleq: "npm:^0.1.3" - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 - checksum: 10c0/55e82a6f656843b2b4f6e4c4006a82ae8feed548e880e9fa3c2623da415d3abd9399c91c5360b71d5f24f47c5cbe30872a3ad785fa1a32cf152383d595f8ebd5 - languageName: node - linkType: hard - "react-native-web@npm:^0.20.0": version: 0.20.0 resolution: "react-native-web@npm:0.20.0" @@ -29939,7 +30399,7 @@ __metadata: languageName: node linkType: hard -"react-native-web@npm:^0.21.1": +"react-native-web@npm:^0.21.2": version: 0.21.2 resolution: "react-native-web@npm:0.21.2" dependencies: @@ -30702,7 +31162,7 @@ __metadata: languageName: node linkType: hard -"rollup-plugin-visualizer@npm:^6.0.3": +"rollup-plugin-visualizer@npm:^6.0.5": version: 6.0.5 resolution: "rollup-plugin-visualizer@npm:6.0.5" dependencies: @@ -31154,7 +31614,7 @@ __metadata: version: 0.0.0-use.local resolution: "self-workspace-root@workspace:." dependencies: - "@babel/runtime": "npm:^7.28.3" + "@babel/runtime": "npm:^7.28.6" "@react-native-community/cli-server-api": "npm:^16.0.3" "@types/node": "npm:^22.18.3" gitleaks: "npm:1.0.0" @@ -31166,7 +31626,7 @@ __metadata: react: "npm:^18.3.1" react-native: "npm:0.76.9" tsx: "npm:^4.21.0" - typescript: "npm:^5.9.2" + typescript: "npm:^5.9.3" uuid: "npm:^13.0.0" languageName: unknown linkType: soft @@ -31792,7 +32252,7 @@ __metadata: languageName: node linkType: hard -"socket.io-client@npm:^4.8.1, socket.io-client@npm:^4.8.3": +"socket.io-client@npm:^4.8.3": version: 4.8.3 resolution: "socket.io-client@npm:4.8.3" dependencies: @@ -33759,7 +34219,7 @@ __metadata: languageName: node linkType: hard -"typescript@npm:^5.8.2, typescript@npm:^5.9.2, typescript@npm:~5.9.0": +"typescript@npm:^5.8.2, typescript@npm:^5.9.2, typescript@npm:^5.9.3, typescript@npm:~5.9.3": version: 5.9.3 resolution: "typescript@npm:5.9.3" bin: @@ -33779,7 +34239,7 @@ __metadata: languageName: node linkType: hard -"typescript@patch:typescript@npm%3A^5.8.2#optional!builtin, typescript@patch:typescript@npm%3A^5.9.2#optional!builtin, typescript@patch:typescript@npm%3A~5.9.0#optional!builtin": +"typescript@patch:typescript@npm%3A^5.8.2#optional!builtin, typescript@patch:typescript@npm%3A^5.9.2#optional!builtin, typescript@patch:typescript@npm%3A^5.9.3#optional!builtin, typescript@patch:typescript@npm%3A~5.9.3#optional!builtin": version: 5.9.3 resolution: "typescript@patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5" bin: @@ -34498,9 +34958,9 @@ __metadata: languageName: node linkType: hard -"vite@npm:^7.0.0": - version: 7.3.0 - resolution: "vite@npm:7.3.0" +"vite@npm:^7.3.1": + version: 7.3.1 + resolution: "vite@npm:7.3.1" dependencies: esbuild: "npm:^0.27.0" fdir: "npm:^6.5.0" @@ -34549,7 +35009,7 @@ __metadata: optional: true bin: vite: bin/vite.js - checksum: 10c0/0457c196cdd5761ec351c0f353945430fbad330e615b9eeab729c8ae163334f18acdc1d9cd7d9d673dbf111f07f6e4f0b25d4ac32360e65b4a6df9991046f3ff + checksum: 10c0/5c7548f5f43a23533e53324304db4ad85f1896b1bfd3ee32ae9b866bac2933782c77b350eb2b52a02c625c8ad1ddd4c000df077419410650c982cd97fde8d014 languageName: node linkType: hard