diff --git a/apps/backend/sentry.client.config.ts b/apps/backend/instrumentation-client.ts similarity index 100% rename from apps/backend/sentry.client.config.ts rename to apps/backend/instrumentation-client.ts diff --git a/apps/backend/package.json b/apps/backend/package.json index 70f3f02e6..7b9d2f80f 100644 --- a/apps/backend/package.json +++ b/apps/backend/package.json @@ -8,7 +8,7 @@ "typecheck": "tsc --noEmit", "with-env": "dotenv -c development --", "with-env:prod": "dotenv -c --", - "dev": "concurrently -n \"dev,codegen,prisma-studio,email-queue\" -k \"next dev --turbopack --port ${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}02\" \"pnpm run codegen:watch\" \"pnpm run prisma-studio\" \"pnpm run run-email-queue\"", + "dev": "concurrently -n \"dev,codegen,prisma-studio,email-queue\" -k \"next dev --port ${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}02\" \"pnpm run codegen:watch\" \"pnpm run prisma-studio\" \"pnpm run run-email-queue\"", "build": "pnpm run codegen && next build", "docker-build": "pnpm run codegen && next build --experimental-build-mode compile", "build-self-host-migration-script": "tsup --config scripts/db-migrations.tsup.config.ts", @@ -45,7 +45,7 @@ "dependencies": { "@ai-sdk/openai": "^1.3.23", "@aws-sdk/client-s3": "^3.855.0", - "@next/bundle-analyzer": "15.2.3", + "@next/bundle-analyzer": "16.0.10", "@node-oauth/oauth2-server": "^5.1.0", "@opentelemetry/api": "^1.9.0", "@opentelemetry/api-logs": "^0.53.0", @@ -79,15 +79,15 @@ "freestyle-sandboxes": "^0.0.92", "jose": "^5.2.2", "json-diff": "^1.0.6", - "next": "15.4.9", + "next": "16.0.10", "nodemailer": "^6.9.10", "oidc-provider": "^8.5.1", "openid-client": "5.6.4", "pg": "^8.16.3", "postgres": "^3.4.5", "posthog-node": "^4.1.0", - "react": "19.0.1", - "react-dom": "19.0.1", + "react": "19.2.3", + "react-dom": "19.2.3", "resend": "^6.0.1", "semver": "^7.6.3", "sharp": "^0.34.4", @@ -104,8 +104,8 @@ "@types/node": "20.17.6", "@types/nodemailer": "^6.4.14", "@types/oidc-provider": "^8.5.1", - "@types/react": "19.0.12", - "@types/react-dom": "19.0.4", + "@types/react": "19.2.7", + "@types/react-dom": "19.2.3", "@types/semver": "^7.5.8", "concurrently": "^8.2.2", "glob": "^10.4.1", @@ -118,8 +118,8 @@ }, "pnpm": { "overrides": { - "@types/react": "19.0.12", - "@types/react-dom": "19.0.4" + "@types/react": "19.2.7", + "@types/react-dom": "19.2.3" } }, "packageManager": "pnpm@10.23.0" diff --git a/apps/backend/src/middleware.tsx b/apps/backend/src/proxy.tsx similarity index 99% rename from apps/backend/src/middleware.tsx rename to apps/backend/src/proxy.tsx index 00cc77b31..20352bad7 100644 --- a/apps/backend/src/middleware.tsx +++ b/apps/backend/src/proxy.tsx @@ -54,7 +54,7 @@ const corsAllowedResponseHeaders = [ ]; // This function can be marked `async` if using `await` inside -export async function middleware(request: NextRequest) { +export async function proxy(request: NextRequest) { const delay = +getEnvVariable('STACK_ARTIFICIAL_DEVELOPMENT_DELAY_MS', '0'); if (delay) { if (getNodeEnvironment().includes('production')) { diff --git a/apps/backend/tsconfig.json b/apps/backend/tsconfig.json index 5e9ab3978..e828a45d9 100644 --- a/apps/backend/tsconfig.json +++ b/apps/backend/tsconfig.json @@ -14,7 +14,7 @@ "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, - "jsx": "preserve", + "jsx": "react-jsx", "incremental": true, "noErrorTruncation": true, "plugins": [ @@ -38,7 +38,8 @@ "**/*.tsx", "**/*.?ts", "**/*.?tsx", - ".next/types/**/*.ts" + ".next/types/**/*.ts", + ".next/dev/types/**/*.ts" ], "exclude": [ "node_modules" diff --git a/apps/dashboard/src/components/settings.tsx b/apps/dashboard/src/components/settings.tsx index b7d76ba69..12dd68b0d 100644 --- a/apps/dashboard/src/components/settings.tsx +++ b/apps/dashboard/src/components/settings.tsx @@ -79,7 +79,7 @@ export const SettingSwitch = React.memo(function SettingSwitch(props: { disabled={props.disabled} /> diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 88706b191..91f5a147c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -32,7 +32,7 @@ importers: version: 2.27.9 '@testing-library/react': specifier: ^15.0.7 - version: 15.0.7(@types/react@18.3.12)(react-dom@19.2.1(react@19.2.1))(react@19.2.1) + version: 15.0.7(@types/react@18.3.12)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) '@types/node': specifier: 20.17.6 version: 20.17.6 @@ -115,8 +115,8 @@ importers: specifier: ^3.855.0 version: 3.864.0 '@next/bundle-analyzer': - specifier: 15.2.3 - version: 15.2.3 + specifier: 16.0.10 + version: 16.0.10 '@node-oauth/oauth2-server': specifier: ^5.1.0 version: 5.1.0 @@ -170,10 +170,10 @@ importers: version: 6.12.0(@opentelemetry/api@1.9.0) '@react-email/render': specifier: ^1.2.1 - version: 1.2.1(react-dom@19.0.1(react@19.0.1))(react@19.0.1) + version: 1.2.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3) '@sentry/nextjs': specifier: ^10.11.0 - version: 10.11.0(@opentelemetry/context-async-hooks@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.4.9(@babel/core@7.28.5)(@opentelemetry/api@1.9.0)(react-dom@19.0.1(react@19.0.1))(react@19.0.1))(react@19.0.1)(webpack@5.92.0(@swc/core@1.3.101(@swc/helpers@0.5.15))(esbuild@0.24.2)) + version: 10.11.0(@opentelemetry/context-async-hooks@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@16.0.10(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3)(webpack@5.92.0(@swc/core@1.3.101(@swc/helpers@0.5.15))(esbuild@0.24.2)) '@simplewebauthn/server': specifier: ^11.0.0 version: 11.0.0(encoding@0.1.13) @@ -194,7 +194,7 @@ importers: version: 1.10.4(@opentelemetry/api-logs@0.53.0)(@opentelemetry/api@1.9.0)(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/resources@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-logs@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-metrics@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0)) ai: specifier: ^4.3.17 - version: 4.3.17(react@19.0.1)(zod@3.25.76) + version: 4.3.17(react@19.2.3)(zod@3.25.76) bcrypt: specifier: ^5.1.1 version: 5.1.1(encoding@0.1.13) @@ -209,7 +209,7 @@ importers: version: 7.4.1 freestyle-sandboxes: specifier: ^0.0.92 - version: 0.0.92(672f7be0dc39c7396cf7433b7b8a4026) + version: 0.0.92(f09cefd52aafb16c9a9571af33ec7b89) jose: specifier: ^5.2.2 version: 5.4.0 @@ -217,8 +217,8 @@ importers: specifier: ^1.0.6 version: 1.0.6 next: - specifier: 15.4.9 - version: 15.4.9(@babel/core@7.28.5)(@opentelemetry/api@1.9.0)(react-dom@19.0.1(react@19.0.1))(react@19.0.1) + specifier: 16.0.10 + version: 16.0.10(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) nodemailer: specifier: ^6.9.10 version: 6.9.13 @@ -238,14 +238,14 @@ importers: specifier: ^4.1.0 version: 4.1.0 react: - specifier: 19.0.1 - version: 19.0.1 + specifier: 19.2.3 + version: 19.2.3 react-dom: - specifier: 19.0.1 - version: 19.0.1(react@19.0.1) + specifier: 19.2.3 + version: 19.2.3(react@19.2.3) resend: specifier: ^6.0.1 - version: 6.0.1(@react-email/render@1.2.1(react-dom@19.0.1(react@19.0.1))(react@19.0.1)) + version: 6.0.1(@react-email/render@1.2.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3)) semver: specifier: ^7.6.3 version: 7.6.3 @@ -544,7 +544,7 @@ importers: version: link:../../packages/stack-shared convex: specifier: ^1.27.0 - version: 1.27.0(react@19.2.1) + version: 1.27.0(react@19.2.3) dotenv: specifier: ^16.4.5 version: 16.4.5 @@ -1364,7 +1364,7 @@ importers: version: link:../stack-shared '@tanstack/react-table': specifier: ^8.20.5 - version: 8.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1) + version: 8.20.5(react-dom@19.2.3(react@19.2.1))(react@19.2.1) color: specifier: ^4.2.3 version: 4.2.3 @@ -1395,7 +1395,7 @@ importers: devDependencies: '@quetzallabs/i18n': specifier: ^0.1.19 - version: 0.1.19(next@16.0.9(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)) + version: 0.1.19(next@16.0.10(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.1))(react@19.2.1)) '@types/color': specifier: ^3.0.6 version: 3.0.6 @@ -1513,7 +1513,7 @@ importers: devDependencies: '@quetzallabs/i18n': specifier: ^0.1.19 - version: 0.1.19(next@16.0.9(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)) + version: 0.1.19(next@16.0.10(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)) '@types/color': specifier: ^3.0.6 version: 3.0.6 @@ -1774,7 +1774,7 @@ importers: devDependencies: '@sentry/nextjs': specifier: ^10.11.0 - version: 10.11.0(@opentelemetry/context-async-hooks@2.1.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.1.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.1.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@16.0.9(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)(webpack@5.92.0(@swc/core@1.3.101(@swc/helpers@0.5.15))(esbuild@0.24.2)) + version: 10.11.0(@opentelemetry/context-async-hooks@2.1.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.1.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.1.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@16.0.10(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)(webpack@5.92.0(@swc/core@1.3.101(@swc/helpers@0.5.15))(esbuild@0.24.2)) '@simplewebauthn/types': specifier: ^11.0.0 version: 11.0.0 @@ -5053,6 +5053,9 @@ packages: '@next/bundle-analyzer@15.2.3': resolution: {integrity: sha512-alZemRg2ciCTmT2WUbzy1M9H4luzmmlyZtdB4tHDA+qoD4WTNEwty+oxn3oIzDzIiMvOaODXUNdMrYsFnsAdEA==} + '@next/bundle-analyzer@16.0.10': + resolution: {integrity: sha512-AHA6ZomhQuRsJtkoRvsq+hIuwA6F26mQzQT8ICcc2dL3BvHRcWOA+EiFr+BgWFY++EE957xVDqMIJjLApyxnwA==} + '@next/env@14.2.34': resolution: {integrity: sha512-iuGW/UM+EZbn2dm+aLx+avo1rVap+ASoFr7oLpTBVW2G2DqhD5l8Fme9IsLZ6TTsp0ozVSFswidiHK1NGNO+pg==} @@ -5062,6 +5065,9 @@ packages: '@next/env@15.4.9': resolution: {integrity: sha512-OYR0RulK5phnbxxzcLE4/ECgfx1PL3EHrDbjyelJ7jauaO+/Qvj5gG8JPMltB51CygC2KrZ0aAfYLjPYjYY17A==} + '@next/env@16.0.10': + resolution: {integrity: sha512-8tuaQkyDVgeONQ1MeT9Mkk8pQmZapMKFh5B+OrFUlG3rVmYTXcXlBetBgTurKXGaIZvkoqRT9JL5K3phXcgang==} + '@next/env@16.0.9': resolution: {integrity: sha512-6284pl8c8n9PQidN63qjPVEu1uXXKjnmbmaLebOzIfTrSXdGiAPsIMRi4pk/+v/ezqweE1/B8bFqiAAfC6lMXg==} @@ -5095,6 +5101,12 @@ packages: cpu: [arm64] os: [darwin] + '@next/swc-darwin-arm64@16.0.10': + resolution: {integrity: sha512-4XgdKtdVsaflErz+B5XeG0T5PeXKDdruDf3CRpnhN+8UebNa5N2H58+3GDgpn/9GBurrQ1uWW768FfscwYkJRg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + '@next/swc-darwin-arm64@16.0.9': resolution: {integrity: sha512-j06fWg/gPqiWjK+sEpCDsh5gX+Bdy9gnPYjFqMBvBEOIcCFy1/ecF6pY6XAce7WyCJAbBPVb+6GvpmUZKNq0oQ==} engines: {node: '>= 10'} @@ -5119,6 +5131,12 @@ packages: cpu: [x64] os: [darwin] + '@next/swc-darwin-x64@16.0.10': + resolution: {integrity: sha512-spbEObMvRKkQ3CkYVOME+ocPDFo5UqHb8EMTS78/0mQ+O1nqE8toHJVioZo4TvebATxgA8XMTHHrScPrn68OGw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + '@next/swc-darwin-x64@16.0.9': resolution: {integrity: sha512-FRYYz5GSKUkfvDSjd5hgHME2LgYjfOLBmhRVltbs3oRNQQf9n5UTQMmIu/u5vpkjJFV4L2tqo8duGqDxdQOFwg==} engines: {node: '>= 10'} @@ -5146,6 +5164,13 @@ packages: os: [linux] libc: [glibc] + '@next/swc-linux-arm64-gnu@16.0.10': + resolution: {integrity: sha512-uQtWE3X0iGB8apTIskOMi2w/MKONrPOUCi5yLO+v3O8Mb5c7K4Q5KD1jvTpTF5gJKa3VH/ijKjKUq9O9UhwOYw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + libc: [glibc] + '@next/swc-linux-arm64-gnu@16.0.9': resolution: {integrity: sha512-EI2klFVL8tOyEIX5J1gXXpm1YuChmDy4R+tHoNjkCHUmBJqXioYErX/O2go4pEhjxkAxHp2i8y5aJcRz2m5NqQ==} engines: {node: '>= 10'} @@ -5174,6 +5199,13 @@ packages: os: [linux] libc: [musl] + '@next/swc-linux-arm64-musl@16.0.10': + resolution: {integrity: sha512-llA+hiDTrYvyWI21Z0L1GiXwjQaanPVQQwru5peOgtooeJ8qx3tlqRV2P7uH2pKQaUfHxI/WVarvI5oYgGxaTw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + libc: [musl] + '@next/swc-linux-arm64-musl@16.0.9': resolution: {integrity: sha512-vq/5HeGvowhDPMrpp/KP4GjPVhIXnwNeDPF5D6XK6ta96UIt+C0HwJwuHYlwmn0SWyNANqx1Mp6qSVDXwbFKsw==} engines: {node: '>= 10'} @@ -5202,6 +5234,13 @@ packages: os: [linux] libc: [glibc] + '@next/swc-linux-x64-gnu@16.0.10': + resolution: {integrity: sha512-AK2q5H0+a9nsXbeZ3FZdMtbtu9jxW4R/NgzZ6+lrTm3d6Zb7jYrWcgjcpM1k8uuqlSy4xIyPR2YiuUr+wXsavA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + libc: [glibc] + '@next/swc-linux-x64-gnu@16.0.9': resolution: {integrity: sha512-GlUdJwy2leA/HnyRYxJ1ZJLCJH+BxZfqV4E0iYLrJipDKxWejWpPtZUdccPmCfIEY9gNBO7bPfbG6IIgkt0qXg==} engines: {node: '>= 10'} @@ -5230,6 +5269,13 @@ packages: os: [linux] libc: [musl] + '@next/swc-linux-x64-musl@16.0.10': + resolution: {integrity: sha512-1TDG9PDKivNw5550S111gsO4RGennLVl9cipPhtkXIFVwo31YZ73nEbLjNC8qG3SgTz/QZyYyaFYMeY4BKZR/g==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + libc: [musl] + '@next/swc-linux-x64-musl@16.0.9': resolution: {integrity: sha512-UCtOVx4N8AHF434VPwg4L0KkFLAd7pgJShzlX/hhv9+FDrT7/xCuVdlBsCXH7l9yCA/wHl3OqhMbIkgUluriWA==} engines: {node: '>= 10'} @@ -5255,6 +5301,12 @@ packages: cpu: [arm64] os: [win32] + '@next/swc-win32-arm64-msvc@16.0.10': + resolution: {integrity: sha512-aEZIS4Hh32xdJQbHz121pyuVZniSNoqDVx1yIr2hy+ZwJGipeqnMZBJHyMxv2tiuAXGx6/xpTcQJ6btIiBjgmg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + '@next/swc-win32-arm64-msvc@16.0.9': resolution: {integrity: sha512-tQjtDGtv63mV3n/cZ4TH8BgUvKTSFlrF06yT5DyRmgQuj5WEjBUDy0W3myIW5kTRYMPrLn42H3VfCNwBH6YYiA==} engines: {node: '>= 10'} @@ -5285,6 +5337,12 @@ packages: cpu: [x64] os: [win32] + '@next/swc-win32-x64-msvc@16.0.10': + resolution: {integrity: sha512-E+njfCoFLb01RAFEnGZn6ERoOqhK1Gl3Lfz1Kjnj0Ulfu7oJbuMyvBKNj/bw8XZnenHDASlygTjZICQW+rYW1Q==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + '@next/swc-win32-x64-msvc@16.0.9': resolution: {integrity: sha512-y9AGACHTBwnWFLq5B5Fiv3FEbXBusdPb60pgoerB04CV/pwjY1xQNdoTNxAv7eUhU2k1CKnkN4XWVuiK07uOqA==} engines: {node: '>= 10'} @@ -13770,6 +13828,27 @@ packages: sass: optional: true + next@16.0.10: + resolution: {integrity: sha512-RtWh5PUgI+vxlV3HdR+IfWA1UUHu0+Ram/JBO4vWB54cVPentCD0e+lxyAYEsDTqGGMg7qpjhKh6dc6aW7W/sA==} + engines: {node: '>=20.9.0'} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.51.1 + babel-plugin-react-compiler: '*' + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + sass: ^1.3.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@playwright/test': + optional: true + babel-plugin-react-compiler: + optional: true + sass: + optional: true + next@16.0.9: resolution: {integrity: sha512-Xk5x/wEk6ADIAtQECLo1uyE5OagbQCiZ+gW4XEv24FjQ3O2PdSkvgsn22aaseSXC7xg84oONvQjFbSTX5YsMhQ==} engines: {node: '>=20.9.0'} @@ -14724,6 +14803,11 @@ packages: peerDependencies: react: ^19.2.1 + react-dom@19.2.3: + resolution: {integrity: sha512-yELu4WmLPw5Mr/lmeEpox5rw3RETacE++JgHqQzd2dg+YbJuat3jH4ingc+WPZhxaoFzdv9y33G+F7Nl5O0GBg==} + peerDependencies: + react: ^19.2.3 + react-easy-crop@5.4.1: resolution: {integrity: sha512-Djtsi7bWO75vkKYkVxNRrJWY69pXLahIAkUN0mmt9cXNnaq2tpG59ctSY6P7ipJgBc7COJDRMRuwb2lYwtACNQ==} peerDependencies: @@ -14979,6 +15063,10 @@ packages: resolution: {integrity: sha512-DGrYcCWK7tvYMnWh79yrPHt+vdx9tY+1gPZa7nJQtO/p8bLTDaHp4dzwEhQB7pZ4Xe3ok4XKuEPrVuc+wlpkmw==} engines: {node: '>=0.10.0'} + react@19.2.3: + resolution: {integrity: sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==} + engines: {node: '>=0.10.0'} + read-cache@1.0.0: resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} @@ -17200,16 +17288,6 @@ snapshots: optionalDependencies: zod: 3.25.76 - '@ai-sdk/react@1.2.12(react@19.0.1)(zod@3.25.76)': - dependencies: - '@ai-sdk/provider-utils': 2.2.8(zod@3.25.76) - '@ai-sdk/ui-utils': 1.2.11(zod@3.25.76) - react: 19.0.1 - swr: 2.3.4(react@19.0.1) - throttleit: 2.1.0 - optionalDependencies: - zod: 3.25.76 - '@ai-sdk/react@1.2.12(react@19.2.1)(zod@3.25.76)': dependencies: '@ai-sdk/provider-utils': 2.2.8(zod@3.25.76) @@ -17230,6 +17308,16 @@ snapshots: optionalDependencies: zod: 4.1.12 + '@ai-sdk/react@1.2.12(react@19.2.3)(zod@3.25.76)': + dependencies: + '@ai-sdk/provider-utils': 2.2.8(zod@3.25.76) + '@ai-sdk/ui-utils': 1.2.11(zod@3.25.76) + react: 19.2.3 + swr: 2.3.4(react@19.2.3) + throttleit: 2.1.0 + optionalDependencies: + zod: 3.25.76 + '@ai-sdk/ui-utils@1.2.11(zod@3.25.76)': dependencies: '@ai-sdk/provider': 1.1.3 @@ -18278,29 +18366,29 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.28.5)': + '@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-member-expression-to-functions': 7.28.5 '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.5) + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0) '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 '@babel/traverse': 7.28.5 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-create-regexp-features-plugin@7.28.5(@babel/core@7.28.5)': + '@babel/helper-create-regexp-features-plugin@7.28.5(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-annotate-as-pure': 7.27.3 regexpu-core: 6.4.0 semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.5)': + '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 debug: 4.4.3 @@ -18364,6 +18452,15 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)': dependencies: '@babel/core': 7.28.5 @@ -18385,9 +18482,9 @@ snapshots: '@babel/helper-plugin-utils@7.27.1': {} - '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.5)': + '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-wrap-function': 7.28.3 '@babel/traverse': 7.28.5 @@ -18403,9 +18500,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.5)': + '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-member-expression-to-functions': 7.28.5 '@babel/helper-optimise-call-expression': 7.27.1 '@babel/traverse': 7.28.5 @@ -18501,18 +18598,18 @@ snapshots: dependencies: '@babel/types': 7.28.5 - '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.28.5)': + '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.0 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.0) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.28.0) transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-export-default-from@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-proposal-export-default-from@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.28.5)': @@ -18525,94 +18622,99 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.5)': + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.5)': + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.5)': + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.5)': + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.28.5)': + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-export-default-from@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-syntax-export-default-from@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.5)': + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.5)': + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.5)': + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.5)': + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.5)': + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.5)': + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.5)': + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.5)': + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.5)': @@ -18620,195 +18722,195 @@ snapshots: '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.5)': + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.5)': + '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.5) + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.0) '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-module-imports': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.5) + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.0) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-block-scoping@7.28.5(@babel/core@7.28.5)': + '@babel/plugin-transform-block-scoping@7.28.5(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.0 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.0) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.5)': + '@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-globals': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.5) + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0) '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 '@babel/template': 7.27.2 - '@babel/plugin-transform-destructuring@7.28.5(@babel/core@7.28.5)': + '@babel/plugin-transform-destructuring@7.28.5(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-logical-assignment-operators@7.28.5(@babel/core@7.28.5)': + '@babel/plugin-transform-logical-assignment-operators@7.28.5(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5) + '@babel/core': 7.28.0 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.0) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.0 + '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.0) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.28.5)': + '@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.5) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.5) + '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.0) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.0) '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-optional-chaining@7.28.5(@babel/core@7.28.5)': + '@babel/plugin-transform-optional-chaining@7.28.5(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.5)': + '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.0 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.0) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.0) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.28.5)': + '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 - '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.5) + '@babel/core': 7.28.0 + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.0) transitivePeerDependencies: - supports-color @@ -18817,6 +18919,11 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.5)': dependencies: '@babel/core': 7.28.5 @@ -18827,100 +18934,105 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.5)': dependencies: '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-module-imports': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.0) '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.28.5)': + '@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-runtime@7.28.5(@babel/core@7.28.5)': + '@babel/plugin-transform-runtime@7.28.5(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-module-imports': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 - babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.5) - babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.5) - babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.5) + babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.0) + babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.0) + babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.0) semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-typescript@7.28.5(@babel/core@7.28.5)': + '@babel/plugin-transform-typescript@7.28.5(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.0) '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.0) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.0 + '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.0) '@babel/helper-plugin-utils': 7.27.1 - '@babel/preset-react@7.28.5(@babel/core@7.28.5)': + '@babel/preset-react@7.28.5(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.5) - '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.0) + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.28.0) transitivePeerDependencies: - supports-color - '@babel/preset-typescript@7.28.5(@babel/core@7.28.5)': + '@babel/preset-typescript@7.28.5(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.0) transitivePeerDependencies: - supports-color @@ -20255,9 +20367,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))': + '@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))': dependencies: - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) '@expo/osascript@2.3.7': dependencies: @@ -20317,11 +20429,11 @@ snapshots: '@expo/sudo-prompt@9.3.2': {} - '@expo/vector-icons@14.1.0(expo-font@13.3.2(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1)': + '@expo/vector-icons@14.1.0(expo-font@13.3.2(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3)': dependencies: - expo-font: 13.3.2(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react@19.0.1) - react: 19.0.1 - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) + expo-font: 13.3.2(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react@19.2.3) + react: 19.2.3 + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) '@expo/ws-tunnel@1.0.6': {} @@ -20893,12 +21005,21 @@ snapshots: - bufferutil - utf-8-validate + '@next/bundle-analyzer@16.0.10': + dependencies: + webpack-bundle-analyzer: 4.10.1 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + '@next/env@14.2.34': {} '@next/env@15.2.7': {} '@next/env@15.4.9': {} + '@next/env@16.0.10': {} + '@next/env@16.0.9': {} '@next/eslint-plugin-next@14.2.17': @@ -20926,6 +21047,9 @@ snapshots: '@next/swc-darwin-arm64@15.4.8': optional: true + '@next/swc-darwin-arm64@16.0.10': + optional: true + '@next/swc-darwin-arm64@16.0.9': optional: true @@ -20938,6 +21062,9 @@ snapshots: '@next/swc-darwin-x64@15.4.8': optional: true + '@next/swc-darwin-x64@16.0.10': + optional: true + '@next/swc-darwin-x64@16.0.9': optional: true @@ -20950,6 +21077,9 @@ snapshots: '@next/swc-linux-arm64-gnu@15.4.8': optional: true + '@next/swc-linux-arm64-gnu@16.0.10': + optional: true + '@next/swc-linux-arm64-gnu@16.0.9': optional: true @@ -20962,6 +21092,9 @@ snapshots: '@next/swc-linux-arm64-musl@15.4.8': optional: true + '@next/swc-linux-arm64-musl@16.0.10': + optional: true + '@next/swc-linux-arm64-musl@16.0.9': optional: true @@ -20974,6 +21107,9 @@ snapshots: '@next/swc-linux-x64-gnu@15.4.8': optional: true + '@next/swc-linux-x64-gnu@16.0.10': + optional: true + '@next/swc-linux-x64-gnu@16.0.9': optional: true @@ -20986,6 +21122,9 @@ snapshots: '@next/swc-linux-x64-musl@15.4.8': optional: true + '@next/swc-linux-x64-musl@16.0.10': + optional: true + '@next/swc-linux-x64-musl@16.0.9': optional: true @@ -20998,6 +21137,9 @@ snapshots: '@next/swc-win32-arm64-msvc@15.4.8': optional: true + '@next/swc-win32-arm64-msvc@16.0.10': + optional: true + '@next/swc-win32-arm64-msvc@16.0.9': optional: true @@ -21013,6 +21155,9 @@ snapshots: '@next/swc-win32-x64-msvc@15.4.8': optional: true + '@next/swc-win32-x64-msvc@16.0.10': + optional: true + '@next/swc-win32-x64-msvc@16.0.9': optional: true @@ -21560,7 +21705,7 @@ snapshots: - next - supports-color - '@quetzallabs/i18n@0.1.19(next@16.0.9(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))': + '@quetzallabs/i18n@0.1.19(next@16.0.10(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))': dependencies: '@babel/parser': 7.25.6 '@babel/traverse': 7.25.6 @@ -21568,7 +21713,24 @@ snapshots: dotenv: 10.0.0 i18next: 21.10.0 i18next-parser: 9.0.2 - next-intl: 3.19.1(next@16.0.9(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@18.3.1) + next-intl: 3.19.1(next@16.0.10(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@18.3.1) + path: 0.12.7 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - debug + - next + - supports-color + + '@quetzallabs/i18n@0.1.19(next@16.0.10(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.1))(react@19.2.1))': + dependencies: + '@babel/parser': 7.25.6 + '@babel/traverse': 7.25.6 + axios: 1.7.4 + dotenv: 10.0.0 + i18next: 21.10.0 + i18next-parser: 9.0.2 + next-intl: 3.19.1(next@16.0.10(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.1))(react@19.2.1))(react@18.3.1) path: 0.12.7 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -23293,12 +23455,12 @@ snapshots: '@radix-ui/rect@1.1.1': {} - '@react-email/render@1.2.1(react-dom@19.0.1(react@19.0.1))(react@19.0.1)': + '@react-email/render@1.2.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': dependencies: html-to-text: 9.0.5 prettier: 3.5.3 - react: 19.0.1 - react-dom: 19.0.1(react@19.0.1) + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) react-promise-suspense: 0.3.4 '@react-hook/latest@1.0.3(react@19.2.1)': @@ -23317,67 +23479,67 @@ snapshots: '@react-native/assets-registry@0.80.1': {} - '@react-native/babel-plugin-codegen@0.79.6(@babel/core@7.28.5)': + '@react-native/babel-plugin-codegen@0.79.6(@babel/core@7.28.0)': dependencies: '@babel/traverse': 7.28.5 - '@react-native/codegen': 0.79.6(@babel/core@7.28.5) + '@react-native/codegen': 0.79.6(@babel/core@7.28.0) transitivePeerDependencies: - '@babel/core' - supports-color - '@react-native/babel-preset@0.79.6(@babel/core@7.28.5)': + '@react-native/babel-preset@0.79.6(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 - '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.28.5) - '@babel/plugin-syntax-export-default-from': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.5) - '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.5) - '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-block-scoping': 7.28.5(@babel/core@7.28.5) - '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.5) - '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.5) - '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-logical-assignment-operators': 7.28.5(@babel/core@7.28.5) - '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.5) - '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.28.5) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.5) - '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.5) - '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.28.5) - '@babel/plugin-transform-runtime': 7.28.5(@babel/core@7.28.5) - '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.5) - '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.5) + '@babel/core': 7.28.0 + '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-export-default-from': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.0) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-block-scoping': 7.28.5(@babel/core@7.28.0) + '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.0) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.0) + '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-logical-assignment-operators': 7.28.5(@babel/core@7.28.0) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.0) + '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.28.0) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.0) + '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.0) + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.28.0) + '@babel/plugin-transform-runtime': 7.28.5(@babel/core@7.28.0) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.0) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.0) '@babel/template': 7.27.2 - '@react-native/babel-plugin-codegen': 0.79.6(@babel/core@7.28.5) + '@react-native/babel-plugin-codegen': 0.79.6(@babel/core@7.28.0) babel-plugin-syntax-hermes-parser: 0.25.1 - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.5) + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.0) react-refresh: 0.14.2 transitivePeerDependencies: - supports-color - '@react-native/codegen@0.79.6(@babel/core@7.28.5)': + '@react-native/codegen@0.79.6(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@babel/parser': 7.28.5 glob: 7.2.3 hermes-parser: 0.25.1 @@ -23385,9 +23547,9 @@ snapshots: nullthrows: 1.1.1 yargs: 17.7.2 - '@react-native/codegen@0.80.1(@babel/core@7.28.5)': + '@react-native/codegen@0.80.1(@babel/core@7.28.0)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 glob: 7.2.3 hermes-parser: 0.28.1 invariant: 2.2.4 @@ -23457,24 +23619,24 @@ snapshots: '@react-native/normalize-colors@0.80.1': {} - '@react-native/virtualized-lists@0.80.1(@types/react@18.3.12)(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1)': + '@react-native/virtualized-lists@0.80.1(@types/react@18.3.12)(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 - react: 19.0.1 - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) + react: 19.2.3 + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) optionalDependencies: '@types/react': 18.3.12 - '@react-navigation/bottom-tabs@7.4.2(@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native-screens@4.11.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@18.3.1)': + '@react-navigation/bottom-tabs@7.4.2(@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native-screens@4.11.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@18.3.1)': dependencies: - '@react-navigation/elements': 2.5.2(@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@18.3.1) - '@react-navigation/native': 7.1.14(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) + '@react-navigation/elements': 2.5.2(@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@18.3.1) + '@react-navigation/native': 7.1.14(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) color: 4.2.3 react: 18.3.1 - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) - react-native-safe-area-context: 5.5.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) - react-native-screens: 4.11.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) + react-native-safe-area-context: 5.5.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) + react-native-screens: 4.11.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) transitivePeerDependencies: - '@react-native-masked-view/masked-view' @@ -23489,58 +23651,58 @@ snapshots: use-latest-callback: 0.2.4(react@18.3.1) use-sync-external-store: 1.5.0(react@18.3.1) - '@react-navigation/core@7.12.1(react@19.0.1)': + '@react-navigation/core@7.12.1(react@19.2.3)': dependencies: '@react-navigation/routers': 7.4.1 escape-string-regexp: 4.0.0 nanoid: 3.3.11 query-string: 7.1.3 - react: 19.0.1 + react: 19.2.3 react-is: 19.1.0 - use-latest-callback: 0.2.4(react@19.0.1) - use-sync-external-store: 1.5.0(react@19.0.1) + use-latest-callback: 0.2.4(react@19.2.3) + use-sync-external-store: 1.5.0(react@19.2.3) - '@react-navigation/elements@2.5.2(@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@18.3.1)': + '@react-navigation/elements@2.5.2(@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@18.3.1)': dependencies: - '@react-navigation/native': 7.1.14(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) + '@react-navigation/native': 7.1.14(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) color: 4.2.3 react: 18.3.1 - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) - react-native-safe-area-context: 5.5.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) + react-native-safe-area-context: 5.5.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) use-latest-callback: 0.2.4(react@18.3.1) use-sync-external-store: 1.5.0(react@18.3.1) - '@react-navigation/native-stack@7.3.21(@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native-screens@4.11.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@18.3.1)': + '@react-navigation/native-stack@7.3.21(@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native-screens@4.11.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@18.3.1)': dependencies: - '@react-navigation/elements': 2.5.2(@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@18.3.1) - '@react-navigation/native': 7.1.14(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) + '@react-navigation/elements': 2.5.2(@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@18.3.1) + '@react-navigation/native': 7.1.14(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) react: 18.3.1 - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) - react-native-safe-area-context: 5.5.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) - react-native-screens: 4.11.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) + react-native-safe-area-context: 5.5.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) + react-native-screens: 4.11.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) warn-once: 0.1.1 transitivePeerDependencies: - '@react-native-masked-view/masked-view' - '@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@18.3.1)': + '@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@18.3.1)': dependencies: '@react-navigation/core': 7.12.1(react@18.3.1) escape-string-regexp: 4.0.0 fast-deep-equal: 3.1.3 nanoid: 3.3.11 react: 18.3.1 - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) use-latest-callback: 0.2.4(react@18.3.1) - '@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1)': + '@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3)': dependencies: - '@react-navigation/core': 7.12.1(react@19.0.1) + '@react-navigation/core': 7.12.1(react@19.2.3) escape-string-regexp: 4.0.0 fast-deep-equal: 3.1.3 nanoid: 3.3.11 - react: 19.0.1 - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) - use-latest-callback: 0.2.4(react@19.0.1) + react: 19.2.3 + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) + use-latest-callback: 0.2.4(react@19.2.3) '@react-navigation/routers@7.4.1': dependencies: @@ -23924,7 +24086,7 @@ snapshots: '@sentry/core@10.11.0': {} - '@sentry/nextjs@10.11.0(@opentelemetry/context-async-hooks@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.4.9(@babel/core@7.28.5)(@opentelemetry/api@1.9.0)(react-dom@19.0.1(react@19.0.1))(react@19.0.1))(react@19.0.1)(webpack@5.92.0(@swc/core@1.3.101(@swc/helpers@0.5.15))(esbuild@0.24.2))': + '@sentry/nextjs@10.11.0(@opentelemetry/context-async-hooks@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@16.0.10(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3)(webpack@5.92.0(@swc/core@1.3.101(@swc/helpers@0.5.15))(esbuild@0.24.2))': dependencies: '@opentelemetry/api': 1.9.0 '@opentelemetry/semantic-conventions': 1.37.0 @@ -23934,11 +24096,11 @@ snapshots: '@sentry/core': 10.11.0 '@sentry/node': 10.11.0 '@sentry/opentelemetry': 10.11.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.37.0) - '@sentry/react': 10.11.0(react@19.0.1) + '@sentry/react': 10.11.0(react@19.2.3) '@sentry/vercel-edge': 10.11.0 '@sentry/webpack-plugin': 4.3.0(encoding@0.1.13)(webpack@5.92.0(@swc/core@1.3.101(@swc/helpers@0.5.15))(esbuild@0.24.2)) chalk: 3.0.0 - next: 15.4.9(@babel/core@7.28.5)(@opentelemetry/api@1.9.0)(react-dom@19.0.1(react@19.0.1))(react@19.0.1) + next: 16.0.10(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) resolve: 1.22.8 rollup: 4.50.1 stacktrace-parser: 0.1.11 @@ -23951,7 +24113,7 @@ snapshots: - supports-color - webpack - '@sentry/nextjs@10.11.0(@opentelemetry/context-async-hooks@2.1.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.1.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.1.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@16.0.9(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)(webpack@5.92.0(@swc/core@1.3.101(@swc/helpers@0.5.15))(esbuild@0.24.2))': + '@sentry/nextjs@10.11.0(@opentelemetry/context-async-hooks@2.1.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.1.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.1.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@16.0.10(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)(webpack@5.92.0(@swc/core@1.3.101(@swc/helpers@0.5.15))(esbuild@0.24.2))': dependencies: '@opentelemetry/api': 1.9.0 '@opentelemetry/semantic-conventions': 1.37.0 @@ -23965,7 +24127,7 @@ snapshots: '@sentry/vercel-edge': 10.11.0 '@sentry/webpack-plugin': 4.3.0(encoding@0.1.13)(webpack@5.92.0(@swc/core@1.3.101(@swc/helpers@0.5.15))(esbuild@0.24.2)) chalk: 3.0.0 - next: 16.0.9(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1) + next: 16.0.10(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1) resolve: 1.22.8 rollup: 4.50.1 stacktrace-parser: 0.1.11 @@ -24076,13 +24238,6 @@ snapshots: '@opentelemetry/semantic-conventions': 1.37.0 '@sentry/core': 10.11.0 - '@sentry/react@10.11.0(react@19.0.1)': - dependencies: - '@sentry/browser': 10.11.0 - '@sentry/core': 10.11.0 - hoist-non-react-statics: 3.3.2 - react: 19.0.1 - '@sentry/react@10.11.0(react@19.2.1)': dependencies: '@sentry/browser': 10.11.0 @@ -24090,6 +24245,13 @@ snapshots: hoist-non-react-statics: 3.3.2 react: 19.2.1 + '@sentry/react@10.11.0(react@19.2.3)': + dependencies: + '@sentry/browser': 10.11.0 + '@sentry/core': 10.11.0 + hoist-non-react-statics: 3.3.2 + react: 19.2.3 + '@sentry/vercel-edge@10.11.0': dependencies: '@opentelemetry/api': 1.9.0 @@ -24789,6 +24951,12 @@ snapshots: react: 19.2.1 react-dom: 19.2.1(react@19.2.1) + '@tanstack/react-table@8.20.5(react-dom@19.2.3(react@19.2.1))(react@19.2.1)': + dependencies: + '@tanstack/table-core': 8.20.5 + react: 19.2.1 + react-dom: 19.2.3(react@19.2.1) + '@tanstack/table-core@8.20.5': {} '@testing-library/dom@10.4.0': @@ -24802,13 +24970,13 @@ snapshots: lz-string: 1.5.0 pretty-format: 27.5.1 - '@testing-library/react@15.0.7(@types/react@18.3.12)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)': + '@testing-library/react@15.0.7(@types/react@18.3.12)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': dependencies: '@babel/runtime': 7.26.0 '@testing-library/dom': 10.4.0 '@types/react-dom': 18.3.1 - react: 19.2.1 - react-dom: 19.2.1(react@19.2.1) + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) optionalDependencies: '@types/react': 18.3.12 @@ -25864,18 +26032,6 @@ snapshots: optionalDependencies: react: 18.3.1 - ai@4.3.17(react@19.0.1)(zod@3.25.76): - dependencies: - '@ai-sdk/provider': 1.1.3 - '@ai-sdk/provider-utils': 2.2.8(zod@3.25.76) - '@ai-sdk/react': 1.2.12(react@19.0.1)(zod@3.25.76) - '@ai-sdk/ui-utils': 1.2.11(zod@3.25.76) - '@opentelemetry/api': 1.9.0 - jsondiffpatch: 0.6.0 - zod: 3.25.76 - optionalDependencies: - react: 19.0.1 - ai@4.3.17(react@19.2.1)(zod@4.1.12): dependencies: '@ai-sdk/provider': 1.1.3 @@ -25888,6 +26044,18 @@ snapshots: optionalDependencies: react: 19.2.1 + ai@4.3.17(react@19.2.3)(zod@3.25.76): + dependencies: + '@ai-sdk/provider': 1.1.3 + '@ai-sdk/provider-utils': 2.2.8(zod@3.25.76) + '@ai-sdk/react': 1.2.12(react@19.2.3)(zod@3.25.76) + '@ai-sdk/ui-utils': 1.2.11(zod@3.25.76) + '@opentelemetry/api': 1.9.0 + jsondiffpatch: 0.6.0 + zod: 3.25.76 + optionalDependencies: + react: 19.2.3 + ajv-draft-04@1.0.0(ajv@8.17.1): optionalDependencies: ajv: 8.17.1 @@ -26177,13 +26345,13 @@ snapshots: b4a@1.6.6: {} - babel-jest@29.7.0(@babel/core@7.28.5): + babel-jest@29.7.0(@babel/core@7.28.0): dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 '@jest/transform': 29.7.0 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.28.5) + babel-preset-jest: 29.6.3(@babel/core@7.28.0) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -26213,27 +26381,27 @@ snapshots: cosmiconfig: 7.1.0 resolve: 1.22.10 - babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.5): + babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.0): dependencies: '@babel/compat-data': 7.28.5 - '@babel/core': 7.28.5 - '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.5) + '@babel/core': 7.28.0 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.0) semver: 6.3.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.5): + babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.0): dependencies: - '@babel/core': 7.28.5 - '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.5) + '@babel/core': 7.28.0 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.0) core-js-compat: 3.46.0 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.5): + babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.0): dependencies: - '@babel/core': 7.28.5 - '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.5) + '@babel/core': 7.28.0 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.0) transitivePeerDependencies: - supports-color @@ -26247,51 +26415,51 @@ snapshots: dependencies: hermes-parser: 0.28.1 - babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.28.5): + babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.28.0): dependencies: - '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.0) transitivePeerDependencies: - '@babel/core' - babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.5): + babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.0): dependencies: - '@babel/core': 7.28.5 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.5) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.5) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.5) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.5) - '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.5) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.5) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.5) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.5) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.5) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.5) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.5) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.5) + '@babel/core': 7.28.0 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.0) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.0) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.0) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.0) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.0) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.0) - babel-preset-expo@13.2.4(@babel/core@7.28.5): + babel-preset-expo@13.2.4(@babel/core@7.28.0): dependencies: '@babel/helper-module-imports': 7.27.1 - '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.5) - '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-syntax-export-default-from': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.5) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.5) - '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-runtime': 7.28.5(@babel/core@7.28.5) - '@babel/preset-react': 7.28.5(@babel/core@7.28.5) - '@babel/preset-typescript': 7.28.5(@babel/core@7.28.5) - '@react-native/babel-preset': 0.79.6(@babel/core@7.28.5) + '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.0) + '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-syntax-export-default-from': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.0) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.0) + '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-runtime': 7.28.5(@babel/core@7.28.0) + '@babel/preset-react': 7.28.5(@babel/core@7.28.0) + '@babel/preset-typescript': 7.28.5(@babel/core@7.28.0) + '@react-native/babel-preset': 0.79.6(@babel/core@7.28.0) babel-plugin-react-native-web: 0.19.13 babel-plugin-syntax-hermes-parser: 0.25.1 - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.5) + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.0) debug: 4.4.3 react-refresh: 0.14.2 resolve-from: 5.0.0 @@ -26299,11 +26467,11 @@ snapshots: - '@babel/core' - supports-color - babel-preset-jest@29.6.3(@babel/core@7.28.5): + babel-preset-jest@29.6.3(@babel/core@7.28.0): dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.0 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.5) + babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.0) bail@2.0.2: {} @@ -27024,6 +27192,14 @@ snapshots: optionalDependencies: react: 19.2.1 + convex@1.27.0(react@19.2.3): + dependencies: + esbuild: 0.25.4 + jwt-decode: 4.0.0 + prettier: 3.5.3 + optionalDependencies: + react: 19.2.3 + cookie-signature@1.0.6: {} cookie-signature@1.2.2: {} @@ -28076,8 +28252,8 @@ snapshots: '@typescript-eslint/parser': 6.21.0(eslint@8.30.0)(typescript@5.8.3) eslint: 8.30.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.30.0) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint@8.30.0) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint@8.30.0))(eslint@8.30.0) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.30.0) eslint-plugin-jsx-a11y: 6.10.2(eslint@8.30.0) eslint-plugin-react: 7.37.2(eslint@8.30.0) eslint-plugin-react-hooks: 5.1.0(eslint@8.30.0) @@ -28132,19 +28308,19 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.30.0): + eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint@8.30.0))(eslint@8.30.0): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.4.0 enhanced-resolve: 5.17.1 eslint: 8.30.0 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.30.0) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint@8.30.0))(eslint@8.30.0))(eslint@8.30.0) fast-glob: 3.3.3 get-tsconfig: 4.8.1 is-bun-module: 1.2.1 is-glob: 4.0.3 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint@8.30.0) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.30.0) transitivePeerDependencies: - '@typescript-eslint/parser' - eslint-import-resolver-node @@ -28183,14 +28359,14 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.30.0): + eslint-module-utils@2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint@8.30.0))(eslint@8.30.0))(eslint@8.30.0): dependencies: debug: 3.2.7 optionalDependencies: '@typescript-eslint/parser': 6.21.0(eslint@8.30.0)(typescript@5.8.3) eslint: 8.30.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.30.0) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint@8.30.0))(eslint@8.30.0) transitivePeerDependencies: - supports-color @@ -28287,7 +28463,7 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint@8.30.0): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.30.0): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -28298,7 +28474,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.30.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.30.0) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.30.0)(typescript@5.8.3))(eslint@8.30.0))(eslint@8.30.0))(eslint@8.30.0) hasown: 2.0.2 is-core-module: 2.15.1 is-glob: 4.0.3 @@ -28645,56 +28821,56 @@ snapshots: signal-exit: 4.1.0 strip-final-newline: 3.0.0 - expo-asset@11.1.7(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1): + expo-asset@11.1.7(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3): dependencies: '@expo/image-utils': 0.7.6 - expo: 53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) - expo-constants: 17.1.7(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)) - react: 19.0.1 - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) + expo: 53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) + expo-constants: 17.1.7(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)) + react: 19.2.3 + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) transitivePeerDependencies: - supports-color - expo-constants@17.0.8(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)): + expo-constants@17.0.8(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)): dependencies: '@expo/config': 10.0.11 '@expo/env': 0.4.2 - expo: 53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) + expo: 53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) transitivePeerDependencies: - supports-color - expo-constants@17.1.7(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)): + expo-constants@17.1.7(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)): dependencies: '@expo/config': 11.0.13 '@expo/env': 1.0.7 - expo: 53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) + expo: 53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) transitivePeerDependencies: - supports-color - expo-file-system@18.1.11(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)): + expo-file-system@18.1.11(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)): dependencies: - expo: 53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) + expo: 53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) - expo-font@13.3.2(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react@19.0.1): + expo-font@13.3.2(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react@19.2.3): dependencies: - expo: 53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) + expo: 53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) fontfaceobserver: 2.3.0 - react: 19.0.1 + react: 19.2.3 - expo-keep-awake@14.1.4(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react@19.0.1): + expo-keep-awake@14.1.4(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react@19.2.3): dependencies: - expo: 53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) - react: 19.0.1 + expo: 53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) + react: 19.2.3 - expo-linking@7.0.5(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1): + expo-linking@7.0.5(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3): dependencies: - expo-constants: 17.0.8(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)) + expo-constants: 17.0.8(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)) invariant: 2.2.4 - react: 19.0.1 - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) + react: 19.2.3 + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) transitivePeerDependencies: - expo - supports-color @@ -28713,23 +28889,23 @@ snapshots: dependencies: invariant: 2.2.4 - expo-router@4.0.21(ac684ef6e40bdfd939acf2f515064861): + expo-router@4.0.21(db75ddb6feea98d416fb039d797c03e6): dependencies: - '@expo/metro-runtime': 4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)) + '@expo/metro-runtime': 4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)) '@expo/server': 0.5.3 '@radix-ui/react-slot': 1.0.1(react@18.3.1) - '@react-navigation/bottom-tabs': 7.4.2(@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native-screens@4.11.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@18.3.1) - '@react-navigation/native': 7.1.14(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@18.3.1) - '@react-navigation/native-stack': 7.3.21(@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native-screens@4.11.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@18.3.1) + '@react-navigation/bottom-tabs': 7.4.2(@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native-screens@4.11.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@18.3.1) + '@react-navigation/native': 7.1.14(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@18.3.1) + '@react-navigation/native-stack': 7.3.21(@react-navigation/native@7.1.14(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native-screens@4.11.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@18.3.1) client-only: 0.0.1 - expo: 53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) - expo-constants: 17.1.7(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)) - expo-linking: 7.0.5(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) - react-helmet-async: 1.3.0(react-dom@19.0.1(react@19.0.1))(react@18.3.1) + expo: 53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) + expo-constants: 17.1.7(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)) + expo-linking: 7.0.5(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) + react-helmet-async: 1.3.0(react-dom@19.2.3(react@19.2.3))(react@18.3.1) react-native-helmet-async: 2.0.4(react@18.3.1) - react-native-is-edge-to-edge: 1.2.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@18.3.1) - react-native-safe-area-context: 5.5.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) - react-native-screens: 4.11.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) + react-native-is-edge-to-edge: 1.2.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@18.3.1) + react-native-safe-area-context: 5.5.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) + react-native-screens: 4.11.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) schema-utils: 4.3.2 semver: 7.6.3 server-only: 0.0.1 @@ -28740,7 +28916,7 @@ snapshots: - react-native - supports-color - expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1): + expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3): dependencies: '@babel/runtime': 7.28.4 '@expo/cli': 0.24.18 @@ -28748,21 +28924,21 @@ snapshots: '@expo/config-plugins': 10.1.2 '@expo/fingerprint': 0.13.4 '@expo/metro-config': 0.20.17 - '@expo/vector-icons': 14.1.0(expo-font@13.3.2(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) - babel-preset-expo: 13.2.4(@babel/core@7.28.5) - expo-asset: 11.1.7(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) - expo-constants: 17.1.7(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)) - expo-file-system: 18.1.11(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)) - expo-font: 13.3.2(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react@19.0.1) - expo-keep-awake: 14.1.4(expo@53.0.17(@babel/core@7.28.5)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)))(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1))(react@19.0.1) + '@expo/vector-icons': 14.1.0(expo-font@13.3.2(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) + babel-preset-expo: 13.2.4(@babel/core@7.28.0) + expo-asset: 11.1.7(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) + expo-constants: 17.1.7(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)) + expo-file-system: 18.1.11(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)) + expo-font: 13.3.2(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react@19.2.3) + expo-keep-awake: 14.1.4(expo@53.0.17(@babel/core@7.28.0)(@expo/metro-runtime@4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)))(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3))(react@19.2.3) expo-modules-autolinking: 2.1.13 expo-modules-core: 2.4.2 - react: 19.0.1 - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) - react-native-edge-to-edge: 1.6.0(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) + react: 19.2.3 + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) + react-native-edge-to-edge: 1.6.0(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) whatwg-url-without-unicode: 8.0.0-3 optionalDependencies: - '@expo/metro-runtime': 4.0.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1)) + '@expo/metro-runtime': 4.0.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3)) transitivePeerDependencies: - '@babel/core' - babel-plugin-react-compiler @@ -29072,11 +29248,11 @@ snapshots: freeport-async@2.0.0: {} - freestyle-sandboxes@0.0.66(672f7be0dc39c7396cf7433b7b8a4026): + freestyle-sandboxes@0.0.66(f09cefd52aafb16c9a9571af33ec7b89): dependencies: '@hey-api/client-fetch': 0.5.7 '@tanstack/react-query': 5.90.7(react@18.3.1) - expo-router: 4.0.21(ac684ef6e40bdfd939acf2f515064861) + expo-router: 4.0.21(db75ddb6feea98d416fb039d797c03e6) glob: 11.0.1 hono: 4.8.3 openai: 4.104.0(encoding@0.1.13)(ws@8.18.3)(zod@3.25.76) @@ -29099,13 +29275,13 @@ snapshots: - supports-color - ws - freestyle-sandboxes@0.0.92(672f7be0dc39c7396cf7433b7b8a4026): + freestyle-sandboxes@0.0.92(f09cefd52aafb16c9a9571af33ec7b89): dependencies: '@hey-api/client-fetch': 0.5.7 '@tanstack/react-query': 5.81.5(react@18.3.1) '@types/react': 18.3.12 - expo-router: 4.0.21(ac684ef6e40bdfd939acf2f515064861) - freestyle-sandboxes: 0.0.66(672f7be0dc39c7396cf7433b7b8a4026) + expo-router: 4.0.21(db75ddb6feea98d416fb039d797c03e6) + freestyle-sandboxes: 0.0.66(f09cefd52aafb16c9a9571af33ec7b89) glob: 11.0.1 hono: 4.8.3 openai: 4.104.0(encoding@0.1.13)(ws@8.18.3)(zod@3.25.76) @@ -31693,11 +31869,19 @@ snapshots: react: 18.3.1 use-intl: 3.19.1(react@18.3.1) - next-intl@3.19.1(next@16.0.9(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@18.3.1): + next-intl@3.19.1(next@16.0.10(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@18.3.1): dependencies: '@formatjs/intl-localematcher': 0.5.4 negotiator: 0.6.4 - next: 16.0.9(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1) + next: 16.0.10(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1) + react: 18.3.1 + use-intl: 3.19.1(react@18.3.1) + + next-intl@3.19.1(next@16.0.10(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.1))(react@19.2.1))(react@18.3.1): + dependencies: + '@formatjs/intl-localematcher': 0.5.4 + negotiator: 0.6.4 + next: 16.0.10(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.1))(react@19.2.1) react: 18.3.1 use-intl: 3.19.1(react@18.3.1) @@ -31854,33 +32038,9 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@15.4.9(@babel/core@7.28.5)(@opentelemetry/api@1.9.0)(react-dom@19.0.1(react@19.0.1))(react@19.0.1): + next@16.0.10(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1): dependencies: - '@next/env': 15.4.9 - '@swc/helpers': 0.5.15 - caniuse-lite: 1.0.30001751 - postcss: 8.4.31 - react: 19.0.1 - react-dom: 19.0.1(react@19.0.1) - styled-jsx: 5.1.6(@babel/core@7.28.5)(react@19.0.1) - optionalDependencies: - '@next/swc-darwin-arm64': 15.4.8 - '@next/swc-darwin-x64': 15.4.8 - '@next/swc-linux-arm64-gnu': 15.4.8 - '@next/swc-linux-arm64-musl': 15.4.8 - '@next/swc-linux-x64-gnu': 15.4.8 - '@next/swc-linux-x64-musl': 15.4.8 - '@next/swc-win32-arm64-msvc': 15.4.8 - '@next/swc-win32-x64-msvc': 15.4.8 - '@opentelemetry/api': 1.9.0 - sharp: 0.34.4 - transitivePeerDependencies: - - '@babel/core' - - babel-plugin-macros - - next@16.0.9(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1): - dependencies: - '@next/env': 16.0.9 + '@next/env': 16.0.10 '@swc/helpers': 0.5.15 caniuse-lite: 1.0.30001751 postcss: 8.4.31 @@ -31888,38 +32048,62 @@ snapshots: react-dom: 19.2.1(react@19.2.1) styled-jsx: 5.1.6(@babel/core@7.26.0)(react@19.2.1) optionalDependencies: - '@next/swc-darwin-arm64': 16.0.9 - '@next/swc-darwin-x64': 16.0.9 - '@next/swc-linux-arm64-gnu': 16.0.9 - '@next/swc-linux-arm64-musl': 16.0.9 - '@next/swc-linux-x64-gnu': 16.0.9 - '@next/swc-linux-x64-musl': 16.0.9 - '@next/swc-win32-arm64-msvc': 16.0.9 - '@next/swc-win32-x64-msvc': 16.0.9 + '@next/swc-darwin-arm64': 16.0.10 + '@next/swc-darwin-x64': 16.0.10 + '@next/swc-linux-arm64-gnu': 16.0.10 + '@next/swc-linux-arm64-musl': 16.0.10 + '@next/swc-linux-x64-gnu': 16.0.10 + '@next/swc-linux-x64-musl': 16.0.10 + '@next/swc-win32-arm64-msvc': 16.0.10 + '@next/swc-win32-x64-msvc': 16.0.10 '@opentelemetry/api': 1.9.0 sharp: 0.34.4 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros - next@16.0.9(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.1(react@19.2.1))(react@19.2.1): + next@16.0.10(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.1))(react@19.2.1): dependencies: - '@next/env': 16.0.9 + '@next/env': 16.0.10 '@swc/helpers': 0.5.15 caniuse-lite: 1.0.30001751 postcss: 8.4.31 react: 19.2.1 - react-dom: 19.2.1(react@19.2.1) - styled-jsx: 5.1.6(@babel/core@7.28.0)(react@19.2.1) + react-dom: 19.2.3(react@19.2.1) + styled-jsx: 5.1.6(@babel/core@7.26.0)(react@19.2.1) optionalDependencies: - '@next/swc-darwin-arm64': 16.0.9 - '@next/swc-darwin-x64': 16.0.9 - '@next/swc-linux-arm64-gnu': 16.0.9 - '@next/swc-linux-arm64-musl': 16.0.9 - '@next/swc-linux-x64-gnu': 16.0.9 - '@next/swc-linux-x64-musl': 16.0.9 - '@next/swc-win32-arm64-msvc': 16.0.9 - '@next/swc-win32-x64-msvc': 16.0.9 + '@next/swc-darwin-arm64': 16.0.10 + '@next/swc-darwin-x64': 16.0.10 + '@next/swc-linux-arm64-gnu': 16.0.10 + '@next/swc-linux-arm64-musl': 16.0.10 + '@next/swc-linux-x64-gnu': 16.0.10 + '@next/swc-linux-x64-musl': 16.0.10 + '@next/swc-win32-arm64-msvc': 16.0.10 + '@next/swc-win32-x64-msvc': 16.0.10 + '@opentelemetry/api': 1.9.0 + sharp: 0.34.4 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + + next@16.0.10(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3): + dependencies: + '@next/env': 16.0.10 + '@swc/helpers': 0.5.15 + caniuse-lite: 1.0.30001751 + postcss: 8.4.31 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + styled-jsx: 5.1.6(@babel/core@7.28.0)(react@19.2.3) + optionalDependencies: + '@next/swc-darwin-arm64': 16.0.10 + '@next/swc-darwin-x64': 16.0.10 + '@next/swc-linux-arm64-gnu': 16.0.10 + '@next/swc-linux-arm64-musl': 16.0.10 + '@next/swc-linux-x64-gnu': 16.0.10 + '@next/swc-linux-x64-musl': 16.0.10 + '@next/swc-win32-arm64-msvc': 16.0.10 + '@next/swc-win32-x64-msvc': 16.0.10 '@opentelemetry/api': 1.9.0 sharp: 0.34.4 transitivePeerDependencies: @@ -32974,6 +33158,16 @@ snapshots: react: 19.2.1 scheduler: 0.27.0 + react-dom@19.2.3(react@19.2.1): + dependencies: + react: 19.2.1 + scheduler: 0.27.0 + + react-dom@19.2.3(react@19.2.3): + dependencies: + react: 19.2.3 + scheduler: 0.27.0 + react-easy-crop@5.4.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1): dependencies: normalize-wheel: 1.0.1 @@ -32983,9 +33177,9 @@ snapshots: react-fast-compare@3.2.2: {} - react-freeze@1.0.4(react@19.0.1): + react-freeze@1.0.4(react@19.2.3): dependencies: - react: 19.0.1 + react: 19.2.3 react-globe.gl@2.28.2(react@19.2.1): dependencies: @@ -32994,13 +33188,13 @@ snapshots: react: 19.2.1 react-kapsule: 2.5.2(react@19.2.1) - react-helmet-async@1.3.0(react-dom@19.0.1(react@19.0.1))(react@18.3.1): + react-helmet-async@1.3.0(react-dom@19.2.3(react@19.2.3))(react@18.3.1): dependencies: '@babel/runtime': 7.26.0 invariant: 2.2.4 prop-types: 15.8.1 react: 18.3.1 - react-dom: 19.0.1(react@19.0.1) + react-dom: 19.2.3(react@19.2.3) react-fast-compare: 3.2.2 shallowequal: 1.1.0 @@ -33082,10 +33276,10 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-native-edge-to-edge@1.6.0(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1): + react-native-edge-to-edge@1.6.0(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3): dependencies: - react: 19.0.1 - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) + react: 19.2.3 + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) react-native-helmet-async@2.0.4(react@18.3.1): dependencies: @@ -33094,43 +33288,43 @@ snapshots: react-fast-compare: 3.2.2 shallowequal: 1.1.0 - react-native-is-edge-to-edge@1.2.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@18.3.1): + react-native-is-edge-to-edge@1.2.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@18.3.1): dependencies: react: 18.3.1 - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) - react-native-is-edge-to-edge@1.2.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1): + react-native-is-edge-to-edge@1.2.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3): dependencies: - react: 19.0.1 - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) + react: 19.2.3 + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) - react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1): + react-native-safe-area-context@5.5.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3): dependencies: - react: 19.0.1 - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) + react: 19.2.3 + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) - react-native-screens@4.11.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1): + react-native-screens@4.11.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3): dependencies: - react: 19.0.1 - react-freeze: 1.0.4(react@19.0.1) - react-native: 0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1) - react-native-is-edge-to-edge: 1.2.1(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) + react: 19.2.3 + react-freeze: 1.0.4(react@19.2.3) + react-native: 0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3) + react-native-is-edge-to-edge: 1.2.1(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) warn-once: 0.1.1 - react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1): + react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3): dependencies: '@jest/create-cache-key-function': 29.7.0 '@react-native/assets-registry': 0.80.1 - '@react-native/codegen': 0.80.1(@babel/core@7.28.5) + '@react-native/codegen': 0.80.1(@babel/core@7.28.0) '@react-native/community-cli-plugin': 0.80.1 '@react-native/gradle-plugin': 0.80.1 '@react-native/js-polyfills': 0.80.1 '@react-native/normalize-colors': 0.80.1 - '@react-native/virtualized-lists': 0.80.1(@types/react@18.3.12)(react-native@0.80.1(@babel/core@7.28.5)(@types/react@18.3.12)(react@19.0.1))(react@19.0.1) + '@react-native/virtualized-lists': 0.80.1(@types/react@18.3.12)(react-native@0.80.1(@babel/core@7.28.0)(@types/react@18.3.12)(react@19.2.3))(react@19.2.3) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 - babel-jest: 29.7.0(@babel/core@7.28.5) + babel-jest: 29.7.0(@babel/core@7.28.0) babel-plugin-syntax-hermes-parser: 0.28.1 base64-js: 1.5.1 chalk: 4.1.2 @@ -33145,7 +33339,7 @@ snapshots: nullthrows: 1.1.1 pretty-format: 29.7.0 promise: 8.3.0 - react: 19.0.1 + react: 19.2.3 react-devtools-core: 6.1.5 react-refresh: 0.14.2 regenerator-runtime: 0.13.11 @@ -33334,6 +33528,8 @@ snapshots: react@19.2.1: {} + react@19.2.3: {} + read-cache@1.0.0: dependencies: pify: 2.3.0 @@ -33601,9 +33797,9 @@ snapshots: requires-port@1.0.0: {} - resend@6.0.1(@react-email/render@1.2.1(react-dom@19.0.1(react@19.0.1))(react@19.0.1)): + resend@6.0.1(@react-email/render@1.2.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3)): optionalDependencies: - '@react-email/render': 1.2.1(react-dom@19.0.1(react@19.0.1))(react@19.0.1) + '@react-email/render': 1.2.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3) resolve-alpn@1.2.1: {} @@ -34465,20 +34661,13 @@ snapshots: optionalDependencies: '@babel/core': 7.26.0 - styled-jsx@5.1.6(@babel/core@7.28.0)(react@19.2.1): + styled-jsx@5.1.6(@babel/core@7.28.0)(react@19.2.3): dependencies: client-only: 0.0.1 - react: 19.2.1 + react: 19.2.3 optionalDependencies: '@babel/core': 7.28.0 - styled-jsx@5.1.6(@babel/core@7.28.5)(react@19.0.1): - dependencies: - client-only: 0.0.1 - react: 19.0.1 - optionalDependencies: - '@babel/core': 7.28.5 - styled-jsx@5.1.6(@babel/core@7.28.5)(react@19.2.1): dependencies: client-only: 0.0.1 @@ -34563,18 +34752,18 @@ snapshots: react: 18.3.1 use-sync-external-store: 1.5.0(react@18.3.1) - swr@2.3.4(react@19.0.1): - dependencies: - dequal: 2.0.3 - react: 19.0.1 - use-sync-external-store: 1.5.0(react@19.0.1) - swr@2.3.4(react@19.2.1): dependencies: dequal: 2.0.3 react: 19.2.1 use-sync-external-store: 1.5.0(react@19.2.1) + swr@2.3.4(react@19.2.3): + dependencies: + dequal: 2.0.3 + react: 19.2.3 + use-sync-external-store: 1.5.0(react@19.2.3) + symbol-tree@3.2.4: {} symlink-or-copy@1.3.1: {} @@ -35410,9 +35599,9 @@ snapshots: dependencies: react: 18.3.1 - use-latest-callback@0.2.4(react@19.0.1): + use-latest-callback@0.2.4(react@19.2.3): dependencies: - react: 19.0.1 + react: 19.2.3 use-latest@1.3.0(@types/react@18.3.12)(react@19.2.1): dependencies: @@ -35449,14 +35638,14 @@ snapshots: dependencies: react: 18.3.1 - use-sync-external-store@1.5.0(react@19.0.1): - dependencies: - react: 19.0.1 - use-sync-external-store@1.5.0(react@19.2.1): dependencies: react: 19.2.1 + use-sync-external-store@1.5.0(react@19.2.3): + dependencies: + react: 19.2.3 + util-deprecate@1.0.2: {} util@0.10.4: