diff --git a/.yarn/install-state.gz b/.yarn/install-state.gz index 7c697b17..9dd270f1 100644 Binary files a/.yarn/install-state.gz and b/.yarn/install-state.gz differ diff --git a/app/(customer)/dashboard/(organization)/projects/new/page.tsx b/app/(customer)/dashboard/(organization)/projects/new/page.tsx index 76817be6..7cfb3f1d 100644 --- a/app/(customer)/dashboard/(organization)/projects/new/page.tsx +++ b/app/(customer)/dashboard/(organization)/projects/new/page.tsx @@ -8,11 +8,12 @@ import {getOrganization} from "@/lib/auth/auth"; import * as drizzleDb from "@/db"; import {DatabaseWith} from "@/db/schema/07_database"; -export default async function RoutePage(props: PageParams<{ }>) { + +export default async function RoutePage(props: PageParams<{}>) { const organization = await getOrganization({}); - if (!organization ) { + if (!organization) { notFound(); } diff --git a/app/(customer)/dashboard/(organization)/projects/page.tsx b/app/(customer)/dashboard/(organization)/projects/page.tsx index d0d14ab7..c0539e24 100644 --- a/app/(customer)/dashboard/(organization)/projects/page.tsx +++ b/app/(customer)/dashboard/(organization)/projects/page.tsx @@ -10,6 +10,7 @@ import {notFound} from "next/navigation"; import {getActiveMember, getOrganization} from "@/lib/auth/auth"; import {EmptyStatePlaceholder} from "@/components/wrappers/common/empty-state-placeholder"; + export default async function RoutePage(props: PageParams<{}>) { const organization = await getOrganization({}); diff --git a/app/(customer)/dashboard/(organization)/settings/edit/page.tsx b/app/(customer)/dashboard/(organization)/settings/edit/page.tsx index 7621a90b..3d0ba2c8 100644 --- a/app/(customer)/dashboard/(organization)/settings/edit/page.tsx +++ b/app/(customer)/dashboard/(organization)/settings/edit/page.tsx @@ -18,7 +18,6 @@ export default async function RoutePage(props: PageParams<{ where: (fields) => isNull(fields.deletedAt) }); - if (!user || !users || !organization || organization.slug == "default") { notFound(); } diff --git a/docker/entrypoints/app-dev-entrypoint.sh b/docker/entrypoints/app-dev-entrypoint.sh index ea51730e..fe6e947f 100755 --- a/docker/entrypoints/app-dev-entrypoint.sh +++ b/docker/entrypoints/app-dev-entrypoint.sh @@ -1,11 +1,5 @@ #!/bin/bash -# -#npx drizzle-kit generate -#npx drizzle-kit migrate -# -#npm run dev -# -#exec "$@" + set -euo pipefail echo "▶ Running Drizzle codegen..." diff --git a/docker/entrypoints/app-prod-entrypoint.sh b/docker/entrypoints/app-prod-entrypoint.sh index f550437e..2fbfb3cb 100644 --- a/docker/entrypoints/app-prod-entrypoint.sh +++ b/docker/entrypoints/app-prod-entrypoint.sh @@ -1,14 +1,5 @@ #!/bin/bash -#echo " ____ __ __ " -#echo " / __ \____ _____/ /_____ _/ /_ ____ _________ " -#echo " / /_/ / __ \/ ___/ __/ __ / __ \/ __ / ___/ _ \ " -#echo " / ____/ /_/ / / / /_/ /_/ / /_/ / /_/ (__ ) __/ " -#echo " /_/ \____/_/ \__/\__,_/_.___/\__,_/____/\___/ " -#echo " " -#echo " Community Edition v1.1.1 " -#echo " " - node server.js exec "$@" \ No newline at end of file diff --git a/next-env.d.ts b/next-env.d.ts index 830fb594..c4b7818f 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -1,6 +1,6 @@ /// /// -/// +import "./.next/dev/types/routes.d.ts"; // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information. diff --git a/package.json b/package.json index 7eb7e795..a3a68e3b 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "db:drop": "drizzle-kit drop", "auth:generate": "npx @better-auth/cli generate --config ./src/lib/auth/auth.ts" }, + "type": "module", "dependencies": { "@hookform/resolvers": "^5.0.1", "@radix-ui/react-accordion": "^1.2.10", @@ -65,7 +66,7 @@ "input-otp": "^1.4.2", "lucide-react": "^0.510.0", "minio": "^8.0.5", - "next": "15.5.6", + "next": "16.0.1", "next-safe-action": "^7.10.8", "next-themes": "^0.4.6", "node-cron": "^4.2.1", @@ -73,9 +74,9 @@ "nodemailer": "^7.0.3", "npm-check-updates": "^18.0.1", "pg": "^8.16.0", - "react": "19.1.0", + "react": "19.2.0", "react-day-picker": "9.7.0", - "react-dom": "19.1.0", + "react-dom": "19.2.0", "react-dropzone": "^14.3.8", "react-email": "^4.0.13", "react-hook-form": "^7.56.3", diff --git a/src/lib/auth/auth.ts b/src/lib/auth/auth.ts index 0e95e382..3fb39c26 100644 --- a/src/lib/auth/auth.ts +++ b/src/lib/auth/auth.ts @@ -274,56 +274,7 @@ export const unlinkAccount = async (provider: string, account: string) => { } catch (e) { } }; -// -// export const getOrganization = async ({ -// organizationId, -// organizationSlug, -// }: { -// organizationId?: string; -// organizationSlug?: string; -// }) => { -// const query = organizationId -// ? {organizationId} -// : {organizationSlug}; -// -// console.log(query); -// -// try { -// return await auth.api.getFullOrganization({ -// headers: await headers(), -// // query, -// }); -// } catch (e) { -// console.error(e); -// return null; -// } -// }; -// export const getOrganization = async ({ -// organizationId, -// organizationSlug, -// }: { -// organizationId?: string; -// organizationSlug?: string; -// } = {}) => { -// const query = -// organizationId != null -// ? {organizationId} -// : organizationSlug != null -// ? {organizationSlug} -// : undefined; -// -// console.log(query); -// -// try { -// return await auth.api.getFullOrganization({ -// headers: await headers(), -// ...(query ? {query} : {}), -// }); -// } catch (e) { -// console.error(e); -// return null; -// } -// }; + export const getOrganization = async ({ organizationId, organizationSlug, diff --git a/tsconfig.json b/tsconfig.json index 9c6c6d5e..877b650f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,27 +1,41 @@ { - "compilerOptions": { - "lib": ["dom", "dom.iterable", "esnext"], - "allowJs": true, - "skipLibCheck": true, - "strict": true, - "noEmit": true, - "esModuleInterop": true, - "module": "esnext", - "moduleResolution": "bundler", - "resolveJsonModule": true, - "isolatedModules": true, - "jsx": "preserve", - "incremental": true, - "plugins": [ - { - "name": "next" - } - ], - "paths": { - "@/*": ["./src/*"] - }, - "target": "ES2017" + "compilerOptions": { + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "react-jsx", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "paths": { + "@/*": [ + "./src/*" + ] }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"] + "target": "ES2017" + }, + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx", + ".next/types/**/*.ts", + ".next/dev/types/**/*.ts" + ], + "exclude": [ + "node_modules" + ] } diff --git a/yarn.lock b/yarn.lock index a098ec81..7664e722 100644 --- a/yarn.lock +++ b/yarn.lock @@ -138,6 +138,13 @@ __metadata: languageName: node linkType: hard +"@better-auth/utils@npm:^0.3.0": + version: 0.3.0 + resolution: "@better-auth/utils@npm:0.3.0" + checksum: 10c0/f0ab0c49e1f1e6e7b03dd86e0211ecd25026029378ee0008d5e6b156bcb4d198c4604615ad4242a89fc9290644d73adb485b3f8b3976796113db35c8f1a1953c + languageName: node + linkType: hard + "@better-fetch/fetch@npm:^1.1.18, @better-fetch/fetch@npm:^1.1.4": version: 1.1.18 resolution: "@better-fetch/fetch@npm:1.1.18" @@ -204,7 +211,7 @@ __metadata: languageName: node linkType: hard -"@emnapi/runtime@npm:^1.4.3, @emnapi/runtime@npm:^1.4.4": +"@emnapi/runtime@npm:^1.4.3": version: 1.4.5 resolution: "@emnapi/runtime@npm:1.4.5" dependencies: @@ -213,6 +220,15 @@ __metadata: languageName: node linkType: hard +"@emnapi/runtime@npm:^1.5.0": + version: 1.7.0 + resolution: "@emnapi/runtime@npm:1.7.0" + dependencies: + tslib: "npm:^2.4.0" + checksum: 10c0/b99334582effe146e9fb5cd9e7f866c6c7047a8576f642456d56984b574b40b2ba14e4aede26217fcefa1372ddd1e098a19912f17033a9ae469928b0dc65a682 + languageName: node + linkType: hard + "@emnapi/wasi-threads@npm:1.0.4, @emnapi/wasi-threads@npm:^1.0.2": version: 1.0.4 resolution: "@emnapi/wasi-threads@npm:1.0.4" @@ -800,11 +816,18 @@ __metadata: languageName: node linkType: hard -"@img/sharp-darwin-arm64@npm:0.34.3": - version: 0.34.3 - resolution: "@img/sharp-darwin-arm64@npm:0.34.3" +"@img/colour@npm:^1.0.0": + version: 1.0.0 + resolution: "@img/colour@npm:1.0.0" + checksum: 10c0/02261719c1e0d7aa5a2d585981954f2ac126f0c432400aa1a01b925aa2c41417b7695da8544ee04fd29eba7ecea8eaf9b8bef06f19dc8faba78f94eeac40667d + languageName: node + linkType: hard + +"@img/sharp-darwin-arm64@npm:0.34.4": + version: 0.34.4 + resolution: "@img/sharp-darwin-arm64@npm:0.34.4" dependencies: - "@img/sharp-libvips-darwin-arm64": "npm:1.2.0" + "@img/sharp-libvips-darwin-arm64": "npm:1.2.3" dependenciesMeta: "@img/sharp-libvips-darwin-arm64": optional: true @@ -812,11 +835,11 @@ __metadata: languageName: node linkType: hard -"@img/sharp-darwin-x64@npm:0.34.3": - version: 0.34.3 - resolution: "@img/sharp-darwin-x64@npm:0.34.3" +"@img/sharp-darwin-x64@npm:0.34.4": + version: 0.34.4 + resolution: "@img/sharp-darwin-x64@npm:0.34.4" dependencies: - "@img/sharp-libvips-darwin-x64": "npm:1.2.0" + "@img/sharp-libvips-darwin-x64": "npm:1.2.3" dependenciesMeta: "@img/sharp-libvips-darwin-x64": optional: true @@ -824,74 +847,74 @@ __metadata: languageName: node linkType: hard -"@img/sharp-libvips-darwin-arm64@npm:1.2.0": - version: 1.2.0 - resolution: "@img/sharp-libvips-darwin-arm64@npm:1.2.0" +"@img/sharp-libvips-darwin-arm64@npm:1.2.3": + version: 1.2.3 + resolution: "@img/sharp-libvips-darwin-arm64@npm:1.2.3" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@img/sharp-libvips-darwin-x64@npm:1.2.0": - version: 1.2.0 - resolution: "@img/sharp-libvips-darwin-x64@npm:1.2.0" +"@img/sharp-libvips-darwin-x64@npm:1.2.3": + version: 1.2.3 + resolution: "@img/sharp-libvips-darwin-x64@npm:1.2.3" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@img/sharp-libvips-linux-arm64@npm:1.2.0": - version: 1.2.0 - resolution: "@img/sharp-libvips-linux-arm64@npm:1.2.0" +"@img/sharp-libvips-linux-arm64@npm:1.2.3": + version: 1.2.3 + resolution: "@img/sharp-libvips-linux-arm64@npm:1.2.3" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@img/sharp-libvips-linux-arm@npm:1.2.0": - version: 1.2.0 - resolution: "@img/sharp-libvips-linux-arm@npm:1.2.0" +"@img/sharp-libvips-linux-arm@npm:1.2.3": + version: 1.2.3 + resolution: "@img/sharp-libvips-linux-arm@npm:1.2.3" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@img/sharp-libvips-linux-ppc64@npm:1.2.0": - version: 1.2.0 - resolution: "@img/sharp-libvips-linux-ppc64@npm:1.2.0" +"@img/sharp-libvips-linux-ppc64@npm:1.2.3": + version: 1.2.3 + resolution: "@img/sharp-libvips-linux-ppc64@npm:1.2.3" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@img/sharp-libvips-linux-s390x@npm:1.2.0": - version: 1.2.0 - resolution: "@img/sharp-libvips-linux-s390x@npm:1.2.0" +"@img/sharp-libvips-linux-s390x@npm:1.2.3": + version: 1.2.3 + resolution: "@img/sharp-libvips-linux-s390x@npm:1.2.3" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@img/sharp-libvips-linux-x64@npm:1.2.0": - version: 1.2.0 - resolution: "@img/sharp-libvips-linux-x64@npm:1.2.0" +"@img/sharp-libvips-linux-x64@npm:1.2.3": + version: 1.2.3 + resolution: "@img/sharp-libvips-linux-x64@npm:1.2.3" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@img/sharp-libvips-linuxmusl-arm64@npm:1.2.0": - version: 1.2.0 - resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.2.0" +"@img/sharp-libvips-linuxmusl-arm64@npm:1.2.3": + version: 1.2.3 + resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.2.3" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@img/sharp-libvips-linuxmusl-x64@npm:1.2.0": - version: 1.2.0 - resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.2.0" +"@img/sharp-libvips-linuxmusl-x64@npm:1.2.3": + version: 1.2.3 + resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.2.3" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@img/sharp-linux-arm64@npm:0.34.3": - version: 0.34.3 - resolution: "@img/sharp-linux-arm64@npm:0.34.3" +"@img/sharp-linux-arm64@npm:0.34.4": + version: 0.34.4 + resolution: "@img/sharp-linux-arm64@npm:0.34.4" dependencies: - "@img/sharp-libvips-linux-arm64": "npm:1.2.0" + "@img/sharp-libvips-linux-arm64": "npm:1.2.3" dependenciesMeta: "@img/sharp-libvips-linux-arm64": optional: true @@ -899,11 +922,11 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linux-arm@npm:0.34.3": - version: 0.34.3 - resolution: "@img/sharp-linux-arm@npm:0.34.3" +"@img/sharp-linux-arm@npm:0.34.4": + version: 0.34.4 + resolution: "@img/sharp-linux-arm@npm:0.34.4" dependencies: - "@img/sharp-libvips-linux-arm": "npm:1.2.0" + "@img/sharp-libvips-linux-arm": "npm:1.2.3" dependenciesMeta: "@img/sharp-libvips-linux-arm": optional: true @@ -911,11 +934,11 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linux-ppc64@npm:0.34.3": - version: 0.34.3 - resolution: "@img/sharp-linux-ppc64@npm:0.34.3" +"@img/sharp-linux-ppc64@npm:0.34.4": + version: 0.34.4 + resolution: "@img/sharp-linux-ppc64@npm:0.34.4" dependencies: - "@img/sharp-libvips-linux-ppc64": "npm:1.2.0" + "@img/sharp-libvips-linux-ppc64": "npm:1.2.3" dependenciesMeta: "@img/sharp-libvips-linux-ppc64": optional: true @@ -923,11 +946,11 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linux-s390x@npm:0.34.3": - version: 0.34.3 - resolution: "@img/sharp-linux-s390x@npm:0.34.3" +"@img/sharp-linux-s390x@npm:0.34.4": + version: 0.34.4 + resolution: "@img/sharp-linux-s390x@npm:0.34.4" dependencies: - "@img/sharp-libvips-linux-s390x": "npm:1.2.0" + "@img/sharp-libvips-linux-s390x": "npm:1.2.3" dependenciesMeta: "@img/sharp-libvips-linux-s390x": optional: true @@ -935,11 +958,11 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linux-x64@npm:0.34.3": - version: 0.34.3 - resolution: "@img/sharp-linux-x64@npm:0.34.3" +"@img/sharp-linux-x64@npm:0.34.4": + version: 0.34.4 + resolution: "@img/sharp-linux-x64@npm:0.34.4" dependencies: - "@img/sharp-libvips-linux-x64": "npm:1.2.0" + "@img/sharp-libvips-linux-x64": "npm:1.2.3" dependenciesMeta: "@img/sharp-libvips-linux-x64": optional: true @@ -947,11 +970,11 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linuxmusl-arm64@npm:0.34.3": - version: 0.34.3 - resolution: "@img/sharp-linuxmusl-arm64@npm:0.34.3" +"@img/sharp-linuxmusl-arm64@npm:0.34.4": + version: 0.34.4 + resolution: "@img/sharp-linuxmusl-arm64@npm:0.34.4" dependencies: - "@img/sharp-libvips-linuxmusl-arm64": "npm:1.2.0" + "@img/sharp-libvips-linuxmusl-arm64": "npm:1.2.3" dependenciesMeta: "@img/sharp-libvips-linuxmusl-arm64": optional: true @@ -959,11 +982,11 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linuxmusl-x64@npm:0.34.3": - version: 0.34.3 - resolution: "@img/sharp-linuxmusl-x64@npm:0.34.3" +"@img/sharp-linuxmusl-x64@npm:0.34.4": + version: 0.34.4 + resolution: "@img/sharp-linuxmusl-x64@npm:0.34.4" dependencies: - "@img/sharp-libvips-linuxmusl-x64": "npm:1.2.0" + "@img/sharp-libvips-linuxmusl-x64": "npm:1.2.3" dependenciesMeta: "@img/sharp-libvips-linuxmusl-x64": optional: true @@ -971,32 +994,32 @@ __metadata: languageName: node linkType: hard -"@img/sharp-wasm32@npm:0.34.3": - version: 0.34.3 - resolution: "@img/sharp-wasm32@npm:0.34.3" +"@img/sharp-wasm32@npm:0.34.4": + version: 0.34.4 + resolution: "@img/sharp-wasm32@npm:0.34.4" dependencies: - "@emnapi/runtime": "npm:^1.4.4" + "@emnapi/runtime": "npm:^1.5.0" conditions: cpu=wasm32 languageName: node linkType: hard -"@img/sharp-win32-arm64@npm:0.34.3": - version: 0.34.3 - resolution: "@img/sharp-win32-arm64@npm:0.34.3" +"@img/sharp-win32-arm64@npm:0.34.4": + version: 0.34.4 + resolution: "@img/sharp-win32-arm64@npm:0.34.4" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@img/sharp-win32-ia32@npm:0.34.3": - version: 0.34.3 - resolution: "@img/sharp-win32-ia32@npm:0.34.3" +"@img/sharp-win32-ia32@npm:0.34.4": + version: 0.34.4 + resolution: "@img/sharp-win32-ia32@npm:0.34.4" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@img/sharp-win32-x64@npm:0.34.3": - version: 0.34.3 - resolution: "@img/sharp-win32-x64@npm:0.34.3" +"@img/sharp-win32-x64@npm:0.34.4": + version: 0.34.4 + resolution: "@img/sharp-win32-x64@npm:0.34.4" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -1099,10 +1122,10 @@ __metadata: languageName: node linkType: hard -"@next/env@npm:15.5.6": - version: 15.5.6 - resolution: "@next/env@npm:15.5.6" - checksum: 10c0/d75e12391c9ce4789fe458a4c08f150eb4b31cdb1e3f4b75c41f7e2cb7f0ee879a155f5ea2d677d23b486bf3b5f4545fcdee00c80dca0e080b5e3de79d053bc2 +"@next/env@npm:16.0.1": + version: 16.0.1 + resolution: "@next/env@npm:16.0.1" + checksum: 10c0/f993bd72f91a3617d2d91c984d0d63c0a94a6e132787c9f93a43425125fe8ab8568928e4c1acd47e76c3acf6e9065296984e06ba8227a52e85b323b197c4e1c1 languageName: node linkType: hard @@ -1115,58 +1138,58 @@ __metadata: languageName: node linkType: hard -"@next/swc-darwin-arm64@npm:15.5.6": - version: 15.5.6 - resolution: "@next/swc-darwin-arm64@npm:15.5.6" +"@next/swc-darwin-arm64@npm:16.0.1": + version: 16.0.1 + resolution: "@next/swc-darwin-arm64@npm:16.0.1" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@next/swc-darwin-x64@npm:15.5.6": - version: 15.5.6 - resolution: "@next/swc-darwin-x64@npm:15.5.6" +"@next/swc-darwin-x64@npm:16.0.1": + version: 16.0.1 + resolution: "@next/swc-darwin-x64@npm:16.0.1" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@next/swc-linux-arm64-gnu@npm:15.5.6": - version: 15.5.6 - resolution: "@next/swc-linux-arm64-gnu@npm:15.5.6" +"@next/swc-linux-arm64-gnu@npm:16.0.1": + version: 16.0.1 + resolution: "@next/swc-linux-arm64-gnu@npm:16.0.1" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@next/swc-linux-arm64-musl@npm:15.5.6": - version: 15.5.6 - resolution: "@next/swc-linux-arm64-musl@npm:15.5.6" +"@next/swc-linux-arm64-musl@npm:16.0.1": + version: 16.0.1 + resolution: "@next/swc-linux-arm64-musl@npm:16.0.1" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@next/swc-linux-x64-gnu@npm:15.5.6": - version: 15.5.6 - resolution: "@next/swc-linux-x64-gnu@npm:15.5.6" +"@next/swc-linux-x64-gnu@npm:16.0.1": + version: 16.0.1 + resolution: "@next/swc-linux-x64-gnu@npm:16.0.1" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@next/swc-linux-x64-musl@npm:15.5.6": - version: 15.5.6 - resolution: "@next/swc-linux-x64-musl@npm:15.5.6" +"@next/swc-linux-x64-musl@npm:16.0.1": + version: 16.0.1 + resolution: "@next/swc-linux-x64-musl@npm:16.0.1" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@next/swc-win32-arm64-msvc@npm:15.5.6": - version: 15.5.6 - resolution: "@next/swc-win32-arm64-msvc@npm:15.5.6" +"@next/swc-win32-arm64-msvc@npm:16.0.1": + version: 16.0.1 + resolution: "@next/swc-win32-arm64-msvc@npm:16.0.1" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@next/swc-win32-x64-msvc@npm:15.5.6": - version: 15.5.6 - resolution: "@next/swc-win32-x64-msvc@npm:15.5.6" +"@next/swc-win32-x64-msvc@npm:16.0.1": + version: 16.0.1 + resolution: "@next/swc-win32-x64-msvc@npm:16.0.1" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -1261,6 +1284,31 @@ __metadata: languageName: node linkType: hard +"@peculiar/asn1-cms@npm:^2.5.0": + version: 2.5.0 + resolution: "@peculiar/asn1-cms@npm:2.5.0" + dependencies: + "@peculiar/asn1-schema": "npm:^2.5.0" + "@peculiar/asn1-x509": "npm:^2.5.0" + "@peculiar/asn1-x509-attr": "npm:^2.5.0" + asn1js: "npm:^3.0.6" + tslib: "npm:^2.8.1" + checksum: 10c0/4e7b7d9ab67f628d8d9ea49001c1a377c44e50e5c75d8472a49a2e757f34de629b9ae00ee5b1ab974f4c401f6a827d1787ac7eb63e1a3d2ec18d7015ba551739 + languageName: node + linkType: hard + +"@peculiar/asn1-csr@npm:^2.5.0": + version: 2.5.0 + resolution: "@peculiar/asn1-csr@npm:2.5.0" + dependencies: + "@peculiar/asn1-schema": "npm:^2.5.0" + "@peculiar/asn1-x509": "npm:^2.5.0" + asn1js: "npm:^3.0.6" + tslib: "npm:^2.8.1" + checksum: 10c0/30d19363f34e073bca034db2106fa3f9c6981bc3f1da7b47dcebc463e491a18459efe0e7b771eed82c64d97636c70a94cb16112492b88346d2d9946f4ebf274e + languageName: node + linkType: hard + "@peculiar/asn1-ecc@npm:^2.3.8": version: 2.4.0 resolution: "@peculiar/asn1-ecc@npm:2.4.0" @@ -1273,6 +1321,60 @@ __metadata: languageName: node linkType: hard +"@peculiar/asn1-ecc@npm:^2.5.0": + version: 2.5.0 + resolution: "@peculiar/asn1-ecc@npm:2.5.0" + dependencies: + "@peculiar/asn1-schema": "npm:^2.5.0" + "@peculiar/asn1-x509": "npm:^2.5.0" + asn1js: "npm:^3.0.6" + tslib: "npm:^2.8.1" + checksum: 10c0/447c4a03e45ecfbd9775704d9cec594fbdb234a2280e26373284d7959c3b15a216241b7bf85262e78775dd8509689a64d7e783d44745a8b2fe68863c31315985 + languageName: node + linkType: hard + +"@peculiar/asn1-pfx@npm:^2.5.0": + version: 2.5.0 + resolution: "@peculiar/asn1-pfx@npm:2.5.0" + dependencies: + "@peculiar/asn1-cms": "npm:^2.5.0" + "@peculiar/asn1-pkcs8": "npm:^2.5.0" + "@peculiar/asn1-rsa": "npm:^2.5.0" + "@peculiar/asn1-schema": "npm:^2.5.0" + asn1js: "npm:^3.0.6" + tslib: "npm:^2.8.1" + checksum: 10c0/f1f8db89dfa53b74f59ecc83cb153f3f3c5576c528c0fc484d7c6318e05dc849efaa3c9efa94d147caa7ad7648afce4b5f9cec7346077b50200ef3a4581ddf59 + languageName: node + linkType: hard + +"@peculiar/asn1-pkcs8@npm:^2.5.0": + version: 2.5.0 + resolution: "@peculiar/asn1-pkcs8@npm:2.5.0" + dependencies: + "@peculiar/asn1-schema": "npm:^2.5.0" + "@peculiar/asn1-x509": "npm:^2.5.0" + asn1js: "npm:^3.0.6" + tslib: "npm:^2.8.1" + checksum: 10c0/f799eafdb3167a3d0409d4aa740a28d67c8aa41ce39b9c73e5ddb8b5934e665a2029ee96d6f09f59980a5374bb14f892e317c7c9d370b78cee5d67c04eacea6f + languageName: node + linkType: hard + +"@peculiar/asn1-pkcs9@npm:^2.5.0": + version: 2.5.0 + resolution: "@peculiar/asn1-pkcs9@npm:2.5.0" + dependencies: + "@peculiar/asn1-cms": "npm:^2.5.0" + "@peculiar/asn1-pfx": "npm:^2.5.0" + "@peculiar/asn1-pkcs8": "npm:^2.5.0" + "@peculiar/asn1-schema": "npm:^2.5.0" + "@peculiar/asn1-x509": "npm:^2.5.0" + "@peculiar/asn1-x509-attr": "npm:^2.5.0" + asn1js: "npm:^3.0.6" + tslib: "npm:^2.8.1" + checksum: 10c0/a12a2c2eb874bfbce23e65b7ebed35abfc329b7ed505854b8b1f54e7ffc6c25638472b289993066acb9723c6af64e4734284ce47cf46b9a00c16d346756ab98d + languageName: node + linkType: hard + "@peculiar/asn1-rsa@npm:^2.3.8": version: 2.4.0 resolution: "@peculiar/asn1-rsa@npm:2.4.0" @@ -1285,6 +1387,18 @@ __metadata: languageName: node linkType: hard +"@peculiar/asn1-rsa@npm:^2.5.0": + version: 2.5.0 + resolution: "@peculiar/asn1-rsa@npm:2.5.0" + dependencies: + "@peculiar/asn1-schema": "npm:^2.5.0" + "@peculiar/asn1-x509": "npm:^2.5.0" + asn1js: "npm:^3.0.6" + tslib: "npm:^2.8.1" + checksum: 10c0/ca11e9512e27e12760cf4cccd60830f4ac0c06766cbbe52adf9f6384310366e5c5f6da2460da164d140ce6ccee071ceab0ec29646a7953210633ccfd4aff0fd6 + languageName: node + linkType: hard + "@peculiar/asn1-schema@npm:^2.3.8, @peculiar/asn1-schema@npm:^2.4.0": version: 2.4.0 resolution: "@peculiar/asn1-schema@npm:2.4.0" @@ -1296,6 +1410,29 @@ __metadata: languageName: node linkType: hard +"@peculiar/asn1-schema@npm:^2.5.0": + version: 2.5.0 + resolution: "@peculiar/asn1-schema@npm:2.5.0" + dependencies: + asn1js: "npm:^3.0.6" + pvtsutils: "npm:^1.3.6" + tslib: "npm:^2.8.1" + checksum: 10c0/17a3a68b9ac631beeea6fa6a86b5b95e2d91602d6c477f18374beadfbc71fd4cdbec3290233bf8eae0b216595229450b3cff8ba9c7b96b4a56d57cbbd41ff62f + languageName: node + linkType: hard + +"@peculiar/asn1-x509-attr@npm:^2.5.0": + version: 2.5.0 + resolution: "@peculiar/asn1-x509-attr@npm:2.5.0" + dependencies: + "@peculiar/asn1-schema": "npm:^2.5.0" + "@peculiar/asn1-x509": "npm:^2.5.0" + asn1js: "npm:^3.0.6" + tslib: "npm:^2.8.1" + checksum: 10c0/bbae84dfb676297d137dcf8e67d673ff74a7c26de829e89a338023ec1de8a0759a33c786b7cfb3f7b43c41da4f127c6c9a0a17f0d4dc12495c0457a908a749f0 + languageName: node + linkType: hard + "@peculiar/asn1-x509@npm:^2.3.8, @peculiar/asn1-x509@npm:^2.4.0": version: 2.4.0 resolution: "@peculiar/asn1-x509@npm:2.4.0" @@ -1308,6 +1445,37 @@ __metadata: languageName: node linkType: hard +"@peculiar/asn1-x509@npm:^2.5.0": + version: 2.5.0 + resolution: "@peculiar/asn1-x509@npm:2.5.0" + dependencies: + "@peculiar/asn1-schema": "npm:^2.5.0" + asn1js: "npm:^3.0.6" + pvtsutils: "npm:^1.3.6" + tslib: "npm:^2.8.1" + checksum: 10c0/278c81f8a9c025a4276d5d88d955f5374e03cd4181b6aaf4d16ac369f323aff118da531c41de17abd8903c149b4811e3ad457e445ce91ad3d1ac30785d01686e + languageName: node + linkType: hard + +"@peculiar/x509@npm:^1.13.0": + version: 1.14.0 + resolution: "@peculiar/x509@npm:1.14.0" + dependencies: + "@peculiar/asn1-cms": "npm:^2.5.0" + "@peculiar/asn1-csr": "npm:^2.5.0" + "@peculiar/asn1-ecc": "npm:^2.5.0" + "@peculiar/asn1-pkcs9": "npm:^2.5.0" + "@peculiar/asn1-rsa": "npm:^2.5.0" + "@peculiar/asn1-schema": "npm:^2.5.0" + "@peculiar/asn1-x509": "npm:^2.5.0" + pvtsutils: "npm:^1.3.6" + reflect-metadata: "npm:^0.2.2" + tslib: "npm:^2.8.1" + tsyringe: "npm:^4.10.0" + checksum: 10c0/87f6da2965bfab0a898f2ed91724db2c171ed40542bc0df281456675f05193f398800d93a012ee2c9d0d4e16217ba37ab951105e17b2f300232044ab2d8ea883 + languageName: node + linkType: hard + "@phc/format@npm:^1.0.0": version: 1.0.0 resolution: "@phc/format@npm:1.0.0" @@ -3100,15 +3268,15 @@ __metadata: linkType: hard "@simplewebauthn/browser@npm:^13.0.0": - version: 13.1.2 - resolution: "@simplewebauthn/browser@npm:13.1.2" - checksum: 10c0/43c21437d01f7d458b749f70827f5d1182356c62034398a9cc7096ff46d543c6d277e8979335f999c2b53289f8cb7c96211defafec87a613426e50af386c7c25 + version: 13.2.2 + resolution: "@simplewebauthn/browser@npm:13.2.2" + checksum: 10c0/07cd7b71fbe975504c2de2d81b5e3d0174ce495e51795af002ff0f38cc55fd58d023abd914c35477d4bb28952de385d9948b7e2d872343ebadcbcdb9ddc05e1c languageName: node linkType: hard "@simplewebauthn/server@npm:^13.0.0": - version: 13.1.2 - resolution: "@simplewebauthn/server@npm:13.1.2" + version: 13.2.2 + resolution: "@simplewebauthn/server@npm:13.2.2" dependencies: "@hexagon/base64": "npm:^1.1.27" "@levischuck/tiny-cbor": "npm:^0.2.2" @@ -3117,7 +3285,8 @@ __metadata: "@peculiar/asn1-rsa": "npm:^2.3.8" "@peculiar/asn1-schema": "npm:^2.3.8" "@peculiar/asn1-x509": "npm:^2.3.8" - checksum: 10c0/b7b1457ce44edb1ae0770d5a77b29c1d661dbf669c90d360c3cb7d9438abb32d5b6a826f4d69bdf1c2b99c3a03a94bdf232eba18405dade08bfb925d92200219 + "@peculiar/x509": "npm:^1.13.0" + checksum: 10c0/4dbcf25fe9b33ae37add96f3c8be3489eee8cf4126f9dab0f6637c4f6c1fabc9ac3b2d337452be3e6c9908616322eb07c7f782d316c39c6f6a9567f01c6241c6 languageName: node linkType: hard @@ -4443,14 +4612,15 @@ __metadata: linkType: hard "better-call@npm:^1.0.12": - version: 1.0.12 - resolution: "better-call@npm:1.0.12" + version: 1.0.24 + resolution: "better-call@npm:1.0.24" dependencies: + "@better-auth/utils": "npm:^0.3.0" "@better-fetch/fetch": "npm:^1.1.4" rou3: "npm:^0.5.1" set-cookie-parser: "npm:^2.7.1" uncrypto: "npm:^0.1.3" - checksum: 10c0/bb1c95c719055d73c29135055fca845bb9149c88ca1a5aefeaf4a8b588a6f6e0a57059e9fe77a5b03cc8f3316cec6d728e41a67c32ccb6a0c88228e890de2c16 + checksum: 10c0/cd4196b2cc47944997b6397be82abdce43db8e28fb104e91c6b6df0725fc10a6ec62af096df6270b6edfc33c22deaa048ac47d7a87674fcc8afb751e6bebefbf languageName: node linkType: hard @@ -4828,33 +4998,13 @@ __metadata: languageName: node linkType: hard -"color-name@npm:^1.0.0, color-name@npm:~1.1.4": +"color-name@npm:~1.1.4": version: 1.1.4 resolution: "color-name@npm:1.1.4" checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95 languageName: node linkType: hard -"color-string@npm:^1.9.0": - version: 1.9.1 - resolution: "color-string@npm:1.9.1" - dependencies: - color-name: "npm:^1.0.0" - simple-swizzle: "npm:^0.2.2" - checksum: 10c0/b0bfd74c03b1f837f543898b512f5ea353f71630ccdd0d66f83028d1f0924a7d4272deb278b9aef376cacf1289b522ac3fb175e99895283645a2dc3a33af2404 - languageName: node - linkType: hard - -"color@npm:^4.2.3": - version: 4.2.3 - resolution: "color@npm:4.2.3" - dependencies: - color-convert: "npm:^2.0.1" - color-string: "npm:^1.9.0" - checksum: 10c0/7fbe7cfb811054c808349de19fb380252e5e34e61d7d168ec3353e9e9aacb1802674bddc657682e4e9730c2786592a4de6f8283e7e0d3870b829bb0b7b2f6118 - languageName: node - linkType: hard - "colors@npm:1.4.0": version: 1.4.0 resolution: "colors@npm:1.4.0" @@ -5232,6 +5382,13 @@ __metadata: languageName: node linkType: hard +"detect-libc@npm:^2.1.0": + version: 2.1.2 + resolution: "detect-libc@npm:2.1.2" + checksum: 10c0/acc675c29a5649fa1fb6e255f993b8ee829e510b6b56b0910666949c80c364738833417d0edb5f90e4e46be17228b0f2b66a010513984e18b15deeeac49369c4 + languageName: node + linkType: hard + "detect-node-es@npm:^1.1.0": version: 1.1.0 resolution: "detect-node-es@npm:1.1.0" @@ -6947,13 +7104,6 @@ __metadata: languageName: node linkType: hard -"is-arrayish@npm:^0.3.1": - version: 0.3.2 - resolution: "is-arrayish@npm:0.3.2" - checksum: 10c0/f59b43dc1d129edb6f0e282595e56477f98c40278a2acdc8b0a5c57097c9eff8fe55470493df5775478cf32a4dc8eaf6d3a749f07ceee5bc263a78b2434f6a54 - languageName: node - linkType: hard - "is-async-function@npm:^2.0.0": version: 2.1.1 resolution: "is-async-function@npm:2.1.1" @@ -7439,9 +7589,9 @@ __metadata: linkType: hard "kysely@npm:^0.28.1": - version: 0.28.3 - resolution: "kysely@npm:0.28.3" - checksum: 10c0/ded46427497085b572528610087de6c5f142aa4d9661e50706771ecb51bc8fd35afeab1b79f96b80e8f678423871857b3c8ced73b0eab9c89c08da42e8c17785 + version: 0.28.8 + resolution: "kysely@npm:0.28.8" + checksum: 10c0/e654c940bed73299291c727e5ef3ecf23fcf4712ac0062cab3cbbb3e2ce4f1f98a74919638b9c034e555a1988d387ca4b28714710e7d46919ee3acf4b7ec23bd languageName: node linkType: hard @@ -8128,23 +8278,23 @@ __metadata: languageName: node linkType: hard -"next@npm:15.5.6": - version: 15.5.6 - resolution: "next@npm:15.5.6" +"next@npm:16.0.1": + version: 16.0.1 + resolution: "next@npm:16.0.1" dependencies: - "@next/env": "npm:15.5.6" - "@next/swc-darwin-arm64": "npm:15.5.6" - "@next/swc-darwin-x64": "npm:15.5.6" - "@next/swc-linux-arm64-gnu": "npm:15.5.6" - "@next/swc-linux-arm64-musl": "npm:15.5.6" - "@next/swc-linux-x64-gnu": "npm:15.5.6" - "@next/swc-linux-x64-musl": "npm:15.5.6" - "@next/swc-win32-arm64-msvc": "npm:15.5.6" - "@next/swc-win32-x64-msvc": "npm:15.5.6" + "@next/env": "npm:16.0.1" + "@next/swc-darwin-arm64": "npm:16.0.1" + "@next/swc-darwin-x64": "npm:16.0.1" + "@next/swc-linux-arm64-gnu": "npm:16.0.1" + "@next/swc-linux-arm64-musl": "npm:16.0.1" + "@next/swc-linux-x64-gnu": "npm:16.0.1" + "@next/swc-linux-x64-musl": "npm:16.0.1" + "@next/swc-win32-arm64-msvc": "npm:16.0.1" + "@next/swc-win32-x64-msvc": "npm:16.0.1" "@swc/helpers": "npm:0.5.15" caniuse-lite: "npm:^1.0.30001579" postcss: "npm:8.4.31" - sharp: "npm:^0.34.3" + sharp: "npm:^0.34.4" styled-jsx: "npm:5.1.6" peerDependencies: "@opentelemetry/api": ^1.1.0 @@ -8183,7 +8333,7 @@ __metadata: optional: true bin: next: dist/bin/next - checksum: 10c0/17d08dda8e0503aff9f2de27ea77bde193fd5f9f3faaaefa9dfb0f8957880c49f47cb1ebb6c3a014664890dee2aafa1da31e3093e7fd8c205caf956d25781704 + checksum: 10c0/91390fe601d39e54306f303f0d53cd20b7eef6f1496a0e32246dcb87ddba212a20e3aa887c96ff51ed27e8585892dfb639a4f3210af1b43f5f9018740ac2795f languageName: node linkType: hard @@ -8822,7 +8972,7 @@ __metadata: input-otp: "npm:^1.4.2" lucide-react: "npm:^0.510.0" minio: "npm:^8.0.5" - next: "npm:15.5.6" + next: "npm:16.0.1" next-safe-action: "npm:^7.10.8" next-themes: "npm:^0.4.6" node-cron: "npm:^4.2.1" @@ -8831,9 +8981,9 @@ __metadata: npm-check-updates: "npm:^18.0.1" pg: "npm:^8.16.0" postcss: "npm:^8.5.3" - react: "npm:19.1.0" + react: "npm:19.2.0" react-day-picker: "npm:9.7.0" - react-dom: "npm:19.1.0" + react-dom: "npm:19.2.0" react-dropzone: "npm:^14.3.8" react-email: "npm:^4.0.13" react-hook-form: "npm:^7.56.3" @@ -9073,14 +9223,14 @@ __metadata: languageName: node linkType: hard -"react-dom@npm:19.1.0": - version: 19.1.0 - resolution: "react-dom@npm:19.1.0" +"react-dom@npm:19.2.0": + version: 19.2.0 + resolution: "react-dom@npm:19.2.0" dependencies: - scheduler: "npm:^0.26.0" + scheduler: "npm:^0.27.0" peerDependencies: - react: ^19.1.0 - checksum: 10c0/3e26e89bb6c67c9a6aa86cb888c7a7f8258f2e347a6d2a15299c17eb16e04c19194e3452bc3255bd34000a61e45e2cb51e46292392340432f133e5a5d2dfb5fc + react: ^19.2.0 + checksum: 10c0/fa2cae05248d01288e91523b590ce4e7635b1e13f1344e225f850d722a8da037bf0782f63b1c1d46353334e0c696909b82e582f8cad607948fde6f7646cc18d9 languageName: node linkType: hard @@ -9256,10 +9406,10 @@ __metadata: languageName: node linkType: hard -"react@npm:19.1.0": - version: 19.1.0 - resolution: "react@npm:19.1.0" - checksum: 10c0/530fb9a62237d54137a13d2cfb67a7db6a2156faed43eecc423f4713d9b20c6f2728b026b45e28fcd72e8eadb9e9ed4b089e99f5e295d2f0ad3134251bdd3698 +"react@npm:19.2.0": + version: 19.2.0 + resolution: "react@npm:19.2.0" + checksum: 10c0/1b6d64eacb9324725bfe1e7860cb7a6b8a34bc89a482920765ebff5c10578eb487e6b46b2f0df263bd27a25edbdae2c45e5ea5d81ae61404301c1a7192c38330 languageName: node linkType: hard @@ -9309,6 +9459,13 @@ __metadata: languageName: node linkType: hard +"reflect-metadata@npm:^0.2.2": + version: 0.2.2 + resolution: "reflect-metadata@npm:0.2.2" + checksum: 10c0/1cd93a15ea291e420204955544637c264c216e7aac527470e393d54b4bb075f10a17e60d8168ec96600c7e0b9fcc0cb0bb6e91c3fbf5b0d8c9056f04e6ac1ec2 + languageName: node + linkType: hard + "reflect.getprototypeof@npm:^1.0.6, reflect.getprototypeof@npm:^1.0.9": version: 1.0.10 resolution: "reflect.getprototypeof@npm:1.0.10" @@ -9531,10 +9688,10 @@ __metadata: languageName: node linkType: hard -"scheduler@npm:^0.26.0": - version: 0.26.0 - resolution: "scheduler@npm:0.26.0" - checksum: 10c0/5b8d5bfddaae3513410eda54f2268e98a376a429931921a81b5c3a2873aab7ca4d775a8caac5498f8cbc7d0daeab947cf923dbd8e215d61671f9f4e392d34356 +"scheduler@npm:^0.27.0": + version: 0.27.0 + resolution: "scheduler@npm:0.27.0" + checksum: 10c0/4f03048cb05a3c8fddc45813052251eca00688f413a3cee236d984a161da28db28ba71bd11e7a3dd02f7af84ab28d39fb311431d3b3772fed557945beb00c452 languageName: node linkType: hard @@ -9620,34 +9777,34 @@ __metadata: languageName: node linkType: hard -"sharp@npm:^0.34.3": - version: 0.34.3 - resolution: "sharp@npm:0.34.3" +"sharp@npm:^0.34.4": + version: 0.34.4 + resolution: "sharp@npm:0.34.4" dependencies: - "@img/sharp-darwin-arm64": "npm:0.34.3" - "@img/sharp-darwin-x64": "npm:0.34.3" - "@img/sharp-libvips-darwin-arm64": "npm:1.2.0" - "@img/sharp-libvips-darwin-x64": "npm:1.2.0" - "@img/sharp-libvips-linux-arm": "npm:1.2.0" - "@img/sharp-libvips-linux-arm64": "npm:1.2.0" - "@img/sharp-libvips-linux-ppc64": "npm:1.2.0" - "@img/sharp-libvips-linux-s390x": "npm:1.2.0" - "@img/sharp-libvips-linux-x64": "npm:1.2.0" - "@img/sharp-libvips-linuxmusl-arm64": "npm:1.2.0" - "@img/sharp-libvips-linuxmusl-x64": "npm:1.2.0" - "@img/sharp-linux-arm": "npm:0.34.3" - "@img/sharp-linux-arm64": "npm:0.34.3" - "@img/sharp-linux-ppc64": "npm:0.34.3" - "@img/sharp-linux-s390x": "npm:0.34.3" - "@img/sharp-linux-x64": "npm:0.34.3" - "@img/sharp-linuxmusl-arm64": "npm:0.34.3" - "@img/sharp-linuxmusl-x64": "npm:0.34.3" - "@img/sharp-wasm32": "npm:0.34.3" - "@img/sharp-win32-arm64": "npm:0.34.3" - "@img/sharp-win32-ia32": "npm:0.34.3" - "@img/sharp-win32-x64": "npm:0.34.3" - color: "npm:^4.2.3" - detect-libc: "npm:^2.0.4" + "@img/colour": "npm:^1.0.0" + "@img/sharp-darwin-arm64": "npm:0.34.4" + "@img/sharp-darwin-x64": "npm:0.34.4" + "@img/sharp-libvips-darwin-arm64": "npm:1.2.3" + "@img/sharp-libvips-darwin-x64": "npm:1.2.3" + "@img/sharp-libvips-linux-arm": "npm:1.2.3" + "@img/sharp-libvips-linux-arm64": "npm:1.2.3" + "@img/sharp-libvips-linux-ppc64": "npm:1.2.3" + "@img/sharp-libvips-linux-s390x": "npm:1.2.3" + "@img/sharp-libvips-linux-x64": "npm:1.2.3" + "@img/sharp-libvips-linuxmusl-arm64": "npm:1.2.3" + "@img/sharp-libvips-linuxmusl-x64": "npm:1.2.3" + "@img/sharp-linux-arm": "npm:0.34.4" + "@img/sharp-linux-arm64": "npm:0.34.4" + "@img/sharp-linux-ppc64": "npm:0.34.4" + "@img/sharp-linux-s390x": "npm:0.34.4" + "@img/sharp-linux-x64": "npm:0.34.4" + "@img/sharp-linuxmusl-arm64": "npm:0.34.4" + "@img/sharp-linuxmusl-x64": "npm:0.34.4" + "@img/sharp-wasm32": "npm:0.34.4" + "@img/sharp-win32-arm64": "npm:0.34.4" + "@img/sharp-win32-ia32": "npm:0.34.4" + "@img/sharp-win32-x64": "npm:0.34.4" + detect-libc: "npm:^2.1.0" semver: "npm:^7.7.2" dependenciesMeta: "@img/sharp-darwin-arm64": @@ -9694,7 +9851,7 @@ __metadata: optional: true "@img/sharp-win32-x64": optional: true - checksum: 10c0/df9e6645e3db6ed298a0ac956ba74e468c367fc038b547936fbdddc6a29fce9af40413acbef73b3716291530760f311a20e45c8983f20ee5ea69dd2f21464a2b + checksum: 10c0/c2d8afab823a53bb720c42aaddde2031d7a1e25b7f1bd123e342b6b77ffce5e2730017fd52282cadf6109b325bc16f35be4771caa040cf2855978b709be35f05 languageName: node linkType: hard @@ -9776,15 +9933,6 @@ __metadata: languageName: node linkType: hard -"simple-swizzle@npm:^0.2.2": - version: 0.2.2 - resolution: "simple-swizzle@npm:0.2.2" - dependencies: - is-arrayish: "npm:^0.3.1" - checksum: 10c0/df5e4662a8c750bdba69af4e8263c5d96fe4cd0f9fe4bdfa3cbdeb45d2e869dff640beaaeb1ef0e99db4d8d2ec92f85508c269f50c972174851bc1ae5bd64308 - languageName: node - linkType: hard - "sisteransi@npm:^1.0.5": version: 1.0.5 resolution: "sisteransi@npm:1.0.5" @@ -10417,6 +10565,13 @@ __metadata: languageName: node linkType: hard +"tslib@npm:^1.9.3": + version: 1.14.1 + resolution: "tslib@npm:1.14.1" + checksum: 10c0/69ae09c49eea644bc5ebe1bca4fa4cc2c82b7b3e02f43b84bd891504edf66dbc6b2ec0eef31a957042de2269139e4acff911e6d186a258fb14069cd7f6febce2 + languageName: node + linkType: hard + "tslib@npm:^2.0.0, tslib@npm:^2.0.3, tslib@npm:^2.1.0, tslib@npm:^2.4.0, tslib@npm:^2.4.1, tslib@npm:^2.7.0, tslib@npm:^2.8.0, tslib@npm:^2.8.1": version: 2.8.1 resolution: "tslib@npm:2.8.1" @@ -10440,6 +10595,15 @@ __metadata: languageName: node linkType: hard +"tsyringe@npm:^4.10.0": + version: 4.10.0 + resolution: "tsyringe@npm:4.10.0" + dependencies: + tslib: "npm:^1.9.3" + checksum: 10c0/918594b4dfac97beb8be2c041c6ec45f078ef3768ed4edfe35ae2c709ab503e2e6b454b2b37e692c658572d1972a428fbfdbc0a2b42fee727a83c1c685fbe5e1 + languageName: node + linkType: hard + "tw-animate-css@npm:^1.2.9": version: 1.3.6 resolution: "tw-animate-css@npm:1.3.6" @@ -10539,7 +10703,17 @@ __metadata: languageName: node linkType: hard -"typescript@npm:^5.8.2, typescript@npm:^5.8.3": +"typescript@npm:^5.8.2": + version: 5.9.3 + resolution: "typescript@npm:5.9.3" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 10c0/6bd7552ce39f97e711db5aa048f6f9995b53f1c52f7d8667c1abdc1700c68a76a308f579cd309ce6b53646deb4e9a1be7c813a93baaf0a28ccd536a30270e1c5 + languageName: node + linkType: hard + +"typescript@npm:^5.8.3": version: 5.8.3 resolution: "typescript@npm:5.8.3" bin: @@ -10549,7 +10723,17 @@ __metadata: languageName: node linkType: hard -"typescript@patch:typescript@npm%3A^5.8.2#optional!builtin, typescript@patch:typescript@npm%3A^5.8.3#optional!builtin": +"typescript@patch:typescript@npm%3A^5.8.2#optional!builtin": + version: 5.9.3 + resolution: "typescript@patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 10c0/ad09fdf7a756814dce65bc60c1657b40d44451346858eea230e10f2e95a289d9183b6e32e5c11e95acc0ccc214b4f36289dcad4bf1886b0adb84d711d336a430 + languageName: node + linkType: hard + +"typescript@patch:typescript@npm%3A^5.8.3#optional!builtin": version: 5.8.3 resolution: "typescript@patch:typescript@npm%3A5.8.3#optional!builtin::version=5.8.3&hash=5786d5" bin: @@ -11300,8 +11484,8 @@ __metadata: linkType: hard "zod@npm:^4.0.5": - version: 4.0.10 - resolution: "zod@npm:4.0.10" - checksum: 10c0/8d1145e767c22b571a7967c198632f69ef15ce571b5021cdba84cf31d9af2ca40b033ea2fcbe5797cfd2da9c67b3a6ebe435938eabfbb1d1f3ab2f17f00f443b + version: 4.1.12 + resolution: "zod@npm:4.1.12" + checksum: 10c0/b64c1feb19e99d77075261eaf613e0b2be4dfcd3551eff65ad8b4f2a079b61e379854d066f7d447491fcf193f45babd8095551a9d47973d30b46b6d8e2c46774 languageName: node linkType: hard