From fcf07ca3403b4aded5fa8897cd9f55e9a23b6e56 Mon Sep 17 00:00:00 2001 From: Tim Neutkens Date: Thu, 26 Sep 2024 09:52:42 +0200 Subject: [PATCH] Upgrade Next.js & enable Turbopack (#281) * Move next/headers to be used correctly * Upgrade Next.js * Enable Turbopack --- apps/web/package.json | 9 +- apps/web/src/actions/user/logoutAction.ts | 2 +- .../user/refreshWebsocketTokenAction.ts | 2 +- apps/web/src/services/auth/getSession.ts | 2 +- apps/web/src/services/auth/removeSession.ts | 4 +- packages/web-ui/tailwind.config.js | 2 +- pnpm-lock.yaml | 1715 +++++++++-------- 7 files changed, 901 insertions(+), 835 deletions(-) diff --git a/apps/web/package.json b/apps/web/package.json index f9e9dd034..8ad8366d8 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -4,7 +4,7 @@ "private": true, "scripts": { "build": "next build --debug", - "dev": "NODE_DEBUG=latitude:debug next dev", + "dev": "NODE_DEBUG=latitude:debug next dev --turbo", "dev:debug": "NODE_DEBUG=latitude:debug NODE_OPTIONS='--inspect=0.0.0.0:9229' ./node_modules/.bin/next dev", "dev:local": "USE_LOCALHOST=true pnpm run dev", "lint": "next lint", @@ -38,13 +38,14 @@ "lucia": "^3.2.0", "monaco-editor": "^0.50.0", "nanoid": "^5.0.7", - "next": "^14.3.0-canary.87", + "next": "15.0.0-canary.168", "next-themes": "^0.3.0", "nextjs-toploader": "^1.6.12", "nprogress": "^0.2.0", + "oslo": "1.2.0", "posthog-js": "^1.161.6", - "react": "19.0.0-rc-f994737d14-20240522", - "react-dom": "19.0.0-rc-f994737d14-20240522", + "react": "19.0.0-rc-5d19e1c8-20240923", + "react-dom": "19.0.0-rc-5d19e1c8-20240923", "socket.io-react-hook": "^2.4.5", "swr": "^2.2.5", "use-debounce": "^10.0.1", diff --git a/apps/web/src/actions/user/logoutAction.ts b/apps/web/src/actions/user/logoutAction.ts index 7072102f2..149b4e5fc 100644 --- a/apps/web/src/actions/user/logoutAction.ts +++ b/apps/web/src/actions/user/logoutAction.ts @@ -5,6 +5,7 @@ import { authProcedure } from '$/actions/procedures' import { removeSession } from '$/services/auth/removeSession' import { ROUTES } from '$/services/routes' import { ReadonlyRequestCookies } from 'next/dist/server/web/spec-extension/adapters/request-cookies' +import { cookies as getCookies } from 'next/headers' import { redirect } from 'next/navigation' function removeSocketCookie({ @@ -21,7 +22,6 @@ export const logoutAction = authProcedure .createServerAction() .handler(async ({ ctx }) => { removeSession({ session: ctx.session }) - const { cookies: getCookies } = await import('next/headers') const cookies = getCookies() removeSocketCookie({ name: 'websocket', cookies }) diff --git a/apps/web/src/actions/user/refreshWebsocketTokenAction.ts b/apps/web/src/actions/user/refreshWebsocketTokenAction.ts index 116864f92..454158436 100644 --- a/apps/web/src/actions/user/refreshWebsocketTokenAction.ts +++ b/apps/web/src/actions/user/refreshWebsocketTokenAction.ts @@ -2,13 +2,13 @@ import { verifyWebsocketToken } from '@latitude-data/core/websockets/utils' import { setWebsocketSessionCookie } from '$/services/auth/setSession' +import { cookies } from 'next/headers' import { authProcedure } from '../procedures' export const refreshWebesocketTokenAction = authProcedure .createServerAction() .handler(async ({ ctx: { user, workspace } }) => { - const { cookies } = await import('next/headers') const refreshWebsocketCookie = cookies().get('websocketRefresh') const refreshToken = refreshWebsocketCookie?.value const result = await verifyWebsocketToken({ diff --git a/apps/web/src/services/auth/getSession.ts b/apps/web/src/services/auth/getSession.ts index 55a6af341..04fd1d614 100644 --- a/apps/web/src/services/auth/getSession.ts +++ b/apps/web/src/services/auth/getSession.ts @@ -1,4 +1,5 @@ import type { Session, User } from 'lucia' +import { cookies } from 'next/headers' import { lucia } from '.' @@ -7,7 +8,6 @@ export async function getSession(): Promise< > { // NOTE: We dynamically import the cookies function to make Nextjs happy // Info: https://github.com/vercel/next.js/issues/49757 - const { cookies } = await import('next/headers') const sessionId = cookies().get(lucia.sessionCookieName)?.value ?? null if (!sessionId) { return { diff --git a/apps/web/src/services/auth/removeSession.ts b/apps/web/src/services/auth/removeSession.ts index 16e5ccc2f..9aaedba6d 100644 --- a/apps/web/src/services/auth/removeSession.ts +++ b/apps/web/src/services/auth/removeSession.ts @@ -1,11 +1,9 @@ import { Session } from 'lucia' +import { cookies } from 'next/headers' import { lucia } from '.' export async function removeSession({ session }: { session: Session }) { - // NOTE: We dynamically import the cookies function to make Nextjs happy - // Info: https://github.com/vercel/next.js/issues/49757 - const { cookies } = await import('next/headers') await lucia.invalidateSession(session.id) const sessionCookie = lucia.createBlankSessionCookie() cookies().set( diff --git a/packages/web-ui/tailwind.config.js b/packages/web-ui/tailwind.config.js index 8a1704f50..267b7e81c 100644 --- a/packages/web-ui/tailwind.config.js +++ b/packages/web-ui/tailwind.config.js @@ -1,5 +1,5 @@ /** @type {import('tailwindcss').Config} */ -module.exports = { +export default { darkMode: ['class'], content: ['./src/**/*.{ts,tsx}'], theme: { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2d24de769..3d529e091 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -25,10 +25,10 @@ importers: version: 0.0.54(zod@3.23.8) '@aws-sdk/client-s3': specifier: ^3.645.0 - version: 3.654.0 + version: 3.658.0 '@aws-sdk/s3-request-presigner': specifier: ^3.645.0 - version: 3.654.0 + version: 3.658.0 '@monaco-editor/react': specifier: ^4.6.0 version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -79,13 +79,13 @@ importers: version: 0.11.1(typescript@5.6.2)(zod@3.23.8) ai: specifier: ^3.2.42 - version: 3.3.43(react@18.3.1)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.6(typescript@5.6.2))(zod@3.23.8) + version: 3.4.2(react@18.3.1)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.8(typescript@5.6.2))(zod@3.23.8) argon2: specifier: ^0.41.0 version: 0.41.1 bullmq: specifier: ^5.12.11 - version: 5.13.1 + version: 5.13.2 class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -103,13 +103,13 @@ importers: version: 0.33.0(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@18.3.0)(pg@8.13.0)(react@18.3.1) flydrive: specifier: ^1.1.0 - version: 1.1.0(@aws-sdk/client-s3@3.654.0)(@aws-sdk/s3-request-presigner@3.654.0) + version: 1.1.0(@aws-sdk/client-s3@3.658.0)(@aws-sdk/s3-request-presigner@3.658.0) ioredis: specifier: ^5.4.1 version: 5.4.1 jose: specifier: ^5.8.0 - version: 5.9.2 + version: 5.9.3 lodash-es: specifier: ^4.17.21 version: 4.17.21 @@ -151,16 +151,16 @@ importers: version: 2.13.0-alpha.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) socket.io-client: specifier: ^4.7.5 - version: 4.7.5 + version: 4.8.0 tailwind-merge: specifier: ^2.4.0 version: 2.5.2 tailwindcss: specifier: ^3.4.4 - version: 3.4.12(ts-node@10.9.2(@types/node@22.5.5)(typescript@5.6.2)) + version: 3.4.13(ts-node@10.9.2(@types/node@22.7.0)(typescript@5.6.2)) tailwindcss-animate: specifier: ^1.0.7 - version: 1.0.7(tailwindcss@3.4.12(ts-node@10.9.2(@types/node@22.5.5)(typescript@5.6.2))) + version: 1.0.7(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.0)(typescript@5.6.2))) use-debounce: specifier: ^10.0.1 version: 10.0.3(react@18.3.1) @@ -179,14 +179,14 @@ importers: version: 4.2.19 vue: specifier: ^3.4.38 - version: 3.5.6(typescript@5.6.2) + version: 3.5.8(typescript@5.6.2) devDependencies: '@babel/parser': specifier: ^7.25.4 version: 7.25.6 '@types/node': specifier: ^22.5.1 - version: 22.5.5 + version: 22.7.0 eslint: specifier: '8' version: 8.57.1 @@ -210,10 +210,10 @@ importers: dependencies: '@hono/node-server': specifier: ^1.12.0 - version: 1.13.0(hono@4.6.2) + version: 1.13.1(hono@4.6.3) '@hono/zod-validator': specifier: ^0.2.2 - version: 0.2.2(hono@4.6.2)(zod@3.23.8) + version: 0.2.2(hono@4.6.3)(zod@3.23.8) '@latitude-data/compiler': specifier: workspace:^ version: link:../../packages/compiler @@ -231,7 +231,7 @@ importers: version: link:../../packages/mailers '@sentry/node': specifier: ^8.30.0 - version: 8.30.0 + version: 8.32.0 '@t3-oss/env-core': specifier: ^0.10.1 version: 0.10.1(typescript@5.6.2)(zod@3.23.8) @@ -240,7 +240,7 @@ importers: version: 0.33.0(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@18.3.0)(pg@8.13.0)(react@18.3.1) hono: specifier: ^4.5.3 - version: 4.6.2 + version: 4.6.3 jet-paths: specifier: ^1.0.6 version: 1.0.9 @@ -262,7 +262,7 @@ importers: version: 4.17.12 '@types/node': specifier: ^22.5.1 - version: 22.5.5 + version: 22.7.0 '@types/uuid': specifier: ^10.0.0 version: 10.0.0 @@ -274,29 +274,29 @@ importers: version: 4.19.1 vitest: specifier: ^2.0.4 - version: 2.1.1(@types/node@22.5.5)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0) + version: 2.1.1(@types/node@22.7.0)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0) apps/infra: dependencies: '@pulumi/aws': specifier: ^6.50.1 - version: 6.52.0(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2) + version: 6.52.0(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2) '@pulumi/awsx': specifier: ^2.14.0 - version: 2.15.0(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2) + version: 2.15.0(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2) '@pulumi/docker': specifier: ^4.5.5 - version: 4.5.5(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2) + version: 4.5.6(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2) '@pulumi/pulumi': specifier: ^3.113.0 - version: 3.133.0(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2) + version: 3.134.0(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2) devDependencies: '@types/node': specifier: ^18 - version: 18.19.50 + version: 18.19.51 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@18.19.50)(typescript@5.6.2) + version: 10.9.2(@types/node@18.19.51)(typescript@5.6.2) tsconfig-paths: specifier: ^4.2.0 version: 4.2.0 @@ -326,37 +326,37 @@ importers: version: link:../../packages/web-ui '@lucia-auth/adapter-drizzle': specifier: ^1.0.7 - version: 1.1.0(drizzle-orm@0.33.0(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@18.3.0)(pg@8.13.0)(react@19.0.0-rc-f994737d14-20240522))(lucia@3.2.0) + version: 1.1.0(drizzle-orm@0.33.0(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@18.3.0)(pg@8.13.0)(react@19.0.0-rc-5d19e1c8-20240923))(lucia@3.2.0) '@monaco-editor/react': specifier: ^4.6.0 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923) '@sentry/nextjs': specifier: ^8 - version: 8.30.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.3.0-canary.87(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)(webpack@5.94.0) + version: 8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.0.0-canary.168(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923)(webpack@5.94.0(esbuild@0.19.12)) '@sentry/utils': specifier: ^8.30.0 - version: 8.30.0 + version: 8.32.0 '@t3-oss/env-nextjs': specifier: ^0.10.1 version: 0.10.1(typescript@5.6.2)(zod@3.23.8) ai: specifier: ^3.2.42 - version: 3.3.43(react@19.0.0-rc-f994737d14-20240522)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.6(typescript@5.6.2))(zod@3.23.8) + version: 3.4.2(react@19.0.0-rc-5d19e1c8-20240923)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.8(typescript@5.6.2))(zod@3.23.8) bullmq: specifier: ^5.8.5 - version: 5.13.1 + version: 5.13.2 date-fns: specifier: ^3.6.0 version: 3.6.0 drizzle-orm: specifier: ^0.33.0 - version: 0.33.0(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@18.3.0)(pg@8.13.0)(react@19.0.0-rc-f994737d14-20240522) + version: 0.33.0(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@18.3.0)(pg@8.13.0)(react@19.0.0-rc-5d19e1c8-20240923) ioredis: specifier: ^5.4.1 version: 5.4.1 jose: specifier: ^5.8.0 - version: 5.9.2 + version: 5.9.3 js-cookie: specifier: ^3.0.5 version: 3.0.5 @@ -373,35 +373,38 @@ importers: specifier: ^5.0.7 version: 5.0.7 next: - specifier: ^14.3.0-canary.87 - version: 14.3.0-canary.87(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) + specifier: 15.0.0-canary.168 + version: 15.0.0-canary.168(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923) next-themes: specifier: ^0.3.0 - version: 0.3.0(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) + version: 0.3.0(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923) nextjs-toploader: specifier: ^1.6.12 - version: 1.6.12(next@14.3.0-canary.87(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522))(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) + version: 1.6.12(next@15.0.0-canary.168(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923))(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923) nprogress: specifier: ^0.2.0 version: 0.2.0 + oslo: + specifier: 1.2.0 + version: 1.2.0 posthog-js: specifier: ^1.161.6 - version: 1.163.0 + version: 1.165.0 react: - specifier: 19.0.0-rc-f994737d14-20240522 - version: 19.0.0-rc-f994737d14-20240522 + specifier: 19.0.0-rc-5d19e1c8-20240923 + version: 19.0.0-rc-5d19e1c8-20240923 react-dom: - specifier: 19.0.0-rc-f994737d14-20240522 - version: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) + specifier: 19.0.0-rc-5d19e1c8-20240923 + version: 19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923) socket.io-react-hook: specifier: ^2.4.5 - version: 2.4.5(react@19.0.0-rc-f994737d14-20240522) + version: 2.4.5(react@19.0.0-rc-5d19e1c8-20240923) swr: specifier: ^2.2.5 - version: 2.2.5(react@19.0.0-rc-f994737d14-20240522) + version: 2.2.5(react@19.0.0-rc-5d19e1c8-20240923) use-debounce: specifier: ^10.0.1 - version: 10.0.3(react@19.0.0-rc-f994737d14-20240522) + version: 10.0.3(react@19.0.0-rc-5d19e1c8-20240923) yaml: specifier: ^2.4.5 version: 2.5.1 @@ -413,14 +416,14 @@ importers: version: 0.5.1(zod@3.23.8) zsa-react: specifier: ^0.2.2 - version: 0.2.3(react@19.0.0-rc-f994737d14-20240522)(zod@3.23.8) + version: 0.2.3(react@19.0.0-rc-5d19e1c8-20240923)(zod@3.23.8) optionalDependencies: svelte: specifier: ^4.2.19 version: 4.2.19 vue: specifier: ^3.4.38 - version: 3.5.6(typescript@5.6.2) + version: 3.5.8(typescript@5.6.2) devDependencies: '@faker-js/faker': specifier: ^8.4.1 @@ -439,10 +442,10 @@ importers: version: 10.4.0 '@testing-library/react': specifier: ^16.0.0 - version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) + version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923) '@testing-library/react-hooks': specifier: ^8.0.1 - version: 8.0.1(@types/react@18.3.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) + version: 8.0.1(@types/react@18.3.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923) '@types/js-cookie': specifier: ^3.0.6 version: 3.0.6 @@ -451,7 +454,7 @@ importers: version: 4.17.12 '@types/node': specifier: ^20.14.10 - version: 20.16.5 + version: 20.16.7 '@types/nprogress': specifier: ^0.2.3 version: 0.2.3 @@ -475,10 +478,10 @@ importers: version: 8.4.47 tailwindcss: specifier: ^3.4.4 - version: 3.4.12(ts-node@10.9.2(@types/node@20.16.5)(typescript@5.6.2)) + version: 3.4.13(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.6.2)) vitest: specifier: ^2.0.3 - version: 2.1.1(@types/node@20.16.5)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0) + version: 2.1.1(@types/node@20.16.7)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0) apps/websockets: dependencies: @@ -496,7 +499,7 @@ importers: version: 4.21.0 socket.io: specifier: ^4.7.5 - version: 4.7.5 + version: 4.8.0 devDependencies: '@latitude-data/eslint-config': specifier: workspace:^ @@ -512,7 +515,7 @@ importers: version: 4.17.21 '@types/node': specifier: ^22.5.1 - version: 22.5.5 + version: 22.7.0 tsup: specifier: ^8.2.4 version: 8.3.0(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(typescript@5.6.2)(yaml@2.5.1) @@ -536,7 +539,7 @@ importers: version: link:../../packages/mailers '@sentry/node': specifier: ^8.30.0 - version: 8.30.0 + version: 8.32.0 '@t3-oss/env-core': specifier: '*' version: 0.11.1(typescript@5.6.2)(zod@3.23.8) @@ -552,7 +555,7 @@ importers: version: link:../../tools/typescript '@types/node': specifier: ^22.5.1 - version: 22.5.5 + version: 22.7.0 tsup: specifier: ^8.2.4 version: 8.3.0(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(typescript@5.6.2)(yaml@2.5.1) @@ -586,25 +589,25 @@ importers: version: link:../../tools/typescript '@rollup/plugin-alias': specifier: ^5.1.0 - version: 5.1.0(rollup@4.22.2) + version: 5.1.1(rollup@4.22.4) '@rollup/plugin-typescript': specifier: ^11.1.6 - version: 11.1.6(rollup@4.22.2)(tslib@2.7.0)(typescript@5.6.2) + version: 11.1.6(rollup@4.22.4)(tslib@2.7.0)(typescript@5.6.2) '@types/estree': specifier: ^1.0.1 version: 1.0.6 '@types/node': specifier: ^20.12.12 - version: 20.16.5 + version: 20.16.7 rollup: specifier: ^4.10.0 - version: 4.22.2 + version: 4.22.4 rollup-plugin-dts: specifier: ^6.1.1 - version: 6.1.1(rollup@4.22.2)(typescript@5.6.2) + version: 6.1.1(rollup@4.22.4)(typescript@5.6.2) vitest: specifier: ^1.2.2 - version: 1.6.0(@types/node@20.16.5)(jsdom@24.1.3)(terser@5.33.0) + version: 1.6.0(@types/node@20.16.7)(jsdom@24.1.3)(terser@5.33.0) packages/core: dependencies: @@ -632,10 +635,10 @@ importers: version: 0.0.54(zod@3.23.8) '@aws-sdk/client-s3': specifier: ^3.645.0 - version: 3.654.0 + version: 3.658.0 '@aws-sdk/s3-request-presigner': specifier: ^3.645.0 - version: 3.654.0 + version: 3.658.0 '@faker-js/faker': specifier: ^8.4.1 version: 8.4.1 @@ -665,7 +668,7 @@ importers: version: 4.17.12 '@types/node': specifier: ^22.5.0 - version: 22.5.5 + version: 22.7.0 '@types/pg': specifier: ^8.11.6 version: 8.11.10 @@ -674,7 +677,7 @@ importers: version: 10.0.0 ai: specifier: ^3.2.42 - version: 3.3.43(react@18.3.1)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.6(typescript@5.6.2))(zod@3.23.8) + version: 3.4.2(react@18.3.1)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.8(typescript@5.6.2))(zod@3.23.8) argon2: specifier: ^0.41.0 version: 0.41.1 @@ -695,10 +698,10 @@ importers: version: 0.2.3(eslint@8.57.1) flydrive: specifier: ^1.1.0 - version: 1.1.0(@aws-sdk/client-s3@3.654.0)(@aws-sdk/s3-request-presigner@3.654.0) + version: 1.1.0(@aws-sdk/client-s3@3.658.0)(@aws-sdk/s3-request-presigner@3.658.0) jose: specifier: ^5.8.0 - version: 5.9.2 + version: 5.9.3 json-schema: specifier: ^0.4.0 version: 0.4.0 @@ -719,7 +722,7 @@ importers: version: 18.3.1 socket.io-client: specifier: ^4.7.5 - version: 4.7.5 + version: 4.8.0 supertest: specifier: ^7.0.0 version: 7.0.0 @@ -731,10 +734,10 @@ importers: version: 10.0.0 vitest: specifier: ^2.0.3 - version: 2.1.1(@types/node@22.5.5)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0) + version: 2.1.1(@types/node@22.7.0)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0) vue: specifier: ^3.4.38 - version: 3.5.6(typescript@5.6.2) + version: 3.5.8(typescript@5.6.2) zod: specifier: ^3.23.8 version: 3.23.8 @@ -774,16 +777,16 @@ importers: version: link:../../tools/typescript '@types/node': specifier: '*' - version: 22.5.5 + version: 22.7.0 bullmq: specifier: ^5.8.7 - version: 5.13.1 + version: 5.13.2 ioredis: specifier: ^5.4.1 version: 5.4.1 vitest: specifier: ^2.0.5 - version: 2.1.1(@types/node@22.5.5)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0) + version: 2.1.1(@types/node@22.7.0)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0) zod: specifier: ^3.23.8 version: 3.23.8 @@ -869,13 +872,13 @@ importers: version: link:../../../tools/typescript '@rollup/plugin-alias': specifier: ^5.1.0 - version: 5.1.0(rollup@4.22.2) + version: 5.1.1(rollup@4.22.4) '@rollup/plugin-replace': specifier: ^6.0.1 - version: 6.0.1(rollup@4.22.2) + version: 6.0.1(rollup@4.22.4) '@rollup/plugin-typescript': specifier: ^11.1.6 - version: 11.1.6(rollup@4.22.2)(tslib@2.7.0)(typescript@5.6.2) + version: 11.1.6(rollup@4.22.4)(tslib@2.7.0)(typescript@5.6.2) '@types/eventsource': specifier: ^1.1.15 version: 1.1.15 @@ -884,13 +887,13 @@ importers: version: 2.4.9(typescript@5.6.2) rollup: specifier: ^4.21.1 - version: 4.22.2 + version: 4.22.4 rollup-plugin-dts: specifier: ^6.1.1 - version: 6.1.1(rollup@4.22.2)(typescript@5.6.2) + version: 6.1.1(rollup@4.22.4)(typescript@5.6.2) vitest: specifier: ^2.0.5 - version: 2.1.1(@types/node@22.5.5)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0) + version: 2.1.1(@types/node@22.7.0)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0) packages/web-ui: dependencies: @@ -1017,16 +1020,16 @@ importers: version: 2.5.2 tailwindcss: specifier: ^3.4.4 - version: 3.4.12(ts-node@10.9.2(@types/node@22.5.5)(typescript@5.6.2)) + version: 3.4.13(ts-node@10.9.2(@types/node@22.7.0)(typescript@5.6.2)) tailwindcss-animate: specifier: ^1.0.7 - version: 1.0.7(tailwindcss@3.4.12(ts-node@10.9.2(@types/node@22.5.5)(typescript@5.6.2))) + version: 1.0.7(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.0)(typescript@5.6.2))) use-debounce: specifier: ^10.0.1 version: 10.0.3(react@18.3.0) vitest: specifier: ^2.0.3 - version: 2.1.1(@types/node@22.5.5)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0) + version: 2.1.1(@types/node@22.7.0)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0) zod: specifier: ^3.23.8 version: 3.23.8 @@ -1038,7 +1041,7 @@ importers: devDependencies: '@ianvs/prettier-plugin-sort-imports': specifier: ^4.3.0 - version: 4.3.1(@vue/compiler-sfc@3.5.6)(prettier@3.3.3) + version: 4.3.1(@vue/compiler-sfc@3.5.8)(prettier@3.3.3) '@typescript-eslint/eslint-plugin': specifier: ^7.16.0 version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2) @@ -1118,8 +1121,8 @@ packages: resolution: {integrity: sha512-oAc49O5+xypVrKM7EUU5P/Y4DUL4JZUWVxhejoAVOTOl3WZUEWsMbP3QZR+TrimQIsS0WR/n9UuF6U0jPdp0tQ==} engines: {node: '>=18'} - '@ai-sdk/react@0.0.59': - resolution: {integrity: sha512-1WbgO3J2/OoheMuNMxy5itJ3NVqOpqpAQxFNp7AoXgnDv4wDF4kTif61rTlKh7dCPvBHj2HXLmob+TrVFaWhYw==} + '@ai-sdk/react@0.0.60': + resolution: {integrity: sha512-FCOaAh7sxzUK07cXUTIvyjqrx1I2/8CQk6kcZMDSuec6iXcyPlExxfbDo6/7j7xYRqSQGKxou6rBThdHi6oEUg==} engines: {node: '>=18'} peerDependencies: react: ^18 || ^19 @@ -1157,8 +1160,8 @@ packages: zod: optional: true - '@ai-sdk/vue@0.0.50': - resolution: {integrity: sha512-eIWfxqpKwRdL3rxJMg1HDJcjfugFJGg4P934Tl69S7UCot2/U4BPZoESVJQFroS1elbKHaMRgv0ZJt1ddWQPjQ==} + '@ai-sdk/vue@0.0.51': + resolution: {integrity: sha512-6RjuuRGf749EjnsfbETJpF0fmq6a1lF6qUUUnd/Q1Ojf0tX8fI4qwvNykbECZHWuIj42EqZ3HDuNNR9c8oG4rA==} engines: {node: '>=18'} peerDependencies: vue: ^3.3.4 @@ -1197,30 +1200,30 @@ packages: '@aws-crypto/util@5.2.0': resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==} - '@aws-sdk/client-ecs@3.654.0': - resolution: {integrity: sha512-clBMPXHrV5HRCmfwN1crqf6BgOHmRvOiMowSOD0FTJfKQYjDdca5a5M0S2wxNEOyxl6WqO57i1fmtN9RAttVJw==} + '@aws-sdk/client-ecs@3.658.0': + resolution: {integrity: sha512-/a2YQBaGx4dqzrUwrV/CkEL7bk92QiFFdeFVOvk01CWT3bEm3Mm/K6bcwMLtHueG/F4rzeOyGurh94anIVi7qw==} engines: {node: '>=16.0.0'} - '@aws-sdk/client-s3@3.654.0': - resolution: {integrity: sha512-EsyeZJhkZD2VMdZpNt4NhlQ3QUAF24gMC+5w2wpGg6Yw+Bv7VLdg1t3PkTQovriJX1KTJAYHcGAuy92OFmWIng==} + '@aws-sdk/client-s3@3.658.0': + resolution: {integrity: sha512-3lyew20RoLKg9S1RzVyYgLNxknoXkN/0o9PMiRq77yBIQHZj3x7/wmKseiGEFoF08YKFkh1MPq/p34qRlOmtBg==} engines: {node: '>=16.0.0'} - '@aws-sdk/client-sso-oidc@3.654.0': - resolution: {integrity: sha512-gbHrKsEnaAtmkNCVQzLyiqMzpDaThV/bWl/ODEklI+t6stW3Pe3oDMstEHLfJ6JU5g8sYnx4VLuxlnJMtUkvPw==} + '@aws-sdk/client-sso-oidc@3.658.0': + resolution: {integrity: sha512-+oZcf9Wm7BlAhakSnxftmpeMwJLXQPesOcIX+ViF6HWSfMid4LY8Cq0jJ9si3HSe216GVMiAlBbNksayzHNdlA==} engines: {node: '>=16.0.0'} peerDependencies: - '@aws-sdk/client-sts': ^3.654.0 + '@aws-sdk/client-sts': ^3.658.0 - '@aws-sdk/client-sso@3.654.0': - resolution: {integrity: sha512-4kBxs2IzCDtj6a6lRXa/lXK5wWpMGzwKtb+HMXf/rJYVM6x7wYRzc1hYrOd3DYkFQ/sR3dUFj+0mTP0os3aAbA==} + '@aws-sdk/client-sso@3.658.0': + resolution: {integrity: sha512-OtT6bXthyP/z7x2QDTWYz0mteXhQvV+mH4JgT7dW1Y5Kc/Xr85kIQ0ouypSLH14DeiT1Gd21kXKy4YuLEoWaYQ==} engines: {node: '>=16.0.0'} - '@aws-sdk/client-sts@3.654.0': - resolution: {integrity: sha512-tyHa8jsBy+/NQZFHm6Q2Q09Vi9p3EH4yPy6PU8yPewpi2klreObtrUd0anJa6nzjS9SSuqnlZWsRic3cQ4QwCg==} + '@aws-sdk/client-sts@3.658.0': + resolution: {integrity: sha512-SffIgt/Mzwq3ijkg3lZjndkrqS1d6OeDcUi7IAO2w4KC4nM6yH1zZNSjNWvdjEvUp0Gz2kk54HvyP/r9DqTg6Q==} engines: {node: '>=16.0.0'} - '@aws-sdk/core@3.654.0': - resolution: {integrity: sha512-4Rwx7BVaNaFqmXBDmnOkMbyuIFFbpZ+ru4lr660p45zY1QoNNSalechfoRffcokLFOZO+VWEJkdcorPUUU993w==} + '@aws-sdk/core@3.658.0': + resolution: {integrity: sha512-vtOUqYD2/SfWGxmfYneiqv4R64qtSRPqznHUcMCusq71ZG9iz90ZxRYxS8ABrvhWD+oUqnxHesO08VYtaL4oAg==} engines: {node: '>=16.0.0'} '@aws-sdk/credential-provider-env@3.654.0': @@ -1231,22 +1234,22 @@ packages: resolution: {integrity: sha512-tgmAH4MBi/aDR882lfw48+tDV95ZH3GWc1Eoe6DpNLiM3GN2VfU/cZwuHmi6aq+vAbdIlswBHJ/+va0fOvlyjw==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-ini@3.654.0': - resolution: {integrity: sha512-DKSdaNu2hwdmuvnm9KnA0NLqMWxxmxSOLWjSUSoFIm++wGXUjPrRMFYKvMktaXnPuyf5my8gF/yGbwzPZ8wlTg==} + '@aws-sdk/credential-provider-ini@3.658.0': + resolution: {integrity: sha512-fL4hAeF2jjSZ3Dm/kmU9AEDO8UARhUagUJ/UfXMxvkvmQ/jLydKA3ip5jMSf1fhu1TWoi/JBE/4cjKDbjwMzXA==} engines: {node: '>=16.0.0'} peerDependencies: - '@aws-sdk/client-sts': ^3.654.0 + '@aws-sdk/client-sts': ^3.658.0 - '@aws-sdk/credential-provider-node@3.654.0': - resolution: {integrity: sha512-wPV7CNYaXDEc+SS+3R0v8SZwkHRUE1z2k2j1d49tH5QBDT4tb/k2V/biXWkwSk3hbR+IMWXmuhJDv/5lybhIvg==} + '@aws-sdk/credential-provider-node@3.658.0': + resolution: {integrity: sha512-rdWBylUdT6/dK+zBj7jajJpUQ3rP/YvKo0peYhpTgpUSHjqkjrx/BRXE+iccbFimR8QSxwOJ4tsb15Gvuv0E4Q==} engines: {node: '>=16.0.0'} '@aws-sdk/credential-provider-process@3.654.0': resolution: {integrity: sha512-PmQoo8sZ9Q2Ow8OMzK++Z9lI7MsRUG7sNq3E72DVA215dhtTICTDQwGlXH2AAmIp7n+G9LLRds+4wo2ehG4mkg==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-sso@3.654.0': - resolution: {integrity: sha512-7GFme6fWEdA/XYKzZPOAdj/jS6fMBy1NdSIZsDXikS0v9jU+ZzHrAaWt13YLzHyjgxB9Sg9id9ncdY1IiubQXQ==} + '@aws-sdk/credential-provider-sso@3.658.0': + resolution: {integrity: sha512-zK5FwCZJ9OovBPpoVfhlNyUhdFCgkkVbQolR47UKXCREH/P6sOsVay4/CnwtVQeMGlv9c8F41ELJXWaTRmdwHA==} engines: {node: '>=16.0.0'} '@aws-sdk/credential-provider-web-identity@3.654.0': @@ -1263,8 +1266,8 @@ packages: resolution: {integrity: sha512-S7fSlo8vdjkQTy9DmdF54ZsPwc+aA4z5Y9JVqAlGL9QiZe/fPtRE3GZ8BBbMICjBfMEa12tWjzhDz9su2c6PIA==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-flexible-checksums@3.654.0': - resolution: {integrity: sha512-ZSRC+Lf9WxyoDLuTkd7JrFRrBLPLXcTOZzX6tDsnHc6tgdneBNwV3/ZOYUwQ8bdwLLnzSaQUU+X5B2BkEFKIhQ==} + '@aws-sdk/middleware-flexible-checksums@3.657.0': + resolution: {integrity: sha512-aOfK0YmuL8baCqJ5nArHKyyFko/tSWMjGcegOA4Jo+XAu1PEk0wDi78vOHlv4dfSlF8sXJsAo4kaCEDF3UkGAQ==} engines: {node: '>=16.0.0'} '@aws-sdk/middleware-host-header@3.654.0': @@ -1283,8 +1286,8 @@ packages: resolution: {integrity: sha512-gKSomgltKVmsT8sC6W7CrADZ4GHwX9epk3GcH6QhebVO3LA9LRbkL3TwOPUXakxxOLLUTYdOZLIOtFf7iH00lg==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-sdk-s3@3.654.0': - resolution: {integrity: sha512-6prq+GK6hLMAbxEb83tBMb1YiTWWK196fJhFO/7gE5TUPL1v756RhQZzKV/njbwB1fIBjRBTuhYLh5Bn98HhdA==} + '@aws-sdk/middleware-sdk-s3@3.658.0': + resolution: {integrity: sha512-LLJjO+74tXiJvMEsZ7v4M+1aJKZsNWbf/TvZCuNpNkvUakVWCkmPQl2Qmaft/y0LABADSz5yCSFAe2CZz5nIHw==} engines: {node: '>=16.0.0'} '@aws-sdk/middleware-ssec@3.654.0': @@ -1299,12 +1302,12 @@ packages: resolution: {integrity: sha512-ydGOrXJxj3x0sJhsXyTmvJVLAE0xxuTWFJihTl67RtaO7VRNtd82I3P3bwoMMaDn5WpmV5mPo8fEUDRlBm3fPg==} engines: {node: '>=16.0.0'} - '@aws-sdk/s3-request-presigner@3.654.0': - resolution: {integrity: sha512-se1DllTTkaB85RSB60U/VUq5rCzwhqYZudxrf1zlWD0YjZpwKqifWgBomd3AyPZtQRQOcQooBcmZCVfGfdAuJQ==} + '@aws-sdk/s3-request-presigner@3.658.0': + resolution: {integrity: sha512-nQp1yO8U899d45LH7WvGso/F4ZxtoLaLndcHFdyPhFoskczLH+t0a6KWbz4rpNWBKI6pLj1VOvkpwTGnNQ/mMw==} engines: {node: '>=16.0.0'} - '@aws-sdk/signature-v4-multi-region@3.654.0': - resolution: {integrity: sha512-f8kyvbzgD3lSK1kFc3jsDCYjdutcqGO3tOzYO/QIK7BTl5lxc4rm6IKTcF2UYJsn8jiNqih7tVK8aVIGi8IF/w==} + '@aws-sdk/signature-v4-multi-region@3.658.0': + resolution: {integrity: sha512-eK00rYVQVG2fqqR8QxrjxZxgJKasyz3honFfKFNB5nKyOvKXkVI5QJ3HvbrWgRaMt21n2qcYQZxTO6dTkfeWVA==} engines: {node: '>=16.0.0'} '@aws-sdk/token-providers@3.654.0': @@ -2204,8 +2207,8 @@ packages: engines: {node: '>=6'} hasBin: true - '@hono/node-server@1.13.0': - resolution: {integrity: sha512-kz323qIQkNQElEGroo/E9MKPDuIR5pkuk/XEWd50K+cSEKdmdiYx0PKWUdaNY2ecJYngtF+njDMsMKplL6zfEg==} + '@hono/node-server@1.13.1': + resolution: {integrity: sha512-TSxE6cT5RHnawbjnveexVN7H2Dpn1YaLxQrCOLCUwD+hFbqbFsnJBgdWcYtASqtWVjA+Qgi8uqFug39GsHjo5A==} engines: {node: '>=18.14.1'} peerDependencies: hono: ^4 @@ -2417,9 +2420,6 @@ packages: peerDependencies: drizzle-orm: '>= 0.29 <1' lucia: 3.x - peerDependenciesMeta: - drizzle-orm: - optional: true '@lukeed/ms@2.0.2': resolution: {integrity: sha512-9I2Zn6+NJLfaGoz9jN3lpwDgAYvfGeNYdbAIjJOqzs4Tpc+VU3Jqq4IofSUBKajiDS8k9fZIg18/z13mpk1bsA==} @@ -2480,8 +2480,8 @@ packages: '@next/env@14.2.3': resolution: {integrity: sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA==} - '@next/env@14.3.0-canary.87': - resolution: {integrity: sha512-Bk3/oAQfnohIKzWdTJubBNbSw0xmmJxBJFndGmbWMZdY97GF4PjeFmMpuy1XZUqfq7HL2N1jYdRdPFqYXlHFAg==} + '@next/env@15.0.0-canary.168': + resolution: {integrity: sha512-I9i6y7OxNO9FXbLZi0aOPpf9czuhgbSqvANIIMkZtzc/oidfvaR5ZovZQP4AtL6VBpHXa5AVzcBODyDpbx4MVw==} '@next/eslint-plugin-next@14.2.13': resolution: {integrity: sha512-z8Mk0VljxhIzsSiZUSdt3wp+t2lKd+jk5a9Jsvh3zDGkItgDMfjv/ZbET6HsxEl/fSihVoHGsXV6VLyDH0lfTQ==} @@ -2492,8 +2492,8 @@ packages: cpu: [arm64] os: [darwin] - '@next/swc-darwin-arm64@14.3.0-canary.87': - resolution: {integrity: sha512-8G7orsMKkg68x4oK6TCDiBzojl9A3g9BPCYk2oyaotQUw/p29J0sxFO8cBr0lFnva1AWqLTtsyL+VpsWZl9ekg==} + '@next/swc-darwin-arm64@15.0.0-canary.168': + resolution: {integrity: sha512-7nT2Xs5LymGANojseGti6l9n0ZRMCijzRkZcJeKEVoQ//JJZ/wcP4JrLiwqVzPVXW6MuoXPbSEbt5TNRE9BcoA==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] @@ -2504,8 +2504,8 @@ packages: cpu: [x64] os: [darwin] - '@next/swc-darwin-x64@14.3.0-canary.87': - resolution: {integrity: sha512-63IY5gbht3OyaLeZ3UfYEdOCr24QN5KjJlsrLkJ6utCq8xzAV/auKZRFHZMnjlPdmw/Aa0Pxi9zudOb5PhxipQ==} + '@next/swc-darwin-x64@15.0.0-canary.168': + resolution: {integrity: sha512-PE3l7TqBYSIbYs8JXYABip4ZRKYmWfJo8cySThqKPM3WkJTtTEb6t+IaPGCHK0Iu0f8zAs0UaMaNNf+qMvYBgA==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] @@ -2516,8 +2516,8 @@ packages: cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-gnu@14.3.0-canary.87': - resolution: {integrity: sha512-yo9cVvyEDf2Dxzud7ms1a1G4CH7NRi/EpGEQydTYvzEpALrjfPLnlY5ZC/1P6Vg7CbtYGsRycWd8bdbW/xaZrg==} + '@next/swc-linux-arm64-gnu@15.0.0-canary.168': + resolution: {integrity: sha512-bJNCmJSerl1v2iVsJSlv427c3RyKj5z4rYyOGCH2WiUGc6GvhDXh06sG8zmAzKrr6vLNaVwIbZsdlwJxroTOug==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -2528,8 +2528,8 @@ packages: cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@14.3.0-canary.87': - resolution: {integrity: sha512-0IDgr2LW4JbIT9+BWdggciaotFfDl0slHciftpWC0WzPRSVmcUk2Zp80TaZ4oZ9TavqrJ79HiqswlPyQcgkFmQ==} + '@next/swc-linux-arm64-musl@15.0.0-canary.168': + resolution: {integrity: sha512-PqRH1Dk/1Z5RfOO4ewoHnhoZH/nShR48NyhIngmfSrmzBeR/fqM12a5fAP0VgBLpwGozZ/1RPfGgL5QhQH6gPg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -2540,8 +2540,8 @@ packages: cpu: [x64] os: [linux] - '@next/swc-linux-x64-gnu@14.3.0-canary.87': - resolution: {integrity: sha512-7nQoMW5epiCcUtuMHiVRZFqcs8GdkRJpb5ma6+u5K2K6yEOmtsGS9Uj7IgzVC0EI6aqCQKx11rP4gpMTa3vHUQ==} + '@next/swc-linux-x64-gnu@15.0.0-canary.168': + resolution: {integrity: sha512-RSfGiiqWgRzxH5pV0u7f+Vr2g0t8y7s/tcdSFj0GoAeDAc79PfQq5Wyyd/qbSfGqcxE8gBfZkRvtEDRShSBykQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -2552,8 +2552,8 @@ packages: cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@14.3.0-canary.87': - resolution: {integrity: sha512-uDw9vwjDyd24/xb38t/NwldSCDDml1iNGeXOKkETbLG57F3LywtbEMAXRhuyws64ePRAZbktg9IAtImqANfWOQ==} + '@next/swc-linux-x64-musl@15.0.0-canary.168': + resolution: {integrity: sha512-bgITMce1qBBuqspeBOf4f88ln04yK/AJ6cEVZOMFxH4wAfpGGPbMbBTfC7aUqBdX3ktyF+YSs2D137rr0b23kA==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -2564,8 +2564,8 @@ packages: cpu: [arm64] os: [win32] - '@next/swc-win32-arm64-msvc@14.3.0-canary.87': - resolution: {integrity: sha512-DOL4xafG+6KLD4lX1CMbAEfJhnN4vCYJ7Kh7kUqudHN2/rPeZCK8oX9JsUHb+hFeQXfS5iK+4e6QkR21gS79DA==} + '@next/swc-win32-arm64-msvc@15.0.0-canary.168': + resolution: {integrity: sha512-xooyrTjrJokmDIXqwQGC8p9sJFWeV0ALwWSefdiHAoeLEG4V8Wpui4rw5OctMhBbnjg3SPXSM0iMJn2WGdaTJw==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] @@ -2576,8 +2576,8 @@ packages: cpu: [ia32] os: [win32] - '@next/swc-win32-ia32-msvc@14.3.0-canary.87': - resolution: {integrity: sha512-9tyIVCBDwUOs7CvP9CNW9njoBC7S6dPPhwBFkBpkh8qXaUOANhqvyPY9t3JLfPZwvcTBYpdLPy7kiSOMejPohw==} + '@next/swc-win32-ia32-msvc@15.0.0-canary.168': + resolution: {integrity: sha512-hcqPQORa0d3v/7lQpbhGMI52iCPG03j6/RFq1kjj6pq4jvnZC1F2/npU0v2OQ6C6z/IG+MqgYCuedaPVvoGi8g==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] @@ -2588,8 +2588,8 @@ packages: cpu: [x64] os: [win32] - '@next/swc-win32-x64-msvc@14.3.0-canary.87': - resolution: {integrity: sha512-UmOgmmG6vAoLM4+mgWwMwZcElPOYxr3qxl/9LqwoMEsaAIdTkAmYX+iwxwcnXOBIRXORG4Xs0LoemIupaHWkSA==} + '@next/swc-win32-x64-msvc@15.0.0-canary.168': + resolution: {integrity: sha512-ZPojtdhs2bNdQhlG2O+IRdzQ3jJvdkpYGAfqet2gzOYjVT+qPBLwGtKNqsaaqga0Z9FFfFwnklb8OrwU7TQOXA==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -2887,12 +2887,24 @@ packages: peerDependencies: '@opentelemetry/api': ^1.0.0 + '@opentelemetry/instrumentation-amqplib@0.42.0': + resolution: {integrity: sha512-fiuU6OKsqHJiydHWgTRQ7MnIrJ2lEqsdgFtNIH4LbAUJl/5XmrIeoDzDnox+hfkgWK65jsleFuQDtYb5hW1koQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + '@opentelemetry/instrumentation-connect@0.39.0': resolution: {integrity: sha512-pGBiKevLq7NNglMgqzmeKczF4XQMTOUOTkK8afRHMZMnrK3fcETyTH7lVaSozwiOM3Ws+SuEmXZT7DYrrhxGlg==} engines: {node: '>=14'} peerDependencies: '@opentelemetry/api': ^1.3.0 + '@opentelemetry/instrumentation-dataloader@0.12.0': + resolution: {integrity: sha512-pnPxatoFE0OXIZDQhL2okF//dmbiWFzcSc8pUg9TqofCLYZySSxDCgQc69CJBo5JnI3Gz1KP+mOjS4WAeRIH4g==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + '@opentelemetry/instrumentation-express@0.42.0': resolution: {integrity: sha512-YNcy7ZfGnLsVEqGXQPT+S0G1AE46N21ORY7i7yUQyfhGAL4RBjnZUqefMI0NwqIl6nGbr1IpF0rZGoN8Q7x12Q==} engines: {node: '>=14'} @@ -3088,8 +3100,8 @@ packages: '@plunk/node@3.0.2': resolution: {integrity: sha512-6sn8Iog59dVi9vhPWNoWRGHwb29WS2ZRTgIMsMHpVLX9ksQi5XbhJ3rmd71J9gNocYCllz92Tb7fHIZqN08RqQ==} - '@poppinss/utils@6.8.1': - resolution: {integrity: sha512-iVom/rkK2N2fPjkhAOrgNb7HnPxxoMOL1NGmQwfg7UARAQJ9PRX0zkboUcNaAsuyrtswMuSnhVVZBB84fCDVVQ==} + '@poppinss/utils@6.8.3': + resolution: {integrity: sha512-YGeH7pIUm9ExONURNH3xN61dBZ0SXgVuPA9E76t7EHeZHXPNrmR8TlbXQaka6kd5n+cpBNcHG4VsVfYf59bZ7g==} engines: {node: '>=18.16.0'} '@prisma/instrumentation@5.19.1': @@ -3134,11 +3146,11 @@ packages: '@pulumi/docker@3.6.1': resolution: {integrity: sha512-BZME50QkT556v+LvmTXPT8ssB2xxNkp9+msB5xYFEnUnWcdGAx5yUysQw70RJCb+U0GbkJSbxtlgMJgOQf/now==} - '@pulumi/docker@4.5.5': - resolution: {integrity: sha512-+5u0A3H3PTkxGfVuvDafbdyyYT8xLzLJnKdKc2jFEpphwKlXF+lc4YhjsDLBp1cc/5JPfE4hujOxGAxwt/5BUQ==} + '@pulumi/docker@4.5.6': + resolution: {integrity: sha512-Gj8St9P5O9WQ46mPLWEI+b49ZREEYXu/2QH35c6rgf0NIaZDqDY/pEFWnG9enxmLHoZFaaa22C8te/LBqKP3Ig==} - '@pulumi/pulumi@3.133.0': - resolution: {integrity: sha512-GP5pEmc9yOfbKM59oJqFIKPLSHB+THp0jecWADaVIJUF5CgUE0o8kenWrdOEbYBE9tgNTSCto8MExNrG2NJH+Q==} + '@pulumi/pulumi@3.134.0': + resolution: {integrity: sha512-G11zNun7CBrRw1lgi96j3q/v7NTsVWuLbyFXrBB6u43n7UJVD5+3L9tw8oBc0BFk7e+ObnOGtBC1xVaLwZORCw==} engines: {node: '>=18'} peerDependencies: ts-node: '>= 7.0.1 < 12' @@ -3668,8 +3680,8 @@ packages: peerDependencies: react: ^18.0 || ^19.0 || ^19.0.0-rc - '@rollup/plugin-alias@5.1.0': - resolution: {integrity: sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ==} + '@rollup/plugin-alias@5.1.1': + resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 @@ -3708,8 +3720,8 @@ packages: tslib: optional: true - '@rollup/pluginutils@5.1.0': - resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} + '@rollup/pluginutils@5.1.2': + resolution: {integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 @@ -3717,83 +3729,83 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.22.2': - resolution: {integrity: sha512-8Ao+EDmTPjZ1ZBABc1ohN7Ylx7UIYcjReZinigedTOnGFhIctyGPxY2II+hJ6gD2/vkDKZTyQ0e7++kwv6wDrw==} + '@rollup/rollup-android-arm-eabi@4.22.4': + resolution: {integrity: sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.22.2': - resolution: {integrity: sha512-I+B1v0a4iqdS9DvYt1RJZ3W+Oh9EVWjbY6gp79aAYipIbxSLEoQtFQlZEnUuwhDXCqMxJ3hluxKAdPD+GiluFQ==} + '@rollup/rollup-android-arm64@4.22.4': + resolution: {integrity: sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.22.2': - resolution: {integrity: sha512-BTHO7rR+LC67OP7I8N8GvdvnQqzFujJYWo7qCQ8fGdQcb8Gn6EQY+K1P+daQLnDCuWKbZ+gHAQZuKiQkXkqIYg==} + '@rollup/rollup-darwin-arm64@4.22.4': + resolution: {integrity: sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.22.2': - resolution: {integrity: sha512-1esGwDNFe2lov4I6GsEeYaAMHwkqk0IbuGH7gXGdBmd/EP9QddJJvTtTF/jv+7R8ZTYPqwcdLpMTxK8ytP6k6Q==} + '@rollup/rollup-darwin-x64@4.22.4': + resolution: {integrity: sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw==} cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.22.2': - resolution: {integrity: sha512-GBHuY07x96OTEM3OQLNaUSUwrOhdMea/LDmlFHi/HMonrgF6jcFrrFFwJhhe84XtA1oK/Qh4yFS+VMREf6dobg==} + '@rollup/rollup-linux-arm-gnueabihf@4.22.4': + resolution: {integrity: sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.22.2': - resolution: {integrity: sha512-Dbfa9Sc1G1lWxop0gNguXOfGhaXQWAGhZUcqA0Vs6CnJq8JW/YOw/KvyGtQFmz4yDr0H4v9X248SM7bizYj4yQ==} + '@rollup/rollup-linux-arm-musleabihf@4.22.4': + resolution: {integrity: sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.22.2': - resolution: {integrity: sha512-Z1YpgBvFYhZIyBW5BoopwSg+t7yqEhs5HCei4JbsaXnhz/eZehT18DaXl957aaE9QK7TRGFryCAtStZywcQe1A==} + '@rollup/rollup-linux-arm64-gnu@4.22.4': + resolution: {integrity: sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.22.2': - resolution: {integrity: sha512-66Zszr7i/JaQ0u/lefcfaAw16wh3oT72vSqubIMQqWzOg85bGCPhoeykG/cC5uvMzH80DQa2L539IqKht6twVA==} + '@rollup/rollup-linux-arm64-musl@4.22.4': + resolution: {integrity: sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.22.2': - resolution: {integrity: sha512-HpJCMnlMTfEhwo19bajvdraQMcAq3FX08QDx3OfQgb+414xZhKNf3jNvLFYKbbDSGBBrQh5yNwWZrdK0g0pokg==} + '@rollup/rollup-linux-powerpc64le-gnu@4.22.4': + resolution: {integrity: sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.22.2': - resolution: {integrity: sha512-/egzQzbOSRef2vYCINKITGrlwkzP7uXRnL+xU2j75kDVp3iPdcF0TIlfwTRF8woBZllhk3QaxNOEj2Ogh3t9hg==} + '@rollup/rollup-linux-riscv64-gnu@4.22.4': + resolution: {integrity: sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.22.2': - resolution: {integrity: sha512-qgYbOEbrPfEkH/OnUJd1/q4s89FvNJQIUldx8X2F/UM5sEbtkqZpf2s0yly2jSCKr1zUUOY1hnTP2J1WOzMAdA==} + '@rollup/rollup-linux-s390x-gnu@4.22.4': + resolution: {integrity: sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.22.2': - resolution: {integrity: sha512-a0lkvNhFLhf+w7A95XeBqGQaG0KfS3hPFJnz1uraSdUe/XImkp/Psq0Ca0/UdD5IEAGoENVmnYrzSC9Y2a2uKQ==} + '@rollup/rollup-linux-x64-gnu@4.22.4': + resolution: {integrity: sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.22.2': - resolution: {integrity: sha512-sSWBVZgzwtsuG9Dxi9kjYOUu/wKW+jrbzj4Cclabqnfkot8Z3VEHcIgyenA3lLn/Fu11uDviWjhctulkhEO60g==} + '@rollup/rollup-linux-x64-musl@4.22.4': + resolution: {integrity: sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.22.2': - resolution: {integrity: sha512-t/YgCbZ638R/r7IKb9yCM6nAek1RUvyNdfU0SHMDLOf6GFe/VG1wdiUAsxTWHKqjyzkRGg897ZfCpdo1bsCSsA==} + '@rollup/rollup-win32-arm64-msvc@4.22.4': + resolution: {integrity: sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.22.2': - resolution: {integrity: sha512-kTmX5uGs3WYOA+gYDgI6ITkZng9SP71FEMoHNkn+cnmb9Zuyyay8pf0oO5twtTwSjNGy1jlaWooTIr+Dw4tIbw==} + '@rollup/rollup-win32-ia32-msvc@4.22.4': + resolution: {integrity: sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.22.2': - resolution: {integrity: sha512-Yy8So+SoRz8I3NS4Bjh91BICPOSVgdompTIPYTByUqU66AXSIOgmW3Lv1ke3NORPqxdF+RdrZET+8vYai6f4aA==} + '@rollup/rollup-win32-x64-msvc@4.22.4': + resolution: {integrity: sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q==} cpu: [x64] os: [win32] @@ -3806,86 +3818,86 @@ packages: '@selderee/plugin-htmlparser2@0.11.0': resolution: {integrity: sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==} - '@sentry-internal/browser-utils@8.30.0': - resolution: {integrity: sha512-pwX+awNWaxSOAsBLVLqc1+Hw+Fm1Nci9mbKFA6Ed5YzCG049PnBVQwugpmx2dcyyCqJpORhcIqb9jHdCkYmCiA==} + '@sentry-internal/browser-utils@8.32.0': + resolution: {integrity: sha512-DpUGhk5O1OVjT0fo9wsbEdO1R/S9gGBRDtn9+FFVeRtieJHwXpeZiLK+tZhTOvaILmtSoTPUEY3L5sK4j5Xq9g==} engines: {node: '>=14.18'} - '@sentry-internal/feedback@8.30.0': - resolution: {integrity: sha512-ParFRxQY6helxkwUDmro77Wc5uSIC6rZos88jYMrYwFmoTJaNWf4lDzPyECfdSiSYyzSMZk4dorSUN85Ul7DCg==} + '@sentry-internal/feedback@8.32.0': + resolution: {integrity: sha512-XB7hiVJQW1tNzpoXIHbvm3rjipIt7PZiJJtFg2vxaqu/FzdgOcYqQiwIKivJVAKuRZ9rIeJtK1jdXQFOc/TRJA==} engines: {node: '>=14.18'} - '@sentry-internal/replay-canvas@8.30.0': - resolution: {integrity: sha512-y/QqcvchhtMlVA6eOZicIfTxtZarazQZJuFW0018ynPxBTiuuWSxMCLqduulXUYsFejfD8/eKHb3BpCIFdDYjg==} + '@sentry-internal/replay-canvas@8.32.0': + resolution: {integrity: sha512-oBbhtDBkD+5z/T0NVJ5VenBWAid/S9QdVrod/UqxVqU7F8N+E9/INFQI48zCWr4iVlUMcszJPDElvJEsMDvvBQ==} engines: {node: '>=14.18'} - '@sentry-internal/replay@8.30.0': - resolution: {integrity: sha512-/KFre+BrovPCiovgAu5N1ErJtkDVzkJA5hV3Jw011AlxRWxrmPwu6+9sV9/rn3tqYAGyq6IggYqeIOHhLh1Ihg==} + '@sentry-internal/replay@8.32.0': + resolution: {integrity: sha512-yiEUnn2yyo1AIQIFNeRX3tdK8fmyKIkxdFS1WiVQmeYI/hFwYBTZPly0FcO/g3xnRMSA2tvrS+hZEaaXfK4WhA==} engines: {node: '>=14.18'} '@sentry/babel-plugin-component-annotate@2.22.3': resolution: {integrity: sha512-OlHA+i+vnQHRIdry4glpiS/xTOtgjmpXOt6IBOUqynx5Jd/iK1+fj+t8CckqOx9wRacO/hru2wfW/jFq0iViLg==} engines: {node: '>= 14'} - '@sentry/browser@8.30.0': - resolution: {integrity: sha512-M+tKqawH9S3CqlAIcqdZcHbcsNQkEa9MrPqPCYvXco3C4LRpNizJP2XwBiGQY2yK+fOSvbaWpPtlI938/wuRZQ==} + '@sentry/browser@8.32.0': + resolution: {integrity: sha512-AEKFj64g4iYwEMRvVcxiY0FswmClRXCP1IEvCqujn8OBS8AjMOr1z/RwYieEs0D90yNNB3YEqF8adrKENblJmw==} engines: {node: '>=14.18'} '@sentry/bundler-plugin-core@2.22.3': resolution: {integrity: sha512-DeoUl0WffcqZZRl5Wy9aHvX4WfZbbWt0QbJ7NJrcEViq+dRAI2FQTYECFLwdZi5Gtb3oyqZICO+P7k8wDnzsjQ==} engines: {node: '>= 14'} - '@sentry/cli-darwin@2.36.1': - resolution: {integrity: sha512-JOHQjVD8Kqxm1jUKioAP5ohLOITf+Dh6+DBz4gQjCNdotsvNW5m63TKROwq2oB811p+Jzv5304ujmN4cAqW1Ww==} + '@sentry/cli-darwin@2.36.2': + resolution: {integrity: sha512-To64Pq+pcmecEr+gFXiqaZy8oKhyLQLXO/SVDdf16CUL2qpuahE3bO5h9kFacMxPPxOWcgc2btF+4gYa1+bQTA==} engines: {node: '>=10'} os: [darwin] - '@sentry/cli-linux-arm64@2.36.1': - resolution: {integrity: sha512-R//3ZEkbzvoStr3IA7nxBZNiBYyxOljOqAhgiTnejXHmnuwDzM3TBA2n5vKPE/kBFxboEBEw0UTzTIRb1T0bgw==} + '@sentry/cli-linux-arm64@2.36.2': + resolution: {integrity: sha512-g+FFmj1oJ2iRMsfs1ORz6THOO6MiAR55K9YxdZUBvqfoHLjSMt7Jst43sbZ3O0u55hnfixSKLNzDaTGaM/jxIQ==} engines: {node: '>=10'} cpu: [arm64] os: [linux, freebsd] - '@sentry/cli-linux-arm@2.36.1': - resolution: {integrity: sha512-gvEOKN0fWL2AVqUBKHNXPRZfJNvKTs8kQhS8cQqahZGgZHiPCI4BqW45cKMq+ZTt1UUbLmt6khx5Dz7wi+0i5A==} + '@sentry/cli-linux-arm@2.36.2': + resolution: {integrity: sha512-cRSvOQK97WM0m03k/c+LVAWT042Qz887WP/2Gy64eUi/PfArwb+QZZnsu4FCygxK9jnzgLTo4+ewoJVi17xaLQ==} engines: {node: '>=10'} cpu: [arm] os: [linux, freebsd] - '@sentry/cli-linux-i686@2.36.1': - resolution: {integrity: sha512-R7sW5Vk/HacVy2YgQoQB+PwccvFYf2CZVPSFSFm2z7MEfNe77UYHWUq+sjJ4vxWG6HDWGVmaX0fjxyDkE01JRA==} + '@sentry/cli-linux-i686@2.36.2': + resolution: {integrity: sha512-rjxTw/CMd0Q7qlOb7gWFiwn3hJIxNkhbn1bOU54xj9CZvQSCvh10l7l4Y9o8znJLl41c5kMXVq8yuYws9A7AGQ==} engines: {node: '>=10'} cpu: [x86, ia32] os: [linux, freebsd] - '@sentry/cli-linux-x64@2.36.1': - resolution: {integrity: sha512-UMr3ik8ksA7zQfbzsfwCb+ztenLnaeAbX94Gp+bzANZwPfi/vVHf2bLyqsBs4OyVt9SPlN1bbM/RTGfMjZ3JOw==} + '@sentry/cli-linux-x64@2.36.2': + resolution: {integrity: sha512-cF8IPFTlwiC7JgVvSW4rS99sxb1W1N//iANxuzqaDswUnmJLi0AJy/jES87qE5GRB6ljaPVMvH7Kq0OCp3bvPA==} engines: {node: '>=10'} cpu: [x64] os: [linux, freebsd] - '@sentry/cli-win32-i686@2.36.1': - resolution: {integrity: sha512-CflvhnvxPEs5GWQuuDtYSLqPrBaPbcSJFlBuUIb+8WNzRxvVfjgw1qzfZmkQqABqiy/YEsEekllOoMFZAvCcVA==} + '@sentry/cli-win32-i686@2.36.2': + resolution: {integrity: sha512-YDH/Kcd8JAo1Bg4jtSwF8dr7FZZ8QbYLMx8q/5eenHpq6VdOgPENsTvayLW3cAjWLcm44u8Ed/gcEK0z1IxQmQ==} engines: {node: '>=10'} cpu: [x86, ia32] os: [win32] - '@sentry/cli-win32-x64@2.36.1': - resolution: {integrity: sha512-wWqht2xghcK3TGnooHZSzA3WSjdtno/xFjZLvWmw38rblGwgKMxLZnlxV6uDyS+OJ6CbfDTlCRay/0TIqA0N8g==} + '@sentry/cli-win32-x64@2.36.2': + resolution: {integrity: sha512-Kac8WPbkFSVAJqPAVRBiW0uij9PVoXo0owf+EDeIIDLs9yxZat0d1xgyQPlUWrCGdxowMSbDvaSUz1YnE7MUmg==} engines: {node: '>=10'} cpu: [x64] os: [win32] - '@sentry/cli@2.36.1': - resolution: {integrity: sha512-gzK5uQKDWKhyH5udoB5+oaUNrS//urWyaXgKvHKz4gFfl744HuKY9dpLPP2nMnf0zLGmGM6xJnMXLqILq0mtxw==} + '@sentry/cli@2.36.2': + resolution: {integrity: sha512-QoijP9TnO1UVNnRKtH718jlu/F9bBki6ffrOfmcjxkvLT6Q3nBMmqhYNH/AJV/RcgqLd6noWss4fbDMXZLzgIQ==} engines: {node: '>= 10'} hasBin: true - '@sentry/core@8.30.0': - resolution: {integrity: sha512-CJ/FuWLw0QEKGKXGL/nm9eaOdajEcmPekLuHAuOCxID7N07R9l9laz3vFbAkUZ97GGDv3sYrJZgywfY3Moropg==} + '@sentry/core@8.32.0': + resolution: {integrity: sha512-+xidTr0lZ0c755tq4k75dXPEb8PA+qvIefW3U9+dQMORLokBrYoKYMf5zZTG2k/OfSJS6OSxatUj36NFuCs3aA==} engines: {node: '>=14.18'} - '@sentry/nextjs@8.30.0': - resolution: {integrity: sha512-835H7/ERIGvxE2m9cYqB5Mmd4PfLPlVQdyJAEL3br7fpl5mp3A3JtA3AiZ98smpVW/rUkLHGOWziRb6uTgJSXA==} + '@sentry/nextjs@8.32.0': + resolution: {integrity: sha512-rnnSsKFd4u9TXGr0XVQ7lEl/PkTfNyJ4kxwu9gW+OJjzmmjzIAC4RyY4YQTR1+p/q9QrruWrXLEsuCPqAHfqNw==} engines: {node: '>=14.18'} peerDependencies: next: ^13.2.0 || ^14.0 || ^15.0.0-rc.0 @@ -3894,12 +3906,12 @@ packages: webpack: optional: true - '@sentry/node@8.30.0': - resolution: {integrity: sha512-Tog0Ag7sU3lNj4cPUZy1KRJXyYXZlWiwlk34KYNNxAk0vDiK6W0bF8mvS+aaUukgb7FO5A0eu9l+VApdBJOr3Q==} + '@sentry/node@8.32.0': + resolution: {integrity: sha512-a2PoFA9j/HmJVGF/zXJhLP6QhRHGye/2EznQdHOELsH1BkeMgBaXl7D52r2E/b7qki647lXrdbspB6jid8NycA==} engines: {node: '>=14.18'} - '@sentry/opentelemetry@8.30.0': - resolution: {integrity: sha512-6mCIP2zvxAiEsNEoF8kv+UUD4XGWSKJU6RY5BF1U26HLitXv1fNPtzaTR96Ehv9h0zktjLfqfpVUZ7DGkdBvLA==} + '@sentry/opentelemetry@8.32.0': + resolution: {integrity: sha512-YCD8EnwJJ2ab3zWWtu5VrvHP/6Ss6GGQH0TYx2cfeGG3c0wTA/5zYx9JR4i3hUtOh1pifN34HlY0yyQHD4yctg==} engines: {node: '>=14.18'} peerDependencies: '@opentelemetry/api': ^1.9.0 @@ -3908,22 +3920,22 @@ packages: '@opentelemetry/sdk-trace-base': ^1.26.0 '@opentelemetry/semantic-conventions': ^1.27.0 - '@sentry/react@8.30.0': - resolution: {integrity: sha512-ktQjXs87jdsxW0YrHci3sb6zcSzhMECWnrTVU/KGZF8UoDsk4P4xRCknijd2SSmDIjSkwzUAANR43UkCi4BTQg==} + '@sentry/react@8.32.0': + resolution: {integrity: sha512-YljqK+k80XOvyXjK2p2neTncRcSuwlpL7qHtNgwR1MHx18FEi7HXlnm13J4g3kxao4ORMxlCXCEPNXlLT+vqQg==} engines: {node: '>=14.18'} peerDependencies: react: ^16.14.0 || 17.x || 18.x || 19.x - '@sentry/types@8.30.0': - resolution: {integrity: sha512-kgWW2BCjBmVlSQRG32GonHEVyeDbys74xf9mLPvynwHTgw3+NUlNAlEdu05xnb2ow4bCTHfbkS5G1zRgyv5k4Q==} + '@sentry/types@8.32.0': + resolution: {integrity: sha512-hxckvN2MzS5SgGDgVQ0/QpZXk13Vrq4BtZLwXhPhyeTmZtUiUfWvcL5TFQqLinfKdTKPe9q2MxeAJ0D4LalhMg==} engines: {node: '>=14.18'} - '@sentry/utils@8.30.0': - resolution: {integrity: sha512-wZxU2HWlzsnu8214Xy7S7cRIuD6h8Z5DnnkojJfX0i0NLooepZQk2824el1Q13AakLb7/S8CHSHXOMnCtoSduw==} + '@sentry/utils@8.32.0': + resolution: {integrity: sha512-t1WVERhgmYURxbBj9J4/H2P2X+VKqm7B3ce9iQyrZbdf5NekhcU4jHIecPUWCPHjQkFIqkVTorqeBmDTlg/UmQ==} engines: {node: '>=14.18'} - '@sentry/vercel-edge@8.30.0': - resolution: {integrity: sha512-0R0HWmPZwIOunj4JQoOT9FexhesAVNpMkM2mezP7QlVGGBQA39s9j8+o658Ymh8xzKo1ZTg4pHjoySLPhrN1JA==} + '@sentry/vercel-edge@8.32.0': + resolution: {integrity: sha512-HxvQWQMjNsLPkYU0vArzjqh+p/vyw9CXyIruu3D89VQU0krL1JFhhhHWZj1UIb7MVTzNO4oq4HeldbOkI0AepA==} engines: {node: '>=14.18'} '@sentry/webpack-plugin@2.22.3': @@ -3985,8 +3997,8 @@ packages: resolution: {integrity: sha512-Tv1obAC18XOd2OnDAjSWmmthzx6Pdeh63FbLin8MlPiuJ2ATpKkq0NcNOJFr0dO+JmZXnwu8FQxKJ3TKJ3Hulw==} engines: {node: '>=16.0.0'} - '@smithy/core@2.4.3': - resolution: {integrity: sha512-4LTusLqFMRVQUfC3RNuTg6IzYTeJNpydRdTKq7J5wdEyIRQSu3rGIa3s80mgG2hhe6WOZl9IqTSo1pgbn6EHhA==} + '@smithy/core@2.4.6': + resolution: {integrity: sha512-6lQQp99hnyuNNIzeTYSzCUXJHwvvFLY7hfdFGSJM95tjRDJGfzWYFRBXPaM9766LiiTsQ561KErtbufzUFSYUg==} engines: {node: '>=16.0.0'} '@smithy/credential-provider-imds@3.2.3': @@ -4012,8 +4024,8 @@ packages: resolution: {integrity: sha512-09tqzIQ6e+7jLqGvRji1yJoDbL/zob0OFhq75edgStWErGLf16+yI5hRc/o9/YAybOhUZs/swpW2SPn892G5Gg==} engines: {node: '>=16.0.0'} - '@smithy/fetch-http-handler@3.2.7': - resolution: {integrity: sha512-Ra6IPI1spYLO+t62/3jQbodjOwAbto9wlpJdHZwkycm0Kit+GVpzHW/NMmSgY4rK1bjJ4qLAmCnaBzePO5Nkkg==} + '@smithy/fetch-http-handler@3.2.8': + resolution: {integrity: sha512-Lqe0B8F5RM7zkw//6avq1SJ8AfaRd3ubFUS1eVp5WszV7p6Ne5hQ4dSuMHDpNRPhgTvj4va9Kd/pcVigHEHRow==} '@smithy/hash-blob-browser@3.1.5': resolution: {integrity: sha512-Vi3eoNCmao4iKglS80ktYnBOIqZhjbDDwa1IIbF/VaJ8PsHnZTQ5wSicicPrU7nTI4JPFn92/txzWkh4GlK18Q==} @@ -4048,8 +4060,8 @@ packages: resolution: {integrity: sha512-KeM/OrK8MVFUsoJsmCN0MZMVPjKKLudn13xpgwIMpGTYpA8QZB2Xq5tJ+RE6iu3A6NhOI4VajDTwBsm8pwwrhg==} engines: {node: '>=16.0.0'} - '@smithy/middleware-retry@3.0.18': - resolution: {integrity: sha512-YU1o/vYob6vlqZdd97MN8cSXRToknLXhFBL3r+c9CZcnxkO/rgNZ++CfgX2vsmnEKvlqdi26+SRtSzlVp5z6Mg==} + '@smithy/middleware-retry@3.0.21': + resolution: {integrity: sha512-/h0fElV95LekVVEJuSw+aI11S1Y3zIUwBc6h9ZbUv43Gl2weXsbQwjLoet6j/Qtb0phfrSxS6pNg6FqgJOWZkA==} engines: {node: '>=16.0.0'} '@smithy/middleware-serde@3.0.6': @@ -4064,8 +4076,8 @@ packages: resolution: {integrity: sha512-g3mfnC3Oo8pOI0dYuPXLtdW1WGVb3bR2tkV21GNkm0ZvQjLTtamXAwCWt/FCb0HGvKt3gHHmF1XerG0ICfalOg==} engines: {node: '>=16.0.0'} - '@smithy/node-http-handler@3.2.2': - resolution: {integrity: sha512-42Cy4/oT2O+00aiG1iQ7Kd7rE6q8j7vI0gFfnMlUiATvyo8vefJkhb7O10qZY0jAqo5WZdUzfl9IV6wQ3iMBCg==} + '@smithy/node-http-handler@3.2.3': + resolution: {integrity: sha512-/gcm5DJ3k1b1zEInzBGAZC8ntJ+jwrz1NcSIu+9dSXd1FfG0G6QgkDI40tt8/WYUbHtLyo8fEqtm2v29koWo/w==} engines: {node: '>=16.0.0'} '@smithy/property-provider@3.1.6': @@ -4092,12 +4104,12 @@ packages: resolution: {integrity: sha512-IA4K2qTJYXkF5OfVN4vsY1hfnUZjaslEE8Fsr/gGFza4TAC2A9NfnZuSY2srQIbt9bwtjHiAayrRVgKse4Q7fA==} engines: {node: '>=16.0.0'} - '@smithy/signature-v4@4.1.3': - resolution: {integrity: sha512-YD2KYSCEEeFHcWZ1E3mLdAaHl8T/TANh6XwmocQ6nPcTdBfh4N5fusgnblnWDlnlU1/cUqEq3PiGi22GmT2Lkg==} + '@smithy/signature-v4@4.1.4': + resolution: {integrity: sha512-72MiK7xYukNsnLJI9NqvUHqTu0ziEsfMsYNlWpiJfuGQnCTFKpckThlEatirvcA/LmT1h7rRO+pJD06PYsPu9Q==} engines: {node: '>=16.0.0'} - '@smithy/smithy-client@3.3.2': - resolution: {integrity: sha512-RKDfhF2MTwXl7jan5d7QfS9eCC6XJbO3H+EZAvLQN8A5in4ib2Ml4zoeLo57w9QrqFekBPcsoC2hW3Ekw4vQ9Q==} + '@smithy/smithy-client@3.3.5': + resolution: {integrity: sha512-7IZi8J3Dr9n3tX+lcpmJ/5tCYIqoXdblFBaPuv0SEKZFRpCxE+TqIWL6I3t7jLlk9TWu3JSvEZAhtjB9yvB+zA==} engines: {node: '>=16.0.0'} '@smithy/types@3.4.2': @@ -4130,12 +4142,12 @@ packages: resolution: {integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==} engines: {node: '>=16.0.0'} - '@smithy/util-defaults-mode-browser@3.0.18': - resolution: {integrity: sha512-/eveCzU6Z6Yw8dlYQLA4rcK30XY0E4L3lD3QFHm59mzDaWYelrXE1rlynuT3J6qxv+5yNy3a1JuzhG5hk5hcmw==} + '@smithy/util-defaults-mode-browser@3.0.21': + resolution: {integrity: sha512-M/FhTBk4c/SsB91dD/M4gMGfJO7z/qJaM9+XQQIqBOf4qzZYMExnP7R4VdGwxxH8IKMGW+8F0I4rNtVRrcfPoA==} engines: {node: '>= 10.0.0'} - '@smithy/util-defaults-mode-node@3.0.18': - resolution: {integrity: sha512-9cfzRjArtOFPlTYRREJk00suUxVXTgbrzVncOyMRTUeMKnecG/YentLF3cORa+R6mUOMSrMSnT18jos1PKqK6Q==} + '@smithy/util-defaults-mode-node@3.0.21': + resolution: {integrity: sha512-NiLinPvF86U3S2Pdx/ycqd4bnY5dmFSPNL5KYRwbNjqQFS09M5Wzqk8BNk61/47xCYz1X/6KeiSk9qgYPTtuDw==} engines: {node: '>= 10.0.0'} '@smithy/util-endpoints@2.1.2': @@ -4154,8 +4166,8 @@ packages: resolution: {integrity: sha512-BRZiuF7IwDntAbevqMco67an0Sr9oLQJqqRCsSPZZHYRnehS0LHDAkJk/pSmI7Z8c/1Vet294H7fY2fWUgB+Rg==} engines: {node: '>=16.0.0'} - '@smithy/util-stream@3.1.6': - resolution: {integrity: sha512-lQEUfTx1ht5CRdvIjdAN/gUL6vQt2wSARGGLaBHNe+iJSkRHlWzY+DOn0mFTmTgyU3jcI5n9DkT5gTzYuSOo6A==} + '@smithy/util-stream@3.1.8': + resolution: {integrity: sha512-hoKOqSmb8FD3WLObuB5hwbM7bNIWgcnvkThokTvVq7J5PKjlLUK5qQQcB9zWLHIoSaIlf3VIv2OxZY2wtQjcRQ==} engines: {node: '>=16.0.0'} '@smithy/util-uri-escape@3.0.0': @@ -4180,8 +4192,8 @@ packages: '@swc/counter@0.1.3': resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - '@swc/helpers@0.5.11': - resolution: {integrity: sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==} + '@swc/helpers@0.5.13': + resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==} '@swc/helpers@0.5.5': resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} @@ -4383,8 +4395,8 @@ packages: '@types/lodash-es@4.17.12': resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==} - '@types/lodash@4.17.7': - resolution: {integrity: sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==} + '@types/lodash@4.17.9': + resolution: {integrity: sha512-w9iWudx1XWOHW5lQRS9iKpK/XuRhnN+0T7HvdCCd802FYkT1AMTnxndJHGrNJwRoRHkslGr4S29tjm1cT7x/7w==} '@types/mime@1.3.5': resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} @@ -4395,14 +4407,14 @@ packages: '@types/mysql@2.15.26': resolution: {integrity: sha512-DSLCOXhkvfS5WNNPbfn2KdICAmk8lLc+/PNvnPnF7gOdMZCxopXduqv0OQ13y/yA/zXTSikZZqVgybUxOEg6YQ==} - '@types/node@18.19.50': - resolution: {integrity: sha512-xonK+NRrMBRtkL1hVCc3G+uXtjh1Al4opBLjqVmipe5ZAaBYWW6cNAiBVZ1BvmkBhep698rP3UM3aRAdSALuhg==} + '@types/node@18.19.51': + resolution: {integrity: sha512-IIMkWEIVQDlBpi6pPeGqTqOx7KbzGC3EgIyH8NrxplXOwWw0uVl9vthJUMFrxD7kcEfcRp7jIkgpB28M6JnfWA==} - '@types/node@20.16.5': - resolution: {integrity: sha512-VwYCweNo3ERajwy0IUlqqcyZ8/A7Zwa9ZP3MnENWcB11AejO+tLy3pu850goUW2FC/IJMdZUfKpX/yxL1gymCA==} + '@types/node@20.16.7': + resolution: {integrity: sha512-QkDQjAY3gkvJNcZOWwzy3BN34RweT0OQ9zJyvLCU0kSK22dO2QYh/NHGfbEAYylPYzRB1/iXcojS79wOg5gFSw==} - '@types/node@22.5.5': - resolution: {integrity: sha512-Xjs4y5UPO/CLdzpgR6GirZJx36yScjh73+2NlLlkFRSoQN8B0DpfXPdZGnvVmLRLOsqDpOfTNv7D9trgGhmOIA==} + '@types/node@22.7.0': + resolution: {integrity: sha512-MOdOibwBs6KW1vfqz2uKMlxq5xAfAZ98SZjO8e3XnAbFnTJtAspqhWk7hrdSAs9/Y14ZWMiy7/MxMUzAOadYEw==} '@types/nodemailer-html-to-text@3.1.3': resolution: {integrity: sha512-Oo3UfBz/jscdgltyp7HABiSHd7aiUuQKxqklPea1san3hNN4w79PEf4S27NQ04JdLO0sU5ZDGK9S+tMHj15vcg==} @@ -4694,34 +4706,34 @@ packages: '@vitest/utils@2.1.1': resolution: {integrity: sha512-Y6Q9TsI+qJ2CC0ZKj6VBb+T8UPz593N113nnUykqwANqhgf3QkZeHFlusgKLTqrnVHbj/XDKZcDHol+dxVT+rQ==} - '@vue/compiler-core@3.5.6': - resolution: {integrity: sha512-r+gNu6K4lrvaQLQGmf+1gc41p3FO2OUJyWmNqaIITaJU6YFiV5PtQSFZt8jfztYyARwqhoCayjprC7KMvT3nRA==} + '@vue/compiler-core@3.5.8': + resolution: {integrity: sha512-Uzlxp91EPjfbpeO5KtC0KnXPkuTfGsNDeaKQJxQN718uz+RqDYarEf7UhQJGK+ZYloD2taUbHTI2J4WrUaZQNA==} - '@vue/compiler-dom@3.5.6': - resolution: {integrity: sha512-xRXqxDrIqK8v8sSScpistyYH0qYqxakpsIvqMD2e5sV/PXQ1mTwtXp4k42yHK06KXxKSmitop9e45Ui/3BrTEw==} + '@vue/compiler-dom@3.5.8': + resolution: {integrity: sha512-GUNHWvoDSbSa5ZSHT9SnV5WkStWfzJwwTd6NMGzilOE/HM5j+9EB9zGXdtu/fCNEmctBqMs6C9SvVPpVPuk1Eg==} - '@vue/compiler-sfc@3.5.6': - resolution: {integrity: sha512-pjWJ8Kj9TDHlbF5LywjVso+BIxCY5wVOLhkEXRhuCHDxPFIeX1zaFefKs8RYoHvkSMqRWt93a0f2gNJVJixHwg==} + '@vue/compiler-sfc@3.5.8': + resolution: {integrity: sha512-taYpngQtSysrvO9GULaOSwcG5q821zCoIQBtQQSx7Uf7DxpR6CIHR90toPr9QfDD2mqHQPCSgoWBvJu0yV9zjg==} - '@vue/compiler-ssr@3.5.6': - resolution: {integrity: sha512-VpWbaZrEOCqnmqjE83xdwegtr5qO/2OPUC6veWgvNqTJ3bYysz6vY3VqMuOijubuUYPRpG3OOKIh9TD0Stxb9A==} + '@vue/compiler-ssr@3.5.8': + resolution: {integrity: sha512-W96PtryNsNG9u0ZnN5Q5j27Z/feGrFV6zy9q5tzJVyJaLiwYxvC0ek4IXClZygyhjm+XKM7WD9pdKi/wIRVC/Q==} - '@vue/reactivity@3.5.6': - resolution: {integrity: sha512-shZ+KtBoHna5GyUxWfoFVBCVd7k56m6lGhk5e+J9AKjheHF6yob5eukssHRI+rzvHBiU1sWs/1ZhNbLExc5oYQ==} + '@vue/reactivity@3.5.8': + resolution: {integrity: sha512-mlgUyFHLCUZcAYkqvzYnlBRCh0t5ZQfLYit7nukn1GR96gc48Bp4B7OIcSfVSvlG1k3BPfD+p22gi1t2n9tsXg==} - '@vue/runtime-core@3.5.6': - resolution: {integrity: sha512-FpFULR6+c2lI+m1fIGONLDqPQO34jxV8g6A4wBOgne8eSRHP6PQL27+kWFIx5wNhhjkO7B4rgtsHAmWv7qKvbg==} + '@vue/runtime-core@3.5.8': + resolution: {integrity: sha512-fJuPelh64agZ8vKkZgp5iCkPaEqFJsYzxLk9vSC0X3G8ppknclNDr61gDc45yBGTaN5Xqc1qZWU3/NoaBMHcjQ==} - '@vue/runtime-dom@3.5.6': - resolution: {integrity: sha512-SDPseWre45G38ENH2zXRAHL1dw/rr5qp91lS4lt/nHvMr0MhsbCbihGAWLXNB/6VfFOJe2O+RBRkXU+CJF7/sw==} + '@vue/runtime-dom@3.5.8': + resolution: {integrity: sha512-DpAUz+PKjTZPUOB6zJgkxVI3GuYc2iWZiNeeHQUw53kdrparSTG6HeXUrYDjaam8dVsCdvQxDz6ZWxnyjccUjQ==} - '@vue/server-renderer@3.5.6': - resolution: {integrity: sha512-zivnxQnOnwEXVaT9CstJ64rZFXMS5ZkKxCjDQKiMSvUhXRzFLWZVbaBiNF4HGDqGNNsTgmjcCSmU6TB/0OOxLA==} + '@vue/server-renderer@3.5.8': + resolution: {integrity: sha512-7AmC9/mEeV9mmXNVyUIm1a1AjUhyeeGNbkLh39J00E7iPeGks8OGRB5blJiMmvqSh8SkaS7jkLWSpXtxUCeagA==} peerDependencies: - vue: 3.5.6 + vue: 3.5.8 - '@vue/shared@3.5.6': - resolution: {integrity: sha512-eidH0HInnL39z6wAt6SFIwBrvGOpDWsDxlw3rCgo1B+CQ1781WzQUSU3YjxgdkcJo9Q8S6LmXTkvI+cLHGkQfA==} + '@vue/shared@3.5.8': + resolution: {integrity: sha512-mJleSWbAGySd2RJdX1RBtcrUBX6snyOc0qHpgk3lGi4l9/P/3ny3ELqFWqYdkXIwwNN/kdm8nD9ky8o6l/Lx2A==} '@webassemblyjs/ast@1.12.1': resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} @@ -4813,8 +4825,8 @@ packages: resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} engines: {node: '>=8'} - ai@3.3.43: - resolution: {integrity: sha512-B4susrnVOapUVRYWuzNp3ChFZ7lBB3w9VFofIDiwrAoOkrljImkZgE2cUdIvWzwj/v3DiBtfPsPbOv+S2YRkCQ==} + ai@3.4.2: + resolution: {integrity: sha512-IwlmUGb72sgi++KvnjtbjJYByPzevmZNkjzpC/ZoZp8OgmxTqU4oO4oOhBAPof4WipEE+iiW0YPQGvM3JYZxHw==} engines: {node: '>=18'} peerDependencies: openai: ^4.42.0 @@ -4903,8 +4915,8 @@ packages: aria-query@5.3.0: resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} - aria-query@5.3.1: - resolution: {integrity: sha512-Z/ZeOgVl7bcSYZ/u/rh0fOpvEpq//LZmdbkXyc7syVzjPAhfOa9ebsdTSjEBDU4vs5nC98Kfduj1uFo0qyET3g==} + aria-query@5.3.2: + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} engines: {node: '>= 0.4'} array-buffer-byte-length@1.0.1: @@ -5036,8 +5048,8 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.23.3: - resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==} + browserslist@4.24.0: + resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -5058,8 +5070,8 @@ packages: resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} engines: {node: '>=6'} - bullmq@5.13.1: - resolution: {integrity: sha512-9Ss2GzV+VVA2Q/+qUxQ7zxAwfLWBwc7DIUNboq0EdXGRf2Ia+Qi7BwT51rnxglu4b/0SRsSElevRT8IZc7HvtQ==} + bullmq@5.13.2: + resolution: {integrity: sha512-McGE8k3mrCvdUHdU0sHkTKDS1xr4pff+hbEKBY51wk5S6Za0gkuejYA620VQTo3Zz37E/NVWMgumwiXPQ3yZcA==} bundle-require@5.0.0: resolution: {integrity: sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==} @@ -5103,8 +5115,8 @@ packages: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} engines: {node: '>= 6'} - caniuse-lite@1.0.30001662: - resolution: {integrity: sha512-sgMUVwLmGseH8ZIrm1d51UbrhqMCH3jvS7gF/M6byuHOnKyLOBL7W8yz5V02OHwgLGA36o/AFhWzzh4uc5aqTA==} + caniuse-lite@1.0.30001663: + resolution: {integrity: sha512-o9C3X27GLKbLeTYZ6HBOLU1tsAcBZsLis28wrVzddShCS16RujjHp9GDHKZqrB3meE0YjhawvMFsGb/igqiPzA==} case-anything@3.1.0: resolution: {integrity: sha512-rRYnn5Elur8RuNHKoJ2b0tgn+pjYxL7BzWom+JZ7NKKn1lt/yGV/tUNwOovxYa9l9VL5hnXQdMc+mENbhJzosQ==} @@ -5881,8 +5893,8 @@ packages: ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - electron-to-chromium@1.5.26: - resolution: {integrity: sha512-Z+OMe9M/V6Ep9n/52+b7lkvYEps26z4Yz3vjWL1V61W0q+VLF1pOHhMY17sa4roz4AWmULSI8E6SAojZA5L0YQ==} + electron-to-chromium@1.5.28: + resolution: {integrity: sha512-VufdJl+rzaKZoYVUijN13QcXVF5dWPZANeFTLNy+OSpHdDL5ynXTF35+60RSBbaQYB1ae723lQXHCrf4pyLsMw==} emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -5904,8 +5916,8 @@ packages: end-of-stream@1.4.4: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} - engine.io-client@6.5.4: - resolution: {integrity: sha512-GeZeeRjpD2qf49cZQ0Wvh/8NJNfeXkXXcoGh+F77oEAgo9gUHwT1fCRxSNU+YEEaysOJTnsFHmM5oAcPy4ntvQ==} + engine.io-client@6.6.1: + resolution: {integrity: sha512-aYuoak7I+R83M/BBPIOs2to51BmFIpC1wZe6zZzMrT2llVsHy5cvcmdsJgP2Qz6smHu+sD9oexiSUAVd8OfBPw==} engine.io-parser@5.2.3: resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==} @@ -5915,6 +5927,10 @@ packages: resolution: {integrity: sha512-C5Pn8Wk+1vKBoHghJODM63yk8MvrO9EWZUfkAt5HAqIgPE4/8FF0PEGHXtEd40l223+cE5ABWuPzm38PHFXfMA==} engines: {node: '>=10.2.0'} + engine.io@6.6.1: + resolution: {integrity: sha512-NEpDCw9hrvBW+hVEOK4T7v0jFJ++KgtPl4jKFwsZVfG1XhS0dCrSb3VMb9gPAd7VAdW52VT1EnaNiU2vM8C0og==} + engines: {node: '>=10.2.0'} + enhanced-resolve@5.17.1: resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} engines: {node: '>=10.13.0'} @@ -6055,8 +6071,8 @@ packages: eslint-plugin-import-x: optional: true - eslint-module-utils@2.11.0: - resolution: {integrity: sha512-gbBE5Hitek/oG6MUVj6sFuzEjA/ClzNflVrLovHi/JgLdC7fiN5gLAY1WIPW1a0V5I999MnsrvVrCOGmmVqDBQ==} + eslint-module-utils@2.11.1: + resolution: {integrity: sha512-EwcbfLOhwVMAfatfqLecR2yv3dE5+kQ8kx+Rrt0DvDXEVwW86KQ/xbMDQhtp5l42VXukD5SOF8mQQHbaNtO0CQ==} engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' @@ -6588,8 +6604,8 @@ packages: hoist-non-react-statics@3.3.2: resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} - hono@4.6.2: - resolution: {integrity: sha512-v+39817TgAhetmHUEli8O0uHDmxp2Up3DnhS4oUZXOl5IQ9np9tYtldd42e5zgdLVS0wsOoXQNZ6mx+BGmEvCA==} + hono@4.6.3: + resolution: {integrity: sha512-0LeEuBNFeSHGqZ9sNVVgZjB1V5fmhkBSB0hZrpqStSMLOWgfLy0dHOvrjbJh0H2khsjet6rbHfWTHY0kpYThKQ==} engines: {node: '>=16.9.0'} hosted-git-info@2.8.9: @@ -6923,8 +6939,8 @@ packages: jackspeak@3.4.3: resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} - jackspeak@4.0.1: - resolution: {integrity: sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==} + jackspeak@4.0.2: + resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==} engines: {node: 20 || >=22} jest-worker@27.5.1: @@ -6945,8 +6961,8 @@ packages: resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==} engines: {node: '>= 0.6.0'} - jose@5.9.2: - resolution: {integrity: sha512-ILI2xx/I57b20sd7rHZvgiiQrmp2mcotwsAH+5ajbpFQbrYVQdNHYlQhoA5cFb78CgtBOxtC05TeA+mcgkuCqQ==} + jose@5.9.3: + resolution: {integrity: sha512-egLIoYSpcd+QUF+UHgobt5YzI2Pkw/H39ou9suW687MY6PmCwPmkNV/4TNjn1p2tX5xO3j0d0sq5hiYE24bSlg==} joycon@3.1.1: resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} @@ -7433,16 +7449,16 @@ packages: sass: optional: true - next@14.3.0-canary.87: - resolution: {integrity: sha512-ce2cdsa7tZJ+Tv7y0zQaKXkTQSe/r6ZTXvcsSne2mfo2iE6AYKljMHFRMM/cv2qfM6QIiaANG8z4A+uxVXIevg==} - engines: {node: '>=18.17.0'} + next@15.0.0-canary.168: + resolution: {integrity: sha512-iiKSwHyyJ/LRe5ZcSt6KOPxjmoH7+NPM/zknLsa180vKT3URVJw9rKwR5z9mb/+/b4CqAYLQqpG/CTptv7/m3w==} + engines: {node: '>=18.18.0'} hasBin: true peerDependencies: '@opentelemetry/api': ^1.1.0 '@playwright/test': ^1.41.2 babel-plugin-react-compiler: '*' - react: 19.0.0-rc-f994737d14-20240522 - react-dom: 19.0.0-rc-f994737d14-20240522 + react: 19.0.0-rc-5d19e1c8-20240923 + react-dom: 19.0.0-rc-5d19e1c8-20240923 sass: ^1.3.0 peerDependenciesMeta: '@opentelemetry/api': @@ -7962,11 +7978,11 @@ packages: postgres-range@1.1.4: resolution: {integrity: sha512-i/hbxIE9803Alj/6ytL7UHQxRvZkI9O4Sy+J3HGc4F4oo/2eQAjTSNJ0bfxyse3bH0nuVesCk+3IRLaMtG3H6w==} - posthog-js@1.163.0: - resolution: {integrity: sha512-gpLbxZkOm06oOWg0uvCxBIVIHrhX3A5hxf9eAi/Z+aFP9DvWxwHQdGUkIWjnYUyxXilIbLxBPvWmiM98dYsAHA==} + posthog-js@1.165.0: + resolution: {integrity: sha512-rUfRJobvOz3Q9Er+zwb32Eq2qs+ToBe/B4k4IoKzmyszI7240Rf4xVWRB0ky8LvmdZfCeYX5knS2Uv3pnn/d5A==} - preact@10.24.0: - resolution: {integrity: sha512-aK8Cf+jkfyuZ0ZZRG9FbYqwmEiGQ4y/PUO4SuTWoyWL244nZZh7bd5h2APd4rSNDYTBNghg1L+5iJN3Skxtbsw==} + preact@10.24.1: + resolution: {integrity: sha512-PnBAwFI3Yjxxcxw75n6VId/5TFxNW/81zexzWD9jn1+eSrOP84NdsS38H5IkF/UH3frqRPT+MvuCoVHjTDTnDw==} prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} @@ -8104,10 +8120,10 @@ packages: peerDependencies: react: ^18.3.1 - react-dom@19.0.0-rc-f994737d14-20240522: - resolution: {integrity: sha512-J4CsfTSptPKkhaPbaR6n/KohQiHZTrRZ8GL4H8rbAqN/Qpy69g2MIoLBr5/PUX21ye6JxC1ZRWJFna7Xdg1pdA==} + react-dom@19.0.0-rc-5d19e1c8-20240923: + resolution: {integrity: sha512-1O1KWGV/Lmlr1d1RePwiqZOuq2/EZLPpD/9fwlgJer4KKYTr6KlIEPEjC6u1iMQEUvs/r+maxdKSgeHjsNWFfg==} peerDependencies: - react: 19.0.0-rc-f994737d14-20240522 + react: 19.0.0-rc-5d19e1c8-20240923 react-draggable@4.4.6: resolution: {integrity: sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw==} @@ -8204,8 +8220,8 @@ packages: resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} engines: {node: '>=0.10.0'} - react@19.0.0-rc-f994737d14-20240522: - resolution: {integrity: sha512-SeU2v5Xy6FotVhKz0pMS2gvYP7HlkF0qgTskj3JzA1vlxcb3dQjxlm9t0ZlJqcgoyI3VFAw7bomuDMdgy1nBuw==} + react@19.0.0-rc-5d19e1c8-20240923: + resolution: {integrity: sha512-ZmgGzqPoYKevfJa+BThu1qkvDFFAVYQIbG9oPvAbNk1/4A+wJqplwDT1rhbRZmxV8n67oawoZkf5xAup99cyUA==} engines: {node: '>=0.10.0'} read-cache@1.0.0: @@ -8346,13 +8362,13 @@ packages: rollup: ^3.29.4 || ^4 typescript: ^4.5 || ^5.0 - rollup@3.29.4: - resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==} + rollup@3.29.5: + resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true - rollup@4.22.2: - resolution: {integrity: sha512-JWWpTrZmqQGQWt16xvNn6KVIUz16VtZwl984TKw0dfqqRpFwtLJYYk1/4BTgplndMQKWUk/yB4uOShYmMzA2Vg==} + rollup@4.22.4: + resolution: {integrity: sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -8390,8 +8406,8 @@ packages: scheduler@0.23.2: resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} - scheduler@0.25.0-rc-f994737d14-20240522: - resolution: {integrity: sha512-qS+xGFF7AljP2APO2iJe8zESNsK20k25MACz+WGOXPybUsRdi1ssvaoF93im2nSX2q/XT3wKkjdz6RQfbmaxdw==} + scheduler@0.25.0-rc-5d19e1c8-20240923: + resolution: {integrity: sha512-lyXuqeq6jwl7PPmOBJcqrfbm5qczKdgDTdIc0JYq6nJq0CATvNBSP95s+8TqPwcesmE3t+0jh9W1w6WOAtR7Aw==} schema-utils@3.3.0: resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} @@ -8497,8 +8513,8 @@ packages: socket.io-adapter@2.5.5: resolution: {integrity: sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==} - socket.io-client@4.7.5: - resolution: {integrity: sha512-sJ/tqHOCe7Z50JCBCXrsY3I2k03iOiUe+tj1OmKeD2lXPiGH/RUCdTZFoqVyN7l1MnpIzPrGtLcijffmeouNlQ==} + socket.io-client@4.8.0: + resolution: {integrity: sha512-C0jdhD5yQahMws9alf/yvtsMGTaIDBnZ8Rb5HU56svyq0l5LIrGzIDZZD5pHQlmzxLuU91Gz+VpQMKgCTNYtkw==} engines: {node: '>=10.0.0'} socket.io-mock@1.3.2: @@ -8517,6 +8533,10 @@ packages: resolution: {integrity: sha512-DmeAkF6cwM9jSfmp6Dr/5/mfMwb5Z5qRrSXLpo3Fq5SqyU8CMF15jIN4ZhfSwu35ksM1qmHZDQ/DK5XTccSTvA==} engines: {node: '>=10.2.0'} + socket.io@4.8.0: + resolution: {integrity: sha512-8U6BEgGjQOfGz3HHTYaC/L1GaxDCJ/KM0XTkJly0EhZ5U/du9uNEZy4ZgYzEzIqlx2CMm25CrCqr1ck899eLNA==} + engines: {node: '>=10.2.0'} + socks-proxy-agent@8.0.4: resolution: {integrity: sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==} engines: {node: '>= 14'} @@ -8768,8 +8788,8 @@ packages: peerDependencies: tailwindcss: '>=3.0.0 || insiders' - tailwindcss@3.4.12: - resolution: {integrity: sha512-Htf/gHj2+soPb9UayUNci/Ja3d8pTmu9ONTfh4QY8r3MATTZOzmv6UYWF7ZwikEIC8okpfqmGqrmDehua8mF8w==} + tailwindcss@3.4.13: + resolution: {integrity: sha512-KqjHOJKogOUt5Bs752ykCeiwvi0fKVkr5oqsFNt/8px/tA8scFPIlkygsf6jXrfCqGHz7VflA6+yytWuM+XhFw==} engines: {node: '>=14.0.0'} hasBin: true @@ -9203,8 +9223,8 @@ packages: engines: {node: ^18.0.0 || >=20.0.0} hasBin: true - vite@5.4.6: - resolution: {integrity: sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q==} + vite@5.4.8: + resolution: {integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -9284,8 +9304,8 @@ packages: jsdom: optional: true - vue@3.5.6: - resolution: {integrity: sha512-zv+20E2VIYbcJOzJPUWp03NOGFhMmpCKOfSxVTmCYyYFFko48H9tmuQFzYj7tu4qX1AeXlp9DmhIP89/sSxxhw==} + vue@3.5.8: + resolution: {integrity: sha512-hvuvuCy51nP/1fSRvrrIqTLSvrSyz2Pq+KQ8S8SXCxTWVE0nMaOnSDnSOxV1eYmGfvK7mqiwvd1C59CEEz7dAQ==} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -9446,8 +9466,8 @@ packages: xmlchars@2.2.0: resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} - xmlhttprequest-ssl@2.0.0: - resolution: {integrity: sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==} + xmlhttprequest-ssl@2.1.1: + resolution: {integrity: sha512-ptjR8YSJIXoA3Mbv5po7RtSYHO6mZr8s7i5VGmEk7QY2pQWyT1o0N+W1gKbOyJPUCGXGnuw0wqe8f0L6Y0ny7g==} engines: {node: '>=0.4.0'} xtend@4.0.2: @@ -9587,7 +9607,7 @@ snapshots: dependencies: json-schema: 0.4.0 - '@ai-sdk/react@0.0.59(react@18.3.1)(zod@3.23.8)': + '@ai-sdk/react@0.0.60(react@18.3.1)(zod@3.23.8)': dependencies: '@ai-sdk/provider-utils': 1.0.19(zod@3.23.8) '@ai-sdk/ui-utils': 0.0.44(zod@3.23.8) @@ -9596,13 +9616,13 @@ snapshots: react: 18.3.1 zod: 3.23.8 - '@ai-sdk/react@0.0.59(react@19.0.0-rc-f994737d14-20240522)(zod@3.23.8)': + '@ai-sdk/react@0.0.60(react@19.0.0-rc-5d19e1c8-20240923)(zod@3.23.8)': dependencies: '@ai-sdk/provider-utils': 1.0.19(zod@3.23.8) '@ai-sdk/ui-utils': 0.0.44(zod@3.23.8) - swr: 2.2.5(react@19.0.0-rc-f994737d14-20240522) + swr: 2.2.5(react@19.0.0-rc-5d19e1c8-20240923) optionalDependencies: - react: 19.0.0-rc-f994737d14-20240522 + react: 19.0.0-rc-5d19e1c8-20240923 zod: 3.23.8 '@ai-sdk/solid@0.0.47(zod@3.23.8)': @@ -9632,13 +9652,13 @@ snapshots: optionalDependencies: zod: 3.23.8 - '@ai-sdk/vue@0.0.50(vue@3.5.6(typescript@5.6.2))(zod@3.23.8)': + '@ai-sdk/vue@0.0.51(vue@3.5.8(typescript@5.6.2))(zod@3.23.8)': dependencies: '@ai-sdk/provider-utils': 1.0.19(zod@3.23.8) '@ai-sdk/ui-utils': 0.0.44(zod@3.23.8) - swrv: 1.0.4(vue@3.5.6(typescript@5.6.2)) + swrv: 1.0.4(vue@3.5.8(typescript@5.6.2)) optionalDependencies: - vue: 3.5.6(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) transitivePeerDependencies: - zod @@ -9696,14 +9716,14 @@ snapshots: '@smithy/util-utf8': 2.3.0 tslib: 2.7.0 - '@aws-sdk/client-ecs@3.654.0': + '@aws-sdk/client-ecs@3.658.0': dependencies: '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sso-oidc': 3.654.0(@aws-sdk/client-sts@3.654.0) - '@aws-sdk/client-sts': 3.654.0 - '@aws-sdk/core': 3.654.0 - '@aws-sdk/credential-provider-node': 3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0))(@aws-sdk/client-sts@3.654.0) + '@aws-sdk/client-sso-oidc': 3.658.0(@aws-sdk/client-sts@3.658.0) + '@aws-sdk/client-sts': 3.658.0 + '@aws-sdk/core': 3.658.0 + '@aws-sdk/credential-provider-node': 3.658.0(@aws-sdk/client-sso-oidc@3.658.0(@aws-sdk/client-sts@3.658.0))(@aws-sdk/client-sts@3.658.0) '@aws-sdk/middleware-host-header': 3.654.0 '@aws-sdk/middleware-logger': 3.654.0 '@aws-sdk/middleware-recursion-detection': 3.654.0 @@ -9714,26 +9734,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.654.0 '@aws-sdk/util-user-agent-node': 3.654.0 '@smithy/config-resolver': 3.0.8 - '@smithy/core': 2.4.3 - '@smithy/fetch-http-handler': 3.2.7 + '@smithy/core': 2.4.6 + '@smithy/fetch-http-handler': 3.2.8 '@smithy/hash-node': 3.0.6 '@smithy/invalid-dependency': 3.0.6 '@smithy/middleware-content-length': 3.0.8 '@smithy/middleware-endpoint': 3.1.3 - '@smithy/middleware-retry': 3.0.18 + '@smithy/middleware-retry': 3.0.21 '@smithy/middleware-serde': 3.0.6 '@smithy/middleware-stack': 3.0.6 '@smithy/node-config-provider': 3.1.7 - '@smithy/node-http-handler': 3.2.2 + '@smithy/node-http-handler': 3.2.3 '@smithy/protocol-http': 4.1.3 - '@smithy/smithy-client': 3.3.2 + '@smithy/smithy-client': 3.3.5 '@smithy/types': 3.4.2 '@smithy/url-parser': 3.0.6 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.18 - '@smithy/util-defaults-mode-node': 3.0.18 + '@smithy/util-defaults-mode-browser': 3.0.21 + '@smithy/util-defaults-mode-node': 3.0.21 '@smithy/util-endpoints': 2.1.2 '@smithy/util-middleware': 3.0.6 '@smithy/util-retry': 3.0.6 @@ -9744,38 +9764,38 @@ snapshots: transitivePeerDependencies: - aws-crt - '@aws-sdk/client-s3@3.654.0': + '@aws-sdk/client-s3@3.658.0': dependencies: '@aws-crypto/sha1-browser': 5.2.0 '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sso-oidc': 3.654.0(@aws-sdk/client-sts@3.654.0) - '@aws-sdk/client-sts': 3.654.0 - '@aws-sdk/core': 3.654.0 - '@aws-sdk/credential-provider-node': 3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0))(@aws-sdk/client-sts@3.654.0) + '@aws-sdk/client-sso-oidc': 3.658.0(@aws-sdk/client-sts@3.658.0) + '@aws-sdk/client-sts': 3.658.0 + '@aws-sdk/core': 3.658.0 + '@aws-sdk/credential-provider-node': 3.658.0(@aws-sdk/client-sso-oidc@3.658.0(@aws-sdk/client-sts@3.658.0))(@aws-sdk/client-sts@3.658.0) '@aws-sdk/middleware-bucket-endpoint': 3.654.0 '@aws-sdk/middleware-expect-continue': 3.654.0 - '@aws-sdk/middleware-flexible-checksums': 3.654.0 + '@aws-sdk/middleware-flexible-checksums': 3.657.0 '@aws-sdk/middleware-host-header': 3.654.0 '@aws-sdk/middleware-location-constraint': 3.654.0 '@aws-sdk/middleware-logger': 3.654.0 '@aws-sdk/middleware-recursion-detection': 3.654.0 - '@aws-sdk/middleware-sdk-s3': 3.654.0 + '@aws-sdk/middleware-sdk-s3': 3.658.0 '@aws-sdk/middleware-ssec': 3.654.0 '@aws-sdk/middleware-user-agent': 3.654.0 '@aws-sdk/region-config-resolver': 3.654.0 - '@aws-sdk/signature-v4-multi-region': 3.654.0 + '@aws-sdk/signature-v4-multi-region': 3.658.0 '@aws-sdk/types': 3.654.0 '@aws-sdk/util-endpoints': 3.654.0 '@aws-sdk/util-user-agent-browser': 3.654.0 '@aws-sdk/util-user-agent-node': 3.654.0 '@aws-sdk/xml-builder': 3.654.0 '@smithy/config-resolver': 3.0.8 - '@smithy/core': 2.4.3 + '@smithy/core': 2.4.6 '@smithy/eventstream-serde-browser': 3.0.9 '@smithy/eventstream-serde-config-resolver': 3.0.6 '@smithy/eventstream-serde-node': 3.0.8 - '@smithy/fetch-http-handler': 3.2.7 + '@smithy/fetch-http-handler': 3.2.8 '@smithy/hash-blob-browser': 3.1.5 '@smithy/hash-node': 3.0.6 '@smithy/hash-stream-node': 3.1.5 @@ -9783,37 +9803,37 @@ snapshots: '@smithy/md5-js': 3.0.6 '@smithy/middleware-content-length': 3.0.8 '@smithy/middleware-endpoint': 3.1.3 - '@smithy/middleware-retry': 3.0.18 + '@smithy/middleware-retry': 3.0.21 '@smithy/middleware-serde': 3.0.6 '@smithy/middleware-stack': 3.0.6 '@smithy/node-config-provider': 3.1.7 - '@smithy/node-http-handler': 3.2.2 + '@smithy/node-http-handler': 3.2.3 '@smithy/protocol-http': 4.1.3 - '@smithy/smithy-client': 3.3.2 + '@smithy/smithy-client': 3.3.5 '@smithy/types': 3.4.2 '@smithy/url-parser': 3.0.6 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.18 - '@smithy/util-defaults-mode-node': 3.0.18 + '@smithy/util-defaults-mode-browser': 3.0.21 + '@smithy/util-defaults-mode-node': 3.0.21 '@smithy/util-endpoints': 2.1.2 '@smithy/util-middleware': 3.0.6 '@smithy/util-retry': 3.0.6 - '@smithy/util-stream': 3.1.6 + '@smithy/util-stream': 3.1.8 '@smithy/util-utf8': 3.0.0 '@smithy/util-waiter': 3.1.5 tslib: 2.7.0 transitivePeerDependencies: - aws-crt - '@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0)': + '@aws-sdk/client-sso-oidc@3.658.0(@aws-sdk/client-sts@3.658.0)': dependencies: '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sts': 3.654.0 - '@aws-sdk/core': 3.654.0 - '@aws-sdk/credential-provider-node': 3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0))(@aws-sdk/client-sts@3.654.0) + '@aws-sdk/client-sts': 3.658.0 + '@aws-sdk/core': 3.658.0 + '@aws-sdk/credential-provider-node': 3.658.0(@aws-sdk/client-sso-oidc@3.658.0(@aws-sdk/client-sts@3.658.0))(@aws-sdk/client-sts@3.658.0) '@aws-sdk/middleware-host-header': 3.654.0 '@aws-sdk/middleware-logger': 3.654.0 '@aws-sdk/middleware-recursion-detection': 3.654.0 @@ -9824,26 +9844,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.654.0 '@aws-sdk/util-user-agent-node': 3.654.0 '@smithy/config-resolver': 3.0.8 - '@smithy/core': 2.4.3 - '@smithy/fetch-http-handler': 3.2.7 + '@smithy/core': 2.4.6 + '@smithy/fetch-http-handler': 3.2.8 '@smithy/hash-node': 3.0.6 '@smithy/invalid-dependency': 3.0.6 '@smithy/middleware-content-length': 3.0.8 '@smithy/middleware-endpoint': 3.1.3 - '@smithy/middleware-retry': 3.0.18 + '@smithy/middleware-retry': 3.0.21 '@smithy/middleware-serde': 3.0.6 '@smithy/middleware-stack': 3.0.6 '@smithy/node-config-provider': 3.1.7 - '@smithy/node-http-handler': 3.2.2 + '@smithy/node-http-handler': 3.2.3 '@smithy/protocol-http': 4.1.3 - '@smithy/smithy-client': 3.3.2 + '@smithy/smithy-client': 3.3.5 '@smithy/types': 3.4.2 '@smithy/url-parser': 3.0.6 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.18 - '@smithy/util-defaults-mode-node': 3.0.18 + '@smithy/util-defaults-mode-browser': 3.0.21 + '@smithy/util-defaults-mode-node': 3.0.21 '@smithy/util-endpoints': 2.1.2 '@smithy/util-middleware': 3.0.6 '@smithy/util-retry': 3.0.6 @@ -9852,11 +9872,11 @@ snapshots: transitivePeerDependencies: - aws-crt - '@aws-sdk/client-sso@3.654.0': + '@aws-sdk/client-sso@3.658.0': dependencies: '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/core': 3.654.0 + '@aws-sdk/core': 3.658.0 '@aws-sdk/middleware-host-header': 3.654.0 '@aws-sdk/middleware-logger': 3.654.0 '@aws-sdk/middleware-recursion-detection': 3.654.0 @@ -9867,26 +9887,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.654.0 '@aws-sdk/util-user-agent-node': 3.654.0 '@smithy/config-resolver': 3.0.8 - '@smithy/core': 2.4.3 - '@smithy/fetch-http-handler': 3.2.7 + '@smithy/core': 2.4.6 + '@smithy/fetch-http-handler': 3.2.8 '@smithy/hash-node': 3.0.6 '@smithy/invalid-dependency': 3.0.6 '@smithy/middleware-content-length': 3.0.8 '@smithy/middleware-endpoint': 3.1.3 - '@smithy/middleware-retry': 3.0.18 + '@smithy/middleware-retry': 3.0.21 '@smithy/middleware-serde': 3.0.6 '@smithy/middleware-stack': 3.0.6 '@smithy/node-config-provider': 3.1.7 - '@smithy/node-http-handler': 3.2.2 + '@smithy/node-http-handler': 3.2.3 '@smithy/protocol-http': 4.1.3 - '@smithy/smithy-client': 3.3.2 + '@smithy/smithy-client': 3.3.5 '@smithy/types': 3.4.2 '@smithy/url-parser': 3.0.6 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.18 - '@smithy/util-defaults-mode-node': 3.0.18 + '@smithy/util-defaults-mode-browser': 3.0.21 + '@smithy/util-defaults-mode-node': 3.0.21 '@smithy/util-endpoints': 2.1.2 '@smithy/util-middleware': 3.0.6 '@smithy/util-retry': 3.0.6 @@ -9895,13 +9915,13 @@ snapshots: transitivePeerDependencies: - aws-crt - '@aws-sdk/client-sts@3.654.0': + '@aws-sdk/client-sts@3.658.0': dependencies: '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sso-oidc': 3.654.0(@aws-sdk/client-sts@3.654.0) - '@aws-sdk/core': 3.654.0 - '@aws-sdk/credential-provider-node': 3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0))(@aws-sdk/client-sts@3.654.0) + '@aws-sdk/client-sso-oidc': 3.658.0(@aws-sdk/client-sts@3.658.0) + '@aws-sdk/core': 3.658.0 + '@aws-sdk/credential-provider-node': 3.658.0(@aws-sdk/client-sso-oidc@3.658.0(@aws-sdk/client-sts@3.658.0))(@aws-sdk/client-sts@3.658.0) '@aws-sdk/middleware-host-header': 3.654.0 '@aws-sdk/middleware-logger': 3.654.0 '@aws-sdk/middleware-recursion-detection': 3.654.0 @@ -9912,26 +9932,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.654.0 '@aws-sdk/util-user-agent-node': 3.654.0 '@smithy/config-resolver': 3.0.8 - '@smithy/core': 2.4.3 - '@smithy/fetch-http-handler': 3.2.7 + '@smithy/core': 2.4.6 + '@smithy/fetch-http-handler': 3.2.8 '@smithy/hash-node': 3.0.6 '@smithy/invalid-dependency': 3.0.6 '@smithy/middleware-content-length': 3.0.8 '@smithy/middleware-endpoint': 3.1.3 - '@smithy/middleware-retry': 3.0.18 + '@smithy/middleware-retry': 3.0.21 '@smithy/middleware-serde': 3.0.6 '@smithy/middleware-stack': 3.0.6 '@smithy/node-config-provider': 3.1.7 - '@smithy/node-http-handler': 3.2.2 + '@smithy/node-http-handler': 3.2.3 '@smithy/protocol-http': 4.1.3 - '@smithy/smithy-client': 3.3.2 + '@smithy/smithy-client': 3.3.5 '@smithy/types': 3.4.2 '@smithy/url-parser': 3.0.6 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.18 - '@smithy/util-defaults-mode-node': 3.0.18 + '@smithy/util-defaults-mode-browser': 3.0.21 + '@smithy/util-defaults-mode-node': 3.0.21 '@smithy/util-endpoints': 2.1.2 '@smithy/util-middleware': 3.0.6 '@smithy/util-retry': 3.0.6 @@ -9940,14 +9960,14 @@ snapshots: transitivePeerDependencies: - aws-crt - '@aws-sdk/core@3.654.0': + '@aws-sdk/core@3.658.0': dependencies: - '@smithy/core': 2.4.3 + '@smithy/core': 2.4.6 '@smithy/node-config-provider': 3.1.7 '@smithy/property-provider': 3.1.6 '@smithy/protocol-http': 4.1.3 - '@smithy/signature-v4': 4.1.3 - '@smithy/smithy-client': 3.3.2 + '@smithy/signature-v4': 4.1.4 + '@smithy/smithy-client': 3.3.5 '@smithy/types': 3.4.2 '@smithy/util-middleware': 3.0.6 fast-xml-parser: 4.4.1 @@ -9963,23 +9983,23 @@ snapshots: '@aws-sdk/credential-provider-http@3.654.0': dependencies: '@aws-sdk/types': 3.654.0 - '@smithy/fetch-http-handler': 3.2.7 - '@smithy/node-http-handler': 3.2.2 + '@smithy/fetch-http-handler': 3.2.8 + '@smithy/node-http-handler': 3.2.3 '@smithy/property-provider': 3.1.6 '@smithy/protocol-http': 4.1.3 - '@smithy/smithy-client': 3.3.2 + '@smithy/smithy-client': 3.3.5 '@smithy/types': 3.4.2 - '@smithy/util-stream': 3.1.6 + '@smithy/util-stream': 3.1.8 tslib: 2.7.0 - '@aws-sdk/credential-provider-ini@3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0))(@aws-sdk/client-sts@3.654.0)': + '@aws-sdk/credential-provider-ini@3.658.0(@aws-sdk/client-sso-oidc@3.658.0(@aws-sdk/client-sts@3.658.0))(@aws-sdk/client-sts@3.658.0)': dependencies: - '@aws-sdk/client-sts': 3.654.0 + '@aws-sdk/client-sts': 3.658.0 '@aws-sdk/credential-provider-env': 3.654.0 '@aws-sdk/credential-provider-http': 3.654.0 '@aws-sdk/credential-provider-process': 3.654.0 - '@aws-sdk/credential-provider-sso': 3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0)) - '@aws-sdk/credential-provider-web-identity': 3.654.0(@aws-sdk/client-sts@3.654.0) + '@aws-sdk/credential-provider-sso': 3.658.0(@aws-sdk/client-sso-oidc@3.658.0(@aws-sdk/client-sts@3.658.0)) + '@aws-sdk/credential-provider-web-identity': 3.654.0(@aws-sdk/client-sts@3.658.0) '@aws-sdk/types': 3.654.0 '@smithy/credential-provider-imds': 3.2.3 '@smithy/property-provider': 3.1.6 @@ -9990,14 +10010,14 @@ snapshots: - '@aws-sdk/client-sso-oidc' - aws-crt - '@aws-sdk/credential-provider-node@3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0))(@aws-sdk/client-sts@3.654.0)': + '@aws-sdk/credential-provider-node@3.658.0(@aws-sdk/client-sso-oidc@3.658.0(@aws-sdk/client-sts@3.658.0))(@aws-sdk/client-sts@3.658.0)': dependencies: '@aws-sdk/credential-provider-env': 3.654.0 '@aws-sdk/credential-provider-http': 3.654.0 - '@aws-sdk/credential-provider-ini': 3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0))(@aws-sdk/client-sts@3.654.0) + '@aws-sdk/credential-provider-ini': 3.658.0(@aws-sdk/client-sso-oidc@3.658.0(@aws-sdk/client-sts@3.658.0))(@aws-sdk/client-sts@3.658.0) '@aws-sdk/credential-provider-process': 3.654.0 - '@aws-sdk/credential-provider-sso': 3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0)) - '@aws-sdk/credential-provider-web-identity': 3.654.0(@aws-sdk/client-sts@3.654.0) + '@aws-sdk/credential-provider-sso': 3.658.0(@aws-sdk/client-sso-oidc@3.658.0(@aws-sdk/client-sts@3.658.0)) + '@aws-sdk/credential-provider-web-identity': 3.654.0(@aws-sdk/client-sts@3.658.0) '@aws-sdk/types': 3.654.0 '@smithy/credential-provider-imds': 3.2.3 '@smithy/property-provider': 3.1.6 @@ -10017,10 +10037,10 @@ snapshots: '@smithy/types': 3.4.2 tslib: 2.7.0 - '@aws-sdk/credential-provider-sso@3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0))': + '@aws-sdk/credential-provider-sso@3.658.0(@aws-sdk/client-sso-oidc@3.658.0(@aws-sdk/client-sts@3.658.0))': dependencies: - '@aws-sdk/client-sso': 3.654.0 - '@aws-sdk/token-providers': 3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0)) + '@aws-sdk/client-sso': 3.658.0 + '@aws-sdk/token-providers': 3.654.0(@aws-sdk/client-sso-oidc@3.658.0(@aws-sdk/client-sts@3.658.0)) '@aws-sdk/types': 3.654.0 '@smithy/property-provider': 3.1.6 '@smithy/shared-ini-file-loader': 3.1.7 @@ -10030,9 +10050,9 @@ snapshots: - '@aws-sdk/client-sso-oidc' - aws-crt - '@aws-sdk/credential-provider-web-identity@3.654.0(@aws-sdk/client-sts@3.654.0)': + '@aws-sdk/credential-provider-web-identity@3.654.0(@aws-sdk/client-sts@3.658.0)': dependencies: - '@aws-sdk/client-sts': 3.654.0 + '@aws-sdk/client-sts': 3.658.0 '@aws-sdk/types': 3.654.0 '@smithy/property-provider': 3.1.6 '@smithy/types': 3.4.2 @@ -10055,7 +10075,7 @@ snapshots: '@smithy/types': 3.4.2 tslib: 2.7.0 - '@aws-sdk/middleware-flexible-checksums@3.654.0': + '@aws-sdk/middleware-flexible-checksums@3.657.0': dependencies: '@aws-crypto/crc32': 5.2.0 '@aws-crypto/crc32c': 5.2.0 @@ -10094,20 +10114,20 @@ snapshots: '@smithy/types': 3.4.2 tslib: 2.7.0 - '@aws-sdk/middleware-sdk-s3@3.654.0': + '@aws-sdk/middleware-sdk-s3@3.658.0': dependencies: - '@aws-sdk/core': 3.654.0 + '@aws-sdk/core': 3.658.0 '@aws-sdk/types': 3.654.0 '@aws-sdk/util-arn-parser': 3.568.0 - '@smithy/core': 2.4.3 + '@smithy/core': 2.4.6 '@smithy/node-config-provider': 3.1.7 '@smithy/protocol-http': 4.1.3 - '@smithy/signature-v4': 4.1.3 - '@smithy/smithy-client': 3.3.2 + '@smithy/signature-v4': 4.1.4 + '@smithy/smithy-client': 3.3.5 '@smithy/types': 3.4.2 '@smithy/util-config-provider': 3.0.0 '@smithy/util-middleware': 3.0.6 - '@smithy/util-stream': 3.1.6 + '@smithy/util-stream': 3.1.8 '@smithy/util-utf8': 3.0.0 tslib: 2.7.0 @@ -10134,29 +10154,29 @@ snapshots: '@smithy/util-middleware': 3.0.6 tslib: 2.7.0 - '@aws-sdk/s3-request-presigner@3.654.0': + '@aws-sdk/s3-request-presigner@3.658.0': dependencies: - '@aws-sdk/signature-v4-multi-region': 3.654.0 + '@aws-sdk/signature-v4-multi-region': 3.658.0 '@aws-sdk/types': 3.654.0 '@aws-sdk/util-format-url': 3.654.0 '@smithy/middleware-endpoint': 3.1.3 '@smithy/protocol-http': 4.1.3 - '@smithy/smithy-client': 3.3.2 + '@smithy/smithy-client': 3.3.5 '@smithy/types': 3.4.2 tslib: 2.7.0 - '@aws-sdk/signature-v4-multi-region@3.654.0': + '@aws-sdk/signature-v4-multi-region@3.658.0': dependencies: - '@aws-sdk/middleware-sdk-s3': 3.654.0 + '@aws-sdk/middleware-sdk-s3': 3.658.0 '@aws-sdk/types': 3.654.0 '@smithy/protocol-http': 4.1.3 - '@smithy/signature-v4': 4.1.3 + '@smithy/signature-v4': 4.1.4 '@smithy/types': 3.4.2 tslib: 2.7.0 - '@aws-sdk/token-providers@3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0))': + '@aws-sdk/token-providers@3.654.0(@aws-sdk/client-sso-oidc@3.658.0(@aws-sdk/client-sts@3.658.0))': dependencies: - '@aws-sdk/client-sso-oidc': 3.654.0(@aws-sdk/client-sts@3.654.0) + '@aws-sdk/client-sso-oidc': 3.658.0(@aws-sdk/client-sts@3.658.0) '@aws-sdk/types': 3.654.0 '@smithy/property-provider': 3.1.6 '@smithy/shared-ini-file-loader': 3.1.7 @@ -10275,7 +10295,7 @@ snapshots: dependencies: '@babel/compat-data': 7.25.4 '@babel/helper-validator-option': 7.24.8 - browserslist: 4.23.3 + browserslist: 4.24.0 lru-cache: 5.1.1 semver: 6.3.1 @@ -10814,13 +10834,13 @@ snapshots: protobufjs: 7.4.0 yargs: 17.7.2 - '@hono/node-server@1.13.0(hono@4.6.2)': + '@hono/node-server@1.13.1(hono@4.6.3)': dependencies: - hono: 4.6.2 + hono: 4.6.3 - '@hono/zod-validator@0.2.2(hono@4.6.2)(zod@3.23.8)': + '@hono/zod-validator@0.2.2(hono@4.6.3)(zod@3.23.8)': dependencies: - hono: 4.6.2 + hono: 4.6.3 zod: 3.23.8 '@humanwhocodes/config-array@0.13.0': @@ -10837,7 +10857,7 @@ snapshots: '@humanwhocodes/retry@0.3.0': {} - '@ianvs/prettier-plugin-sort-imports@4.3.1(@vue/compiler-sfc@3.5.6)(prettier@3.3.3)': + '@ianvs/prettier-plugin-sort-imports@4.3.1(@vue/compiler-sfc@3.5.8)(prettier@3.3.3)': dependencies: '@babel/core': 7.25.2 '@babel/generator': 7.25.6 @@ -10847,7 +10867,7 @@ snapshots: prettier: 3.3.3 semver: 7.6.3 optionalDependencies: - '@vue/compiler-sfc': 3.5.6 + '@vue/compiler-sfc': 3.5.8 transitivePeerDependencies: - supports-color @@ -10936,7 +10956,7 @@ snapshots: '@inquirer/figures': 1.0.6 '@inquirer/type': 2.0.0 '@types/mute-stream': 0.0.4 - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/wrap-ansi': 3.0.0 ansi-escapes: 4.3.2 cli-width: 4.1.0 @@ -11004,11 +11024,10 @@ snapshots: '@logdna/tail-file@2.2.0': {} - '@lucia-auth/adapter-drizzle@1.1.0(drizzle-orm@0.33.0(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@18.3.0)(pg@8.13.0)(react@19.0.0-rc-f994737d14-20240522))(lucia@3.2.0)': + '@lucia-auth/adapter-drizzle@1.1.0(drizzle-orm@0.33.0(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@18.3.0)(pg@8.13.0)(react@19.0.0-rc-5d19e1c8-20240923))(lucia@3.2.0)': dependencies: + drizzle-orm: 0.33.0(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@18.3.0)(pg@8.13.0)(react@19.0.0-rc-5d19e1c8-20240923) lucia: 3.2.0 - optionalDependencies: - drizzle-orm: 0.33.0(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@18.3.0)(pg@8.13.0)(react@19.0.0-rc-f994737d14-20240522) '@lukeed/ms@2.0.2': {} @@ -11040,12 +11059,12 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@monaco-editor/react@4.6.0(monaco-editor@0.50.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': + '@monaco-editor/react@4.6.0(monaco-editor@0.50.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923)': dependencies: '@monaco-editor/loader': 1.4.0(monaco-editor@0.50.0) monaco-editor: 0.50.0 - react: 19.0.0-rc-f994737d14-20240522 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) + react: 19.0.0-rc-5d19e1c8-20240923 + react-dom: 19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923) '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3': optional: true @@ -11076,7 +11095,7 @@ snapshots: '@next/env@14.2.3': {} - '@next/env@14.3.0-canary.87': {} + '@next/env@15.0.0-canary.168': {} '@next/eslint-plugin-next@14.2.13': dependencies: @@ -11085,55 +11104,55 @@ snapshots: '@next/swc-darwin-arm64@14.2.3': optional: true - '@next/swc-darwin-arm64@14.3.0-canary.87': + '@next/swc-darwin-arm64@15.0.0-canary.168': optional: true '@next/swc-darwin-x64@14.2.3': optional: true - '@next/swc-darwin-x64@14.3.0-canary.87': + '@next/swc-darwin-x64@15.0.0-canary.168': optional: true '@next/swc-linux-arm64-gnu@14.2.3': optional: true - '@next/swc-linux-arm64-gnu@14.3.0-canary.87': + '@next/swc-linux-arm64-gnu@15.0.0-canary.168': optional: true '@next/swc-linux-arm64-musl@14.2.3': optional: true - '@next/swc-linux-arm64-musl@14.3.0-canary.87': + '@next/swc-linux-arm64-musl@15.0.0-canary.168': optional: true '@next/swc-linux-x64-gnu@14.2.3': optional: true - '@next/swc-linux-x64-gnu@14.3.0-canary.87': + '@next/swc-linux-x64-gnu@15.0.0-canary.168': optional: true '@next/swc-linux-x64-musl@14.2.3': optional: true - '@next/swc-linux-x64-musl@14.3.0-canary.87': + '@next/swc-linux-x64-musl@15.0.0-canary.168': optional: true '@next/swc-win32-arm64-msvc@14.2.3': optional: true - '@next/swc-win32-arm64-msvc@14.3.0-canary.87': + '@next/swc-win32-arm64-msvc@15.0.0-canary.168': optional: true '@next/swc-win32-ia32-msvc@14.2.3': optional: true - '@next/swc-win32-ia32-msvc@14.3.0-canary.87': + '@next/swc-win32-ia32-msvc@15.0.0-canary.168': optional: true '@next/swc-win32-x64-msvc@14.2.3': optional: true - '@next/swc-win32-x64-msvc@14.3.0-canary.87': + '@next/swc-win32-x64-msvc@15.0.0-canary.168': optional: true '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': @@ -11450,6 +11469,15 @@ snapshots: '@opentelemetry/sdk-trace-base': 1.26.0(@opentelemetry/api@1.9.0) '@opentelemetry/semantic-conventions': 1.27.0 + '@opentelemetry/instrumentation-amqplib@0.42.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.27.0 + transitivePeerDependencies: + - supports-color + '@opentelemetry/instrumentation-connect@0.39.0(@opentelemetry/api@1.9.0)': dependencies: '@opentelemetry/api': 1.9.0 @@ -11460,6 +11488,13 @@ snapshots: transitivePeerDependencies: - supports-color + '@opentelemetry/instrumentation-dataloader@0.12.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0) + transitivePeerDependencies: + - supports-color + '@opentelemetry/instrumentation-express@0.42.0(@opentelemetry/api@1.9.0)': dependencies: '@opentelemetry/api': 1.9.0 @@ -11710,7 +11745,7 @@ snapshots: dependencies: tslib: 2.7.0 - '@poppinss/utils@6.8.1': + '@poppinss/utils@6.8.3': dependencies: '@lukeed/ms': 2.0.2 '@types/bytes': 3.1.4 @@ -11756,9 +11791,9 @@ snapshots: '@protobufjs/utf8@1.1.0': {} - '@pulumi/aws@6.52.0(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2)': + '@pulumi/aws@6.52.0(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2)': dependencies: - '@pulumi/pulumi': 3.133.0(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2) + '@pulumi/pulumi': 3.134.0(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2) builtin-modules: 3.0.0 mime: 2.6.0 resolve: 1.22.8 @@ -11768,15 +11803,15 @@ snapshots: - ts-node - typescript - '@pulumi/awsx@2.15.0(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2)': + '@pulumi/awsx@2.15.0(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2)': dependencies: - '@aws-sdk/client-ecs': 3.654.0 - '@pulumi/aws': 6.52.0(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2) - '@pulumi/docker': 4.5.5(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2) - '@pulumi/pulumi': 3.133.0(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2) + '@aws-sdk/client-ecs': 3.658.0 + '@pulumi/aws': 6.52.0(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2) + '@pulumi/docker': 4.5.6(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2) + '@pulumi/pulumi': 3.134.0(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2) '@types/aws-lambda': 8.10.145 aws-sdk: 2.1691.0 - docker-classic: '@pulumi/docker@3.6.1(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2)' + docker-classic: '@pulumi/docker@3.6.1(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2)' mime: 2.6.0 transitivePeerDependencies: - aws-crt @@ -11785,9 +11820,9 @@ snapshots: - ts-node - typescript - '@pulumi/docker@3.6.1(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2)': + '@pulumi/docker@3.6.1(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2)': dependencies: - '@pulumi/pulumi': 3.133.0(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2) + '@pulumi/pulumi': 3.134.0(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2) semver: 5.7.2 transitivePeerDependencies: - bluebird @@ -11795,9 +11830,9 @@ snapshots: - ts-node - typescript - '@pulumi/docker@4.5.5(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2)': + '@pulumi/docker@4.5.6(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2)': dependencies: - '@pulumi/pulumi': 3.133.0(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2) + '@pulumi/pulumi': 3.134.0(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2) semver: 5.7.2 transitivePeerDependencies: - bluebird @@ -11805,7 +11840,7 @@ snapshots: - ts-node - typescript - '@pulumi/pulumi@3.133.0(ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2)': + '@pulumi/pulumi@3.134.0(ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2))(typescript@5.6.2)': dependencies: '@grpc/grpc-js': 1.11.3 '@logdna/tail-file': 2.2.0 @@ -11838,7 +11873,7 @@ snapshots: tmp: 0.2.3 upath: 1.2.0 optionalDependencies: - ts-node: 10.9.2(@types/node@18.19.50)(typescript@5.6.2) + ts-node: 10.9.2(@types/node@18.19.51)(typescript@5.6.2) typescript: 5.6.2 transitivePeerDependencies: - bluebird @@ -12758,101 +12793,99 @@ snapshots: dependencies: react: 18.3.1 - '@rollup/plugin-alias@5.1.0(rollup@4.22.2)': - dependencies: - slash: 4.0.0 + '@rollup/plugin-alias@5.1.1(rollup@4.22.4)': optionalDependencies: - rollup: 4.22.2 + rollup: 4.22.4 - '@rollup/plugin-commonjs@26.0.1(rollup@3.29.4)': + '@rollup/plugin-commonjs@26.0.1(rollup@3.29.5)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@3.29.4) + '@rollup/pluginutils': 5.1.2(rollup@3.29.5) commondir: 1.0.1 estree-walker: 2.0.2 glob: 10.4.5 is-reference: 1.2.1 magic-string: 0.30.11 optionalDependencies: - rollup: 3.29.4 + rollup: 3.29.5 - '@rollup/plugin-replace@6.0.1(rollup@4.22.2)': + '@rollup/plugin-replace@6.0.1(rollup@4.22.4)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.22.2) + '@rollup/pluginutils': 5.1.2(rollup@4.22.4) magic-string: 0.30.11 optionalDependencies: - rollup: 4.22.2 + rollup: 4.22.4 - '@rollup/plugin-typescript@11.1.6(rollup@4.22.2)(tslib@2.7.0)(typescript@5.6.2)': + '@rollup/plugin-typescript@11.1.6(rollup@4.22.4)(tslib@2.7.0)(typescript@5.6.2)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.22.2) + '@rollup/pluginutils': 5.1.2(rollup@4.22.4) resolve: 1.22.8 typescript: 5.6.2 optionalDependencies: - rollup: 4.22.2 + rollup: 4.22.4 tslib: 2.7.0 - '@rollup/pluginutils@5.1.0(rollup@3.29.4)': + '@rollup/pluginutils@5.1.2(rollup@3.29.5)': dependencies: '@types/estree': 1.0.6 estree-walker: 2.0.2 picomatch: 2.3.1 optionalDependencies: - rollup: 3.29.4 + rollup: 3.29.5 - '@rollup/pluginutils@5.1.0(rollup@4.22.2)': + '@rollup/pluginutils@5.1.2(rollup@4.22.4)': dependencies: '@types/estree': 1.0.6 estree-walker: 2.0.2 picomatch: 2.3.1 optionalDependencies: - rollup: 4.22.2 + rollup: 4.22.4 - '@rollup/rollup-android-arm-eabi@4.22.2': + '@rollup/rollup-android-arm-eabi@4.22.4': optional: true - '@rollup/rollup-android-arm64@4.22.2': + '@rollup/rollup-android-arm64@4.22.4': optional: true - '@rollup/rollup-darwin-arm64@4.22.2': + '@rollup/rollup-darwin-arm64@4.22.4': optional: true - '@rollup/rollup-darwin-x64@4.22.2': + '@rollup/rollup-darwin-x64@4.22.4': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.22.2': + '@rollup/rollup-linux-arm-gnueabihf@4.22.4': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.22.2': + '@rollup/rollup-linux-arm-musleabihf@4.22.4': optional: true - '@rollup/rollup-linux-arm64-gnu@4.22.2': + '@rollup/rollup-linux-arm64-gnu@4.22.4': optional: true - '@rollup/rollup-linux-arm64-musl@4.22.2': + '@rollup/rollup-linux-arm64-musl@4.22.4': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.22.2': + '@rollup/rollup-linux-powerpc64le-gnu@4.22.4': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.22.2': + '@rollup/rollup-linux-riscv64-gnu@4.22.4': optional: true - '@rollup/rollup-linux-s390x-gnu@4.22.2': + '@rollup/rollup-linux-s390x-gnu@4.22.4': optional: true - '@rollup/rollup-linux-x64-gnu@4.22.2': + '@rollup/rollup-linux-x64-gnu@4.22.4': optional: true - '@rollup/rollup-linux-x64-musl@4.22.2': + '@rollup/rollup-linux-x64-musl@4.22.4': optional: true - '@rollup/rollup-win32-arm64-msvc@4.22.2': + '@rollup/rollup-win32-arm64-msvc@4.22.4': optional: true - '@rollup/rollup-win32-ia32-msvc@4.22.2': + '@rollup/rollup-win32-ia32-msvc@4.22.4': optional: true - '@rollup/rollup-win32-x64-msvc@4.22.2': + '@rollup/rollup-win32-x64-msvc@4.22.4': optional: true '@rtsao/scc@1.1.0': {} @@ -12864,49 +12897,49 @@ snapshots: domhandler: 5.0.3 selderee: 0.11.0 - '@sentry-internal/browser-utils@8.30.0': + '@sentry-internal/browser-utils@8.32.0': dependencies: - '@sentry/core': 8.30.0 - '@sentry/types': 8.30.0 - '@sentry/utils': 8.30.0 + '@sentry/core': 8.32.0 + '@sentry/types': 8.32.0 + '@sentry/utils': 8.32.0 - '@sentry-internal/feedback@8.30.0': + '@sentry-internal/feedback@8.32.0': dependencies: - '@sentry/core': 8.30.0 - '@sentry/types': 8.30.0 - '@sentry/utils': 8.30.0 + '@sentry/core': 8.32.0 + '@sentry/types': 8.32.0 + '@sentry/utils': 8.32.0 - '@sentry-internal/replay-canvas@8.30.0': + '@sentry-internal/replay-canvas@8.32.0': dependencies: - '@sentry-internal/replay': 8.30.0 - '@sentry/core': 8.30.0 - '@sentry/types': 8.30.0 - '@sentry/utils': 8.30.0 + '@sentry-internal/replay': 8.32.0 + '@sentry/core': 8.32.0 + '@sentry/types': 8.32.0 + '@sentry/utils': 8.32.0 - '@sentry-internal/replay@8.30.0': + '@sentry-internal/replay@8.32.0': dependencies: - '@sentry-internal/browser-utils': 8.30.0 - '@sentry/core': 8.30.0 - '@sentry/types': 8.30.0 - '@sentry/utils': 8.30.0 + '@sentry-internal/browser-utils': 8.32.0 + '@sentry/core': 8.32.0 + '@sentry/types': 8.32.0 + '@sentry/utils': 8.32.0 '@sentry/babel-plugin-component-annotate@2.22.3': {} - '@sentry/browser@8.30.0': + '@sentry/browser@8.32.0': dependencies: - '@sentry-internal/browser-utils': 8.30.0 - '@sentry-internal/feedback': 8.30.0 - '@sentry-internal/replay': 8.30.0 - '@sentry-internal/replay-canvas': 8.30.0 - '@sentry/core': 8.30.0 - '@sentry/types': 8.30.0 - '@sentry/utils': 8.30.0 + '@sentry-internal/browser-utils': 8.32.0 + '@sentry-internal/feedback': 8.32.0 + '@sentry-internal/replay': 8.32.0 + '@sentry-internal/replay-canvas': 8.32.0 + '@sentry/core': 8.32.0 + '@sentry/types': 8.32.0 + '@sentry/utils': 8.32.0 '@sentry/bundler-plugin-core@2.22.3(encoding@0.1.13)': dependencies: '@babel/core': 7.25.2 '@sentry/babel-plugin-component-annotate': 2.22.3 - '@sentry/cli': 2.36.1(encoding@0.1.13) + '@sentry/cli': 2.36.2(encoding@0.1.13) dotenv: 16.4.5 find-up: 5.0.0 glob: 9.3.5 @@ -12916,28 +12949,28 @@ snapshots: - encoding - supports-color - '@sentry/cli-darwin@2.36.1': + '@sentry/cli-darwin@2.36.2': optional: true - '@sentry/cli-linux-arm64@2.36.1': + '@sentry/cli-linux-arm64@2.36.2': optional: true - '@sentry/cli-linux-arm@2.36.1': + '@sentry/cli-linux-arm@2.36.2': optional: true - '@sentry/cli-linux-i686@2.36.1': + '@sentry/cli-linux-i686@2.36.2': optional: true - '@sentry/cli-linux-x64@2.36.1': + '@sentry/cli-linux-x64@2.36.2': optional: true - '@sentry/cli-win32-i686@2.36.1': + '@sentry/cli-win32-i686@2.36.2': optional: true - '@sentry/cli-win32-x64@2.36.1': + '@sentry/cli-win32-x64@2.36.2': optional: true - '@sentry/cli@2.36.1(encoding@0.1.13)': + '@sentry/cli@2.36.2(encoding@0.1.13)': dependencies: https-proxy-agent: 5.0.1 node-fetch: 2.7.0(encoding@0.1.13) @@ -12945,42 +12978,43 @@ snapshots: proxy-from-env: 1.1.0 which: 2.0.2 optionalDependencies: - '@sentry/cli-darwin': 2.36.1 - '@sentry/cli-linux-arm': 2.36.1 - '@sentry/cli-linux-arm64': 2.36.1 - '@sentry/cli-linux-i686': 2.36.1 - '@sentry/cli-linux-x64': 2.36.1 - '@sentry/cli-win32-i686': 2.36.1 - '@sentry/cli-win32-x64': 2.36.1 + '@sentry/cli-darwin': 2.36.2 + '@sentry/cli-linux-arm': 2.36.2 + '@sentry/cli-linux-arm64': 2.36.2 + '@sentry/cli-linux-i686': 2.36.2 + '@sentry/cli-linux-x64': 2.36.2 + '@sentry/cli-win32-i686': 2.36.2 + '@sentry/cli-win32-x64': 2.36.2 transitivePeerDependencies: - encoding - supports-color - '@sentry/core@8.30.0': + '@sentry/core@8.32.0': dependencies: - '@sentry/types': 8.30.0 - '@sentry/utils': 8.30.0 + '@sentry/types': 8.32.0 + '@sentry/utils': 8.32.0 - '@sentry/nextjs@8.30.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.3.0-canary.87(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)(webpack@5.94.0)': + '@sentry/nextjs@8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.0.0-canary.168(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923)(webpack@5.94.0(esbuild@0.19.12))': dependencies: '@opentelemetry/instrumentation-http': 0.53.0(@opentelemetry/api@1.9.0) '@opentelemetry/semantic-conventions': 1.27.0 - '@rollup/plugin-commonjs': 26.0.1(rollup@3.29.4) - '@sentry/core': 8.30.0 - '@sentry/node': 8.30.0 - '@sentry/opentelemetry': 8.30.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0) - '@sentry/react': 8.30.0(react@19.0.0-rc-f994737d14-20240522) - '@sentry/types': 8.30.0 - '@sentry/utils': 8.30.0 - '@sentry/vercel-edge': 8.30.0 - '@sentry/webpack-plugin': 2.22.3(encoding@0.1.13)(webpack@5.94.0) + '@rollup/plugin-commonjs': 26.0.1(rollup@3.29.5) + '@sentry-internal/browser-utils': 8.32.0 + '@sentry/core': 8.32.0 + '@sentry/node': 8.32.0 + '@sentry/opentelemetry': 8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0) + '@sentry/react': 8.32.0(react@19.0.0-rc-5d19e1c8-20240923) + '@sentry/types': 8.32.0 + '@sentry/utils': 8.32.0 + '@sentry/vercel-edge': 8.32.0 + '@sentry/webpack-plugin': 2.22.3(encoding@0.1.13)(webpack@5.94.0(esbuild@0.19.12)) chalk: 3.0.0 - next: 14.3.0-canary.87(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) + next: 15.0.0-canary.168(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923) resolve: 1.22.8 - rollup: 3.29.4 + rollup: 3.29.5 stacktrace-parser: 0.1.10 optionalDependencies: - webpack: 5.94.0 + webpack: 5.94.0(esbuild@0.19.12) transitivePeerDependencies: - '@opentelemetry/api' - '@opentelemetry/core' @@ -12990,13 +13024,15 @@ snapshots: - react - supports-color - '@sentry/node@8.30.0': + '@sentry/node@8.32.0': dependencies: '@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/instrumentation': 0.53.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-amqplib': 0.42.0(@opentelemetry/api@1.9.0) '@opentelemetry/instrumentation-connect': 0.39.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-dataloader': 0.12.0(@opentelemetry/api@1.9.0) '@opentelemetry/instrumentation-express': 0.42.0(@opentelemetry/api@1.9.0) '@opentelemetry/instrumentation-fastify': 0.39.0(@opentelemetry/api@1.9.0) '@opentelemetry/instrumentation-fs': 0.15.0(@opentelemetry/api@1.9.0) @@ -13019,52 +13055,52 @@ snapshots: '@opentelemetry/sdk-trace-base': 1.26.0(@opentelemetry/api@1.9.0) '@opentelemetry/semantic-conventions': 1.27.0 '@prisma/instrumentation': 5.19.1 - '@sentry/core': 8.30.0 - '@sentry/opentelemetry': 8.30.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0) - '@sentry/types': 8.30.0 - '@sentry/utils': 8.30.0 + '@sentry/core': 8.32.0 + '@sentry/opentelemetry': 8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0) + '@sentry/types': 8.32.0 + '@sentry/utils': 8.32.0 import-in-the-middle: 1.11.0 transitivePeerDependencies: - supports-color - '@sentry/opentelemetry@8.30.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0)': + '@sentry/opentelemetry@8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0)': dependencies: '@opentelemetry/api': 1.9.0 '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0) '@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0) '@opentelemetry/sdk-trace-base': 1.26.0(@opentelemetry/api@1.9.0) '@opentelemetry/semantic-conventions': 1.27.0 - '@sentry/core': 8.30.0 - '@sentry/types': 8.30.0 - '@sentry/utils': 8.30.0 + '@sentry/core': 8.32.0 + '@sentry/types': 8.32.0 + '@sentry/utils': 8.32.0 - '@sentry/react@8.30.0(react@19.0.0-rc-f994737d14-20240522)': + '@sentry/react@8.32.0(react@19.0.0-rc-5d19e1c8-20240923)': dependencies: - '@sentry/browser': 8.30.0 - '@sentry/core': 8.30.0 - '@sentry/types': 8.30.0 - '@sentry/utils': 8.30.0 + '@sentry/browser': 8.32.0 + '@sentry/core': 8.32.0 + '@sentry/types': 8.32.0 + '@sentry/utils': 8.32.0 hoist-non-react-statics: 3.3.2 - react: 19.0.0-rc-f994737d14-20240522 + react: 19.0.0-rc-5d19e1c8-20240923 - '@sentry/types@8.30.0': {} + '@sentry/types@8.32.0': {} - '@sentry/utils@8.30.0': + '@sentry/utils@8.32.0': dependencies: - '@sentry/types': 8.30.0 + '@sentry/types': 8.32.0 - '@sentry/vercel-edge@8.30.0': + '@sentry/vercel-edge@8.32.0': dependencies: - '@sentry/core': 8.30.0 - '@sentry/types': 8.30.0 - '@sentry/utils': 8.30.0 + '@sentry/core': 8.32.0 + '@sentry/types': 8.32.0 + '@sentry/utils': 8.32.0 - '@sentry/webpack-plugin@2.22.3(encoding@0.1.13)(webpack@5.94.0)': + '@sentry/webpack-plugin@2.22.3(encoding@0.1.13)(webpack@5.94.0(esbuild@0.19.12))': dependencies: '@sentry/bundler-plugin-core': 2.22.3(encoding@0.1.13) unplugin: 1.0.1 uuid: 9.0.1 - webpack: 5.94.0 + webpack: 5.94.0(esbuild@0.19.12) transitivePeerDependencies: - encoding - supports-color @@ -13136,13 +13172,13 @@ snapshots: '@smithy/util-middleware': 3.0.6 tslib: 2.7.0 - '@smithy/core@2.4.3': + '@smithy/core@2.4.6': dependencies: '@smithy/middleware-endpoint': 3.1.3 - '@smithy/middleware-retry': 3.0.18 + '@smithy/middleware-retry': 3.0.21 '@smithy/middleware-serde': 3.0.6 '@smithy/protocol-http': 4.1.3 - '@smithy/smithy-client': 3.3.2 + '@smithy/smithy-client': 3.3.5 '@smithy/types': 3.4.2 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-middleware': 3.0.6 @@ -13187,7 +13223,7 @@ snapshots: '@smithy/types': 3.4.2 tslib: 2.7.0 - '@smithy/fetch-http-handler@3.2.7': + '@smithy/fetch-http-handler@3.2.8': dependencies: '@smithy/protocol-http': 4.1.3 '@smithy/querystring-builder': 3.0.6 @@ -13250,12 +13286,12 @@ snapshots: '@smithy/util-middleware': 3.0.6 tslib: 2.7.0 - '@smithy/middleware-retry@3.0.18': + '@smithy/middleware-retry@3.0.21': dependencies: '@smithy/node-config-provider': 3.1.7 '@smithy/protocol-http': 4.1.3 '@smithy/service-error-classification': 3.0.6 - '@smithy/smithy-client': 3.3.2 + '@smithy/smithy-client': 3.3.5 '@smithy/types': 3.4.2 '@smithy/util-middleware': 3.0.6 '@smithy/util-retry': 3.0.6 @@ -13279,7 +13315,7 @@ snapshots: '@smithy/types': 3.4.2 tslib: 2.7.0 - '@smithy/node-http-handler@3.2.2': + '@smithy/node-http-handler@3.2.3': dependencies: '@smithy/abort-controller': 3.1.4 '@smithy/protocol-http': 4.1.3 @@ -13317,7 +13353,7 @@ snapshots: '@smithy/types': 3.4.2 tslib: 2.7.0 - '@smithy/signature-v4@4.1.3': + '@smithy/signature-v4@4.1.4': dependencies: '@smithy/is-array-buffer': 3.0.0 '@smithy/protocol-http': 4.1.3 @@ -13328,13 +13364,13 @@ snapshots: '@smithy/util-utf8': 3.0.0 tslib: 2.7.0 - '@smithy/smithy-client@3.3.2': + '@smithy/smithy-client@3.3.5': dependencies: '@smithy/middleware-endpoint': 3.1.3 '@smithy/middleware-stack': 3.0.6 '@smithy/protocol-http': 4.1.3 '@smithy/types': 3.4.2 - '@smithy/util-stream': 3.1.6 + '@smithy/util-stream': 3.1.8 tslib: 2.7.0 '@smithy/types@3.4.2': @@ -13375,21 +13411,21 @@ snapshots: dependencies: tslib: 2.7.0 - '@smithy/util-defaults-mode-browser@3.0.18': + '@smithy/util-defaults-mode-browser@3.0.21': dependencies: '@smithy/property-provider': 3.1.6 - '@smithy/smithy-client': 3.3.2 + '@smithy/smithy-client': 3.3.5 '@smithy/types': 3.4.2 bowser: 2.11.0 tslib: 2.7.0 - '@smithy/util-defaults-mode-node@3.0.18': + '@smithy/util-defaults-mode-node@3.0.21': dependencies: '@smithy/config-resolver': 3.0.8 '@smithy/credential-provider-imds': 3.2.3 '@smithy/node-config-provider': 3.1.7 '@smithy/property-provider': 3.1.6 - '@smithy/smithy-client': 3.3.2 + '@smithy/smithy-client': 3.3.5 '@smithy/types': 3.4.2 tslib: 2.7.0 @@ -13414,10 +13450,10 @@ snapshots: '@smithy/types': 3.4.2 tslib: 2.7.0 - '@smithy/util-stream@3.1.6': + '@smithy/util-stream@3.1.8': dependencies: - '@smithy/fetch-http-handler': 3.2.7 - '@smithy/node-http-handler': 3.2.2 + '@smithy/fetch-http-handler': 3.2.8 + '@smithy/node-http-handler': 3.2.3 '@smithy/types': 3.4.2 '@smithy/util-base64': 3.0.0 '@smithy/util-buffer-from': 3.0.0 @@ -13449,7 +13485,7 @@ snapshots: '@swc/counter@0.1.3': {} - '@swc/helpers@0.5.11': + '@swc/helpers@0.5.13': dependencies: tslib: 2.7.0 @@ -13501,14 +13537,14 @@ snapshots: '@types/react': 18.3.0 react-dom: 18.3.0(react@18.3.0) - '@testing-library/react-hooks@8.0.1(@types/react@18.3.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': + '@testing-library/react-hooks@8.0.1(@types/react@18.3.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923)': dependencies: '@babel/runtime': 7.25.6 - react: 19.0.0-rc-f994737d14-20240522 - react-error-boundary: 3.1.4(react@19.0.0-rc-f994737d14-20240522) + react: 19.0.0-rc-5d19e1c8-20240923 + react-error-boundary: 3.1.4(react@19.0.0-rc-5d19e1c8-20240923) optionalDependencies: '@types/react': 18.3.0 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) + react-dom: 19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923) '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@18.3.0(react@18.3.0))(react@18.3.0)': dependencies: @@ -13520,12 +13556,12 @@ snapshots: '@types/react': 18.3.0 '@types/react-dom': 18.3.0 - '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': + '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923)': dependencies: '@babel/runtime': 7.25.6 '@testing-library/dom': 10.4.0 - react: 19.0.0-rc-f994737d14-20240522 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) + react: 19.0.0-rc-5d19e1c8-20240923 + react-dom: 19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923) optionalDependencies: '@types/react': 18.3.0 '@types/react-dom': 18.3.0 @@ -13557,7 +13593,7 @@ snapshots: '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/bytes@3.1.4': {} @@ -13565,16 +13601,16 @@ snapshots: dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/responselike': 1.0.3 '@types/connect@3.4.36': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/connect@3.4.38': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/cookie-parser@1.4.7': dependencies: @@ -13586,7 +13622,7 @@ snapshots: '@types/cors@2.8.17': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/d3-array@3.2.1': {} @@ -13622,7 +13658,7 @@ snapshots: '@types/express-serve-static-core@4.19.5': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/qs': 6.9.16 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -13654,33 +13690,33 @@ snapshots: '@types/keyv@3.1.4': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/lodash-es@4.17.12': dependencies: - '@types/lodash': 4.17.7 + '@types/lodash': 4.17.9 - '@types/lodash@4.17.7': {} + '@types/lodash@4.17.9': {} '@types/mime@1.3.5': {} '@types/mute-stream@0.0.4': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/mysql@2.15.26': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 - '@types/node@18.19.50': + '@types/node@18.19.51': dependencies: undici-types: 5.26.5 - '@types/node@20.16.5': + '@types/node@20.16.7': dependencies: undici-types: 6.19.8 - '@types/node@22.5.5': + '@types/node@22.7.0': dependencies: undici-types: 6.19.8 @@ -13695,7 +13731,7 @@ snapshots: '@types/nodemailer@6.4.16': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/normalize-package-data@2.4.4': {} @@ -13707,13 +13743,13 @@ snapshots: '@types/pg@8.11.10': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 pg-protocol: 1.7.0 pg-types: 4.0.2 '@types/pg@8.6.1': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 pg-protocol: 1.7.0 pg-types: 2.2.0 @@ -13744,19 +13780,19 @@ snapshots: '@types/responselike@1.0.3': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/semver@7.5.8': {} '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/send': 0.17.4 '@types/shimmer@1.2.0': {} @@ -14029,23 +14065,23 @@ snapshots: chai: 5.1.1 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(msw@2.4.9(typescript@5.6.2))(vite@5.4.6(@types/node@20.16.5)(terser@5.33.0))': + '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(msw@2.4.9(typescript@5.6.2))(vite@5.4.8(@types/node@20.16.7)(terser@5.33.0))': dependencies: '@vitest/spy': 2.1.1 estree-walker: 3.0.3 magic-string: 0.30.11 optionalDependencies: msw: 2.4.9(typescript@5.6.2) - vite: 5.4.6(@types/node@20.16.5)(terser@5.33.0) + vite: 5.4.8(@types/node@20.16.7)(terser@5.33.0) - '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(msw@2.4.9(typescript@5.6.2))(vite@5.4.6(@types/node@22.5.5)(terser@5.33.0))': + '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(msw@2.4.9(typescript@5.6.2))(vite@5.4.8(@types/node@22.7.0)(terser@5.33.0))': dependencies: '@vitest/spy': 2.1.1 estree-walker: 3.0.3 magic-string: 0.30.11 optionalDependencies: msw: 2.4.9(typescript@5.6.2) - vite: 5.4.6(@types/node@22.5.5)(terser@5.33.0) + vite: 5.4.8(@types/node@22.7.0)(terser@5.33.0) '@vitest/pretty-format@2.1.1': dependencies: @@ -14095,59 +14131,59 @@ snapshots: loupe: 3.1.1 tinyrainbow: 1.2.0 - '@vue/compiler-core@3.5.6': + '@vue/compiler-core@3.5.8': dependencies: '@babel/parser': 7.25.6 - '@vue/shared': 3.5.6 + '@vue/shared': 3.5.8 entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.2.1 - '@vue/compiler-dom@3.5.6': + '@vue/compiler-dom@3.5.8': dependencies: - '@vue/compiler-core': 3.5.6 - '@vue/shared': 3.5.6 + '@vue/compiler-core': 3.5.8 + '@vue/shared': 3.5.8 - '@vue/compiler-sfc@3.5.6': + '@vue/compiler-sfc@3.5.8': dependencies: '@babel/parser': 7.25.6 - '@vue/compiler-core': 3.5.6 - '@vue/compiler-dom': 3.5.6 - '@vue/compiler-ssr': 3.5.6 - '@vue/shared': 3.5.6 + '@vue/compiler-core': 3.5.8 + '@vue/compiler-dom': 3.5.8 + '@vue/compiler-ssr': 3.5.8 + '@vue/shared': 3.5.8 estree-walker: 2.0.2 magic-string: 0.30.11 postcss: 8.4.47 source-map-js: 1.2.1 - '@vue/compiler-ssr@3.5.6': + '@vue/compiler-ssr@3.5.8': dependencies: - '@vue/compiler-dom': 3.5.6 - '@vue/shared': 3.5.6 + '@vue/compiler-dom': 3.5.8 + '@vue/shared': 3.5.8 - '@vue/reactivity@3.5.6': + '@vue/reactivity@3.5.8': dependencies: - '@vue/shared': 3.5.6 + '@vue/shared': 3.5.8 - '@vue/runtime-core@3.5.6': + '@vue/runtime-core@3.5.8': dependencies: - '@vue/reactivity': 3.5.6 - '@vue/shared': 3.5.6 + '@vue/reactivity': 3.5.8 + '@vue/shared': 3.5.8 - '@vue/runtime-dom@3.5.6': + '@vue/runtime-dom@3.5.8': dependencies: - '@vue/reactivity': 3.5.6 - '@vue/runtime-core': 3.5.6 - '@vue/shared': 3.5.6 + '@vue/reactivity': 3.5.8 + '@vue/runtime-core': 3.5.8 + '@vue/shared': 3.5.8 csstype: 3.1.3 - '@vue/server-renderer@3.5.6(vue@3.5.6(typescript@5.6.2))': + '@vue/server-renderer@3.5.8(vue@3.5.8(typescript@5.6.2))': dependencies: - '@vue/compiler-ssr': 3.5.6 - '@vue/shared': 3.5.6 - vue: 3.5.6(typescript@5.6.2) + '@vue/compiler-ssr': 3.5.8 + '@vue/shared': 3.5.8 + vue: 3.5.8(typescript@5.6.2) - '@vue/shared@3.5.6': {} + '@vue/shared@3.5.8': {} '@webassemblyjs/ast@1.12.1': dependencies: @@ -14267,15 +14303,15 @@ snapshots: clean-stack: 2.2.0 indent-string: 4.0.0 - ai@3.3.43(react@18.3.1)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.6(typescript@5.6.2))(zod@3.23.8): + ai@3.4.2(react@18.3.1)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.8(typescript@5.6.2))(zod@3.23.8): dependencies: '@ai-sdk/provider': 0.0.23 '@ai-sdk/provider-utils': 1.0.19(zod@3.23.8) - '@ai-sdk/react': 0.0.59(react@18.3.1)(zod@3.23.8) + '@ai-sdk/react': 0.0.60(react@18.3.1)(zod@3.23.8) '@ai-sdk/solid': 0.0.47(zod@3.23.8) '@ai-sdk/svelte': 0.0.49(svelte@4.2.19)(zod@3.23.8) '@ai-sdk/ui-utils': 0.0.44(zod@3.23.8) - '@ai-sdk/vue': 0.0.50(vue@3.5.6(typescript@5.6.2))(zod@3.23.8) + '@ai-sdk/vue': 0.0.51(vue@3.5.8(typescript@5.6.2))(zod@3.23.8) '@opentelemetry/api': 1.9.0 eventsource-parser: 1.1.2 json-schema: 0.4.0 @@ -14292,15 +14328,15 @@ snapshots: - solid-js - vue - ai@3.3.43(react@19.0.0-rc-f994737d14-20240522)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.6(typescript@5.6.2))(zod@3.23.8): + ai@3.4.2(react@19.0.0-rc-5d19e1c8-20240923)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.8(typescript@5.6.2))(zod@3.23.8): dependencies: '@ai-sdk/provider': 0.0.23 '@ai-sdk/provider-utils': 1.0.19(zod@3.23.8) - '@ai-sdk/react': 0.0.59(react@19.0.0-rc-f994737d14-20240522)(zod@3.23.8) + '@ai-sdk/react': 0.0.60(react@19.0.0-rc-5d19e1c8-20240923)(zod@3.23.8) '@ai-sdk/solid': 0.0.47(zod@3.23.8) '@ai-sdk/svelte': 0.0.49(svelte@4.2.19)(zod@3.23.8) '@ai-sdk/ui-utils': 0.0.44(zod@3.23.8) - '@ai-sdk/vue': 0.0.50(vue@3.5.6(typescript@5.6.2))(zod@3.23.8) + '@ai-sdk/vue': 0.0.51(vue@3.5.8(typescript@5.6.2))(zod@3.23.8) '@opentelemetry/api': 1.9.0 eventsource-parser: 1.1.2 json-schema: 0.4.0 @@ -14309,7 +14345,7 @@ snapshots: secure-json-parse: 2.7.0 zod-to-json-schema: 3.23.2(zod@3.23.8) optionalDependencies: - react: 19.0.0-rc-f994737d14-20240522 + react: 19.0.0-rc-5d19e1c8-20240923 sswr: 2.1.0(svelte@4.2.19) svelte: 4.2.19 zod: 3.23.8 @@ -14383,7 +14419,7 @@ snapshots: dependencies: dequal: 2.0.3 - aria-query@5.3.1: {} + aria-query@5.3.2: {} array-buffer-byte-length@1.0.1: dependencies: @@ -14470,8 +14506,8 @@ snapshots: autoprefixer@10.4.20(postcss@8.4.47): dependencies: - browserslist: 4.23.3 - caniuse-lite: 1.0.30001662 + browserslist: 4.24.0 + caniuse-lite: 1.0.30001663 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.0 @@ -14564,12 +14600,12 @@ snapshots: dependencies: fill-range: 7.1.1 - browserslist@4.23.3: + browserslist@4.24.0: dependencies: - caniuse-lite: 1.0.30001662 - electron-to-chromium: 1.5.26 + caniuse-lite: 1.0.30001663 + electron-to-chromium: 1.5.28 node-releases: 2.0.18 - update-browserslist-db: 1.1.0(browserslist@4.23.3) + update-browserslist-db: 1.1.0(browserslist@4.24.0) buffer-from@1.1.2: {} @@ -14588,7 +14624,7 @@ snapshots: builtin-modules@3.3.0: {} - bullmq@5.13.1: + bullmq@5.13.2: dependencies: cron-parser: 4.9.0 ioredis: 5.4.1 @@ -14652,7 +14688,7 @@ snapshots: camelcase-css@2.0.1: {} - caniuse-lite@1.0.30001662: {} + caniuse-lite@1.0.30001663: {} case-anything@3.1.0: {} @@ -15139,13 +15175,13 @@ snapshots: pg: 8.13.0 react: 18.3.1 - drizzle-orm@0.33.0(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@18.3.0)(pg@8.13.0)(react@19.0.0-rc-f994737d14-20240522): + drizzle-orm@0.33.0(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@18.3.0)(pg@8.13.0)(react@19.0.0-rc-5d19e1c8-20240923): optionalDependencies: '@opentelemetry/api': 1.9.0 '@types/pg': 8.11.10 '@types/react': 18.3.0 pg: 8.13.0 - react: 19.0.0-rc-f994737d14-20240522 + react: 19.0.0-rc-5d19e1c8-20240923 eastasianwidth@0.2.0: {} @@ -15158,7 +15194,7 @@ snapshots: ee-first@1.1.1: {} - electron-to-chromium@1.5.26: {} + electron-to-chromium@1.5.28: {} emoji-regex@8.0.0: {} @@ -15177,13 +15213,13 @@ snapshots: dependencies: once: 1.4.0 - engine.io-client@6.5.4: + engine.io-client@6.6.1: dependencies: '@socket.io/component-emitter': 3.1.2 debug: 4.3.7 engine.io-parser: 5.2.3 ws: 8.17.1 - xmlhttprequest-ssl: 2.0.0 + xmlhttprequest-ssl: 2.1.1 transitivePeerDependencies: - bufferutil - supports-color @@ -15195,7 +15231,24 @@ snapshots: dependencies: '@types/cookie': 0.4.1 '@types/cors': 2.8.17 - '@types/node': 22.5.5 + '@types/node': 22.7.0 + accepts: 1.3.8 + base64id: 2.0.0 + cookie: 0.4.2 + cors: 2.8.5 + debug: 4.3.7 + engine.io-parser: 5.2.3 + ws: 8.17.1 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + engine.io@6.6.1: + dependencies: + '@types/cookie': 0.4.1 + '@types/cors': 2.8.17 + '@types/node': 22.7.0 accepts: 1.3.8 base64id: 2.0.0 cookie: 0.4.2 @@ -15505,7 +15558,7 @@ snapshots: debug: 4.3.7 enhanced-resolve: 5.17.1 eslint: 8.57.1 - eslint-module-utils: 2.11.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1) + eslint-module-utils: 2.11.1(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1) fast-glob: 3.3.2 get-tsconfig: 4.8.1 is-bun-module: 1.2.1 @@ -15518,7 +15571,7 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-module-utils@2.11.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1): + eslint-module-utils@2.11.1(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1): dependencies: debug: 3.2.7 optionalDependencies: @@ -15528,7 +15581,7 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.11.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1): + eslint-module-utils@2.11.1(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1): dependencies: debug: 3.2.7 optionalDependencies: @@ -15559,7 +15612,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.11.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1) + eslint-module-utils: 2.11.1(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1) hasown: 2.0.2 is-core-module: 2.15.1 is-glob: 4.0.3 @@ -15921,15 +15974,15 @@ snapshots: flattie@1.1.1: {} - flydrive@1.1.0(@aws-sdk/client-s3@3.654.0)(@aws-sdk/s3-request-presigner@3.654.0): + flydrive@1.1.0(@aws-sdk/client-s3@3.658.0)(@aws-sdk/s3-request-presigner@3.658.0): dependencies: '@humanwhocodes/retry': 0.3.0 - '@poppinss/utils': 6.8.1 + '@poppinss/utils': 6.8.3 etag: 1.8.1 mime-types: 2.1.35 optionalDependencies: - '@aws-sdk/client-s3': 3.654.0 - '@aws-sdk/s3-request-presigner': 3.654.0 + '@aws-sdk/client-s3': 3.658.0 + '@aws-sdk/s3-request-presigner': 3.658.0 follow-redirects@1.15.9: {} @@ -16065,7 +16118,7 @@ snapshots: glob@11.0.0: dependencies: foreground-child: 3.3.0 - jackspeak: 4.0.1 + jackspeak: 4.0.2 minimatch: 10.0.1 minipass: 7.1.2 package-json-from-dist: 1.0.0 @@ -16185,7 +16238,7 @@ snapshots: dependencies: react-is: 16.13.1 - hono@4.6.2: {} + hono@4.6.3: {} hosted-git-info@2.8.9: {} @@ -16525,15 +16578,13 @@ snapshots: optionalDependencies: '@pkgjs/parseargs': 0.11.0 - jackspeak@4.0.1: + jackspeak@4.0.2: dependencies: '@isaacs/cliui': 8.0.2 - optionalDependencies: - '@pkgjs/parseargs': 0.11.0 jest-worker@27.5.1: dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -16545,7 +16596,7 @@ snapshots: jmespath@0.16.0: {} - jose@5.9.2: {} + jose@5.9.3: {} joycon@3.1.1: {} @@ -16986,17 +17037,17 @@ snapshots: neo-async@2.6.2: {} - next-themes@0.3.0(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522): + next-themes@0.3.0(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923): dependencies: - react: 19.0.0-rc-f994737d14-20240522 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) + react: 19.0.0-rc-5d19e1c8-20240923 + react-dom: 19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923) next@14.2.3(@babel/core@7.24.5)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@next/env': 14.2.3 '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001662 + caniuse-lite: 1.0.30001663 graceful-fs: 4.2.11 postcss: 8.4.31 react: 18.3.1 @@ -17017,40 +17068,40 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@14.3.0-canary.87(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522): + next@15.0.0-canary.168(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923): dependencies: - '@next/env': 14.3.0-canary.87 - '@swc/helpers': 0.5.11 + '@next/env': 15.0.0-canary.168 + '@swc/counter': 0.1.3 + '@swc/helpers': 0.5.13 busboy: 1.6.0 - caniuse-lite: 1.0.30001662 - graceful-fs: 4.2.11 + caniuse-lite: 1.0.30001663 postcss: 8.4.31 - react: 19.0.0-rc-f994737d14-20240522 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) - styled-jsx: 5.1.6(react@19.0.0-rc-f994737d14-20240522) + react: 19.0.0-rc-5d19e1c8-20240923 + react-dom: 19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923) + styled-jsx: 5.1.6(react@19.0.0-rc-5d19e1c8-20240923) optionalDependencies: - '@next/swc-darwin-arm64': 14.3.0-canary.87 - '@next/swc-darwin-x64': 14.3.0-canary.87 - '@next/swc-linux-arm64-gnu': 14.3.0-canary.87 - '@next/swc-linux-arm64-musl': 14.3.0-canary.87 - '@next/swc-linux-x64-gnu': 14.3.0-canary.87 - '@next/swc-linux-x64-musl': 14.3.0-canary.87 - '@next/swc-win32-arm64-msvc': 14.3.0-canary.87 - '@next/swc-win32-ia32-msvc': 14.3.0-canary.87 - '@next/swc-win32-x64-msvc': 14.3.0-canary.87 + '@next/swc-darwin-arm64': 15.0.0-canary.168 + '@next/swc-darwin-x64': 15.0.0-canary.168 + '@next/swc-linux-arm64-gnu': 15.0.0-canary.168 + '@next/swc-linux-arm64-musl': 15.0.0-canary.168 + '@next/swc-linux-x64-gnu': 15.0.0-canary.168 + '@next/swc-linux-x64-musl': 15.0.0-canary.168 + '@next/swc-win32-arm64-msvc': 15.0.0-canary.168 + '@next/swc-win32-ia32-msvc': 15.0.0-canary.168 + '@next/swc-win32-x64-msvc': 15.0.0-canary.168 '@opentelemetry/api': 1.9.0 sharp: 0.33.5 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros - nextjs-toploader@1.6.12(next@14.3.0-canary.87(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522))(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522): + nextjs-toploader@1.6.12(next@15.0.0-canary.168(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923))(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923): dependencies: - next: 14.3.0-canary.87(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) + next: 15.0.0-canary.168(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923) nprogress: 0.2.0 prop-types: 15.8.1 - react: 19.0.0-rc-f994737d14-20240522 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) + react: 19.0.0-rc-5d19e1c8-20240923 + react-dom: 19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923) node-abort-controller@3.1.1: {} @@ -17087,7 +17138,7 @@ snapshots: node-mocks-http@1.16.0: dependencies: '@types/express': 4.17.21 - '@types/node': 20.16.5 + '@types/node': 20.16.7 accepts: 1.3.8 content-disposition: 0.5.4 depd: 1.1.2 @@ -17566,21 +17617,21 @@ snapshots: camelcase-css: 2.0.1 postcss: 8.4.47 - postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.16.5)(typescript@5.6.2)): + postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.6.2)): dependencies: lilconfig: 3.1.2 yaml: 2.5.1 optionalDependencies: postcss: 8.4.47 - ts-node: 10.9.2(@types/node@20.16.5)(typescript@5.6.2) + ts-node: 10.9.2(@types/node@20.16.7)(typescript@5.6.2) - postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@22.5.5)(typescript@5.6.2)): + postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@22.7.0)(typescript@5.6.2)): dependencies: lilconfig: 3.1.2 yaml: 2.5.1 optionalDependencies: postcss: 8.4.47 - ts-node: 10.9.2(@types/node@22.5.5)(typescript@5.6.2) + ts-node: 10.9.2(@types/node@22.7.0)(typescript@5.6.2) postcss-load-config@6.0.1(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(yaml@2.5.1): dependencies: @@ -17637,13 +17688,13 @@ snapshots: postgres-range@1.1.4: {} - posthog-js@1.163.0: + posthog-js@1.165.0: dependencies: fflate: 0.4.8 - preact: 10.24.0 + preact: 10.24.1 web-vitals: 4.2.3 - preact@10.24.0: {} + preact@10.24.1: {} prelude-ls@1.2.1: {} @@ -17713,7 +17764,7 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 22.5.5 + '@types/node': 22.7.0 long: 5.2.3 proxy-addr@2.0.7: @@ -17771,10 +17822,10 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 - react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522): + react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923): dependencies: - react: 19.0.0-rc-f994737d14-20240522 - scheduler: 0.25.0-rc-f994737d14-20240522 + react: 19.0.0-rc-5d19e1c8-20240923 + scheduler: 0.25.0-rc-5d19e1c8-20240923 react-draggable@4.4.6(react-dom@18.3.0(react@18.3.0))(react@18.3.0): dependencies: @@ -17822,10 +17873,10 @@ snapshots: '@babel/runtime': 7.25.6 react: 18.3.0 - react-error-boundary@3.1.4(react@19.0.0-rc-f994737d14-20240522): + react-error-boundary@3.1.4(react@19.0.0-rc-5d19e1c8-20240923): dependencies: '@babel/runtime': 7.25.6 - react: 19.0.0-rc-f994737d14-20240522 + react: 19.0.0-rc-5d19e1c8-20240923 react-is@16.13.1: {} @@ -17978,7 +18029,7 @@ snapshots: dependencies: loose-envify: 1.4.0 - react@19.0.0-rc-f994737d14-20240522: {} + react@19.0.0-rc-5d19e1c8-20240923: {} read-cache@1.0.0: dependencies: @@ -18145,38 +18196,38 @@ snapshots: dependencies: glob: 7.2.3 - rollup-plugin-dts@6.1.1(rollup@4.22.2)(typescript@5.6.2): + rollup-plugin-dts@6.1.1(rollup@4.22.4)(typescript@5.6.2): dependencies: magic-string: 0.30.11 - rollup: 4.22.2 + rollup: 4.22.4 typescript: 5.6.2 optionalDependencies: '@babel/code-frame': 7.24.7 - rollup@3.29.4: + rollup@3.29.5: optionalDependencies: fsevents: 2.3.3 - rollup@4.22.2: + rollup@4.22.4: dependencies: '@types/estree': 1.0.5 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.22.2 - '@rollup/rollup-android-arm64': 4.22.2 - '@rollup/rollup-darwin-arm64': 4.22.2 - '@rollup/rollup-darwin-x64': 4.22.2 - '@rollup/rollup-linux-arm-gnueabihf': 4.22.2 - '@rollup/rollup-linux-arm-musleabihf': 4.22.2 - '@rollup/rollup-linux-arm64-gnu': 4.22.2 - '@rollup/rollup-linux-arm64-musl': 4.22.2 - '@rollup/rollup-linux-powerpc64le-gnu': 4.22.2 - '@rollup/rollup-linux-riscv64-gnu': 4.22.2 - '@rollup/rollup-linux-s390x-gnu': 4.22.2 - '@rollup/rollup-linux-x64-gnu': 4.22.2 - '@rollup/rollup-linux-x64-musl': 4.22.2 - '@rollup/rollup-win32-arm64-msvc': 4.22.2 - '@rollup/rollup-win32-ia32-msvc': 4.22.2 - '@rollup/rollup-win32-x64-msvc': 4.22.2 + '@rollup/rollup-android-arm-eabi': 4.22.4 + '@rollup/rollup-android-arm64': 4.22.4 + '@rollup/rollup-darwin-arm64': 4.22.4 + '@rollup/rollup-darwin-x64': 4.22.4 + '@rollup/rollup-linux-arm-gnueabihf': 4.22.4 + '@rollup/rollup-linux-arm-musleabihf': 4.22.4 + '@rollup/rollup-linux-arm64-gnu': 4.22.4 + '@rollup/rollup-linux-arm64-musl': 4.22.4 + '@rollup/rollup-linux-powerpc64le-gnu': 4.22.4 + '@rollup/rollup-linux-riscv64-gnu': 4.22.4 + '@rollup/rollup-linux-s390x-gnu': 4.22.4 + '@rollup/rollup-linux-x64-gnu': 4.22.4 + '@rollup/rollup-linux-x64-musl': 4.22.4 + '@rollup/rollup-win32-arm64-msvc': 4.22.4 + '@rollup/rollup-win32-ia32-msvc': 4.22.4 + '@rollup/rollup-win32-x64-msvc': 4.22.4 fsevents: 2.3.3 rrweb-cssom@0.7.1: {} @@ -18214,7 +18265,7 @@ snapshots: dependencies: loose-envify: 1.4.0 - scheduler@0.25.0-rc-f994737d14-20240522: {} + scheduler@0.25.0-rc-5d19e1c8-20240923: {} schema-utils@3.3.0: dependencies: @@ -18366,11 +18417,11 @@ snapshots: - supports-color - utf-8-validate - socket.io-client@4.7.5: + socket.io-client@4.8.0: dependencies: '@socket.io/component-emitter': 3.1.2 debug: 4.3.7 - engine.io-client: 6.5.4 + engine.io-client: 6.6.1 socket.io-parser: 4.2.4 transitivePeerDependencies: - bufferutil @@ -18388,11 +18439,11 @@ snapshots: transitivePeerDependencies: - supports-color - socket.io-react-hook@2.4.5(react@19.0.0-rc-f994737d14-20240522): + socket.io-react-hook@2.4.5(react@19.0.0-rc-5d19e1c8-20240923): dependencies: parseuri: 0.0.6 - react: 19.0.0-rc-f994737d14-20240522 - socket.io-client: 4.7.5 + react: 19.0.0-rc-5d19e1c8-20240923 + socket.io-client: 4.8.0 socket.io-mock: 1.3.2 stable-hash: 0.0.3 transitivePeerDependencies: @@ -18414,6 +18465,20 @@ snapshots: - supports-color - utf-8-validate + socket.io@4.8.0: + dependencies: + accepts: 1.3.8 + base64id: 2.0.0 + cors: 2.8.5 + debug: 4.3.7 + engine.io: 6.6.1 + socket.io-adapter: 2.5.5 + socket.io-parser: 4.2.4 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + socks-proxy-agent@8.0.4: dependencies: agent-base: 7.1.1 @@ -18601,10 +18666,10 @@ snapshots: optionalDependencies: '@babel/core': 7.24.5 - styled-jsx@5.1.6(react@19.0.0-rc-f994737d14-20240522): + styled-jsx@5.1.6(react@19.0.0-rc-5d19e1c8-20240923): dependencies: client-only: 0.0.1 - react: 19.0.0-rc-f994737d14-20240522 + react: 19.0.0-rc-5d19e1c8-20240923 sucrase@3.35.0: dependencies: @@ -18658,7 +18723,7 @@ snapshots: '@jridgewell/trace-mapping': 0.3.25 '@types/estree': 1.0.6 acorn: 8.12.1 - aria-query: 5.3.1 + aria-query: 5.3.2 axobject-query: 4.1.0 code-red: 1.0.4 css-tree: 2.3.1 @@ -18674,17 +18739,17 @@ snapshots: react: 18.3.1 use-sync-external-store: 1.2.2(react@18.3.1) - swr@2.2.5(react@19.0.0-rc-f994737d14-20240522): + swr@2.2.5(react@19.0.0-rc-5d19e1c8-20240923): dependencies: client-only: 0.0.1 - react: 19.0.0-rc-f994737d14-20240522 - use-sync-external-store: 1.2.2(react@19.0.0-rc-f994737d14-20240522) + react: 19.0.0-rc-5d19e1c8-20240923 + use-sync-external-store: 1.2.2(react@19.0.0-rc-5d19e1c8-20240923) swrev@4.0.0: {} - swrv@1.0.4(vue@3.5.6(typescript@5.6.2)): + swrv@1.0.4(vue@3.5.8(typescript@5.6.2)): dependencies: - vue: 3.5.6(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) symbol-tree@3.2.4: {} @@ -18695,11 +18760,11 @@ snapshots: tailwind-merge@2.5.2: {} - tailwindcss-animate@1.0.7(tailwindcss@3.4.12(ts-node@10.9.2(@types/node@22.5.5)(typescript@5.6.2))): + tailwindcss-animate@1.0.7(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.0)(typescript@5.6.2))): dependencies: - tailwindcss: 3.4.12(ts-node@10.9.2(@types/node@22.5.5)(typescript@5.6.2)) + tailwindcss: 3.4.13(ts-node@10.9.2(@types/node@22.7.0)(typescript@5.6.2)) - tailwindcss@3.4.12(ts-node@10.9.2(@types/node@20.16.5)(typescript@5.6.2)): + tailwindcss@3.4.13(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.6.2)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -18718,7 +18783,7 @@ snapshots: postcss: 8.4.47 postcss-import: 15.1.0(postcss@8.4.47) postcss-js: 4.0.1(postcss@8.4.47) - postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.16.5)(typescript@5.6.2)) + postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.6.2)) postcss-nested: 6.2.0(postcss@8.4.47) postcss-selector-parser: 6.1.2 resolve: 1.22.8 @@ -18726,7 +18791,7 @@ snapshots: transitivePeerDependencies: - ts-node - tailwindcss@3.4.12(ts-node@10.9.2(@types/node@22.5.5)(typescript@5.6.2)): + tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.0)(typescript@5.6.2)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -18745,7 +18810,7 @@ snapshots: postcss: 8.4.47 postcss-import: 15.1.0(postcss@8.4.47) postcss-js: 4.0.1(postcss@8.4.47) - postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@22.5.5)(typescript@5.6.2)) + postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@22.7.0)(typescript@5.6.2)) postcss-nested: 6.2.0(postcss@8.4.47) postcss-selector-parser: 6.1.2 resolve: 1.22.8 @@ -18764,14 +18829,16 @@ snapshots: mkdirp: 1.0.4 yallist: 4.0.0 - terser-webpack-plugin@5.3.10(webpack@5.94.0): + terser-webpack-plugin@5.3.10(esbuild@0.19.12)(webpack@5.94.0(esbuild@0.19.12)): dependencies: '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.33.0 - webpack: 5.94.0 + webpack: 5.94.0(esbuild@0.19.12) + optionalDependencies: + esbuild: 0.19.12 terser@5.33.0: dependencies: @@ -18850,14 +18917,14 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-node@10.9.2(@types/node@18.19.50)(typescript@5.6.2): + ts-node@10.9.2(@types/node@18.19.51)(typescript@5.6.2): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 18.19.50 + '@types/node': 18.19.51 acorn: 8.12.1 acorn-walk: 8.3.4 arg: 4.1.3 @@ -18868,14 +18935,14 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - ts-node@10.9.2(@types/node@20.16.5)(typescript@5.6.2): + ts-node@10.9.2(@types/node@20.16.7)(typescript@5.6.2): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.16.5 + '@types/node': 20.16.7 acorn: 8.12.1 acorn-walk: 8.3.4 arg: 4.1.3 @@ -18887,14 +18954,14 @@ snapshots: yn: 3.1.1 optional: true - ts-node@10.9.2(@types/node@22.5.5)(typescript@5.6.2): + ts-node@10.9.2(@types/node@22.7.0)(typescript@5.6.2): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 22.5.5 + '@types/node': 22.7.0 acorn: 8.12.1 acorn-walk: 8.3.4 arg: 4.1.3 @@ -18936,7 +19003,7 @@ snapshots: picocolors: 1.1.0 postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(yaml@2.5.1) resolve-from: 5.0.0 - rollup: 4.22.2 + rollup: 4.22.4 source-map: 0.8.0-beta.0 sucrase: 3.35.0 tinyglobby: 0.2.6 @@ -19088,9 +19155,9 @@ snapshots: upath@1.2.0: {} - update-browserslist-db@1.1.0(browserslist@4.23.3): + update-browserslist-db@1.1.0(browserslist@4.24.0): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 escalade: 3.2.0 picocolors: 1.1.0 @@ -19140,9 +19207,9 @@ snapshots: dependencies: react: 18.3.1 - use-debounce@10.0.3(react@19.0.0-rc-f994737d14-20240522): + use-debounce@10.0.3(react@19.0.0-rc-5d19e1c8-20240923): dependencies: - react: 19.0.0-rc-f994737d14-20240522 + react: 19.0.0-rc-5d19e1c8-20240923 use-isomorphic-layout-effect@1.1.2(@types/react@18.3.0)(react@18.3.0): dependencies: @@ -19194,9 +19261,9 @@ snapshots: dependencies: react: 18.3.1 - use-sync-external-store@1.2.2(react@19.0.0-rc-f994737d14-20240522): + use-sync-external-store@1.2.2(react@19.0.0-rc-5d19e1c8-20240923): dependencies: - react: 19.0.0-rc-f994737d14-20240522 + react: 19.0.0-rc-5d19e1c8-20240923 util-deprecate@1.0.2: {} @@ -19244,13 +19311,13 @@ snapshots: d3-time: 3.1.0 d3-timer: 3.0.1 - vite-node@1.6.0(@types/node@20.16.5)(terser@5.33.0): + vite-node@1.6.0(@types/node@20.16.7)(terser@5.33.0): dependencies: cac: 6.7.14 debug: 4.3.7 pathe: 1.1.2 picocolors: 1.1.0 - vite: 5.4.6(@types/node@20.16.5)(terser@5.33.0) + vite: 5.4.8(@types/node@20.16.7)(terser@5.33.0) transitivePeerDependencies: - '@types/node' - less @@ -19262,12 +19329,12 @@ snapshots: - supports-color - terser - vite-node@2.1.1(@types/node@20.16.5)(terser@5.33.0): + vite-node@2.1.1(@types/node@20.16.7)(terser@5.33.0): dependencies: cac: 6.7.14 debug: 4.3.7 pathe: 1.1.2 - vite: 5.4.6(@types/node@20.16.5)(terser@5.33.0) + vite: 5.4.8(@types/node@20.16.7)(terser@5.33.0) transitivePeerDependencies: - '@types/node' - less @@ -19279,12 +19346,12 @@ snapshots: - supports-color - terser - vite-node@2.1.1(@types/node@22.5.5)(terser@5.33.0): + vite-node@2.1.1(@types/node@22.7.0)(terser@5.33.0): dependencies: cac: 6.7.14 debug: 4.3.7 pathe: 1.1.2 - vite: 5.4.6(@types/node@22.5.5)(terser@5.33.0) + vite: 5.4.8(@types/node@22.7.0)(terser@5.33.0) transitivePeerDependencies: - '@types/node' - less @@ -19296,27 +19363,27 @@ snapshots: - supports-color - terser - vite@5.4.6(@types/node@20.16.5)(terser@5.33.0): + vite@5.4.8(@types/node@20.16.7)(terser@5.33.0): dependencies: esbuild: 0.21.5 postcss: 8.4.47 - rollup: 4.22.2 + rollup: 4.22.4 optionalDependencies: - '@types/node': 20.16.5 + '@types/node': 20.16.7 fsevents: 2.3.3 terser: 5.33.0 - vite@5.4.6(@types/node@22.5.5)(terser@5.33.0): + vite@5.4.8(@types/node@22.7.0)(terser@5.33.0): dependencies: esbuild: 0.21.5 postcss: 8.4.47 - rollup: 4.22.2 + rollup: 4.22.4 optionalDependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 fsevents: 2.3.3 terser: 5.33.0 - vitest@1.6.0(@types/node@20.16.5)(jsdom@24.1.3)(terser@5.33.0): + vitest@1.6.0(@types/node@20.16.7)(jsdom@24.1.3)(terser@5.33.0): dependencies: '@vitest/expect': 1.6.0 '@vitest/runner': 1.6.0 @@ -19335,11 +19402,11 @@ snapshots: strip-literal: 2.1.0 tinybench: 2.9.0 tinypool: 0.8.4 - vite: 5.4.6(@types/node@20.16.5)(terser@5.33.0) - vite-node: 1.6.0(@types/node@20.16.5)(terser@5.33.0) + vite: 5.4.8(@types/node@20.16.7)(terser@5.33.0) + vite-node: 1.6.0(@types/node@20.16.7)(terser@5.33.0) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 20.16.5 + '@types/node': 20.16.7 jsdom: 24.1.3 transitivePeerDependencies: - less @@ -19351,10 +19418,10 @@ snapshots: - supports-color - terser - vitest@2.1.1(@types/node@20.16.5)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0): + vitest@2.1.1(@types/node@20.16.7)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0): dependencies: '@vitest/expect': 2.1.1 - '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(msw@2.4.9(typescript@5.6.2))(vite@5.4.6(@types/node@20.16.5)(terser@5.33.0)) + '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(msw@2.4.9(typescript@5.6.2))(vite@5.4.8(@types/node@20.16.7)(terser@5.33.0)) '@vitest/pretty-format': 2.1.1 '@vitest/runner': 2.1.1 '@vitest/snapshot': 2.1.1 @@ -19369,11 +19436,11 @@ snapshots: tinyexec: 0.3.0 tinypool: 1.0.1 tinyrainbow: 1.2.0 - vite: 5.4.6(@types/node@20.16.5)(terser@5.33.0) - vite-node: 2.1.1(@types/node@20.16.5)(terser@5.33.0) + vite: 5.4.8(@types/node@20.16.7)(terser@5.33.0) + vite-node: 2.1.1(@types/node@20.16.7)(terser@5.33.0) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 20.16.5 + '@types/node': 20.16.7 jsdom: 24.1.3 transitivePeerDependencies: - less @@ -19386,10 +19453,10 @@ snapshots: - supports-color - terser - vitest@2.1.1(@types/node@22.5.5)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0): + vitest@2.1.1(@types/node@22.7.0)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.33.0): dependencies: '@vitest/expect': 2.1.1 - '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(msw@2.4.9(typescript@5.6.2))(vite@5.4.6(@types/node@22.5.5)(terser@5.33.0)) + '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(msw@2.4.9(typescript@5.6.2))(vite@5.4.8(@types/node@22.7.0)(terser@5.33.0)) '@vitest/pretty-format': 2.1.1 '@vitest/runner': 2.1.1 '@vitest/snapshot': 2.1.1 @@ -19404,11 +19471,11 @@ snapshots: tinyexec: 0.3.0 tinypool: 1.0.1 tinyrainbow: 1.2.0 - vite: 5.4.6(@types/node@22.5.5)(terser@5.33.0) - vite-node: 2.1.1(@types/node@22.5.5)(terser@5.33.0) + vite: 5.4.8(@types/node@22.7.0)(terser@5.33.0) + vite-node: 2.1.1(@types/node@22.7.0)(terser@5.33.0) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 jsdom: 24.1.3 transitivePeerDependencies: - less @@ -19421,13 +19488,13 @@ snapshots: - supports-color - terser - vue@3.5.6(typescript@5.6.2): + vue@3.5.8(typescript@5.6.2): dependencies: - '@vue/compiler-dom': 3.5.6 - '@vue/compiler-sfc': 3.5.6 - '@vue/runtime-dom': 3.5.6 - '@vue/server-renderer': 3.5.6(vue@3.5.6(typescript@5.6.2)) - '@vue/shared': 3.5.6 + '@vue/compiler-dom': 3.5.8 + '@vue/compiler-sfc': 3.5.8 + '@vue/runtime-dom': 3.5.8 + '@vue/server-renderer': 3.5.8(vue@3.5.8(typescript@5.6.2)) + '@vue/shared': 3.5.8 optionalDependencies: typescript: 5.6.2 @@ -19458,7 +19525,7 @@ snapshots: webpack-virtual-modules@0.5.0: {} - webpack@5.94.0: + webpack@5.94.0(esbuild@0.19.12): dependencies: '@types/estree': 1.0.6 '@webassemblyjs/ast': 1.12.1 @@ -19466,7 +19533,7 @@ snapshots: '@webassemblyjs/wasm-parser': 1.12.1 acorn: 8.12.1 acorn-import-attributes: 1.9.5(acorn@8.12.1) - browserslist: 4.23.3 + browserslist: 4.24.0 chrome-trace-event: 1.0.4 enhanced-resolve: 5.17.1 es-module-lexer: 1.5.4 @@ -19480,7 +19547,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(webpack@5.94.0) + terser-webpack-plugin: 5.3.10(esbuild@0.19.12)(webpack@5.94.0(esbuild@0.19.12)) watchpack: 2.4.2 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -19603,7 +19670,7 @@ snapshots: xmlchars@2.2.0: {} - xmlhttprequest-ssl@2.0.0: {} + xmlhttprequest-ssl@2.1.1: {} xtend@4.0.2: {} @@ -19641,9 +19708,9 @@ snapshots: zod@3.23.8: {} - zsa-react@0.2.3(react@19.0.0-rc-f994737d14-20240522)(zod@3.23.8): + zsa-react@0.2.3(react@19.0.0-rc-5d19e1c8-20240923)(zod@3.23.8): dependencies: - react: 19.0.0-rc-f994737d14-20240522 + react: 19.0.0-rc-5d19e1c8-20240923 zod: 3.23.8 zsa: 0.5.1(zod@3.23.8)