diff --git a/.yarn/install-state.gz b/.yarn/install-state.gz index 98917af8..d5ee9515 100644 Binary files a/.yarn/install-state.gz and b/.yarn/install-state.gz differ diff --git a/app/(customer)/dashboard/(admin)/agents/[agentId]/page.tsx b/app/(customer)/dashboard/(admin)/agents/[agentId]/page.tsx index 89ec6b3f..d0c4870c 100644 --- a/app/(customer)/dashboard/(admin)/agents/[agentId]/page.tsx +++ b/app/(customer)/dashboard/(admin)/agents/[agentId]/page.tsx @@ -49,10 +49,12 @@ export default async function RoutePage(props: PageParams<{ agentId: string }>) - {agent.description} - -
+ {agent.description && ( + {agent.description} + )} + +
Databases @@ -76,7 +78,7 @@ export default async function RoutePage(props: PageParams<{ agentId: string }>)
- + Edge Key @@ -86,7 +88,8 @@ export default async function RoutePage(props: PageParams<{ agentId: string }>) /> - +
) diff --git a/app/(customer)/dashboard/(organization)/settings/page.tsx b/app/(customer)/dashboard/(organization)/settings/page.tsx index 4afde9ff..bb36710c 100644 --- a/app/(customer)/dashboard/(organization)/settings/page.tsx +++ b/app/(customer)/dashboard/(organization)/settings/page.tsx @@ -26,9 +26,6 @@ export default async function RoutePage(props: PageParams<{ slug: string }>) { const notificationChannels = await getOrganizationChannels(organization.id) - console.log("notificationChannels", notificationChannels); - - const isMember = activeMember?.role === "member"; const isOwner = activeMember?.role === "owner"; diff --git a/app/(customer)/dashboard/profile/page.tsx b/app/(customer)/dashboard/profile/page.tsx index 5a472db8..f44ccdad 100644 --- a/app/(customer)/dashboard/profile/page.tsx +++ b/app/(customer)/dashboard/profile/page.tsx @@ -3,7 +3,6 @@ import {Page, PageContent, PageTitle} from "@/features/layout/page"; import {notFound} from "next/navigation"; import {UserForm} from "@/components/wrappers/dashboard/profile/user-form/user-form"; import {Badge} from "@/components/ui/badge"; -import {ButtonDeleteAccount} from "@/components/wrappers/dashboard/profile/button-delete-account/button-delete-account"; import {AvatarWithUpload} from "@/components/wrappers/dashboard/profile/avatar/avatar-with-upload"; import {currentUser} from "@/lib/auth/current-user"; import {getAccounts, getSessions} from "@/lib/auth/auth"; @@ -26,6 +25,7 @@ export default async function RoutePage(props: PageParams<{}>) { const sessions = await getSessions(); const accounts = await getAccounts(); + return (
@@ -48,7 +48,8 @@ export default async function RoutePage(props: PageParams<{}>) { ; diff --git a/src/components/wrappers/common/connection-circle.tsx b/src/components/wrappers/common/connection-circle.tsx index d177a9ab..a1a66c7f 100644 --- a/src/components/wrappers/common/connection-circle.tsx +++ b/src/components/wrappers/common/connection-circle.tsx @@ -1,22 +1,22 @@ -import { cn } from "@/lib/utils"; +import {cn} from "@/lib/utils"; export type ConnectionCircleProps = { date?: Date | null; }; -export const ConnectionCircle = ({ date }: ConnectionCircleProps) => { +export const ConnectionCircle = ({date}: ConnectionCircleProps) => { let style = "bg-gray-300 border-gray-400"; if (date instanceof Date && !isNaN(date.getTime())) { const now = Date.now(); const timestamp = date.getTime(); - const interval = now - timestamp; + const interval_seconds = (now - timestamp) / 1000; - console.log({ now, timestamp, interval }); + console.log({now, timestamp, interval_seconds}); - if (interval < 10000) { + if (interval_seconds < 55) { style = "bg-green-400 border-green-600"; - } else if (interval <= 20000) { + } else if (interval_seconds <= 60) { style = "bg-orange-400 border-orange-600"; } else { style = "bg-red-400 border-red-600"; @@ -27,5 +27,5 @@ export const ConnectionCircle = ({ date }: ConnectionCircleProps) => { console.log(style); - return
; + return
; }; diff --git a/src/components/wrappers/common/provider-switch.tsx b/src/components/wrappers/common/provider-switch.tsx index e4870e0c..8d1ec565 100644 --- a/src/components/wrappers/common/provider-switch.tsx +++ b/src/components/wrappers/common/provider-switch.tsx @@ -1,28 +1,36 @@ import {Icon} from "@iconify/react"; import {CircleHelp, KeyRound} from "lucide-react"; +import {cn} from "@/lib/utils"; -export const providerSwitch = (provider: string) => { +export const providerSwitch = (provider: string, small?: boolean) => { switch (provider) { case "google": return ( -
- +
+ {small ? + + : + + }
); case "credential": return ( -
- - Email and Password +
+ + {!small && (Email and Password)}
); default: return ( -
- - No credentials +
+ + {!small && (No credentials)}
); } -} \ No newline at end of file +} + + + diff --git a/src/components/wrappers/dashboard/admin/tabs/admin-user-tab/accounts/table-columns.tsx b/src/components/wrappers/dashboard/admin/tabs/admin-user-tab/accounts/table-columns.tsx index 5be22b4f..e4c195fe 100644 --- a/src/components/wrappers/dashboard/admin/tabs/admin-user-tab/accounts/table-columns.tsx +++ b/src/components/wrappers/dashboard/admin/tabs/admin-user-tab/accounts/table-columns.tsx @@ -6,22 +6,17 @@ import {toast} from "sonner"; import {useRouter} from "next/navigation"; import {unlinkUserProviderAction} from "@/components/wrappers/dashboard/profile/user-form/user-form.action"; import {providerSwitch} from "@/components/wrappers/common/provider-switch"; +import {Account} from "better-auth"; -export const accountsColumns: ColumnDef<{ - id: string; - provider: string; - createdAt: Date; - updatedAt: Date; - accountId: string; - scopes: string[]; -}>[] = [ + +export const accountsColumns: ColumnDef[] = [ { id: "provider", header: "Provider", cell: ({row}) => { return (
- {providerSwitch(row.original.provider)} + {providerSwitch(row.original.providerId)}
) @@ -36,7 +31,7 @@ export const accountsColumns: ColumnDef<{ const mutation = useMutation({ mutationFn: async () => { - if (row.original.provider === "credential") { + if (row.original.providerId === "credential") { toast.error(`This provider cannot be unlinked.`); router.refresh(); return; @@ -49,7 +44,7 @@ export const accountsColumns: ColumnDef<{ } const status = await unlinkUserProviderAction({ - provider: row.original.provider, + provider: row.original.providerId, account: row.original.accountId, }); @@ -66,7 +61,7 @@ export const accountsColumns: ColumnDef<{
} onClick={async () => { await mutation.mutateAsync(); diff --git a/src/components/wrappers/dashboard/admin/tabs/admin-user-tab/columns-users.tsx b/src/components/wrappers/dashboard/admin/tabs/admin-user-tab/columns-users.tsx index 01c9fc32..65467ee2 100644 --- a/src/components/wrappers/dashboard/admin/tabs/admin-user-tab/columns-users.tsx +++ b/src/components/wrappers/dashboard/admin/tabs/admin-user-tab/columns-users.tsx @@ -68,13 +68,13 @@ export const usersColumnsAdmin: ColumnDef[] = [ }, { accessorKey: "accounts", - header: "Provider ID", + header: "Provider(s)", cell: ({row}) => { return ( -
+
{row.original.accounts.map((item) => (
- {providerSwitch(item.providerId)} + {providerSwitch(item.providerId, true)}
))}
@@ -93,9 +93,11 @@ export const usersColumnsAdmin: ColumnDef[] = [ id: "actions", cell: ({row}) => { const router = useRouter(); - const {data: session, isPending} = useSession(); + const {data: session, isPending, error} = useSession(); const isSuperAdmin = session?.user.role == "superadmin"; + if (isPending || error) return null; + return ( [] = [ { accessorKey: "expiresAt", header: "Expires At", - cell: ({ row }) => { + cell: ({row}) => { return timeAgo(row.original.expiresAt); }, }, { id: "device", header: "Device", - cell: ({ row }) => { + cell: ({row}) => { const os = detectOSWithUA(row.original.userAgent!); return (
- {os.icon && } + {os.icon && + } {os.showText && {os.name}}
); @@ -40,10 +41,11 @@ export const sessionsColumns: ColumnDef[] = [ { header: "Action", id: "actions", - cell: ({ row }) => { + cell: ({row}) => { const router = useRouter(); - const { data: session } = authClient.useSession(); + const {data: session, isPending, error} = authClient.useSession(); + const mutation = useMutation({ mutationFn: async () => { @@ -64,12 +66,17 @@ export const sessionsColumns: ColumnDef[] = [ }, }); + + if (isPending || error) return null; + + return (
} + icon={} onClick={async () => { await mutation.mutateAsync(); }} diff --git a/src/components/wrappers/dashboard/common/notifier/notifier-add-edit-modal.tsx b/src/components/wrappers/dashboard/common/notifier/notifier-add-edit-modal.tsx index 2677f044..dd4024ca 100644 --- a/src/components/wrappers/dashboard/common/notifier/notifier-add-edit-modal.tsx +++ b/src/components/wrappers/dashboard/common/notifier/notifier-add-edit-modal.tsx @@ -43,7 +43,7 @@ export const NotifierAddEditModal = ({ } - + e.preventDefault()}> {isCreate ? "Add" : "Edit"} Notification Channel diff --git a/src/components/wrappers/dashboard/common/notifier/notifier-card/button-delete-notifier.tsx b/src/components/wrappers/dashboard/common/notifier/notifier-card/button-delete-notifier.tsx index 8bd51b2d..089f8896 100644 --- a/src/components/wrappers/dashboard/common/notifier/notifier-card/button-delete-notifier.tsx +++ b/src/components/wrappers/dashboard/common/notifier/notifier-card/button-delete-notifier.tsx @@ -33,7 +33,7 @@ export const DeleteNotifierButton = ({notificationChannelId, organizationId}: De return ( void; @@ -35,16 +36,17 @@ type NotifierFormProps = { export const NotifierForm = ({onSuccessAction, organization, defaultValues}: NotifierFormProps) => { const isCreate = !Boolean(defaultValues); - const router = useRouter(); - const form = useZodForm({ schema: NotificationChannelFormSchema, // @ts-ignore defaultValues: {...defaultValues}, - }); + useEffect(() => { + form.reset(defaultValues ? {...defaultValues} : {}); + }, [defaultValues]); + const mutationCreateOrganisation = useMutation({ mutationFn: async (values: NotificationChannelFormType) => { @@ -60,11 +62,11 @@ export const NotifierForm = ({onSuccessAction, organization, defaultValues}: Not if (inner?.success) { toast.success(inner.actionSuccess?.message); - onSuccessAction?.(); + isCreate && onSuccessAction?.(); router.refresh(); } else { toast.error(inner?.actionError?.message); - onSuccessAction?.(); + isCreate && onSuccessAction?.(); } } }); @@ -112,8 +114,8 @@ export const NotifierForm = ({onSuccessAction, organization, defaultValues}: Not SMTP (Email) Slack - Curl - Webhook + {/*Curl*/} + {/*Webhook*/} @@ -137,7 +139,7 @@ export const NotifierForm = ({onSuccessAction, organization, defaultValues}: Not )}
-
+
diff --git a/src/components/wrappers/dashboard/common/notifier/notifier-form/providers/notifier-slack.form.tsx b/src/components/wrappers/dashboard/common/notifier/notifier-form/providers/notifier-slack.form.tsx index 377b3476..124ea1ca 100644 --- a/src/components/wrappers/dashboard/common/notifier/notifier-form/providers/notifier-slack.form.tsx +++ b/src/components/wrappers/dashboard/common/notifier/notifier-form/providers/notifier-slack.form.tsx @@ -2,6 +2,7 @@ import {UseFormReturn} from "react-hook-form"; import {FormControl, FormField, FormItem, FormLabel, FormMessage} from "@/components/ui/form"; import {Input} from "@/components/ui/input"; +import {Separator} from "@/components/ui/separator"; type NotifierSmtpFormProps = { @@ -11,6 +12,7 @@ type NotifierSmtpFormProps = { export const NotifierSlackForm = ({form}: NotifierSmtpFormProps) => { return( <> + { return ( <> - + - diff --git a/src/components/wrappers/dashboard/organization/tabs/organization-notifiers-tab/organization-notifiers-tab.tsx b/src/components/wrappers/dashboard/organization/tabs/organization-notifiers-tab/organization-notifiers-tab.tsx index facf57c5..ec183ad0 100644 --- a/src/components/wrappers/dashboard/organization/tabs/organization-notifiers-tab/organization-notifiers-tab.tsx +++ b/src/components/wrappers/dashboard/organization/tabs/organization-notifiers-tab/organization-notifiers-tab.tsx @@ -61,7 +61,6 @@ export const OrganizationNotifiersTab = ({ return (
-
@@ -74,6 +73,7 @@ export const OrganizationNotifiersTab = ({

{ - const [updatedUser] = await db.update(drizzleDb.schemas.user).set(parsedInput.data).where(eq(drizzleDb.schemas.user.id, parsedInput.id)).returning(); + const [updatedUser] = await db.update(drizzleDb.schemas.user).set(withUpdatedAt(parsedInput.data)).where(eq(drizzleDb.schemas.user.id, parsedInput.id)).returning(); return { data: updatedUser, }; diff --git a/src/components/wrappers/dashboard/profile/user-form/user-form.tsx b/src/components/wrappers/dashboard/profile/user-form/user-form.tsx index c834a031..d4dc774b 100644 --- a/src/components/wrappers/dashboard/profile/user-form/user-form.tsx +++ b/src/components/wrappers/dashboard/profile/user-form/user-form.tsx @@ -14,20 +14,13 @@ import { updateUserAction } from "@/components/wrappers/dashboard/profile/user-f import {DataTable} from "@/components/wrappers/common/table/data-table"; import {sessionsColumns} from "@/components/wrappers/dashboard/admin/tabs/admin-user-tab/sessions/table-columns"; import {accountsColumns} from "@/components/wrappers/dashboard/admin/tabs/admin-user-tab/accounts/table-columns"; -import {Session} from "better-auth"; +import {Account, Session} from "better-auth"; export type UserFormProps = { defaultValues?: UserType; userId?: string; sessions: Session[]; - accounts: { - id: string; - provider: string; - createdAt: Date; - updatedAt: Date; - accountId: string; - scopes: string[]; - }[]; + accounts?: Account[]; }; export const UserForm = (props: UserFormProps) => { @@ -120,7 +113,7 @@ export const UserForm = (props: UserFormProps) => { Manage your active auth providers - + diff --git a/src/components/wrappers/dashboard/projects/database/database-backup-list.tsx b/src/components/wrappers/dashboard/projects/database/database-backup-list.tsx index 384cc1f1..503b68ea 100644 --- a/src/components/wrappers/dashboard/projects/database/database-backup-list.tsx +++ b/src/components/wrappers/dashboard/projects/database/database-backup-list.tsx @@ -110,15 +110,14 @@ export const DatabaseBackupList = (props: DatabaseBackupListProps) => { selectedActions={(rows) => ( <> -
-
- {!isMember && ( +
+
+ {!isMember && ( { - }} disabled={rows.length === 0 || mutationDeleteBackups.isPending} icon={} @@ -139,15 +138,15 @@ export const DatabaseBackupList = (props: DatabaseBackupListProps) => { - )} - -
+ )} +
+
)} diff --git a/src/components/wrappers/dashboard/projects/project-card/project-database-card.tsx b/src/components/wrappers/dashboard/projects/project-card/project-database-card.tsx index e97416bc..ad388590 100644 --- a/src/components/wrappers/dashboard/projects/project-card/project-database-card.tsx +++ b/src/components/wrappers/dashboard/projects/project-card/project-database-card.tsx @@ -2,9 +2,9 @@ import Link from "next/link"; import Image from "next/image"; -import { Card, CardContent, CardHeader } from "@/components/ui/card"; -import { ConnectionCircle } from "@/components/wrappers/common/connection-circle"; -import { formatDateLastContact } from "@/utils/date-formatting"; +import {Card, CardContent, CardHeader} from "@/components/ui/card"; +import {ConnectionCircle} from "@/components/wrappers/common/connection-circle"; +import {formatDateLastContact} from "@/utils/date-formatting"; import {Database} from "@/db/schema/07_database"; import {Avatar, AvatarFallback, AvatarImage} from "@/components/ui/avatar"; @@ -15,11 +15,12 @@ export type projectDatabaseCardProps = { }; export const ProjectDatabaseCard = (props: projectDatabaseCardProps) => { - const { organizationSlug, data: database, extendedProps: extendedProps } = props; + const {organizationSlug, data: database, extendedProps: extendedProps} = props; return ( - - + + ); }; @@ -29,12 +30,13 @@ export type databaseCardProps = { }; export const DatabaseCard = (props: databaseCardProps) => { - const { data: database } = props; + const {data: database} = props; return ( - -
- Database type Icon + +
+ Database type Icon
Name: {database.name}
Generated Id: {database.agentDatabaseId}
@@ -43,9 +45,8 @@ export const DatabaseCard = (props: databaseCardProps) => {
- -
- +
+
); diff --git a/src/db/migrations/0009_lucky_edwin_jarvis.sql b/src/db/migrations/0009_lucky_edwin_jarvis.sql new file mode 100644 index 00000000..7891a730 --- /dev/null +++ b/src/db/migrations/0009_lucky_edwin_jarvis.sql @@ -0,0 +1,3 @@ +ALTER TABLE "alert_policy" DROP CONSTRAINT "alert_policy_notification_channel_id_notification_channel_id_fk"; +--> statement-breakpoint +ALTER TABLE "alert_policy" ADD CONSTRAINT "alert_policy_notification_channel_id_notification_channel_id_fk" FOREIGN KEY ("notification_channel_id") REFERENCES "public"."notification_channel"("id") ON DELETE cascade ON UPDATE no action; \ No newline at end of file diff --git a/src/db/migrations/meta/0009_snapshot.json b/src/db/migrations/meta/0009_snapshot.json new file mode 100644 index 00000000..033f954e --- /dev/null +++ b/src/db/migrations/meta/0009_snapshot.json @@ -0,0 +1,1750 @@ +{ + "id": "44705529-9598-42e6-9aed-e411a92433e7", + "prevId": "4bc1b8d8-deda-4cd1-a30d-b6166fb636d5", + "version": "7", + "dialect": "postgresql", + "tables": { + "public.settings": { + "name": "settings", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "storage": { + "name": "storage", + "type": "type_storage", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'local'" + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "s3_endpoint_url": { + "name": "s3_endpoint_url", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "s3_access_key_id": { + "name": "s3_access_key_id", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "s3_secret_access_key": { + "name": "s3_secret_access_key", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "s3_bucket_name": { + "name": "s3_bucket_name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "smtp_password": { + "name": "smtp_password", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "smtp_from": { + "name": "smtp_from", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "smtp_host": { + "name": "smtp_host", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "smtp_port": { + "name": "smtp_port", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "smtp_user": { + "name": "smtp_user", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "settings_name_unique": { + "name": "settings_name_unique", + "nullsNotDistinct": false, + "columns": [ + "name" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.account": { + "name": "account", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "account_id": { + "name": "account_id", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "provider_id": { + "name": "provider_id", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "access_token": { + "name": "access_token", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "refresh_token": { + "name": "refresh_token", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "id_token": { + "name": "id_token", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "access_token_expires_at": { + "name": "access_token_expires_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "refresh_token_expires_at": { + "name": "refresh_token_expires_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "scope": { + "name": "scope", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "password": { + "name": "password", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "account_user_id_user_id_fk": { + "name": "account_user_id_user_id_fk", + "tableFrom": "account", + "tableTo": "user", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.session": { + "name": "session", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "expires_at": { + "name": "expires_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "token": { + "name": "token", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "ip_address": { + "name": "ip_address", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "user_agent": { + "name": "user_agent", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "impersonated_by": { + "name": "impersonated_by", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "active_organization_id": { + "name": "active_organization_id", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "session_user_id_user_id_fk": { + "name": "session_user_id_user_id_fk", + "tableFrom": "session", + "tableTo": "user", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "session_token_unique": { + "name": "session_token_unique", + "nullsNotDistinct": false, + "columns": [ + "token" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.user": { + "name": "user", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "email": { + "name": "email", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "email_verified": { + "name": "email_verified", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "image": { + "name": "image", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "banned": { + "name": "banned", + "type": "boolean", + "primaryKey": false, + "notNull": false + }, + "ban_reason": { + "name": "ban_reason", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "ban_expires": { + "name": "ban_expires", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "user_email_unique": { + "name": "user_email_unique", + "nullsNotDistinct": false, + "columns": [ + "email" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.verification": { + "name": "verification", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "identifier": { + "name": "identifier", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "expires_at": { + "name": "expires_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.organization": { + "name": "organization", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "logo": { + "name": "logo", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "metadata": { + "name": "metadata", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "organization_slug_unique": { + "name": "organization_slug_unique", + "nullsNotDistinct": false, + "columns": [ + "slug" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.member": { + "name": "member", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "member_organization_id_organization_id_fk": { + "name": "member_organization_id_organization_id_fk", + "tableFrom": "member", + "tableTo": "organization", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "member_user_id_user_id_fk": { + "name": "member_user_id_user_id_fk", + "tableFrom": "member", + "tableTo": "user", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.invitation": { + "name": "invitation", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "email": { + "name": "email", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "status": { + "name": "status", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "expires_at": { + "name": "expires_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "inviter_id": { + "name": "inviter_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "invitation_organization_id_organization_id_fk": { + "name": "invitation_organization_id_organization_id_fk", + "tableFrom": "invitation", + "tableTo": "organization", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "invitation_inviter_id_user_id_fk": { + "name": "invitation_inviter_id_user_id_fk", + "tableFrom": "invitation", + "tableTo": "user", + "columnsFrom": [ + "inviter_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.projects": { + "name": "projects", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "is_archived": { + "name": "is_archived", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + }, + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "projects_organization_id_organization_id_fk": { + "name": "projects_organization_id_organization_id_fk", + "tableFrom": "projects", + "tableTo": "organization", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "projects_slug_unique": { + "name": "projects_slug_unique", + "nullsNotDistinct": false, + "columns": [ + "slug" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.backups": { + "name": "backups", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "status": { + "name": "status", + "type": "status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'waiting'" + }, + "file": { + "name": "file", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "database_id": { + "name": "database_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "backups_database_id_databases_id_fk": { + "name": "backups_database_id_databases_id_fk", + "tableFrom": "backups", + "tableTo": "databases", + "columnsFrom": [ + "database_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.databases": { + "name": "databases", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "agent_database_id": { + "name": "agent_database_id", + "type": "uuid", + "primaryKey": false, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "dbms": { + "name": "dbms", + "type": "dbms_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "backup_policy": { + "name": "backup_policy", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_waiting_for_backup": { + "name": "is_waiting_for_backup", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "backup_to_restore": { + "name": "backup_to_restore", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "agent_id": { + "name": "agent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "last_contact": { + "name": "last_contact", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "project_id": { + "name": "project_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "databases_agent_id_agents_id_fk": { + "name": "databases_agent_id_agents_id_fk", + "tableFrom": "databases", + "tableTo": "agents", + "columnsFrom": [ + "agent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "databases_project_id_projects_id_fk": { + "name": "databases_project_id_projects_id_fk", + "tableFrom": "databases", + "tableTo": "projects", + "columnsFrom": [ + "project_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.restorations": { + "name": "restorations", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "status": { + "name": "status", + "type": "status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'waiting'" + }, + "backup_id": { + "name": "backup_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "database_id": { + "name": "database_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "restorations_backup_id_backups_id_fk": { + "name": "restorations_backup_id_backups_id_fk", + "tableFrom": "restorations", + "tableTo": "backups", + "columnsFrom": [ + "backup_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "restorations_database_id_databases_id_fk": { + "name": "restorations_database_id_databases_id_fk", + "tableFrom": "restorations", + "tableTo": "databases", + "columnsFrom": [ + "database_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.retention_policies": { + "name": "retention_policies", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "database_id": { + "name": "database_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "retention_policy_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 7 + }, + "days": { + "name": "days", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 30 + }, + "gfs_daily": { + "name": "gfs_daily", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 7 + }, + "gfs_weekly": { + "name": "gfs_weekly", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 4 + }, + "gfs_monthly": { + "name": "gfs_monthly", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 12 + }, + "gfs_yearly": { + "name": "gfs_yearly", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 3 + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "retention_policies_database_id_databases_id_fk": { + "name": "retention_policies_database_id_databases_id_fk", + "tableFrom": "retention_policies", + "tableTo": "databases", + "columnsFrom": [ + "database_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.agents": { + "name": "agents", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "slug": { + "name": "slug", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "is_archived": { + "name": "is_archived", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + }, + "last_contact": { + "name": "last_contact", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "agents_slug_unique": { + "name": "agents_slug_unique", + "nullsNotDistinct": false, + "columns": [ + "slug" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.notification_channel": { + "name": "notification_channel", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "provider": { + "name": "provider", + "type": "provider_kind", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "config": { + "name": "config", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "enabled": { + "name": "enabled", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.organization_notification_channels": { + "name": "organization_notification_channels", + "schema": "", + "columns": { + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "notification_channel_id": { + "name": "notification_channel_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "organization_notification_channels_organization_id_organization_id_fk": { + "name": "organization_notification_channels_organization_id_organization_id_fk", + "tableFrom": "organization_notification_channels", + "tableTo": "organization", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "organization_notification_channels_notification_channel_id_notification_channel_id_fk": { + "name": "organization_notification_channels_notification_channel_id_notification_channel_id_fk", + "tableFrom": "organization_notification_channels", + "tableTo": "notification_channel", + "columnsFrom": [ + "notification_channel_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "organization_notification_channels_organization_id_notification_channel_id_unique": { + "name": "organization_notification_channels_organization_id_notification_channel_id_unique", + "nullsNotDistinct": false, + "columns": [ + "organization_id", + "notification_channel_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.alert_policy": { + "name": "alert_policy", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "notification_channel_id": { + "name": "notification_channel_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "event_kind": { + "name": "event_kind", + "type": "event_kind[]", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "enabled": { + "name": "enabled", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "database_id": { + "name": "database_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "alert_policy_notification_channel_id_notification_channel_id_fk": { + "name": "alert_policy_notification_channel_id_notification_channel_id_fk", + "tableFrom": "alert_policy", + "tableTo": "notification_channel", + "columnsFrom": [ + "notification_channel_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "alert_policy_database_id_databases_id_fk": { + "name": "alert_policy_database_id_databases_id_fk", + "tableFrom": "alert_policy", + "tableTo": "databases", + "columnsFrom": [ + "database_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.notification_log": { + "name": "notification_log", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "channel_id": { + "name": "channel_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "policy_id": { + "name": "policy_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "organization_id": { + "name": "organization_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "title": { + "name": "title", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "message": { + "name": "message", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "level": { + "name": "level", + "type": "level", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "payload": { + "name": "payload", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "success": { + "name": "success", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "error": { + "name": "error", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "provider_response": { + "name": "provider_response", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "sent_at": { + "name": "sent_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deleted_at": { + "name": "deleted_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "notification_log_channel_id_notification_channel_id_fk": { + "name": "notification_log_channel_id_notification_channel_id_fk", + "tableFrom": "notification_log", + "tableTo": "notification_channel", + "columnsFrom": [ + "channel_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "restrict", + "onUpdate": "no action" + }, + "notification_log_policy_id_alert_policy_id_fk": { + "name": "notification_log_policy_id_alert_policy_id_fk", + "tableFrom": "notification_log", + "tableTo": "alert_policy", + "columnsFrom": [ + "policy_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "restrict", + "onUpdate": "no action" + }, + "notification_log_organization_id_organization_id_fk": { + "name": "notification_log_organization_id_organization_id_fk", + "tableFrom": "notification_log", + "tableTo": "organization", + "columnsFrom": [ + "organization_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + } + }, + "enums": { + "public.retention_policy_type": { + "name": "retention_policy_type", + "schema": "public", + "values": [ + "count", + "days", + "gfs" + ] + }, + "public.provider_kind": { + "name": "provider_kind", + "schema": "public", + "values": [ + "curl", + "slack", + "smtp", + "webhook" + ] + }, + "public.event_kind": { + "name": "event_kind", + "schema": "public", + "values": [ + "error_backup", + "error_restore", + "success_restore", + "success_backup", + "weekly_report" + ] + }, + "public.level": { + "name": "level", + "schema": "public", + "values": [ + "critical", + "warning", + "info" + ] + }, + "public.dbms_status": { + "name": "dbms_status", + "schema": "public", + "values": [ + "postgresql", + "mysql" + ] + }, + "public.status": { + "name": "status", + "schema": "public", + "values": [ + "waiting", + "ongoing", + "failed", + "success" + ] + }, + "public.type_storage": { + "name": "type_storage", + "schema": "public", + "values": [ + "local", + "s3" + ] + } + }, + "schemas": {}, + "sequences": {}, + "roles": {}, + "policies": {}, + "views": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/src/db/migrations/meta/_journal.json b/src/db/migrations/meta/_journal.json index 440db620..6d849802 100644 --- a/src/db/migrations/meta/_journal.json +++ b/src/db/migrations/meta/_journal.json @@ -64,6 +64,13 @@ "when": 1763914207236, "tag": "0008_aberrant_scorpion", "breakpoints": true + }, + { + "idx": 9, + "version": "7", + "when": 1764364481615, + "tag": "0009_lucky_edwin_jarvis", + "breakpoints": true } ] } \ No newline at end of file diff --git a/src/db/schema/10_alert-policy.ts b/src/db/schema/10_alert-policy.ts index bd11abcf..c531d656 100644 --- a/src/db/schema/10_alert-policy.ts +++ b/src/db/schema/10_alert-policy.ts @@ -12,7 +12,7 @@ export const alertPolicy = pgTable('alert_policy', { id: uuid('id').defaultRandom().primaryKey(), notificationChannelId: uuid('notification_channel_id') .notNull() - .references(() => notificationChannel.id, {onDelete: 'restrict'}), + .references(() => notificationChannel.id, {onDelete: 'cascade'}), eventKinds: eventKindEnum("event_kind").array().notNull(), enabled: boolean('enabled').default(true).notNull(), databaseId: uuid('database_id') diff --git a/yarn.lock b/yarn.lock index b10cd445..0496d861 100644 --- a/yarn.lock +++ b/yarn.lock @@ -69,382 +69,399 @@ __metadata: linkType: hard "@aws-sdk/client-ses@npm:^3.731.1": - version: 3.922.0 - resolution: "@aws-sdk/client-ses@npm:3.922.0" + version: 3.940.0 + resolution: "@aws-sdk/client-ses@npm:3.940.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.922.0" - "@aws-sdk/credential-provider-node": "npm:3.922.0" - "@aws-sdk/middleware-host-header": "npm:3.922.0" - "@aws-sdk/middleware-logger": "npm:3.922.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.922.0" - "@aws-sdk/middleware-user-agent": "npm:3.922.0" - "@aws-sdk/region-config-resolver": "npm:3.922.0" - "@aws-sdk/types": "npm:3.922.0" - "@aws-sdk/util-endpoints": "npm:3.922.0" - "@aws-sdk/util-user-agent-browser": "npm:3.922.0" - "@aws-sdk/util-user-agent-node": "npm:3.922.0" - "@smithy/config-resolver": "npm:^4.4.1" - "@smithy/core": "npm:^3.17.2" - "@smithy/fetch-http-handler": "npm:^5.3.5" - "@smithy/hash-node": "npm:^4.2.4" - "@smithy/invalid-dependency": "npm:^4.2.4" - "@smithy/middleware-content-length": "npm:^4.2.4" - "@smithy/middleware-endpoint": "npm:^4.3.6" - "@smithy/middleware-retry": "npm:^4.4.6" - "@smithy/middleware-serde": "npm:^4.2.4" - "@smithy/middleware-stack": "npm:^4.2.4" - "@smithy/node-config-provider": "npm:^4.3.4" - "@smithy/node-http-handler": "npm:^4.4.4" - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/smithy-client": "npm:^4.9.2" - "@smithy/types": "npm:^4.8.1" - "@smithy/url-parser": "npm:^4.2.4" + "@aws-sdk/core": "npm:3.940.0" + "@aws-sdk/credential-provider-node": "npm:3.940.0" + "@aws-sdk/middleware-host-header": "npm:3.936.0" + "@aws-sdk/middleware-logger": "npm:3.936.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" + "@aws-sdk/middleware-user-agent": "npm:3.940.0" + "@aws-sdk/region-config-resolver": "npm:3.936.0" + "@aws-sdk/types": "npm:3.936.0" + "@aws-sdk/util-endpoints": "npm:3.936.0" + "@aws-sdk/util-user-agent-browser": "npm:3.936.0" + "@aws-sdk/util-user-agent-node": "npm:3.940.0" + "@smithy/config-resolver": "npm:^4.4.3" + "@smithy/core": "npm:^3.18.5" + "@smithy/fetch-http-handler": "npm:^5.3.6" + "@smithy/hash-node": "npm:^4.2.5" + "@smithy/invalid-dependency": "npm:^4.2.5" + "@smithy/middleware-content-length": "npm:^4.2.5" + "@smithy/middleware-endpoint": "npm:^4.3.12" + "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-serde": "npm:^4.2.6" + "@smithy/middleware-stack": "npm:^4.2.5" + "@smithy/node-config-provider": "npm:^4.3.5" + "@smithy/node-http-handler": "npm:^4.4.5" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/types": "npm:^4.9.0" + "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.5" - "@smithy/util-defaults-mode-node": "npm:^4.2.7" - "@smithy/util-endpoints": "npm:^3.2.4" - "@smithy/util-middleware": "npm:^4.2.4" - "@smithy/util-retry": "npm:^4.2.4" + "@smithy/util-defaults-mode-browser": "npm:^4.3.11" + "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-endpoints": "npm:^3.2.5" + "@smithy/util-middleware": "npm:^4.2.5" + "@smithy/util-retry": "npm:^4.2.5" "@smithy/util-utf8": "npm:^4.2.0" - "@smithy/util-waiter": "npm:^4.2.4" + "@smithy/util-waiter": "npm:^4.2.5" tslib: "npm:^2.6.2" - checksum: 10c0/9b2c801b3edd54ef34b66888afdeffc1bf3d3e92470ada01792fd71392ba67621cb80d3a67ec4f6311ae0e5626b2ac797d0e41225fa0fa97bbe72ab440b1a1f4 + checksum: 10c0/3d377e623dc3494a118f68ebb1229dd3a8eaa08e59ca1a91e7db20e8696d0dfb2f5dd1c8e5fa6029d0e2d62253fa63d739a77f243045b0aab76c899efbf3a6df languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/client-sso@npm:3.922.0" +"@aws-sdk/client-sso@npm:3.940.0": + version: 3.940.0 + resolution: "@aws-sdk/client-sso@npm:3.940.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.922.0" - "@aws-sdk/middleware-host-header": "npm:3.922.0" - "@aws-sdk/middleware-logger": "npm:3.922.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.922.0" - "@aws-sdk/middleware-user-agent": "npm:3.922.0" - "@aws-sdk/region-config-resolver": "npm:3.922.0" - "@aws-sdk/types": "npm:3.922.0" - "@aws-sdk/util-endpoints": "npm:3.922.0" - "@aws-sdk/util-user-agent-browser": "npm:3.922.0" - "@aws-sdk/util-user-agent-node": "npm:3.922.0" - "@smithy/config-resolver": "npm:^4.4.1" - "@smithy/core": "npm:^3.17.2" - "@smithy/fetch-http-handler": "npm:^5.3.5" - "@smithy/hash-node": "npm:^4.2.4" - "@smithy/invalid-dependency": "npm:^4.2.4" - "@smithy/middleware-content-length": "npm:^4.2.4" - "@smithy/middleware-endpoint": "npm:^4.3.6" - "@smithy/middleware-retry": "npm:^4.4.6" - "@smithy/middleware-serde": "npm:^4.2.4" - "@smithy/middleware-stack": "npm:^4.2.4" - "@smithy/node-config-provider": "npm:^4.3.4" - "@smithy/node-http-handler": "npm:^4.4.4" - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/smithy-client": "npm:^4.9.2" - "@smithy/types": "npm:^4.8.1" - "@smithy/url-parser": "npm:^4.2.4" + "@aws-sdk/core": "npm:3.940.0" + "@aws-sdk/middleware-host-header": "npm:3.936.0" + "@aws-sdk/middleware-logger": "npm:3.936.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" + "@aws-sdk/middleware-user-agent": "npm:3.940.0" + "@aws-sdk/region-config-resolver": "npm:3.936.0" + "@aws-sdk/types": "npm:3.936.0" + "@aws-sdk/util-endpoints": "npm:3.936.0" + "@aws-sdk/util-user-agent-browser": "npm:3.936.0" + "@aws-sdk/util-user-agent-node": "npm:3.940.0" + "@smithy/config-resolver": "npm:^4.4.3" + "@smithy/core": "npm:^3.18.5" + "@smithy/fetch-http-handler": "npm:^5.3.6" + "@smithy/hash-node": "npm:^4.2.5" + "@smithy/invalid-dependency": "npm:^4.2.5" + "@smithy/middleware-content-length": "npm:^4.2.5" + "@smithy/middleware-endpoint": "npm:^4.3.12" + "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-serde": "npm:^4.2.6" + "@smithy/middleware-stack": "npm:^4.2.5" + "@smithy/node-config-provider": "npm:^4.3.5" + "@smithy/node-http-handler": "npm:^4.4.5" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/types": "npm:^4.9.0" + "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.5" - "@smithy/util-defaults-mode-node": "npm:^4.2.7" - "@smithy/util-endpoints": "npm:^3.2.4" - "@smithy/util-middleware": "npm:^4.2.4" - "@smithy/util-retry": "npm:^4.2.4" + "@smithy/util-defaults-mode-browser": "npm:^4.3.11" + "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-endpoints": "npm:^3.2.5" + "@smithy/util-middleware": "npm:^4.2.5" + "@smithy/util-retry": "npm:^4.2.5" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/32170244bc1569857cc9062c86416eb0b6bab9f8284f357a7abb535bff0865dfd8ed56e0648ef23a4c58e26f4523ba62ee87b3895ee2a053b60f93efa8147cf3 + checksum: 10c0/c0f6c8bc4ad55f2b573fbc40f472b974679c11c6e2bc224b1b9a4f4a9134895b37127eaaa588d56cb2e32522de4921dd813ae7229f5db4fedeeea1d06500e74c languageName: node linkType: hard -"@aws-sdk/core@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/core@npm:3.922.0" +"@aws-sdk/core@npm:3.940.0": + version: 3.940.0 + resolution: "@aws-sdk/core@npm:3.940.0" dependencies: - "@aws-sdk/types": "npm:3.922.0" - "@aws-sdk/xml-builder": "npm:3.921.0" - "@smithy/core": "npm:^3.17.2" - "@smithy/node-config-provider": "npm:^4.3.4" - "@smithy/property-provider": "npm:^4.2.4" - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/signature-v4": "npm:^5.3.4" - "@smithy/smithy-client": "npm:^4.9.2" - "@smithy/types": "npm:^4.8.1" + "@aws-sdk/types": "npm:3.936.0" + "@aws-sdk/xml-builder": "npm:3.930.0" + "@smithy/core": "npm:^3.18.5" + "@smithy/node-config-provider": "npm:^4.3.5" + "@smithy/property-provider": "npm:^4.2.5" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/signature-v4": "npm:^5.3.5" + "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/types": "npm:^4.9.0" "@smithy/util-base64": "npm:^4.3.0" - "@smithy/util-middleware": "npm:^4.2.4" + "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/fdd9fb28853ece26617338630dbaa04c1d9261b6b6977a4db8230fecc177e1ef12ae86833af66b8f325a59bac6ad2451069256ef73595a50af00fe02e52aed01 + checksum: 10c0/090b960007d3fe7a6f54d6e9a739f7de51c25d6e8f7519821ed94d8760508a9a1f034bc4ffc8b87a797eba485baf7024d45fc86556ce224b35da2530fe85af20 languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.922.0" +"@aws-sdk/credential-provider-env@npm:3.940.0": + version: 3.940.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.940.0" dependencies: - "@aws-sdk/core": "npm:3.922.0" - "@aws-sdk/types": "npm:3.922.0" - "@smithy/property-provider": "npm:^4.2.4" - "@smithy/types": "npm:^4.8.1" + "@aws-sdk/core": "npm:3.940.0" + "@aws-sdk/types": "npm:3.936.0" + "@smithy/property-provider": "npm:^4.2.5" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/c3ba63c50814c9922588f5639ac1113364de4c81af4288962b09ba371d366ef5bb97a7667813a44ee17477abac776acaef7d037672453a5fbe105e95d5e227ef + checksum: 10c0/538ede72ad6357ccc613957b11bcd254789cd502e14938c26870c326ff1518df9bb5b23fd4d1139bac77b4394ea6a1a621ad025609d62f86d7b363636ca73e5e languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.922.0" +"@aws-sdk/credential-provider-http@npm:3.940.0": + version: 3.940.0 + resolution: "@aws-sdk/credential-provider-http@npm:3.940.0" dependencies: - "@aws-sdk/core": "npm:3.922.0" - "@aws-sdk/types": "npm:3.922.0" - "@smithy/fetch-http-handler": "npm:^5.3.5" - "@smithy/node-http-handler": "npm:^4.4.4" - "@smithy/property-provider": "npm:^4.2.4" - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/smithy-client": "npm:^4.9.2" - "@smithy/types": "npm:^4.8.1" - "@smithy/util-stream": "npm:^4.5.5" + "@aws-sdk/core": "npm:3.940.0" + "@aws-sdk/types": "npm:3.936.0" + "@smithy/fetch-http-handler": "npm:^5.3.6" + "@smithy/node-http-handler": "npm:^4.4.5" + "@smithy/property-provider": "npm:^4.2.5" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/types": "npm:^4.9.0" + "@smithy/util-stream": "npm:^4.5.6" tslib: "npm:^2.6.2" - checksum: 10c0/70f3c6315a2cd3ece055d2732a9b4eab2129781aa29d437a59f7e9a153b0b649b43f375692bcda252801bc7c9798cb1f25e9c3cabdcf383021542243c6154287 + checksum: 10c0/a3092b60041cb5be3d07891c1be959b14420a5d630372030877970c7d111c0ca8881daeb6740c16767c3a587a9a65d5e6aa8081a73a58a6cccefc98f9307a9e3 languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.922.0" +"@aws-sdk/credential-provider-ini@npm:3.940.0": + version: 3.940.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.940.0" dependencies: - "@aws-sdk/core": "npm:3.922.0" - "@aws-sdk/credential-provider-env": "npm:3.922.0" - "@aws-sdk/credential-provider-http": "npm:3.922.0" - "@aws-sdk/credential-provider-process": "npm:3.922.0" - "@aws-sdk/credential-provider-sso": "npm:3.922.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.922.0" - "@aws-sdk/nested-clients": "npm:3.922.0" - "@aws-sdk/types": "npm:3.922.0" - "@smithy/credential-provider-imds": "npm:^4.2.4" - "@smithy/property-provider": "npm:^4.2.4" - "@smithy/shared-ini-file-loader": "npm:^4.3.4" - "@smithy/types": "npm:^4.8.1" + "@aws-sdk/core": "npm:3.940.0" + "@aws-sdk/credential-provider-env": "npm:3.940.0" + "@aws-sdk/credential-provider-http": "npm:3.940.0" + "@aws-sdk/credential-provider-login": "npm:3.940.0" + "@aws-sdk/credential-provider-process": "npm:3.940.0" + "@aws-sdk/credential-provider-sso": "npm:3.940.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.940.0" + "@aws-sdk/nested-clients": "npm:3.940.0" + "@aws-sdk/types": "npm:3.936.0" + "@smithy/credential-provider-imds": "npm:^4.2.5" + "@smithy/property-provider": "npm:^4.2.5" + "@smithy/shared-ini-file-loader": "npm:^4.4.0" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/7d58cfa719f99b2f30e262147df8d7bdaeb61918d8d913303c52500edffb017c24855123d42c7b9d277bf044e4c0fb6041a5097d686951c5acdcc173a9edfb6b + checksum: 10c0/28b78575da447ea9a8f21c926fe0b1ef037e886a1676d60e168702abbeb070241a869b758bab1522e9e97ad7940376e30e7866c72201fab46a3dd67c4073af94 languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.922.0" +"@aws-sdk/credential-provider-login@npm:3.940.0": + version: 3.940.0 + resolution: "@aws-sdk/credential-provider-login@npm:3.940.0" dependencies: - "@aws-sdk/credential-provider-env": "npm:3.922.0" - "@aws-sdk/credential-provider-http": "npm:3.922.0" - "@aws-sdk/credential-provider-ini": "npm:3.922.0" - "@aws-sdk/credential-provider-process": "npm:3.922.0" - "@aws-sdk/credential-provider-sso": "npm:3.922.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.922.0" - "@aws-sdk/types": "npm:3.922.0" - "@smithy/credential-provider-imds": "npm:^4.2.4" - "@smithy/property-provider": "npm:^4.2.4" - "@smithy/shared-ini-file-loader": "npm:^4.3.4" - "@smithy/types": "npm:^4.8.1" + "@aws-sdk/core": "npm:3.940.0" + "@aws-sdk/nested-clients": "npm:3.940.0" + "@aws-sdk/types": "npm:3.936.0" + "@smithy/property-provider": "npm:^4.2.5" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/shared-ini-file-loader": "npm:^4.4.0" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/3e303fb04f9a9f27c78270662f96a649157c37dc580608dd1dd16df1a0a56027c7650ef777aeb9297149979dc88efeab58a687b7127573ba73c4b972398e58d2 + checksum: 10c0/a408b413bf13c73c25bec80323e0cb59a86cf44b724156db6fd34cd8ae72b55af81a0c7c6325d1f99b85bd5f04aa64edadd06910c4f7ab0e5f8a714c54aad26e languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.922.0" +"@aws-sdk/credential-provider-node@npm:3.940.0": + version: 3.940.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.940.0" dependencies: - "@aws-sdk/core": "npm:3.922.0" - "@aws-sdk/types": "npm:3.922.0" - "@smithy/property-provider": "npm:^4.2.4" - "@smithy/shared-ini-file-loader": "npm:^4.3.4" - "@smithy/types": "npm:^4.8.1" + "@aws-sdk/credential-provider-env": "npm:3.940.0" + "@aws-sdk/credential-provider-http": "npm:3.940.0" + "@aws-sdk/credential-provider-ini": "npm:3.940.0" + "@aws-sdk/credential-provider-process": "npm:3.940.0" + "@aws-sdk/credential-provider-sso": "npm:3.940.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.940.0" + "@aws-sdk/types": "npm:3.936.0" + "@smithy/credential-provider-imds": "npm:^4.2.5" + "@smithy/property-provider": "npm:^4.2.5" + "@smithy/shared-ini-file-loader": "npm:^4.4.0" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/1ea7f7135a9ff5e1b76338be23e71f425a336f38083eb67d82bf94138e7fdb137ea96e512cbab3843f6af2fde4c1f3e9f68a6586688a427e198017292ae38856 + checksum: 10c0/ecaa866d4cf9bce5cdf71e67d76e3e1b35e0f57b266f2b3447c08ccd5555c5b19d83a015cc153d2b6165ff6b1fce0c55d08eb306dcde909583741200ae287469 languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.922.0" +"@aws-sdk/credential-provider-process@npm:3.940.0": + version: 3.940.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.940.0" dependencies: - "@aws-sdk/client-sso": "npm:3.922.0" - "@aws-sdk/core": "npm:3.922.0" - "@aws-sdk/token-providers": "npm:3.922.0" - "@aws-sdk/types": "npm:3.922.0" - "@smithy/property-provider": "npm:^4.2.4" - "@smithy/shared-ini-file-loader": "npm:^4.3.4" - "@smithy/types": "npm:^4.8.1" + "@aws-sdk/core": "npm:3.940.0" + "@aws-sdk/types": "npm:3.936.0" + "@smithy/property-provider": "npm:^4.2.5" + "@smithy/shared-ini-file-loader": "npm:^4.4.0" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/277e756a6ac8e4a253822bbcb4065854a649f81f574d220287c224156c423bcbb0238028695ca5c3a4c99fd73a99a5627171bf397dd6a943e700621423bf0842 + checksum: 10c0/42aba573606be61f5d82120fa5379ff6eaf819be0972b20b08422a25b7f41c2113eaa762476590a08912ca248bd7eddf3504bd6620b18a98574450315b4962d0 languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.922.0" +"@aws-sdk/credential-provider-sso@npm:3.940.0": + version: 3.940.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.940.0" dependencies: - "@aws-sdk/core": "npm:3.922.0" - "@aws-sdk/nested-clients": "npm:3.922.0" - "@aws-sdk/types": "npm:3.922.0" - "@smithy/property-provider": "npm:^4.2.4" - "@smithy/shared-ini-file-loader": "npm:^4.3.4" - "@smithy/types": "npm:^4.8.1" + "@aws-sdk/client-sso": "npm:3.940.0" + "@aws-sdk/core": "npm:3.940.0" + "@aws-sdk/token-providers": "npm:3.940.0" + "@aws-sdk/types": "npm:3.936.0" + "@smithy/property-provider": "npm:^4.2.5" + "@smithy/shared-ini-file-loader": "npm:^4.4.0" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/f30912be8e568331300c79d308c0bf4e7428e7c5dd93351e9fe1f71d9a0ef899a252d7e372032b296985ccc4768a575e2538b31d3a6d854146a5b96d7681b0b9 + checksum: 10c0/fd6397d6df02ce23b1151a4453d35fd123b15a71322aab3e50885268ecac21cd441bc02063b0ad834d57ce57e70c3cf07f1e6ad75814e7baf74741a5919d3e9c languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.922.0" +"@aws-sdk/credential-provider-web-identity@npm:3.940.0": + version: 3.940.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.940.0" dependencies: - "@aws-sdk/types": "npm:3.922.0" - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/types": "npm:^4.8.1" + "@aws-sdk/core": "npm:3.940.0" + "@aws-sdk/nested-clients": "npm:3.940.0" + "@aws-sdk/types": "npm:3.936.0" + "@smithy/property-provider": "npm:^4.2.5" + "@smithy/shared-ini-file-loader": "npm:^4.4.0" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/a3c0664b13bce6274ff67c809bc61553e178879842182064093b0e3628e91ade7555da2e29ca08d058125fc902a33601d0ed46d6a29f49f55d33f7a11166d1ba + checksum: 10c0/9967bbde6603372b89a600cfed211caa769709e34b27f90f627ee5b60c5994b6db0f17b4bbd1ea4ac133092691dc94a0776ba82a187075e875005c864eb7e851 languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/middleware-logger@npm:3.922.0" +"@aws-sdk/middleware-host-header@npm:3.936.0": + version: 3.936.0 + resolution: "@aws-sdk/middleware-host-header@npm:3.936.0" dependencies: - "@aws-sdk/types": "npm:3.922.0" - "@smithy/types": "npm:^4.8.1" + "@aws-sdk/types": "npm:3.936.0" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/b9e24de778ba03b39e531e485b05d2ea8deaed6e1f69dea3b8e33c133c1fa350821edb1cc12193c799af513897012b6b9bcb449d16d6f847a921a553101896e6 + checksum: 10c0/524221650f88650c4a9cc60f7ed1bdd215f4112e120ad75807ee9b51358a1016c867e0b696cae91256aac084fa091cb230b2f579388c4b59e680b8a3e2bc7d29 languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.922.0" +"@aws-sdk/middleware-logger@npm:3.936.0": + version: 3.936.0 + resolution: "@aws-sdk/middleware-logger@npm:3.936.0" dependencies: - "@aws-sdk/types": "npm:3.922.0" - "@aws/lambda-invoke-store": "npm:^0.1.1" - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/types": "npm:^4.8.1" + "@aws-sdk/types": "npm:3.936.0" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/9975b01a3ff28e2fb8cb29b252f2839c59efd72f84f0d50cf69d51617452741feb6d4d1fb7fdee929d1b3791fd7d98cb1cad16362ac35fee33d68e8868ce8ef2 + checksum: 10c0/9f94ae2f30a7b42d7423e3bee868e08d5ac1314e5ed9882fd5e457cb50ba87fcc7c859c0629210a64b1b9a595844988876a005c2a02f63c615ae19eee9baafba languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.922.0" +"@aws-sdk/middleware-recursion-detection@npm:3.936.0": + version: 3.936.0 + resolution: "@aws-sdk/middleware-recursion-detection@npm:3.936.0" dependencies: - "@aws-sdk/core": "npm:3.922.0" - "@aws-sdk/types": "npm:3.922.0" - "@aws-sdk/util-endpoints": "npm:3.922.0" - "@smithy/core": "npm:^3.17.2" - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/types": "npm:^4.8.1" + "@aws-sdk/types": "npm:3.936.0" + "@aws/lambda-invoke-store": "npm:^0.2.0" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/be3d38d7082ab003ddb489ccdfe30ebd5e639fe2c6465bcbce11fc64b275ba6aa9fa1f8d39e460a60419dec6a67b7d236023485f9b2aeebdec2404ae2612dabb + checksum: 10c0/3230f4868899d2c811231f1edf19c768feb2d250bace28644672a4ddf53c4fe1f7a88c3cbbafa2bade08cb685a60743fc8dfb70c893081a1805cc3e79e76244b languageName: node linkType: hard -"@aws-sdk/nested-clients@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/nested-clients@npm:3.922.0" +"@aws-sdk/middleware-user-agent@npm:3.940.0": + version: 3.940.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.940.0" + dependencies: + "@aws-sdk/core": "npm:3.940.0" + "@aws-sdk/types": "npm:3.936.0" + "@aws-sdk/util-endpoints": "npm:3.936.0" + "@smithy/core": "npm:^3.18.5" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/types": "npm:^4.9.0" + tslib: "npm:^2.6.2" + checksum: 10c0/1756e35c96c5289857c65c8620d9e3afe5b14259fb0bb1290f8f08d879dd62a44569b28c505e2a56e641300df4e15fd7f29e788d1301ee2a0926caab6d2d0b9f + languageName: node + linkType: hard + +"@aws-sdk/nested-clients@npm:3.940.0": + version: 3.940.0 + resolution: "@aws-sdk/nested-clients@npm:3.940.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.922.0" - "@aws-sdk/middleware-host-header": "npm:3.922.0" - "@aws-sdk/middleware-logger": "npm:3.922.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.922.0" - "@aws-sdk/middleware-user-agent": "npm:3.922.0" - "@aws-sdk/region-config-resolver": "npm:3.922.0" - "@aws-sdk/types": "npm:3.922.0" - "@aws-sdk/util-endpoints": "npm:3.922.0" - "@aws-sdk/util-user-agent-browser": "npm:3.922.0" - "@aws-sdk/util-user-agent-node": "npm:3.922.0" - "@smithy/config-resolver": "npm:^4.4.1" - "@smithy/core": "npm:^3.17.2" - "@smithy/fetch-http-handler": "npm:^5.3.5" - "@smithy/hash-node": "npm:^4.2.4" - "@smithy/invalid-dependency": "npm:^4.2.4" - "@smithy/middleware-content-length": "npm:^4.2.4" - "@smithy/middleware-endpoint": "npm:^4.3.6" - "@smithy/middleware-retry": "npm:^4.4.6" - "@smithy/middleware-serde": "npm:^4.2.4" - "@smithy/middleware-stack": "npm:^4.2.4" - "@smithy/node-config-provider": "npm:^4.3.4" - "@smithy/node-http-handler": "npm:^4.4.4" - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/smithy-client": "npm:^4.9.2" - "@smithy/types": "npm:^4.8.1" - "@smithy/url-parser": "npm:^4.2.4" + "@aws-sdk/core": "npm:3.940.0" + "@aws-sdk/middleware-host-header": "npm:3.936.0" + "@aws-sdk/middleware-logger": "npm:3.936.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" + "@aws-sdk/middleware-user-agent": "npm:3.940.0" + "@aws-sdk/region-config-resolver": "npm:3.936.0" + "@aws-sdk/types": "npm:3.936.0" + "@aws-sdk/util-endpoints": "npm:3.936.0" + "@aws-sdk/util-user-agent-browser": "npm:3.936.0" + "@aws-sdk/util-user-agent-node": "npm:3.940.0" + "@smithy/config-resolver": "npm:^4.4.3" + "@smithy/core": "npm:^3.18.5" + "@smithy/fetch-http-handler": "npm:^5.3.6" + "@smithy/hash-node": "npm:^4.2.5" + "@smithy/invalid-dependency": "npm:^4.2.5" + "@smithy/middleware-content-length": "npm:^4.2.5" + "@smithy/middleware-endpoint": "npm:^4.3.12" + "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-serde": "npm:^4.2.6" + "@smithy/middleware-stack": "npm:^4.2.5" + "@smithy/node-config-provider": "npm:^4.3.5" + "@smithy/node-http-handler": "npm:^4.4.5" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/types": "npm:^4.9.0" + "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.5" - "@smithy/util-defaults-mode-node": "npm:^4.2.7" - "@smithy/util-endpoints": "npm:^3.2.4" - "@smithy/util-middleware": "npm:^4.2.4" - "@smithy/util-retry": "npm:^4.2.4" + "@smithy/util-defaults-mode-browser": "npm:^4.3.11" + "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-endpoints": "npm:^3.2.5" + "@smithy/util-middleware": "npm:^4.2.5" + "@smithy/util-retry": "npm:^4.2.5" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/87b6d0a0edab2d7c746fe7567d7e9fc95006b5ae5b16d6b3ff7518692f933fbb4ff392a6951cc30b820c602722aef49fde82575ca302a013490cce859c1ffeff + checksum: 10c0/6695cd044d5b43f26a6d2ae533dcd56f6a8780dc0a19e152af1dfb1017fa1a1813c1e742ca7ba608561f881f4cd4e18f957293698d880d857b460dd715b8ac50 languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.922.0" +"@aws-sdk/region-config-resolver@npm:3.936.0": + version: 3.936.0 + resolution: "@aws-sdk/region-config-resolver@npm:3.936.0" dependencies: - "@aws-sdk/types": "npm:3.922.0" - "@smithy/config-resolver": "npm:^4.4.1" - "@smithy/node-config-provider": "npm:^4.3.4" - "@smithy/types": "npm:^4.8.1" + "@aws-sdk/types": "npm:3.936.0" + "@smithy/config-resolver": "npm:^4.4.3" + "@smithy/node-config-provider": "npm:^4.3.5" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/05ade4d91e33c69db35af9bd1da4003a95c02a9e24b862116699db27cc86e719ff2b74df6d8c5960dedbd06ef19a104ec3f734f36eeab7140fb0a69b5870192d + checksum: 10c0/67ecf8f3575abe5c6b802afd6d8ba73ce54a97e6ff613eee36c4536a61ecfc732e2ac3a938829275122c4e645b40c0838c9a3904cebf6fc6d229c149e623a7f3 languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/token-providers@npm:3.922.0" +"@aws-sdk/token-providers@npm:3.940.0": + version: 3.940.0 + resolution: "@aws-sdk/token-providers@npm:3.940.0" dependencies: - "@aws-sdk/core": "npm:3.922.0" - "@aws-sdk/nested-clients": "npm:3.922.0" - "@aws-sdk/types": "npm:3.922.0" - "@smithy/property-provider": "npm:^4.2.4" - "@smithy/shared-ini-file-loader": "npm:^4.3.4" - "@smithy/types": "npm:^4.8.1" + "@aws-sdk/core": "npm:3.940.0" + "@aws-sdk/nested-clients": "npm:3.940.0" + "@aws-sdk/types": "npm:3.936.0" + "@smithy/property-provider": "npm:^4.2.5" + "@smithy/shared-ini-file-loader": "npm:^4.4.0" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/ba5817a75c0b4cd92aab2d88996fb0a622309538e642f137aee102d1b04962e1b4d39256a157c09be23507ab95859d1a6979faa0ae45b6ca1fe13fa6f4e1d7bc + checksum: 10c0/6dc90385d521521124eb65a1acdc28c792f5c353c15cc61ba08f7e2dae45f3ad81e02603eb0c244f453409becf73ec7c4e92a32048a464f07e85055a84faf0d7 languageName: node linkType: hard -"@aws-sdk/types@npm:3.922.0, @aws-sdk/types@npm:^3.222.0": - version: 3.922.0 - resolution: "@aws-sdk/types@npm:3.922.0" +"@aws-sdk/types@npm:3.936.0, @aws-sdk/types@npm:^3.222.0": + version: 3.936.0 + resolution: "@aws-sdk/types@npm:3.936.0" dependencies: - "@smithy/types": "npm:^4.8.1" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/8a02f3af191d553ed54d30c404ac35c439db71c64ed45a7bcbf53e6200662030df8f28e0559679b14aa0d0afbb91479c11cc4656545a80d0a64567e6959cfca0 + checksum: 10c0/6f7eeabd0ada675b3b8e969d512f7ce29602a1dd6af154e3d6977f0a6f03084ca3be9498d091142369636a7b7d9f1b22e58156c741d1d088c4939581848054bb languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/util-endpoints@npm:3.922.0" +"@aws-sdk/util-endpoints@npm:3.936.0": + version: 3.936.0 + resolution: "@aws-sdk/util-endpoints@npm:3.936.0" dependencies: - "@aws-sdk/types": "npm:3.922.0" - "@smithy/types": "npm:^4.8.1" - "@smithy/url-parser": "npm:^4.2.4" - "@smithy/util-endpoints": "npm:^3.2.4" + "@aws-sdk/types": "npm:3.936.0" + "@smithy/types": "npm:^4.9.0" + "@smithy/url-parser": "npm:^4.2.5" + "@smithy/util-endpoints": "npm:^3.2.5" tslib: "npm:^2.6.2" - checksum: 10c0/77ef513c32954942f070c5d1c96be537d5f5e55e785af492094177124006f908cd82f1c299a3db37c4b496d5127680d370be1c845a9f1e6ecd8c62e228e43985 + checksum: 10c0/13b1ae923ea8c09cb8ea91e7fec6d4c3138300140a23a437348dea826f50c00bf1331d4b1b1169232bedb311cbc3cc51284bd8d57820d9b028f928d06c61573f languageName: node linkType: hard @@ -457,51 +474,51 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.922.0" +"@aws-sdk/util-user-agent-browser@npm:3.936.0": + version: 3.936.0 + resolution: "@aws-sdk/util-user-agent-browser@npm:3.936.0" dependencies: - "@aws-sdk/types": "npm:3.922.0" - "@smithy/types": "npm:^4.8.1" + "@aws-sdk/types": "npm:3.936.0" + "@smithy/types": "npm:^4.9.0" bowser: "npm:^2.11.0" tslib: "npm:^2.6.2" - checksum: 10c0/5a425f27c0b873fe039a3c042710384829d474aba832026d9b082d21d469300b0d6418eddff0d4fd77ba1971a3c526c39917a20fb7531ad0bfae40595f27baa7 + checksum: 10c0/5dec40c3ca7cfe0779cadcd8c67d8aa174a385bd38ebe0c54b01b2554c833519dd2714f68aa1809d5268d8614167f3187199f5f28559a2992cc5a5a816458e64 languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.922.0": - version: 3.922.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.922.0" +"@aws-sdk/util-user-agent-node@npm:3.940.0": + version: 3.940.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.940.0" dependencies: - "@aws-sdk/middleware-user-agent": "npm:3.922.0" - "@aws-sdk/types": "npm:3.922.0" - "@smithy/node-config-provider": "npm:^4.3.4" - "@smithy/types": "npm:^4.8.1" + "@aws-sdk/middleware-user-agent": "npm:3.940.0" + "@aws-sdk/types": "npm:3.936.0" + "@smithy/node-config-provider": "npm:^4.3.5" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" peerDependencies: aws-crt: ">=1.0.0" peerDependenciesMeta: aws-crt: optional: true - checksum: 10c0/847f32a6ca8a8cea01db59bc9a6df0a456c22b746b7703f2bef3f9827267f6d0fbd93ad083b312e9e602137c12ae9e3abbc2cd54ec1cdf12d4e87dcfbd03b876 + checksum: 10c0/0287c87d3e4bb8f679c54123314ed164013b357ad7a8eefd1685ecef14c6fed062e31e9a689c6e761acc49a1f3eb1903a95d450f823c76fb89f49a4729a83a93 languageName: node linkType: hard -"@aws-sdk/xml-builder@npm:3.921.0": - version: 3.921.0 - resolution: "@aws-sdk/xml-builder@npm:3.921.0" +"@aws-sdk/xml-builder@npm:3.930.0": + version: 3.930.0 + resolution: "@aws-sdk/xml-builder@npm:3.930.0" dependencies: - "@smithy/types": "npm:^4.8.1" + "@smithy/types": "npm:^4.9.0" fast-xml-parser: "npm:5.2.5" tslib: "npm:^2.6.2" - checksum: 10c0/83c1e24e1a81f6e102d55f31373a38eeedd59baf2ee7c9d83287ac5880624b436f1d762757956853f3922980db322d0121c4f6a1b090e94c78c339d39400d9aa + checksum: 10c0/f46b8544ef54083944c179e85e3468023f5b960354f0c4e0c5261918c42d6a56a23807d3c88a73fe982b38f40e5d4e7e9e6885ebad7fec0df7be83dc7596abb6 languageName: node linkType: hard -"@aws/lambda-invoke-store@npm:^0.1.1": - version: 0.1.1 - resolution: "@aws/lambda-invoke-store@npm:0.1.1" - checksum: 10c0/27c90d9af7cca7ff4870e87dc303516e6d09ebe18f5fa13813397cd6a37fd26cf3ff1715469e3c5323fea0404a55c110f35e21bcc3ea595a4f6ba6406ea1f103 +"@aws/lambda-invoke-store@npm:^0.2.0": + version: 0.2.1 + resolution: "@aws/lambda-invoke-store@npm:0.2.1" + checksum: 10c0/7fdfd6e4b175d36dae522556efc51b0f7445af3d55e516acee0f4e52946833ec9655be45cb3bdefec5974c0c6e5bcca3ad1bce7d397eb5f7a2393623867fb4b2 languageName: node linkType: hard @@ -743,24 +760,43 @@ __metadata: languageName: node linkType: hard -"@better-auth/utils@npm:0.2.5": - version: 0.2.5 - resolution: "@better-auth/utils@npm:0.2.5" +"@better-auth/core@npm:1.4.0": + version: 1.4.0 + resolution: "@better-auth/core@npm:1.4.0" dependencies: - typescript: "npm:^5.8.2" - uncrypto: "npm:^0.1.3" - checksum: 10c0/6e93ad61dfee41ac39525a40e3bcc6496ec95793ca72b4b58f941704409865df80ff3ae907e597f9140928c43c3b892235aa53e511b460ac8c1ff50155529ea6 + "@standard-schema/spec": "npm:^1.0.0" + zod: "npm:^4.1.12" + peerDependencies: + "@better-auth/utils": 0.3.0 + "@better-fetch/fetch": 1.1.18 + better-call: 1.1.0 + jose: ^6.1.0 + kysely: ^0.28.5 + nanostores: ^1.0.1 + checksum: 10c0/002d850e64df468cb4cbab33893a766ed2c681232fcdcbba5ed9b837aa780f869a65456c53707f20bda7348731e61d67862bb066d30bebf2d8892807a6330013 languageName: node linkType: hard -"@better-auth/utils@npm:^0.3.0": +"@better-auth/telemetry@npm:1.4.0": + version: 1.4.0 + resolution: "@better-auth/telemetry@npm:1.4.0" + dependencies: + "@better-auth/utils": "npm:0.3.0" + "@better-fetch/fetch": "npm:1.1.18" + peerDependencies: + "@better-auth/core": 1.4.0 + checksum: 10c0/c2c5572b34340875f3887a9bb3f2d8facfde8b3dce5b32dc8da41e4217e29821f6fe3ee373a45e5d62a7225056b2598906c3ddbf47b9f8f5fd8130ca3953b3d2 + languageName: node + linkType: hard + +"@better-auth/utils@npm:0.3.0, @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": +"@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" checksum: 10c0/b8202e4d3dbcd52fd8b5b2f255817606c300f37c60b1d9876f560372b77f66cb6d730e72e2c9b35bca06a1e364ed9d08977c0e8c2ce0ee30fdb4c6f43aae9433 @@ -816,26 +852,17 @@ __metadata: languageName: node linkType: hard -"@emnapi/core@npm:^1.4.3, @emnapi/core@npm:^1.5.0": - version: 1.7.0 - resolution: "@emnapi/core@npm:1.7.0" +"@emnapi/core@npm:^1.4.3, @emnapi/core@npm:^1.5.0, @emnapi/core@npm:^1.6.0": + version: 1.7.1 + resolution: "@emnapi/core@npm:1.7.1" dependencies: "@emnapi/wasi-threads": "npm:1.1.0" tslib: "npm:^2.4.0" - checksum: 10c0/ea57802079fda31f87506bba63f1299f0fa60546c1a1a424d2d5926f98f1ffc4a94ae3c885155f4a60114c19d314addb45d94dc0e427ac1594cbfca7cd910a31 + checksum: 10c0/f3740be23440b439333e3ae3832163f60c96c4e35337f3220ceba88f36ee89a57a871d27c94eb7a9ff98a09911ed9a2089e477ab549f4d30029f8b907f84a351 languageName: node linkType: hard -"@emnapi/runtime@npm:^1.4.3, @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/runtime@npm:^1.7.0": +"@emnapi/runtime@npm:^1.4.3, @emnapi/runtime@npm:^1.5.0, @emnapi/runtime@npm:^1.6.0, @emnapi/runtime@npm:^1.7.0": version: 1.7.1 resolution: "@emnapi/runtime@npm:1.7.1" dependencies: @@ -887,6 +914,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/aix-ppc64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/aix-ppc64@npm:0.27.0" + conditions: os=aix & cpu=ppc64 + languageName: node + linkType: hard + "@esbuild/android-arm64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/android-arm64@npm:0.18.20" @@ -908,6 +942,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/android-arm64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/android-arm64@npm:0.27.0" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/android-arm@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/android-arm@npm:0.18.20" @@ -929,6 +970,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/android-arm@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/android-arm@npm:0.27.0" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + "@esbuild/android-x64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/android-x64@npm:0.18.20" @@ -950,6 +998,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/android-x64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/android-x64@npm:0.27.0" + conditions: os=android & cpu=x64 + languageName: node + linkType: hard + "@esbuild/darwin-arm64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/darwin-arm64@npm:0.18.20" @@ -971,6 +1026,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/darwin-arm64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/darwin-arm64@npm:0.27.0" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/darwin-x64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/darwin-x64@npm:0.18.20" @@ -992,6 +1054,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/darwin-x64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/darwin-x64@npm:0.27.0" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + "@esbuild/freebsd-arm64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/freebsd-arm64@npm:0.18.20" @@ -1013,6 +1082,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/freebsd-arm64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/freebsd-arm64@npm:0.27.0" + conditions: os=freebsd & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/freebsd-x64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/freebsd-x64@npm:0.18.20" @@ -1034,6 +1110,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/freebsd-x64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/freebsd-x64@npm:0.27.0" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + "@esbuild/linux-arm64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/linux-arm64@npm:0.18.20" @@ -1055,6 +1138,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-arm64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/linux-arm64@npm:0.27.0" + conditions: os=linux & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/linux-arm@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/linux-arm@npm:0.18.20" @@ -1076,6 +1166,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-arm@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/linux-arm@npm:0.27.0" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + "@esbuild/linux-ia32@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/linux-ia32@npm:0.18.20" @@ -1097,6 +1194,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-ia32@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/linux-ia32@npm:0.27.0" + conditions: os=linux & cpu=ia32 + languageName: node + linkType: hard + "@esbuild/linux-loong64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/linux-loong64@npm:0.18.20" @@ -1118,6 +1222,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-loong64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/linux-loong64@npm:0.27.0" + conditions: os=linux & cpu=loong64 + languageName: node + linkType: hard + "@esbuild/linux-mips64el@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/linux-mips64el@npm:0.18.20" @@ -1139,6 +1250,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-mips64el@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/linux-mips64el@npm:0.27.0" + conditions: os=linux & cpu=mips64el + languageName: node + linkType: hard + "@esbuild/linux-ppc64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/linux-ppc64@npm:0.18.20" @@ -1160,6 +1278,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-ppc64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/linux-ppc64@npm:0.27.0" + conditions: os=linux & cpu=ppc64 + languageName: node + linkType: hard + "@esbuild/linux-riscv64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/linux-riscv64@npm:0.18.20" @@ -1181,6 +1306,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-riscv64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/linux-riscv64@npm:0.27.0" + conditions: os=linux & cpu=riscv64 + languageName: node + linkType: hard + "@esbuild/linux-s390x@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/linux-s390x@npm:0.18.20" @@ -1202,6 +1334,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-s390x@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/linux-s390x@npm:0.27.0" + conditions: os=linux & cpu=s390x + languageName: node + linkType: hard + "@esbuild/linux-x64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/linux-x64@npm:0.18.20" @@ -1223,6 +1362,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-x64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/linux-x64@npm:0.27.0" + conditions: os=linux & cpu=x64 + languageName: node + linkType: hard + "@esbuild/netbsd-arm64@npm:0.25.10": version: 0.25.10 resolution: "@esbuild/netbsd-arm64@npm:0.25.10" @@ -1237,6 +1383,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/netbsd-arm64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/netbsd-arm64@npm:0.27.0" + conditions: os=netbsd & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/netbsd-x64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/netbsd-x64@npm:0.18.20" @@ -1258,6 +1411,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/netbsd-x64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/netbsd-x64@npm:0.27.0" + conditions: os=netbsd & cpu=x64 + languageName: node + linkType: hard + "@esbuild/openbsd-arm64@npm:0.25.10": version: 0.25.10 resolution: "@esbuild/openbsd-arm64@npm:0.25.10" @@ -1272,6 +1432,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/openbsd-arm64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/openbsd-arm64@npm:0.27.0" + conditions: os=openbsd & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/openbsd-x64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/openbsd-x64@npm:0.18.20" @@ -1293,6 +1460,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/openbsd-x64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/openbsd-x64@npm:0.27.0" + conditions: os=openbsd & cpu=x64 + languageName: node + linkType: hard + "@esbuild/openharmony-arm64@npm:0.25.10": version: 0.25.10 resolution: "@esbuild/openharmony-arm64@npm:0.25.10" @@ -1307,6 +1481,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/openharmony-arm64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/openharmony-arm64@npm:0.27.0" + conditions: os=openharmony & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/sunos-x64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/sunos-x64@npm:0.18.20" @@ -1328,6 +1509,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/sunos-x64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/sunos-x64@npm:0.27.0" + conditions: os=sunos & cpu=x64 + languageName: node + linkType: hard + "@esbuild/win32-arm64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/win32-arm64@npm:0.18.20" @@ -1349,6 +1537,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/win32-arm64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/win32-arm64@npm:0.27.0" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/win32-ia32@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/win32-ia32@npm:0.18.20" @@ -1370,6 +1565,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/win32-ia32@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/win32-ia32@npm:0.27.0" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + "@esbuild/win32-x64@npm:0.18.20": version: 0.18.20 resolution: "@esbuild/win32-x64@npm:0.18.20" @@ -1391,6 +1593,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/win32-x64@npm:0.27.0": + version: 0.27.0 + resolution: "@esbuild/win32-x64@npm:0.27.0" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + "@eslint-community/eslint-utils@npm:^4.7.0, @eslint-community/eslint-utils@npm:^4.8.0": version: 4.9.0 resolution: "@eslint-community/eslint-utils@npm:4.9.0" @@ -1439,8 +1648,8 @@ __metadata: linkType: hard "@eslint/eslintrc@npm:^3.3.1": - version: 3.3.1 - resolution: "@eslint/eslintrc@npm:3.3.1" + version: 3.3.3 + resolution: "@eslint/eslintrc@npm:3.3.3" dependencies: ajv: "npm:^6.12.4" debug: "npm:^4.3.2" @@ -1448,17 +1657,17 @@ __metadata: globals: "npm:^14.0.0" ignore: "npm:^5.2.0" import-fresh: "npm:^3.2.1" - js-yaml: "npm:^4.1.0" + js-yaml: "npm:^4.1.1" minimatch: "npm:^3.1.2" strip-json-comments: "npm:^3.1.1" - checksum: 10c0/b0e63f3bc5cce4555f791a4e487bf999173fcf27c65e1ab6e7d63634d8a43b33c3693e79f192cbff486d7df1be8ebb2bd2edc6e70ddd486cbfa84a359a3e3b41 + checksum: 10c0/532c7acc7ddd042724c28b1f020bd7bf148fcd4653bb44c8314168b5f772508c842ce4ee070299cac51c5c5757d2124bdcfcef5551c8c58ff9986e3e17f2260d languageName: node linkType: hard -"@eslint/js@npm:9.39.0": - version: 9.39.0 - resolution: "@eslint/js@npm:9.39.0" - checksum: 10c0/f0ac65784932f1a5d3b9c0db12eb1ff9dcb480dbd03da1045e5da820bd97a35875fb7790f1fbe652763270b1327b770c79a9ba0396e2ad91fbd97822493e67eb +"@eslint/js@npm:9.39.1": + version: 9.39.1 + resolution: "@eslint/js@npm:9.39.1" + checksum: 10c0/6f7f26f8cdb7ad6327bbf9741973b6278eb946f18f70e35406e88194b0d5c522d0547a34a02f2a208eec95c5d1388cdf7ccb20039efd2e4cb6655615247a50f1 languageName: node linkType: hard @@ -1518,12 +1727,12 @@ __metadata: linkType: hard "@grpc/grpc-js@npm:^1.11.1": - version: 1.14.0 - resolution: "@grpc/grpc-js@npm:1.14.0" + version: 1.14.1 + resolution: "@grpc/grpc-js@npm:1.14.1" dependencies: "@grpc/proto-loader": "npm:^0.8.0" "@js-sdsl/ordered-map": "npm:^4.4.2" - checksum: 10c0/51e0eb32f6dac68c49502b227e565c4244f53983d2efab8ef3fd2cc923999751c059f6c77fec4941a93c44eaa58cbc321ce1e9868e1ec226fba5a6c93722c3b1 + checksum: 10c0/a9a8fc7f4dfa374a34e37350b37ad2c092ed533b203fe16d45ba3220fe38195d17a87527dade2e5546afeeeccfcf68d3e914705d94e44e8df461321b0c02cc7a languageName: node linkType: hard @@ -1555,13 +1764,6 @@ __metadata: languageName: node linkType: hard -"@hexagon/base64@npm:^1.1.27": - version: 1.1.28 - resolution: "@hexagon/base64@npm:1.1.28" - checksum: 10c0/f90876938cda7c369444f9abcf268a9d93fe26269ae9a16a95fa1f294a5e8f9d172a77905fac205d315b4538ab4da90c866ba73cc035cc0fcf5a6062bb6691ca - languageName: node - linkType: hard - "@hookform/resolvers@npm:^5.0.1": version: 5.2.2 resolution: "@hookform/resolvers@npm:5.2.2" @@ -2150,13 +2352,6 @@ __metadata: languageName: node linkType: hard -"@levischuck/tiny-cbor@npm:^0.2.2": - version: 0.2.11 - resolution: "@levischuck/tiny-cbor@npm:0.2.11" - checksum: 10c0/b34b4b2df5d601f0b260f2cae012168439e6128963959a716ea264586d621d4c411a120219a6abd8c96482de6f11cb34e77365fb6d9f61d99a89c1db5f43ddf3 - languageName: node - linkType: hard - "@lottiefiles/dotlottie-react@npm:0.13.3": version: 0.13.3 resolution: "@lottiefiles/dotlottie-react@npm:0.13.3" @@ -2204,19 +2399,19 @@ __metadata: languageName: node linkType: hard -"@next/env@npm:16.0.0": - version: 16.0.0 - resolution: "@next/env@npm:16.0.0" - checksum: 10c0/bc6b85d48373a207f95373c5b350e0766774a8453982c8e045539393e165bc25ef3f6aaaf44036c8f2f4a98e857e0ccc7f84da6ea92116bd50f672e06f987750 +"@next/env@npm:16.0.5": + version: 16.0.5 + resolution: "@next/env@npm:16.0.5" + checksum: 10c0/e40f587f282e58096bed617fdaa14929c3eb88183f9240f932494b75e54887861b73cb0e05c16f7da8624c5489b2b6ce00db1398dc1125e55650111b52c5da54 languageName: node linkType: hard -"@next/eslint-plugin-next@npm:16.0.1": - version: 16.0.1 - resolution: "@next/eslint-plugin-next@npm:16.0.1" +"@next/eslint-plugin-next@npm:16.0.5": + version: 16.0.5 + resolution: "@next/eslint-plugin-next@npm:16.0.5" dependencies: fast-glob: "npm:3.3.1" - checksum: 10c0/5cb6f04f03a4564bef23268226e13f174d15aaf904d9e1b56028b1dc574d0c8ed8137c434a18a0b3fcbadf99593a9ffc2f709b1ceed139300e986869008494bc + checksum: 10c0/2b4715fe14b42bb7851d455d0431588afc864ec8a438f9e5a6604477ddcb4b82d75cf0f047be93fb57ee6ee27af250072e4e9f7489361ae16d126d2faf294ffb languageName: node linkType: hard @@ -2227,9 +2422,9 @@ __metadata: languageName: node linkType: hard -"@next/swc-darwin-arm64@npm:16.0.0": - version: 16.0.0 - resolution: "@next/swc-darwin-arm64@npm:16.0.0" +"@next/swc-darwin-arm64@npm:16.0.5": + version: 16.0.5 + resolution: "@next/swc-darwin-arm64@npm:16.0.5" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard @@ -2241,9 +2436,9 @@ __metadata: languageName: node linkType: hard -"@next/swc-darwin-x64@npm:16.0.0": - version: 16.0.0 - resolution: "@next/swc-darwin-x64@npm:16.0.0" +"@next/swc-darwin-x64@npm:16.0.5": + version: 16.0.5 + resolution: "@next/swc-darwin-x64@npm:16.0.5" conditions: os=darwin & cpu=x64 languageName: node linkType: hard @@ -2255,9 +2450,9 @@ __metadata: languageName: node linkType: hard -"@next/swc-linux-arm64-gnu@npm:16.0.0": - version: 16.0.0 - resolution: "@next/swc-linux-arm64-gnu@npm:16.0.0" +"@next/swc-linux-arm64-gnu@npm:16.0.5": + version: 16.0.5 + resolution: "@next/swc-linux-arm64-gnu@npm:16.0.5" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard @@ -2269,9 +2464,9 @@ __metadata: languageName: node linkType: hard -"@next/swc-linux-arm64-musl@npm:16.0.0": - version: 16.0.0 - resolution: "@next/swc-linux-arm64-musl@npm:16.0.0" +"@next/swc-linux-arm64-musl@npm:16.0.5": + version: 16.0.5 + resolution: "@next/swc-linux-arm64-musl@npm:16.0.5" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard @@ -2283,9 +2478,9 @@ __metadata: languageName: node linkType: hard -"@next/swc-linux-x64-gnu@npm:16.0.0": - version: 16.0.0 - resolution: "@next/swc-linux-x64-gnu@npm:16.0.0" +"@next/swc-linux-x64-gnu@npm:16.0.5": + version: 16.0.5 + resolution: "@next/swc-linux-x64-gnu@npm:16.0.5" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard @@ -2297,9 +2492,9 @@ __metadata: languageName: node linkType: hard -"@next/swc-linux-x64-musl@npm:16.0.0": - version: 16.0.0 - resolution: "@next/swc-linux-x64-musl@npm:16.0.0" +"@next/swc-linux-x64-musl@npm:16.0.5": + version: 16.0.5 + resolution: "@next/swc-linux-x64-musl@npm:16.0.5" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard @@ -2311,9 +2506,9 @@ __metadata: languageName: node linkType: hard -"@next/swc-win32-arm64-msvc@npm:16.0.0": - version: 16.0.0 - resolution: "@next/swc-win32-arm64-msvc@npm:16.0.0" +"@next/swc-win32-arm64-msvc@npm:16.0.5": + version: 16.0.5 + resolution: "@next/swc-win32-arm64-msvc@npm:16.0.5" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard @@ -2325,27 +2520,34 @@ __metadata: languageName: node linkType: hard -"@next/swc-win32-x64-msvc@npm:16.0.0": - version: 16.0.0 - resolution: "@next/swc-win32-x64-msvc@npm:16.0.0" +"@next/swc-win32-x64-msvc@npm:16.0.5": + version: 16.0.5 + resolution: "@next/swc-win32-x64-msvc@npm:16.0.5" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@noble/ciphers@npm:^0.6.0": - version: 0.6.0 - resolution: "@noble/ciphers@npm:0.6.0" - checksum: 10c0/840900243306dbf4caad942d518dc215bbe83e4daf6385d9294e76ea39b0834ba21591271cf2dd5cc5e64f96f98cdb967065b75e804b0b338b10ed50415ea64e +"@noble/ciphers@npm:^2.0.0": + version: 2.0.1 + resolution: "@noble/ciphers@npm:2.0.1" + checksum: 10c0/62318ec45224bcabd636ffe75409834c7a2ee151c68592935e73c9c6d2d13225247292d3e1c631113d088d57cf52a49458e32738d791cae95765a6d0900d290d languageName: node linkType: hard -"@noble/hashes@npm:^1.1.5, @noble/hashes@npm:^1.8.0": +"@noble/hashes@npm:^1.1.5": version: 1.8.0 resolution: "@noble/hashes@npm:1.8.0" checksum: 10c0/06a0b52c81a6fa7f04d67762e08b2c476a00285858150caeaaff4037356dd5e119f45b2a530f638b77a5eeca013168ec1b655db41bae3236cb2e9d511484fc77 languageName: node linkType: hard +"@noble/hashes@npm:^2.0.0": + version: 2.0.1 + resolution: "@noble/hashes@npm:2.0.1" + checksum: 10c0/e81769ce21c3b1c80141a3b99bd001f17edea09879aa936692ae39525477386d696101cd573928a304806efb2b9fa751e1dd83241c67d0c84d30091e85c79bdb + languageName: node + linkType: hard + "@nodelib/fs.scandir@npm:2.1.5": version: 2.1.5 resolution: "@nodelib/fs.scandir@npm:2.1.5" @@ -2380,25 +2582,25 @@ __metadata: languageName: node linkType: hard -"@npmcli/agent@npm:^3.0.0": - version: 3.0.0 - resolution: "@npmcli/agent@npm:3.0.0" +"@npmcli/agent@npm:^4.0.0": + version: 4.0.0 + resolution: "@npmcli/agent@npm:4.0.0" dependencies: agent-base: "npm:^7.1.0" http-proxy-agent: "npm:^7.0.0" https-proxy-agent: "npm:^7.0.1" - lru-cache: "npm:^10.0.1" + lru-cache: "npm:^11.2.1" socks-proxy-agent: "npm:^8.0.3" - checksum: 10c0/efe37b982f30740ee77696a80c196912c274ecd2cb243bc6ae7053a50c733ce0f6c09fda085145f33ecf453be19654acca74b69e81eaad4c90f00ccffe2f9271 + checksum: 10c0/f7b5ce0f3dd42c3f8c6546e8433573d8049f67ef11ec22aa4704bc41483122f68bf97752e06302c455ead667af5cb753e6a09bff06632bc465c1cfd4c4b75a53 languageName: node linkType: hard -"@npmcli/fs@npm:^4.0.0": - version: 4.0.0 - resolution: "@npmcli/fs@npm:4.0.0" +"@npmcli/fs@npm:^5.0.0": + version: 5.0.0 + resolution: "@npmcli/fs@npm:5.0.0" dependencies: semver: "npm:^7.3.5" - checksum: 10c0/c90935d5ce670c87b6b14fab04a965a3b8137e585f8b2a6257263bd7f97756dd736cb165bb470e5156a9e718ecd99413dccc54b1138c1a46d6ec7cf325982fe5 + checksum: 10c0/26e376d780f60ff16e874a0ac9bc3399186846baae0b6e1352286385ac134d900cc5dafaded77f38d77f86898fc923ae1cee9d7399f0275b1aa24878915d722b languageName: node linkType: hard @@ -2411,162 +2613,6 @@ __metadata: languageName: node linkType: hard -"@peculiar/asn1-android@npm:^2.3.10": - version: 2.5.0 - resolution: "@peculiar/asn1-android@npm:2.5.0" - dependencies: - "@peculiar/asn1-schema": "npm:^2.5.0" - asn1js: "npm:^3.0.6" - tslib: "npm:^2.8.1" - checksum: 10c0/06c5ac26542886a5254ebb58c6c0f31e1fe355881a32c8e724adb46b16dc7312dcaba9d430e31df48239a3d92e176ae2673872077d5fb5cf17cd0e4901b7e22a - 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, @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, @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.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.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" @@ -2574,22 +2620,15 @@ __metadata: languageName: node linkType: hard -"@pkgjs/parseargs@npm:^0.11.0": - version: 0.11.0 - resolution: "@pkgjs/parseargs@npm:0.11.0" - checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd - languageName: node - linkType: hard - -"@prisma/config@npm:6.17.1": - version: 6.17.1 - resolution: "@prisma/config@npm:6.17.1" +"@prisma/config@npm:6.19.0": + version: 6.19.0 + resolution: "@prisma/config@npm:6.19.0" dependencies: c12: "npm:3.1.0" deepmerge-ts: "npm:7.1.5" - effect: "npm:3.16.12" + effect: "npm:3.18.4" empathic: "npm:2.0.0" - checksum: 10c0/afcd60f88ac92306f97626d66b209dd808fef684a965974026a75f04dc762a2866c7f2a8a2bcd70bc8895e8b90e96e1715cdbd8c744a67930976205a35ee00f5 + checksum: 10c0/00b884364f23a28cef66ef62e316f2bb166338c1d57aa875924d607d8eda53b672a7aa791985dec9877905c3b3d14ba3712c4c64755036999b3924705ba4932a languageName: node linkType: hard @@ -2603,10 +2642,10 @@ __metadata: languageName: node linkType: hard -"@prisma/debug@npm:6.17.1": - version: 6.17.1 - resolution: "@prisma/debug@npm:6.17.1" - checksum: 10c0/78dffd6665668ca933028752e3742f1985766845ef26e4e088d9ee029086608b5061720138e53aefaf1d50f155eb3fec5ac4ab98f591438977ae04f5801637d3 +"@prisma/debug@npm:6.19.0": + version: 6.19.0 + resolution: "@prisma/debug@npm:6.19.0" + checksum: 10c0/0e63ac170da1f5d6be7773a7865bc8475970f867608ae2fe1df27db118231687114b0f615e6c2ed4c764c413c2bb8eb8bd8ac27633997555b53997a5b7aaefa8 languageName: node linkType: hard @@ -2617,10 +2656,10 @@ __metadata: languageName: node linkType: hard -"@prisma/dmmf@npm:6.17.1": - version: 6.17.1 - resolution: "@prisma/dmmf@npm:6.17.1" - checksum: 10c0/b6e919b263506d6dba9e3c358838c607de29b8aa205b01b289e74243fd9baa286c62ac360928847f22d2a1880a18ec707b9575cc4dfd1c21a7d3911e022354e1 +"@prisma/dmmf@npm:6.19.0": + version: 6.19.0 + resolution: "@prisma/dmmf@npm:6.19.0" + checksum: 10c0/a68de35db23fa029b5d8764a28afc068789de78c888ffaee1cc54f4ffb83db145df309f87de5d986de79712fd01c4ea718d979718fbcb92dd70df72b60c08d5a languageName: node linkType: hard @@ -2631,12 +2670,12 @@ __metadata: languageName: node linkType: hard -"@prisma/driver-adapter-utils@npm:6.17.1": - version: 6.17.1 - resolution: "@prisma/driver-adapter-utils@npm:6.17.1" +"@prisma/driver-adapter-utils@npm:6.19.0": + version: 6.19.0 + resolution: "@prisma/driver-adapter-utils@npm:6.19.0" dependencies: - "@prisma/debug": "npm:6.17.1" - checksum: 10c0/dae258a620976f55e924a208aaf6839cbefb032d44f19cae2b2345ae23cb9570f32e49451c986c581316c0ceb11d96444f4ba24e0a29472a1f537e98712222d6 + "@prisma/debug": "npm:6.19.0" + checksum: 10c0/6f7ff777baf49c6130934430daf9596f4a24a039454836651a993df3b3b831e24c0bf620c0f0a7e53189839143e82a39fee2884f175ab4841392270a41f1c5fd languageName: node linkType: hard @@ -2649,10 +2688,10 @@ __metadata: languageName: node linkType: hard -"@prisma/engines-version@npm:6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac": - version: 6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac - resolution: "@prisma/engines-version@npm:6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac" - checksum: 10c0/86c4e29a4b2aa4d5d0a38770e495a832657094edffebca5f0ce295086a6a53ce3bb3b785be26e290d400d4e707d0ba4ecf22a1eabe4ca663788f65b7712f2f8d +"@prisma/engines-version@npm:6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773": + version: 6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773 + resolution: "@prisma/engines-version@npm:6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773" + checksum: 10c0/210cacc531ca0b72c35566ffb7b5b98c879e3f26ade56cc30b64bfb65d5c820a1f1d050a6b92992a27a0acee714650e4ef20626b22e7210377ba7f50792e0e32 languageName: node linkType: hard @@ -2663,15 +2702,15 @@ __metadata: languageName: node linkType: hard -"@prisma/engines@npm:6.17.1": - version: 6.17.1 - resolution: "@prisma/engines@npm:6.17.1" +"@prisma/engines@npm:6.19.0": + version: 6.19.0 + resolution: "@prisma/engines@npm:6.19.0" dependencies: - "@prisma/debug": "npm:6.17.1" - "@prisma/engines-version": "npm:6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac" - "@prisma/fetch-engine": "npm:6.17.1" - "@prisma/get-platform": "npm:6.17.1" - checksum: 10c0/4a3bc82a4fa19f78d48c595c8c5709abaeb8801e1cf161d4ecd9719b4f5b0cd2b711515e830c8b5cacb2be19239bd8fef7858f274ad5d7a0ef133e4e30d375ac + "@prisma/debug": "npm:6.19.0" + "@prisma/engines-version": "npm:6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773" + "@prisma/fetch-engine": "npm:6.19.0" + "@prisma/get-platform": "npm:6.19.0" + checksum: 10c0/83f3a30fc1bf67c1ed8c411e210d42835555b5cb302ea2e4a897b063ed2f1c3a27b448bd2b5974fda35830176651ea5599a1966c062e36c6630fc9c159e7c4b8 languageName: node linkType: hard @@ -2687,14 +2726,14 @@ __metadata: languageName: node linkType: hard -"@prisma/fetch-engine@npm:6.17.1": - version: 6.17.1 - resolution: "@prisma/fetch-engine@npm:6.17.1" +"@prisma/fetch-engine@npm:6.19.0": + version: 6.19.0 + resolution: "@prisma/fetch-engine@npm:6.19.0" dependencies: - "@prisma/debug": "npm:6.17.1" - "@prisma/engines-version": "npm:6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac" - "@prisma/get-platform": "npm:6.17.1" - checksum: 10c0/2383845084500c8d445914bedb4cfbbbc39f1b84b6dd40786dedbb2352f0bfeb282260e6a81866e0f48a0036148fdc120938122fe04dc9b7e8380831fe986f59 + "@prisma/debug": "npm:6.19.0" + "@prisma/engines-version": "npm:6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773" + "@prisma/get-platform": "npm:6.19.0" + checksum: 10c0/8f3d6bac64ff623c7d9aca43aa49547c072da7eff75e5abf1240795b8871fc53b0e8199fe6db6571593d37493243101eaa363178db74defb9b6decb52bb458f5 languageName: node linkType: hard @@ -2709,14 +2748,14 @@ __metadata: languageName: node linkType: hard -"@prisma/generator-helper@npm:6.17.1, @prisma/generator-helper@npm:6.17.x": - version: 6.17.1 - resolution: "@prisma/generator-helper@npm:6.17.1" +"@prisma/generator-helper@npm:6.19.0, @prisma/generator-helper@npm:6.19.x": + version: 6.19.0 + resolution: "@prisma/generator-helper@npm:6.19.0" dependencies: - "@prisma/debug": "npm:6.17.1" - "@prisma/dmmf": "npm:6.17.1" - "@prisma/generator": "npm:6.17.1" - checksum: 10c0/b6d96886a079ef59462dee21f642b91415c57a056f50d3aa509232b0293622bd45c5eccb83dc716d0f1921276e0c7213bf371b98bf73132674c50b3cfb26824e + "@prisma/debug": "npm:6.19.0" + "@prisma/dmmf": "npm:6.19.0" + "@prisma/generator": "npm:6.19.0" + checksum: 10c0/a366ff4f07258b9eb4953254c41af243059e3d2fd85cb7469f911651fc12f4956067b142b83491f71dd7724358456620e395aaae7ecf13e11deabf3d0f93d5ef languageName: node linkType: hard @@ -2731,10 +2770,10 @@ __metadata: languageName: node linkType: hard -"@prisma/generator@npm:6.17.1": - version: 6.17.1 - resolution: "@prisma/generator@npm:6.17.1" - checksum: 10c0/2ae3ba17296c85abdcb4b55f91dc0673f49a433fb4223949a75fbf9f5c68ee12e0b2f1c74c3a409ac9bd5b29184c0bc2177b963028bd8e90b22c4b486582d289 +"@prisma/generator@npm:6.19.0": + version: 6.19.0 + resolution: "@prisma/generator@npm:6.19.0" + checksum: 10c0/4b725bfb3deef0bedd7a4d5d6ae6c69da68172b75000a5d75e2405b0186194f5f12434ec2e33263cbaa8943fbd7ae301134660a66eca475d5401c35f95140c32 languageName: node linkType: hard @@ -2745,12 +2784,12 @@ __metadata: languageName: node linkType: hard -"@prisma/get-platform@npm:6.17.1": - version: 6.17.1 - resolution: "@prisma/get-platform@npm:6.17.1" +"@prisma/get-platform@npm:6.19.0": + version: 6.19.0 + resolution: "@prisma/get-platform@npm:6.19.0" dependencies: - "@prisma/debug": "npm:6.17.1" - checksum: 10c0/497f170567083c30892da627ef27319f727709af5623a34a7b2118f1663a3726ed5636d0b07904d059b85f7d861406658c3dc72a0f328da22a00d1c95ce70877 + "@prisma/debug": "npm:6.19.0" + checksum: 10c0/79ac4e8484ca3e8ce1fbd848c3ffa85ac13966a1332b1d0637f75444677809bd91f8cc4a0e21e9f8dffc7f1e18ebdd89200409715b15a127e62ec3893cc7fc58 languageName: node linkType: hard @@ -2763,22 +2802,22 @@ __metadata: languageName: node linkType: hard -"@prisma/internals@npm:6.17.x": - version: 6.17.1 - resolution: "@prisma/internals@npm:6.17.1" +"@prisma/internals@npm:6.19.x": + version: 6.19.0 + resolution: "@prisma/internals@npm:6.19.0" dependencies: - "@prisma/config": "npm:6.17.1" - "@prisma/debug": "npm:6.17.1" - "@prisma/dmmf": "npm:6.17.1" - "@prisma/driver-adapter-utils": "npm:6.17.1" - "@prisma/engines": "npm:6.17.1" - "@prisma/fetch-engine": "npm:6.17.1" - "@prisma/generator": "npm:6.17.1" - "@prisma/generator-helper": "npm:6.17.1" - "@prisma/get-platform": "npm:6.17.1" - "@prisma/prisma-schema-wasm": "npm:6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac" - "@prisma/schema-engine-wasm": "npm:6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac" - "@prisma/schema-files-loader": "npm:6.17.1" + "@prisma/config": "npm:6.19.0" + "@prisma/debug": "npm:6.19.0" + "@prisma/dmmf": "npm:6.19.0" + "@prisma/driver-adapter-utils": "npm:6.19.0" + "@prisma/engines": "npm:6.19.0" + "@prisma/fetch-engine": "npm:6.19.0" + "@prisma/generator": "npm:6.19.0" + "@prisma/generator-helper": "npm:6.19.0" + "@prisma/get-platform": "npm:6.19.0" + "@prisma/prisma-schema-wasm": "npm:6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773" + "@prisma/schema-engine-wasm": "npm:6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773" + "@prisma/schema-files-loader": "npm:6.19.0" arg: "npm:5.0.2" prompts: "npm:2.4.2" peerDependencies: @@ -2786,7 +2825,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10c0/c1f8814b0be1779f93c502c8391f1a2ec485cbeb14aafad7d7c9174f2b3669757d0fe2e38be3f6f505603e6c6f4cb90d58cef7ab76b31b24f07ffcc976c23944 + checksum: 10c0/3019f840de5abebec63e7bc84b97d1e6d79c13402cc1a9538759280ddab826e82e6d33dec6ef897aebb1e60827015c12a2751f285c2f6d45396e5124c4fb80a8 languageName: node linkType: hard @@ -2817,10 +2856,10 @@ __metadata: languageName: node linkType: hard -"@prisma/prisma-schema-wasm@npm:6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac": - version: 6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac - resolution: "@prisma/prisma-schema-wasm@npm:6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac" - checksum: 10c0/ce067c1b865c040205cef454135f0f287fe649bc878e6ae757273e00a38d37417ab1c1f7ff3ff2f7e6a98eacb00cede9eef9095683cfe568c123c07157f932d2 +"@prisma/prisma-schema-wasm@npm:6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773": + version: 6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773 + resolution: "@prisma/prisma-schema-wasm@npm:6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773" + checksum: 10c0/c8bb24a676237a519810863d612b14f7b33b5b62e0a8859e5fcb6fe95bd1061916216eff43e7a0ad949eb34a81158e47fd79c71f71e101ea26bfd00be8794556 languageName: node linkType: hard @@ -2831,10 +2870,10 @@ __metadata: languageName: node linkType: hard -"@prisma/schema-engine-wasm@npm:6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac": - version: 6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac - resolution: "@prisma/schema-engine-wasm@npm:6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac" - checksum: 10c0/3ce72d197087e00b6168fe226cdf7503595630b18ad2eb9598482d61cd1c23c02a0f48723bfa42d247ebe85daa47c78a58ba04a80468ed300bb2b7f5aa36b91f +"@prisma/schema-engine-wasm@npm:6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773": + version: 6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773 + resolution: "@prisma/schema-engine-wasm@npm:6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773" + checksum: 10c0/810b707a3aff77fa8ed1f6c8179cfc4d345a3e5544e19fafcffbd4fc5eb0d265f9704ed9045ecd1b9cfc7f43349f4ee046dcd846e8307e60d8ea967ec6a4a60e languageName: node linkType: hard @@ -2845,13 +2884,13 @@ __metadata: languageName: node linkType: hard -"@prisma/schema-files-loader@npm:6.17.1": - version: 6.17.1 - resolution: "@prisma/schema-files-loader@npm:6.17.1" +"@prisma/schema-files-loader@npm:6.19.0": + version: 6.19.0 + resolution: "@prisma/schema-files-loader@npm:6.19.0" dependencies: - "@prisma/prisma-schema-wasm": "npm:6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac" + "@prisma/prisma-schema-wasm": "npm:6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773" fs-extra: "npm:11.3.0" - checksum: 10c0/c6c080101fee6a0614acfebfb0cd4b65a57fca54aab07cfe127784966f95df3bb1aa9c0e10ea8001c3f81db011c8bc4664438eee480ae51c6844665b7e7b3c0c + checksum: 10c0/8d9affa6b892c86ae45195657eb36025afc68bd3751c146f2386d1ec69c771a09f8608e80e52ef8e9e5650f114600ef15090677b08f8654ba54a573fce5e2456 languageName: node linkType: hard @@ -3030,10 +3069,10 @@ __metadata: linkType: hard "@radix-ui/react-aspect-ratio@npm:^1.1.6": - version: 1.1.7 - resolution: "@radix-ui/react-aspect-ratio@npm:1.1.7" + version: 1.1.8 + resolution: "@radix-ui/react-aspect-ratio@npm:1.1.8" dependencies: - "@radix-ui/react-primitive": "npm:2.1.3" + "@radix-ui/react-primitive": "npm:2.1.4" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -3044,16 +3083,16 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/12761718749d56393b6135e01434f8384dd05bcebf2c2fedc04f85f414174297d36531e17010df9f40aec7407c76d683e3f309ce5a39536ed1a3e03a12d08f71 + checksum: 10c0/2cf162bf59ba555b7afe564b0efd5a1e6ee28b74ef44203ff14d6d575013fad98af9452e4ecef741b278bb7186ae54883376e5b32c3d15ffb92d3dcb02830973 languageName: node linkType: hard "@radix-ui/react-avatar@npm:^1.1.9": - version: 1.1.10 - resolution: "@radix-ui/react-avatar@npm:1.1.10" + version: 1.1.11 + resolution: "@radix-ui/react-avatar@npm:1.1.11" dependencies: - "@radix-ui/react-context": "npm:1.1.2" - "@radix-ui/react-primitive": "npm:2.1.3" + "@radix-ui/react-context": "npm:1.1.3" + "@radix-ui/react-primitive": "npm:2.1.4" "@radix-ui/react-use-callback-ref": "npm:1.1.1" "@radix-ui/react-use-is-hydrated": "npm:0.1.0" "@radix-ui/react-use-layout-effect": "npm:1.1.1" @@ -3067,7 +3106,7 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/9fb0cf9a9d0fdbeaa2efda476402fc09db2e6ff9cd9aa3ea1d315d9c9579840722a4833725cb196c455e0bd775dfe04221a4f6855685ce89d2133c42e2b07e5f + checksum: 10c0/b1b3d4b11a8e05a8479d2410fb4e7b1bf825135c4cd42f7e5152568a54a55a3073bd87d50325150417a29306e7b1b371289dc3c4f11739af8a2a7bb8dd7c38c9 languageName: node linkType: hard @@ -3195,6 +3234,19 @@ __metadata: languageName: node linkType: hard +"@radix-ui/react-context@npm:1.1.3": + version: 1.1.3 + resolution: "@radix-ui/react-context@npm:1.1.3" + peerDependencies: + "@types/react": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/0f271b4100dbb007ad2675f2529453f07454f214b7ce796d72680bf2dff050d0719083ee6e8962919a74048ff853eff2e50de07d8f8c674d6be91bfa76204cc2 + languageName: node + linkType: hard + "@radix-ui/react-dialog@npm:1.1.15, @radix-ui/react-dialog@npm:^1.1.1, @radix-ui/react-dialog@npm:^1.1.13, @radix-ui/react-dialog@npm:^1.1.6": version: 1.1.15 resolution: "@radix-ui/react-dialog@npm:1.1.15" @@ -3374,10 +3426,10 @@ __metadata: linkType: hard "@radix-ui/react-label@npm:^2.1.6": - version: 2.1.7 - resolution: "@radix-ui/react-label@npm:2.1.7" + version: 2.1.8 + resolution: "@radix-ui/react-label@npm:2.1.8" dependencies: - "@radix-ui/react-primitive": "npm:2.1.3" + "@radix-ui/react-primitive": "npm:2.1.4" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -3388,7 +3440,7 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/d8c81411d5327b6db5cbf4b900bfcc52030315539911701cf8d82b4970aed80cbd66df5b62d2242859572c666cf4b0e147a8b39dc3c04bd024a4b4405e1183fe + checksum: 10c0/8b130380bd54bafb0dc652270c8cf035ceeb78faab82f78c0a76fc33cc0718e8455ff880e0db1b6c10f203ff342bf1f941544eb258c1fd85ae5b49b53cdf1a3d languageName: node linkType: hard @@ -3589,7 +3641,7 @@ __metadata: languageName: node linkType: hard -"@radix-ui/react-primitive@npm:2.1.3, @radix-ui/react-primitive@npm:^2.0.2": +"@radix-ui/react-primitive@npm:2.1.3": version: 2.1.3 resolution: "@radix-ui/react-primitive@npm:2.1.3" dependencies: @@ -3608,12 +3660,11 @@ __metadata: languageName: node linkType: hard -"@radix-ui/react-progress@npm:^1.1.6": - version: 1.1.7 - resolution: "@radix-ui/react-progress@npm:1.1.7" +"@radix-ui/react-primitive@npm:2.1.4, @radix-ui/react-primitive@npm:^2.0.2": + version: 2.1.4 + resolution: "@radix-ui/react-primitive@npm:2.1.4" dependencies: - "@radix-ui/react-context": "npm:1.1.2" - "@radix-ui/react-primitive": "npm:2.1.3" + "@radix-ui/react-slot": "npm:1.2.4" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -3624,7 +3675,27 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/bed5349682a75db02d362c07ac99fefddbbdc0152c4d5035719498223b9d490ebd834e2d9f64d498424048eb3da7eb7e55ba696e202cd0a048d6e319390e69d3 + checksum: 10c0/90d687b222a25975371ed1f9f08648d75237214b8dec4cbaf09ec9ac951339b17421278f1aff2fb7c5672ba8bd03774a94904efdba73805dd5cc947ce5be8c4a + languageName: node + linkType: hard + +"@radix-ui/react-progress@npm:^1.1.6": + version: 1.1.8 + resolution: "@radix-ui/react-progress@npm:1.1.8" + dependencies: + "@radix-ui/react-context": "npm:1.1.3" + "@radix-ui/react-primitive": "npm:2.1.4" + peerDependencies: + "@types/react": "*" + "@types/react-dom": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: 10c0/6be47bd35f168e7ed8f7b3e76d944e79d995c60596c7b8e6eb824a0a27f9e6322bb92c8eab4ae1e49c205ee75aa09e6e70570128b0af987f83c05a4d53c6c3cf languageName: node linkType: hard @@ -3750,10 +3821,10 @@ __metadata: linkType: hard "@radix-ui/react-separator@npm:^1.1.6": - version: 1.1.7 - resolution: "@radix-ui/react-separator@npm:1.1.7" + version: 1.1.8 + resolution: "@radix-ui/react-separator@npm:1.1.8" dependencies: - "@radix-ui/react-primitive": "npm:2.1.3" + "@radix-ui/react-primitive": "npm:2.1.4" peerDependencies: "@types/react": "*" "@types/react-dom": "*" @@ -3764,7 +3835,7 @@ __metadata: optional: true "@types/react-dom": optional: true - checksum: 10c0/32c0eb4fe018397efbe580542e6e33fdc09b76b96395b2bb4c55da7b6d49224b18f46143bdaf9eb6cb01e166c459fb77508a81d20a591a9034949acee5d171d9 + checksum: 10c0/92e1353f696a22167c90f2c610b440be1fae3c05128287560914f124eef83d74c06ad25431923f3595032e6d89c23d479c95434390f4c0d9d4a68ec8d563ae0c languageName: node linkType: hard @@ -3797,7 +3868,7 @@ __metadata: languageName: node linkType: hard -"@radix-ui/react-slot@npm:1.2.3, @radix-ui/react-slot@npm:^1.2.2, @radix-ui/react-slot@npm:^1.2.3": +"@radix-ui/react-slot@npm:1.2.3": version: 1.2.3 resolution: "@radix-ui/react-slot@npm:1.2.3" dependencies: @@ -3812,6 +3883,21 @@ __metadata: languageName: node linkType: hard +"@radix-ui/react-slot@npm:1.2.4, @radix-ui/react-slot@npm:^1.2.2, @radix-ui/react-slot@npm:^1.2.3": + version: 1.2.4 + resolution: "@radix-ui/react-slot@npm:1.2.4" + dependencies: + "@radix-ui/react-compose-refs": "npm:1.1.2" + peerDependencies: + "@types/react": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/8b719bb934f1ae5ac0e37214783085c17c2f1080217caf514c1c6cc3d9ca56c7e19d25470b26da79aa6e605ab36589edaade149b76f5fc0666f1063e2fc0a0dc + languageName: node + linkType: hard + "@radix-ui/react-switch@npm:^1.2.4": version: 1.2.6 resolution: "@radix-ui/react-switch@npm:1.2.6" @@ -4410,116 +4496,93 @@ __metadata: languageName: node linkType: hard -"@simplewebauthn/browser@npm:^13.0.0": - 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.2.2 - resolution: "@simplewebauthn/server@npm:13.2.2" +"@smithy/abort-controller@npm:^4.2.5": + version: 4.2.5 + resolution: "@smithy/abort-controller@npm:4.2.5" dependencies: - "@hexagon/base64": "npm:^1.1.27" - "@levischuck/tiny-cbor": "npm:^0.2.2" - "@peculiar/asn1-android": "npm:^2.3.10" - "@peculiar/asn1-ecc": "npm:^2.3.8" - "@peculiar/asn1-rsa": "npm:^2.3.8" - "@peculiar/asn1-schema": "npm:^2.3.8" - "@peculiar/asn1-x509": "npm:^2.3.8" - "@peculiar/x509": "npm:^1.13.0" - checksum: 10c0/4dbcf25fe9b33ae37add96f3c8be3489eee8cf4126f9dab0f6637c4f6c1fabc9ac3b2d337452be3e6c9908616322eb07c7f782d316c39c6f6a9567f01c6241c6 - languageName: node - linkType: hard - -"@smithy/abort-controller@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/abort-controller@npm:4.2.4" - dependencies: - "@smithy/types": "npm:^4.8.1" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/d9d15c801773c5fda8676473b3ac9dea66ff15d560613509b16888127f908f873f3d6cfe8bb610211a8332401740a8430b3706f875b78ab168a8790e9d9f3f07 + checksum: 10c0/aaca4d8a87100f4b8805bb034cae9315b9bf813a029576d3417a1a1ecd5c1d9e92907349ffaf9d6606c4fc20483ac28864565c1e6dec6f2a7d8709522c8b5290 languageName: node linkType: hard -"@smithy/config-resolver@npm:^4.4.1": - version: 4.4.1 - resolution: "@smithy/config-resolver@npm:4.4.1" +"@smithy/config-resolver@npm:^4.4.3": + version: 4.4.3 + resolution: "@smithy/config-resolver@npm:4.4.3" dependencies: - "@smithy/node-config-provider": "npm:^4.3.4" - "@smithy/types": "npm:^4.8.1" + "@smithy/node-config-provider": "npm:^4.3.5" + "@smithy/types": "npm:^4.9.0" "@smithy/util-config-provider": "npm:^4.2.0" - "@smithy/util-endpoints": "npm:^3.2.4" - "@smithy/util-middleware": "npm:^4.2.4" + "@smithy/util-endpoints": "npm:^3.2.5" + "@smithy/util-middleware": "npm:^4.2.5" tslib: "npm:^2.6.2" - checksum: 10c0/05b93ee9dc43d1ba99699ccd626efca32bc1821b2e2a655ce74bf6a96acab5a78c0bb26938e758d2710d3bbc32b8844cd7027fa8cf93fe1fc0d374c951aed5e2 + checksum: 10c0/e28844ea32776b2d2790e134bdfcb700f5a8f4bcd7aeac9869ddac635012eb2911d5abbddf36ae63703dff3af435015095b381b17a3cb4d2b1ba1c02cdc9f314 languageName: node linkType: hard -"@smithy/core@npm:^3.17.2": - version: 3.17.2 - resolution: "@smithy/core@npm:3.17.2" +"@smithy/core@npm:^3.18.5": + version: 3.18.5 + resolution: "@smithy/core@npm:3.18.5" dependencies: - "@smithy/middleware-serde": "npm:^4.2.4" - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/types": "npm:^4.8.1" + "@smithy/middleware-serde": "npm:^4.2.6" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/types": "npm:^4.9.0" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" - "@smithy/util-middleware": "npm:^4.2.4" - "@smithy/util-stream": "npm:^4.5.5" + "@smithy/util-middleware": "npm:^4.2.5" + "@smithy/util-stream": "npm:^4.5.6" "@smithy/util-utf8": "npm:^4.2.0" "@smithy/uuid": "npm:^1.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/ccef89c35ebb6b29cf5a59fa870979fd6366326a65c8cd0ea78d59444a0c0f796da058dfde7fd6fa54c43c103a48f8f124c6ae221ef8ac635a311796c254a4fd + checksum: 10c0/c6ccaf4a0639524e0141905224cbbd0142a98ee4917bc0e3e914bcc887be5f7740f1baa2717dab131f5e185fa69002d3cb5cb1a40e5a1a31c5c2c30bd946060d languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/credential-provider-imds@npm:4.2.4" +"@smithy/credential-provider-imds@npm:^4.2.5": + version: 4.2.5 + resolution: "@smithy/credential-provider-imds@npm:4.2.5" dependencies: - "@smithy/node-config-provider": "npm:^4.3.4" - "@smithy/property-provider": "npm:^4.2.4" - "@smithy/types": "npm:^4.8.1" - "@smithy/url-parser": "npm:^4.2.4" + "@smithy/node-config-provider": "npm:^4.3.5" + "@smithy/property-provider": "npm:^4.2.5" + "@smithy/types": "npm:^4.9.0" + "@smithy/url-parser": "npm:^4.2.5" tslib: "npm:^2.6.2" - checksum: 10c0/a0e9b45f821af8d35657627340e708b97ade53f449861414e9c811eafb97ff0cb75209fa21774601ae44e77eb60bcf892894c3cbe0a2a9b7327950892e8f785a + checksum: 10c0/98efbb03e75d71392baac12755c677b72bbb239b84ff3e776aabc0d192f4501d35da8b81956b48e266501eeff37d3bde56ab188fefb5422bf107a0f20bfd7674 languageName: node linkType: hard -"@smithy/fetch-http-handler@npm:^5.3.5": - version: 5.3.5 - resolution: "@smithy/fetch-http-handler@npm:5.3.5" +"@smithy/fetch-http-handler@npm:^5.3.6": + version: 5.3.6 + resolution: "@smithy/fetch-http-handler@npm:5.3.6" dependencies: - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/querystring-builder": "npm:^4.2.4" - "@smithy/types": "npm:^4.8.1" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/querystring-builder": "npm:^4.2.5" + "@smithy/types": "npm:^4.9.0" "@smithy/util-base64": "npm:^4.3.0" tslib: "npm:^2.6.2" - checksum: 10c0/a00579f5672035ee1caac743c5881ea35fdc863b84294049e6ba0a18d2e70d4386589d0c90698dbbb4886e53b8b82986426e7c7d44698a98129145123e10b8da + checksum: 10c0/8ae0401c69cf941bc2716d0372fad715f7d80e23c5aba5e30ac3abc632a02de5895a417419064324c6853857c7bcffab45fc39393cc0b46d07a11b591015a68a languageName: node linkType: hard -"@smithy/hash-node@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/hash-node@npm:4.2.4" +"@smithy/hash-node@npm:^4.2.5": + version: 4.2.5 + resolution: "@smithy/hash-node@npm:4.2.5" dependencies: - "@smithy/types": "npm:^4.8.1" + "@smithy/types": "npm:^4.9.0" "@smithy/util-buffer-from": "npm:^4.2.0" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/599805ef73d31bf55cf27c4a99ffe3d7fb2a570521b91475648b29f62ea1294f8c6568c4405c0b285a5d0be7e4b519d033eaa62214df2dcfb5c232e4d5d55502 + checksum: 10c0/e0c24b8b93be02a491303a014ba57e2bb746f3f8905df330d8a480c94480803e0f93d76cdbc3d8229b7673a22e68b23ee6f5ce4d6db1ac2c427cc36e804fedcf languageName: node linkType: hard -"@smithy/invalid-dependency@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/invalid-dependency@npm:4.2.4" +"@smithy/invalid-dependency@npm:^4.2.5": + version: 4.2.5 + resolution: "@smithy/invalid-dependency@npm:4.2.5" dependencies: - "@smithy/types": "npm:^4.8.1" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/2f8e2147090f98a6a4bfd674d31135270e31086cb27bb7e9f1251f795aee20003426f185077c463b698d1c7554b23048da733591c6066aef4cc9d2de91f8649f + checksum: 10c0/0b3e7608d3c145ad557c04eb5b0f7f10dd93f5eaf1d36b724b0e4ff3c3f500893e19b8ecf02ede4822bc36c049a4e03b69890a37e776a4ac6cfcc8e2f6fa843e languageName: node linkType: hard @@ -4541,204 +4604,204 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-content-length@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/middleware-content-length@npm:4.2.4" +"@smithy/middleware-content-length@npm:^4.2.5": + version: 4.2.5 + resolution: "@smithy/middleware-content-length@npm:4.2.5" dependencies: - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/types": "npm:^4.8.1" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/a7b2b68b0ce05a8625c19daa0716022094be41995922e07d2251ff1d4ab436c735c53e5bd494835c714a0ce5c892fe56b5c355459e04fee47e674c4fcc6ebf3a + checksum: 10c0/672a29ab57b80dcebd841624c6a762980b17dc658ca0f7c948c0739fedacf3c6a43d0c3f63e79f13aa4069d9fb1f52266bcd5980d9e6907b2f62b918c286b861 languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^4.3.6": - version: 4.3.6 - resolution: "@smithy/middleware-endpoint@npm:4.3.6" +"@smithy/middleware-endpoint@npm:^4.3.12": + version: 4.3.12 + resolution: "@smithy/middleware-endpoint@npm:4.3.12" dependencies: - "@smithy/core": "npm:^3.17.2" - "@smithy/middleware-serde": "npm:^4.2.4" - "@smithy/node-config-provider": "npm:^4.3.4" - "@smithy/shared-ini-file-loader": "npm:^4.3.4" - "@smithy/types": "npm:^4.8.1" - "@smithy/url-parser": "npm:^4.2.4" - "@smithy/util-middleware": "npm:^4.2.4" + "@smithy/core": "npm:^3.18.5" + "@smithy/middleware-serde": "npm:^4.2.6" + "@smithy/node-config-provider": "npm:^4.3.5" + "@smithy/shared-ini-file-loader": "npm:^4.4.0" + "@smithy/types": "npm:^4.9.0" + "@smithy/url-parser": "npm:^4.2.5" + "@smithy/util-middleware": "npm:^4.2.5" tslib: "npm:^2.6.2" - checksum: 10c0/265bf22c72185a5b4c572c233a92db01ca7a5eaea77a9fd575106a89a7be16467bdc049bb36d5bb30235360dc64fc5b6562782c55385599e37d60ce7c917d224 + checksum: 10c0/0bfb1d825d15eed389e603e547aab134c8064c3e82fad9241f721d0f896d2f3490516d8b0a845869c78a1d071040df26cd4e3234b171bab130f0da13cb4f2a94 languageName: node linkType: hard -"@smithy/middleware-retry@npm:^4.4.6": - version: 4.4.6 - resolution: "@smithy/middleware-retry@npm:4.4.6" +"@smithy/middleware-retry@npm:^4.4.12": + version: 4.4.12 + resolution: "@smithy/middleware-retry@npm:4.4.12" dependencies: - "@smithy/node-config-provider": "npm:^4.3.4" - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/service-error-classification": "npm:^4.2.4" - "@smithy/smithy-client": "npm:^4.9.2" - "@smithy/types": "npm:^4.8.1" - "@smithy/util-middleware": "npm:^4.2.4" - "@smithy/util-retry": "npm:^4.2.4" + "@smithy/node-config-provider": "npm:^4.3.5" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/service-error-classification": "npm:^4.2.5" + "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/types": "npm:^4.9.0" + "@smithy/util-middleware": "npm:^4.2.5" + "@smithy/util-retry": "npm:^4.2.5" "@smithy/uuid": "npm:^1.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/2dbfe3b7125af53651427b37f0264ccca80064153e7055f90a5294f2a2e872e1c15139d394938f78f14b14d36cb0cab2d20da74e4812d10959205099e04e3885 + checksum: 10c0/3c958a58c6346b07d3d1231e4835754fe159f4697bb2b8d8a0e173ec9325e92d5e73a21b1f8f7854b390fc5a5715c44a44a50ea389c17edf95178a8173d819c4 languageName: node linkType: hard -"@smithy/middleware-serde@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/middleware-serde@npm:4.2.4" +"@smithy/middleware-serde@npm:^4.2.6": + version: 4.2.6 + resolution: "@smithy/middleware-serde@npm:4.2.6" dependencies: - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/types": "npm:^4.8.1" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/ea61bf4a281ec58363a0940115a42eee4fdd90491ac0c32e3d217f815b8cf52b257732f6c43d0abdab18e9bb77af2d216c3a1c2cdfc66fb223f7e67e8b14325c + checksum: 10c0/c7b4f806f3664573f119b35b91f4adaa62ec2501bae37133ca5837b24a879514812c0820345340a3281374307bd4f468c0da058c2fe0b854baa5db114403326a languageName: node linkType: hard -"@smithy/middleware-stack@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/middleware-stack@npm:4.2.4" +"@smithy/middleware-stack@npm:^4.2.5": + version: 4.2.5 + resolution: "@smithy/middleware-stack@npm:4.2.5" dependencies: - "@smithy/types": "npm:^4.8.1" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/95dd4239b461a510b454c9462b66dd1738b97c4b3a0e424addf64b811b05f93470274fb85b1298fca5e590a76be77da440250bd4fe08cb08cb714371a45a3110 + checksum: 10c0/c88476053920bb54dbf0c407b22cf5e17f497def265ee6bbdacd559144acb3142082e9f5439745da3d96655aa0aafdbb33cab14ba02ec4c3b108eab512c612b8 languageName: node linkType: hard -"@smithy/node-config-provider@npm:^4.3.4": - version: 4.3.4 - resolution: "@smithy/node-config-provider@npm:4.3.4" +"@smithy/node-config-provider@npm:^4.3.5": + version: 4.3.5 + resolution: "@smithy/node-config-provider@npm:4.3.5" dependencies: - "@smithy/property-provider": "npm:^4.2.4" - "@smithy/shared-ini-file-loader": "npm:^4.3.4" - "@smithy/types": "npm:^4.8.1" + "@smithy/property-provider": "npm:^4.2.5" + "@smithy/shared-ini-file-loader": "npm:^4.4.0" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/94087cb14acebc2e7cf3150d00731679dcbdd9204cd5fff612b1bee01c71bee94d6d5de037a2ee0279a68f0f7d6051105613449bd2ba7ff3b32fa63ce21aa182 + checksum: 10c0/433eb6cab0a96fc7391351925098954265f630986777a0443f8e05f1d22b5b5ebba62cb26c4d9d0989eb747a0c4921bfa833593872715810cabc3998cf5e2816 languageName: node linkType: hard -"@smithy/node-http-handler@npm:^4.4.4": - version: 4.4.4 - resolution: "@smithy/node-http-handler@npm:4.4.4" +"@smithy/node-http-handler@npm:^4.4.5": + version: 4.4.5 + resolution: "@smithy/node-http-handler@npm:4.4.5" dependencies: - "@smithy/abort-controller": "npm:^4.2.4" - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/querystring-builder": "npm:^4.2.4" - "@smithy/types": "npm:^4.8.1" + "@smithy/abort-controller": "npm:^4.2.5" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/querystring-builder": "npm:^4.2.5" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/c1c07ce92b62d351f3bfc26a8a8c5dfb2a77a5df1a84171e2dfa37fb2ef52d90305d97d1824f0a007b7484e733953d1933c7e6f529617a33f6b78b5b2c3f4f96 + checksum: 10c0/5385f20466e4ecf7e7fd9b1309077820fa65e213b806fce4ec08191c9af216da03bae6e03c5860fedf6d87c5aeba660721e1c4e0114a1d1a5d8a1cf840c30604 languageName: node linkType: hard -"@smithy/property-provider@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/property-provider@npm:4.2.4" +"@smithy/property-provider@npm:^4.2.5": + version: 4.2.5 + resolution: "@smithy/property-provider@npm:4.2.5" dependencies: - "@smithy/types": "npm:^4.8.1" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/bdd3b930a3871653b1f8571203a80f639863a58269e9248451468a2bd966d6f654af9afebaccda16de02d570ea651961239fe071b2eae75ded3e2ffa1781fe4b + checksum: 10c0/bea8cf1758e90779476b5a44d722a63a658bee27a00e2f4f2b0b6e96ee14e2e66e3a23674c51619eb00c0472592a1d658249d7ee79cf19847ac10c698b3b67af languageName: node linkType: hard -"@smithy/protocol-http@npm:^5.3.4": - version: 5.3.4 - resolution: "@smithy/protocol-http@npm:5.3.4" +"@smithy/protocol-http@npm:^5.3.5": + version: 5.3.5 + resolution: "@smithy/protocol-http@npm:5.3.5" dependencies: - "@smithy/types": "npm:^4.8.1" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/7a5a4e4f427215bfcad19e97652d597bae03b90f2e1fd9abbffc7cc7a88ca8034dd690977fe12dc9574682917c7c988d8852c12fa9477f6373edcb1504345cca + checksum: 10c0/15e6bfbf39a8740b5cce729b84d470835887442f0f662325eb55d1f02d8d790772595446bb7f776d2852ca6f6ff67d7a9f45a3eab0bc757997c82564a483f3dc languageName: node linkType: hard -"@smithy/querystring-builder@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/querystring-builder@npm:4.2.4" +"@smithy/querystring-builder@npm:^4.2.5": + version: 4.2.5 + resolution: "@smithy/querystring-builder@npm:4.2.5" dependencies: - "@smithy/types": "npm:^4.8.1" + "@smithy/types": "npm:^4.9.0" "@smithy/util-uri-escape": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/07516146deb8ed476742c51c39a5b4ea3db2cd5731ab98f3b5c2202f24ea0414850252b643fcfbed36f04db7dbc97a8209c20c109306a6fb5bd3f75219d027bd + checksum: 10c0/1dbbf4792a90c7f4c3948526200a61b83c0444d86da6b925501611c11c4a12bdfe7e1870e66c10353128821cf5f9fedb509af85deb6c2015be0ef298a6d03972 languageName: node linkType: hard -"@smithy/querystring-parser@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/querystring-parser@npm:4.2.4" +"@smithy/querystring-parser@npm:^4.2.5": + version: 4.2.5 + resolution: "@smithy/querystring-parser@npm:4.2.5" dependencies: - "@smithy/types": "npm:^4.8.1" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/b0d3fc8e16e3df21c83857740b5130d8d262879e5aba3f835e5eb3e9e86df49b0c08cd1bb621c7971ddd28702af2bcf31fb1f1954dcdba62247b4d820a081d0c + checksum: 10c0/83c4200282469791a3266d8f44c6ce9128b0adb42ee9f097bac31fafa5bb62eb1cfcab29ff0641fe48d2585089109633eb1d99151dc91e4879dae563898fecdc languageName: node linkType: hard -"@smithy/service-error-classification@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/service-error-classification@npm:4.2.4" +"@smithy/service-error-classification@npm:^4.2.5": + version: 4.2.5 + resolution: "@smithy/service-error-classification@npm:4.2.5" dependencies: - "@smithy/types": "npm:^4.8.1" - checksum: 10c0/56c68c8968ec7fd858c4676202ec3342d12993ab97f429c9ea8a32e334c9456af0ecea02e4b4b03ed23f6f69bdea40228360849bfa1b6cf1a5def0699864bb97 + "@smithy/types": "npm:^4.9.0" + checksum: 10c0/d1a3ef99b4474ad71cd6279e581e174fd5421646618360200350c4d346b2227ddae14a71a88c32442e88b1261ed080e87df6b3d34298833be6cf5db95d266db4 languageName: node linkType: hard -"@smithy/shared-ini-file-loader@npm:^4.3.4": - version: 4.3.4 - resolution: "@smithy/shared-ini-file-loader@npm:4.3.4" +"@smithy/shared-ini-file-loader@npm:^4.4.0": + version: 4.4.0 + resolution: "@smithy/shared-ini-file-loader@npm:4.4.0" dependencies: - "@smithy/types": "npm:^4.8.1" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/7d6d999ffd21230db8639d067c5ad7533be5d55ffdd73f61efe68151b326c1d6ce93daae98f83f6978997cfa99e9297b41bc67896b29fd7c95cc2071d71acab4 + checksum: 10c0/a674622375df25685e793b0c777e856f439a79614240445b7f5982b263b5525f6f6f2c02ab4058db7e6a8988d9b1809181cc70bf4d06ea2a71608fecad6ea6d1 languageName: node linkType: hard -"@smithy/signature-v4@npm:^5.3.4": - version: 5.3.4 - resolution: "@smithy/signature-v4@npm:5.3.4" +"@smithy/signature-v4@npm:^5.3.5": + version: 5.3.5 + resolution: "@smithy/signature-v4@npm:5.3.5" dependencies: "@smithy/is-array-buffer": "npm:^4.2.0" - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/types": "npm:^4.8.1" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/types": "npm:^4.9.0" "@smithy/util-hex-encoding": "npm:^4.2.0" - "@smithy/util-middleware": "npm:^4.2.4" + "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-uri-escape": "npm:^4.2.0" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/b0685709c58cb4199396bd91c53d4ad3935b2f0f13b39855b12c6ab215d3cf8fc810427385fcc2c462c7e621357c2663f1dec8d46f1cb2374ad855ebe54d9a9a + checksum: 10c0/e4e8f28fc53f9609f5d290d2f94f0736713a5269061b959e6be6da3ed2ef58511ba56c2727b4557349ae5201c0879555a28df4bd717e6d1789a52a678deef876 languageName: node linkType: hard -"@smithy/smithy-client@npm:^4.9.2": - version: 4.9.2 - resolution: "@smithy/smithy-client@npm:4.9.2" +"@smithy/smithy-client@npm:^4.9.8": + version: 4.9.8 + resolution: "@smithy/smithy-client@npm:4.9.8" dependencies: - "@smithy/core": "npm:^3.17.2" - "@smithy/middleware-endpoint": "npm:^4.3.6" - "@smithy/middleware-stack": "npm:^4.2.4" - "@smithy/protocol-http": "npm:^5.3.4" - "@smithy/types": "npm:^4.8.1" - "@smithy/util-stream": "npm:^4.5.5" + "@smithy/core": "npm:^3.18.5" + "@smithy/middleware-endpoint": "npm:^4.3.12" + "@smithy/middleware-stack": "npm:^4.2.5" + "@smithy/protocol-http": "npm:^5.3.5" + "@smithy/types": "npm:^4.9.0" + "@smithy/util-stream": "npm:^4.5.6" tslib: "npm:^2.6.2" - checksum: 10c0/40dd96d527680c4e33b7836154968f093301a1462b35ddfb8c919c92a1d4db94d5e7ee5a476697ec5a4be378be7fa99f6dfb7c94718697500f6f149ed6f09ff5 + checksum: 10c0/42752686da591865cea0f5f7379eb729bdba003ddf59cfc05368e4155b350d6499772426e66b32c9e9af003fe1eb812170652a5d0f996097df4411c722120852 languageName: node linkType: hard -"@smithy/types@npm:^4.8.1": - version: 4.8.1 - resolution: "@smithy/types@npm:4.8.1" +"@smithy/types@npm:^4.9.0": + version: 4.9.0 + resolution: "@smithy/types@npm:4.9.0" dependencies: tslib: "npm:^2.6.2" - checksum: 10c0/517f90a32f19f867456b253d99ab9d96b680bde8dd19129e7e7cabf355e8082d8d25ece561fef68a73a1d961155dedc30d44194e25232ed05005399aa5962195 + checksum: 10c0/7068428d2e98eafb7f7e03d10f919ae0e7ea2f339b5afca1631be3d6a6cb3512d5dc57ca95d4dab533a3ad587eeba3a1c77305eb4e563fbc067abda170482ff5 languageName: node linkType: hard -"@smithy/url-parser@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/url-parser@npm:4.2.4" +"@smithy/url-parser@npm:^4.2.5": + version: 4.2.5 + resolution: "@smithy/url-parser@npm:4.2.5" dependencies: - "@smithy/querystring-parser": "npm:^4.2.4" - "@smithy/types": "npm:^4.8.1" + "@smithy/querystring-parser": "npm:^4.2.5" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/725b23f8a8b24bf444486dfefc29b3000e29a0ff98140304ddc8a25ab493ea2084cac942dca85e1299baab96e30bfeaafe8bd8dccb77e8d9579e93672272a6a9 + checksum: 10c0/1d8241eeaaaa6401e1de670c2ebcd3992f9abb175f399c92aec1b30de81ce8023f66e0b7079be966b0a891c878a798d4cb08a09f410bcb795799e8ae9057e99a languageName: node linkType: hard @@ -4800,41 +4863,41 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^4.3.5": - version: 4.3.5 - resolution: "@smithy/util-defaults-mode-browser@npm:4.3.5" +"@smithy/util-defaults-mode-browser@npm:^4.3.11": + version: 4.3.11 + resolution: "@smithy/util-defaults-mode-browser@npm:4.3.11" dependencies: - "@smithy/property-provider": "npm:^4.2.4" - "@smithy/smithy-client": "npm:^4.9.2" - "@smithy/types": "npm:^4.8.1" + "@smithy/property-provider": "npm:^4.2.5" + "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/0c3e73f4437517c4c3d2b6abe5129b1b69dc16d0129be146948950cc52b91269cf978a711f52c833e37c7efb95ec1b3bd7412adf75fd9341ffab337907dddcc8 + checksum: 10c0/ec5601922356a7249448007d03036e9ffc9ddede5f2567f5de2a826a2dc18c1f27c038543eae96a58837a248f412fbb67c965cc43e1029a2519e8440760e790f languageName: node linkType: hard -"@smithy/util-defaults-mode-node@npm:^4.2.7": - version: 4.2.7 - resolution: "@smithy/util-defaults-mode-node@npm:4.2.7" +"@smithy/util-defaults-mode-node@npm:^4.2.14": + version: 4.2.14 + resolution: "@smithy/util-defaults-mode-node@npm:4.2.14" dependencies: - "@smithy/config-resolver": "npm:^4.4.1" - "@smithy/credential-provider-imds": "npm:^4.2.4" - "@smithy/node-config-provider": "npm:^4.3.4" - "@smithy/property-provider": "npm:^4.2.4" - "@smithy/smithy-client": "npm:^4.9.2" - "@smithy/types": "npm:^4.8.1" + "@smithy/config-resolver": "npm:^4.4.3" + "@smithy/credential-provider-imds": "npm:^4.2.5" + "@smithy/node-config-provider": "npm:^4.3.5" + "@smithy/property-provider": "npm:^4.2.5" + "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/554a7fdd92d318b19496baea14d95c3fd9a42a888b423195683fde0c9b3204d0e7fd9e6307cee2f1a630def8bfe54264537acb85477719c36a0479c857d76ef9 + checksum: 10c0/965860eddf4f73de7574060bc717a8ca27591456ca0cd36f114ceab2ba5a05cb53931b40088642bc866e3bde9f812bb60b5a12ff04fe1820d059b362a9443a41 languageName: node linkType: hard -"@smithy/util-endpoints@npm:^3.2.4": - version: 3.2.4 - resolution: "@smithy/util-endpoints@npm:3.2.4" +"@smithy/util-endpoints@npm:^3.2.5": + version: 3.2.5 + resolution: "@smithy/util-endpoints@npm:3.2.5" dependencies: - "@smithy/node-config-provider": "npm:^4.3.4" - "@smithy/types": "npm:^4.8.1" + "@smithy/node-config-provider": "npm:^4.3.5" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/72d47d652501eca0eaae70707f52781144bd478eb2ae47de1dd85000890914e26bd26d89f362853849e20b1b3e8a8812b37d675e6e464136f4c51958592d0187 + checksum: 10c0/919767b499062d804938471ff02220b74662bf0fc9b7ecf7e7aa6c29f8a23bbc9c68c53718c4bc70c802f7917e4729a37a95c63a3990904047352e36183ddae3 languageName: node linkType: hard @@ -4847,40 +4910,40 @@ __metadata: languageName: node linkType: hard -"@smithy/util-middleware@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/util-middleware@npm:4.2.4" +"@smithy/util-middleware@npm:^4.2.5": + version: 4.2.5 + resolution: "@smithy/util-middleware@npm:4.2.5" dependencies: - "@smithy/types": "npm:^4.8.1" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/0d9a9e4df6bdc28e4e2cb5c8e8b31fb406d0e2f74a9f07b16b59084dfb412656ca9fe2f8225a5d859e20a16e04353543d2531918b9c9439001d479d76f62d4ec + checksum: 10c0/6b05a986ec2b992e3dc016148394e812064e33f0d70f30a57c9e2ae419cb7215a16430e2afff683abdf72cb686b06e43d0afa3a86abc72fbaa130976a7e2bbfb languageName: node linkType: hard -"@smithy/util-retry@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/util-retry@npm:4.2.4" +"@smithy/util-retry@npm:^4.2.5": + version: 4.2.5 + resolution: "@smithy/util-retry@npm:4.2.5" dependencies: - "@smithy/service-error-classification": "npm:^4.2.4" - "@smithy/types": "npm:^4.8.1" + "@smithy/service-error-classification": "npm:^4.2.5" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/6cc07d33c5be871727107119e810b7ba6fe88c05595da66bc6a600608a366d9c2a3b36068eb7494ab4b07542c8769e77ce78914d02c059c5bedb14caafd39aaf + checksum: 10c0/3b330df346de40bdc49356f3fdf7164adefbd2b45d4beed6fd7d655569c2dcb1f52a7fd77d7a9ace8f6eeed9f5612cb02a60f66463972f934fae347e20c97b14 languageName: node linkType: hard -"@smithy/util-stream@npm:^4.5.5": - version: 4.5.5 - resolution: "@smithy/util-stream@npm:4.5.5" +"@smithy/util-stream@npm:^4.5.6": + version: 4.5.6 + resolution: "@smithy/util-stream@npm:4.5.6" dependencies: - "@smithy/fetch-http-handler": "npm:^5.3.5" - "@smithy/node-http-handler": "npm:^4.4.4" - "@smithy/types": "npm:^4.8.1" + "@smithy/fetch-http-handler": "npm:^5.3.6" + "@smithy/node-http-handler": "npm:^4.4.5" + "@smithy/types": "npm:^4.9.0" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-buffer-from": "npm:^4.2.0" "@smithy/util-hex-encoding": "npm:^4.2.0" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/d8cc3931a4792c4a8263227418be1a5853081b8718180f065ac0bff3b1018e57199c1d4e3cde57a027e61e7fc531f8d8b9bbad8a0c77138595d72ce88dbffeea + checksum: 10c0/42bb6f834b3f617cf2e421450cf43f7259c1cc4cd7c7ad230e4c929fed265ef7b9f3610977df497115978f3d7a80d569ea1abbbef8d595e6b2e1a4ccca3a37fa languageName: node linkType: hard @@ -4913,14 +4976,14 @@ __metadata: languageName: node linkType: hard -"@smithy/util-waiter@npm:^4.2.4": - version: 4.2.4 - resolution: "@smithy/util-waiter@npm:4.2.4" +"@smithy/util-waiter@npm:^4.2.5": + version: 4.2.5 + resolution: "@smithy/util-waiter@npm:4.2.5" dependencies: - "@smithy/abort-controller": "npm:^4.2.4" - "@smithy/types": "npm:^4.8.1" + "@smithy/abort-controller": "npm:^4.2.5" + "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/ceae65ea783dc5737c0e762a5fc250e49163634b0b5372831dc842904f98b4075614f1b4ca341464af87c0c68ac241a8ea5b4823fcc22cae38d5eb98b90fa8d9 + checksum: 10c0/5d822613ab32e95f4c69ac3f1763a14eb88965ae26c589d45b7921ecd849f0c38cd7aea2a0c3651ac2345699e67d86076595178a015516fd385ecb028a7afedf languageName: node linkType: hard @@ -5007,90 +5070,90 @@ __metadata: languageName: node linkType: hard -"@tailwindcss/node@npm:4.1.16": - version: 4.1.16 - resolution: "@tailwindcss/node@npm:4.1.16" +"@tailwindcss/node@npm:4.1.17": + version: 4.1.17 + resolution: "@tailwindcss/node@npm:4.1.17" dependencies: "@jridgewell/remapping": "npm:^2.3.4" enhanced-resolve: "npm:^5.18.3" jiti: "npm:^2.6.1" lightningcss: "npm:1.30.2" - magic-string: "npm:^0.30.19" + magic-string: "npm:^0.30.21" source-map-js: "npm:^1.2.1" - tailwindcss: "npm:4.1.16" - checksum: 10c0/ab8dcaa8328fa838cacf43656c82ea4e22fe3c44210633c86a0c4989b62ccd93338d45bdd8eb5bd096093678c73f83ebeb2ae0103cf80a1af50eddcb54cf762a + tailwindcss: "npm:4.1.17" + checksum: 10c0/80b542e9b7eb09499dd14d65fd7d9544321d6bcdc00d29914396001d00e009906392cf493d20cc655dfd42769c823060cb9bf2eacacb43838a47e897634a446b languageName: node linkType: hard -"@tailwindcss/oxide-android-arm64@npm:4.1.16": - version: 4.1.16 - resolution: "@tailwindcss/oxide-android-arm64@npm:4.1.16" +"@tailwindcss/oxide-android-arm64@npm:4.1.17": + version: 4.1.17 + resolution: "@tailwindcss/oxide-android-arm64@npm:4.1.17" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@tailwindcss/oxide-darwin-arm64@npm:4.1.16": - version: 4.1.16 - resolution: "@tailwindcss/oxide-darwin-arm64@npm:4.1.16" +"@tailwindcss/oxide-darwin-arm64@npm:4.1.17": + version: 4.1.17 + resolution: "@tailwindcss/oxide-darwin-arm64@npm:4.1.17" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@tailwindcss/oxide-darwin-x64@npm:4.1.16": - version: 4.1.16 - resolution: "@tailwindcss/oxide-darwin-x64@npm:4.1.16" +"@tailwindcss/oxide-darwin-x64@npm:4.1.17": + version: 4.1.17 + resolution: "@tailwindcss/oxide-darwin-x64@npm:4.1.17" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@tailwindcss/oxide-freebsd-x64@npm:4.1.16": - version: 4.1.16 - resolution: "@tailwindcss/oxide-freebsd-x64@npm:4.1.16" +"@tailwindcss/oxide-freebsd-x64@npm:4.1.17": + version: 4.1.17 + resolution: "@tailwindcss/oxide-freebsd-x64@npm:4.1.17" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.1.16": - version: 4.1.16 - resolution: "@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.1.16" +"@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.1.17": + version: 4.1.17 + resolution: "@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.1.17" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@tailwindcss/oxide-linux-arm64-gnu@npm:4.1.16": - version: 4.1.16 - resolution: "@tailwindcss/oxide-linux-arm64-gnu@npm:4.1.16" +"@tailwindcss/oxide-linux-arm64-gnu@npm:4.1.17": + version: 4.1.17 + resolution: "@tailwindcss/oxide-linux-arm64-gnu@npm:4.1.17" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@tailwindcss/oxide-linux-arm64-musl@npm:4.1.16": - version: 4.1.16 - resolution: "@tailwindcss/oxide-linux-arm64-musl@npm:4.1.16" +"@tailwindcss/oxide-linux-arm64-musl@npm:4.1.17": + version: 4.1.17 + resolution: "@tailwindcss/oxide-linux-arm64-musl@npm:4.1.17" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@tailwindcss/oxide-linux-x64-gnu@npm:4.1.16": - version: 4.1.16 - resolution: "@tailwindcss/oxide-linux-x64-gnu@npm:4.1.16" +"@tailwindcss/oxide-linux-x64-gnu@npm:4.1.17": + version: 4.1.17 + resolution: "@tailwindcss/oxide-linux-x64-gnu@npm:4.1.17" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@tailwindcss/oxide-linux-x64-musl@npm:4.1.16": - version: 4.1.16 - resolution: "@tailwindcss/oxide-linux-x64-musl@npm:4.1.16" +"@tailwindcss/oxide-linux-x64-musl@npm:4.1.17": + version: 4.1.17 + resolution: "@tailwindcss/oxide-linux-x64-musl@npm:4.1.17" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@tailwindcss/oxide-wasm32-wasi@npm:4.1.16": - version: 4.1.16 - resolution: "@tailwindcss/oxide-wasm32-wasi@npm:4.1.16" +"@tailwindcss/oxide-wasm32-wasi@npm:4.1.17": + version: 4.1.17 + resolution: "@tailwindcss/oxide-wasm32-wasi@npm:4.1.17" dependencies: - "@emnapi/core": "npm:^1.5.0" - "@emnapi/runtime": "npm:^1.5.0" + "@emnapi/core": "npm:^1.6.0" + "@emnapi/runtime": "npm:^1.6.0" "@emnapi/wasi-threads": "npm:^1.1.0" "@napi-rs/wasm-runtime": "npm:^1.0.7" "@tybys/wasm-util": "npm:^0.10.1" @@ -5099,36 +5162,36 @@ __metadata: languageName: node linkType: hard -"@tailwindcss/oxide-win32-arm64-msvc@npm:4.1.16": - version: 4.1.16 - resolution: "@tailwindcss/oxide-win32-arm64-msvc@npm:4.1.16" +"@tailwindcss/oxide-win32-arm64-msvc@npm:4.1.17": + version: 4.1.17 + resolution: "@tailwindcss/oxide-win32-arm64-msvc@npm:4.1.17" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@tailwindcss/oxide-win32-x64-msvc@npm:4.1.16": - version: 4.1.16 - resolution: "@tailwindcss/oxide-win32-x64-msvc@npm:4.1.16" +"@tailwindcss/oxide-win32-x64-msvc@npm:4.1.17": + version: 4.1.17 + resolution: "@tailwindcss/oxide-win32-x64-msvc@npm:4.1.17" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@tailwindcss/oxide@npm:4.1.16": - version: 4.1.16 - resolution: "@tailwindcss/oxide@npm:4.1.16" +"@tailwindcss/oxide@npm:4.1.17": + version: 4.1.17 + resolution: "@tailwindcss/oxide@npm:4.1.17" dependencies: - "@tailwindcss/oxide-android-arm64": "npm:4.1.16" - "@tailwindcss/oxide-darwin-arm64": "npm:4.1.16" - "@tailwindcss/oxide-darwin-x64": "npm:4.1.16" - "@tailwindcss/oxide-freebsd-x64": "npm:4.1.16" - "@tailwindcss/oxide-linux-arm-gnueabihf": "npm:4.1.16" - "@tailwindcss/oxide-linux-arm64-gnu": "npm:4.1.16" - "@tailwindcss/oxide-linux-arm64-musl": "npm:4.1.16" - "@tailwindcss/oxide-linux-x64-gnu": "npm:4.1.16" - "@tailwindcss/oxide-linux-x64-musl": "npm:4.1.16" - "@tailwindcss/oxide-wasm32-wasi": "npm:4.1.16" - "@tailwindcss/oxide-win32-arm64-msvc": "npm:4.1.16" - "@tailwindcss/oxide-win32-x64-msvc": "npm:4.1.16" + "@tailwindcss/oxide-android-arm64": "npm:4.1.17" + "@tailwindcss/oxide-darwin-arm64": "npm:4.1.17" + "@tailwindcss/oxide-darwin-x64": "npm:4.1.17" + "@tailwindcss/oxide-freebsd-x64": "npm:4.1.17" + "@tailwindcss/oxide-linux-arm-gnueabihf": "npm:4.1.17" + "@tailwindcss/oxide-linux-arm64-gnu": "npm:4.1.17" + "@tailwindcss/oxide-linux-arm64-musl": "npm:4.1.17" + "@tailwindcss/oxide-linux-x64-gnu": "npm:4.1.17" + "@tailwindcss/oxide-linux-x64-musl": "npm:4.1.17" + "@tailwindcss/oxide-wasm32-wasi": "npm:4.1.17" + "@tailwindcss/oxide-win32-arm64-msvc": "npm:4.1.17" + "@tailwindcss/oxide-win32-x64-msvc": "npm:4.1.17" dependenciesMeta: "@tailwindcss/oxide-android-arm64": optional: true @@ -5154,38 +5217,38 @@ __metadata: optional: true "@tailwindcss/oxide-win32-x64-msvc": optional: true - checksum: 10c0/b54912cd403f4ccfa623f7a6983d7951cc774895efbdb13811e4320a904249f091bd0b2481178c2a67d53f7aee928a08ac6a623227f4041f1bc30c9a738172af + checksum: 10c0/cdd292760dde90976ac5cd486600687f9ac4043d9796001b356d43bfc4d0e1972d23844fe045970afdc4b4cda8451f262db15a9da4152c26e2b696a985e3686c languageName: node linkType: hard "@tailwindcss/postcss@npm:^4.1.7": - version: 4.1.16 - resolution: "@tailwindcss/postcss@npm:4.1.16" + version: 4.1.17 + resolution: "@tailwindcss/postcss@npm:4.1.17" dependencies: "@alloc/quick-lru": "npm:^5.2.0" - "@tailwindcss/node": "npm:4.1.16" - "@tailwindcss/oxide": "npm:4.1.16" + "@tailwindcss/node": "npm:4.1.17" + "@tailwindcss/oxide": "npm:4.1.17" postcss: "npm:^8.4.41" - tailwindcss: "npm:4.1.16" - checksum: 10c0/16a96cbf9234df162df5e06bcbe12256d00d36eb01158cc69818589dd614e41c324e4dcdea06523e1e25c4ee7d509b62747f032c981ed057a304473db65115ca + tailwindcss: "npm:4.1.17" + checksum: 10c0/76094f601aadd556aad59ad13613b22b9edfda5d8fdc0724a79b8331b27dbac121c0d33b5b65f94468c01290c58f261dd1d8553dde0d261cd4d18b6110aa2242 languageName: node linkType: hard -"@tanstack/query-core@npm:5.90.6": - version: 5.90.6 - resolution: "@tanstack/query-core@npm:5.90.6" - checksum: 10c0/2523cd4d9bc4d9fc1a828b15923c44046004fb1c4322f8c211ff4c153914bc776a356a476f499127cfee3fc89b101ac64f93b352aa761bd349c3a8e0de33d792 +"@tanstack/query-core@npm:5.90.11": + version: 5.90.11 + resolution: "@tanstack/query-core@npm:5.90.11" + checksum: 10c0/c2e44f36cec8957ec382ebcacb955bbb2112d03d475414f041194d05b7256d9ea1cc813eca7095033d36af0ba02c397aa646d976b428ff15b897b025ac53b3e9 languageName: node linkType: hard "@tanstack/react-query@npm:^5.76.1": - version: 5.90.6 - resolution: "@tanstack/react-query@npm:5.90.6" + version: 5.90.11 + resolution: "@tanstack/react-query@npm:5.90.11" dependencies: - "@tanstack/query-core": "npm:5.90.6" + "@tanstack/query-core": "npm:5.90.11" peerDependencies: react: ^18 || ^19 - checksum: 10c0/0cde819c41d3f02dccc443786c3aeb6e0a6135365ef127dd8e5bb25d65837b0b12b011c6700c14df1f866a1d65d57a6f4a00abf2ddac31543d68b4963ca80d1a + checksum: 10c0/2e4b73903c2445672996cfeca69985e92055870594a8b64cc8b960d756d199a023b6cceb9548525ea8cf3f3a1986b5bc3e3ec8d0722615c6ac9ed1478c604b02 languageName: node linkType: hard @@ -5378,11 +5441,11 @@ __metadata: linkType: hard "@types/node@npm:*, @types/node@npm:>=10.0.0, @types/node@npm:>=13.7.0": - version: 24.10.0 - resolution: "@types/node@npm:24.10.0" + version: 24.10.1 + resolution: "@types/node@npm:24.10.1" dependencies: undici-types: "npm:~7.16.0" - checksum: 10c0/f82ed7194e16f5590ef7afdc20c6d09068c76d50278b485ede8f0c5749683536e3064ffa8def8db76915196afb3724b854aa5723c64d6571b890b14492943b46 + checksum: 10c0/d6bca7a78f550fbb376f236f92b405d676003a8a09a1b411f55920ef34286ee3ee51f566203920e835478784df52662b5b2af89159d9d319352e9ea21801c002 languageName: node linkType: hard @@ -5396,20 +5459,20 @@ __metadata: linkType: hard "@types/node@npm:^20.12.7": - version: 20.19.24 - resolution: "@types/node@npm:20.19.24" + version: 20.19.25 + resolution: "@types/node@npm:20.19.25" dependencies: undici-types: "npm:~6.21.0" - checksum: 10c0/c872ce80a1e832fe035a3c94a27acb2d6e45ffa1209c0241ac6e2d405db8d6f47eea7a2509b5c2dbedae6231dafb9dbed873dd5daaebbad1f11fdaa58726ce5e + checksum: 10c0/992f18cb03264e8dc2fd3cb64f428ee4997cb6d928dad68bf4b752eacac73062697ce7ce6a0e71a6d15af510814397a20597a72332dfec638e02fb3a382ad014 languageName: node linkType: hard "@types/node@npm:^22.15.18": - version: 22.19.0 - resolution: "@types/node@npm:22.19.0" + version: 22.19.1 + resolution: "@types/node@npm:22.19.1" dependencies: undici-types: "npm:~6.21.0" - checksum: 10c0/66b98fcd38efb4ae58c628d61fed2b8f17c830eb665d8bceabc4174cae1dd81b8e4caac4c70d7dc929f9f76a3dc46cb21f480e904d0b898297bd12c0a2d1571a + checksum: 10c0/6edd93aea86da740cb7872626839cd6f4a67a049d3a3a6639cb592c620ec591408a30989ab7410008d1a0b2d4985ce50f1e488e79c033e4476d3bec6833b0a2f languageName: node linkType: hard @@ -5458,11 +5521,11 @@ __metadata: linkType: hard "@types/react-dom@npm:^19.1.5": - version: 19.2.2 - resolution: "@types/react-dom@npm:19.2.2" + version: 19.2.3 + resolution: "@types/react-dom@npm:19.2.3" peerDependencies: "@types/react": ^19.2.0 - checksum: 10c0/6154dfb8e7a638313d7fa15b2b16494f2235afda4c43be37d10f34e5c7a730f6b95117facb5e6eebc73b15cceea7f6da23be46cda5d2262fd00fd7e6069547e3 + checksum: 10c0/b486ebe0f4e2fb35e2e108df1d8fc0927ca5d6002d5771e8a739de11239fe62d0e207c50886185253c99eb9dedfeeb956ea7429e5ba17f6693c7acb4c02f8cd1 languageName: node linkType: hard @@ -5476,11 +5539,11 @@ __metadata: linkType: hard "@types/react@npm:^19.1.4": - version: 19.2.2 - resolution: "@types/react@npm:19.2.2" + version: 19.2.7 + resolution: "@types/react@npm:19.2.7" dependencies: - csstype: "npm:^3.0.2" - checksum: 10c0/f830b1204aca4634ce3c6cb3477b5d3d066b80a4dd832a4ee0069acb504b6debd2416548a43a11c1407c12bc60e2dc6cf362934a18fe75fe06a69c0a98cba8ab + csstype: "npm:^3.2.2" + checksum: 10c0/a7b75f1f9fcb34badd6f84098be5e35a0aeca614bc91f93d2698664c0b2ba5ad128422bd470ada598238cebe4f9e604a752aead7dc6f5a92261d0c7f9b27cfd1 languageName: node linkType: hard @@ -5504,140 +5567,139 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/eslint-plugin@npm:8.46.2" +"@typescript-eslint/eslint-plugin@npm:8.48.0": + version: 8.48.0 + resolution: "@typescript-eslint/eslint-plugin@npm:8.48.0" dependencies: "@eslint-community/regexpp": "npm:^4.10.0" - "@typescript-eslint/scope-manager": "npm:8.46.2" - "@typescript-eslint/type-utils": "npm:8.46.2" - "@typescript-eslint/utils": "npm:8.46.2" - "@typescript-eslint/visitor-keys": "npm:8.46.2" + "@typescript-eslint/scope-manager": "npm:8.48.0" + "@typescript-eslint/type-utils": "npm:8.48.0" + "@typescript-eslint/utils": "npm:8.48.0" + "@typescript-eslint/visitor-keys": "npm:8.48.0" graphemer: "npm:^1.4.0" ignore: "npm:^7.0.0" natural-compare: "npm:^1.4.0" ts-api-utils: "npm:^2.1.0" peerDependencies: - "@typescript-eslint/parser": ^8.46.2 + "@typescript-eslint/parser": ^8.48.0 eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 10c0/24d1257bd023525754dc130e99bad1404c46f997729a060e3764b7f80dd43edcc43767b60fd89244cba82157918609e3922e408d0f7be4223e2056c1447fb387 + checksum: 10c0/5f4f9ac3ace3f615bac428859026b70fb7fa236666cfe8856fed3add7e4ba73c7113264c2df7a9d68247b679dfcc21b0414488bda7b9b3de1c209b1807ed7842 languageName: node linkType: hard -"@typescript-eslint/parser@npm:8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/parser@npm:8.46.2" +"@typescript-eslint/parser@npm:8.48.0": + version: 8.48.0 + resolution: "@typescript-eslint/parser@npm:8.48.0" dependencies: - "@typescript-eslint/scope-manager": "npm:8.46.2" - "@typescript-eslint/types": "npm:8.46.2" - "@typescript-eslint/typescript-estree": "npm:8.46.2" - "@typescript-eslint/visitor-keys": "npm:8.46.2" + "@typescript-eslint/scope-manager": "npm:8.48.0" + "@typescript-eslint/types": "npm:8.48.0" + "@typescript-eslint/typescript-estree": "npm:8.48.0" + "@typescript-eslint/visitor-keys": "npm:8.48.0" debug: "npm:^4.3.4" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 10c0/9556bf8ec039c6d1751a37cf76cf70912e80dc45337731a304509309e67472c3f5b5abe6ac5021a7ae9361ea65b2e1f66b626603cecca6506a4533152a77b28f + checksum: 10c0/180753e1dc55cd5174a236b738d3b0dd6dd6c131797cd417b3b3b8fac344168f3d21bd49eae6c0a075be29ed69b7bc74d97cadd917f1f4d4c113c29e76c1f9cd languageName: node linkType: hard -"@typescript-eslint/project-service@npm:8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/project-service@npm:8.46.2" +"@typescript-eslint/project-service@npm:8.48.0": + version: 8.48.0 + resolution: "@typescript-eslint/project-service@npm:8.48.0" dependencies: - "@typescript-eslint/tsconfig-utils": "npm:^8.46.2" - "@typescript-eslint/types": "npm:^8.46.2" + "@typescript-eslint/tsconfig-utils": "npm:^8.48.0" + "@typescript-eslint/types": "npm:^8.48.0" debug: "npm:^4.3.4" peerDependencies: typescript: ">=4.8.4 <6.0.0" - checksum: 10c0/03e87bcbca6af3f95bf54d4047a8b4d12434126c27d7312e804499a9459e1c847fe045f83fe8e3b22c3dc3925baad0aa2a1a5476d0d51f73a493dc5909a53dbf + checksum: 10c0/6e1d08312fe55a91ba37eb19131af91ad7834bafd15d1cddb83a1e35e5134382e10dc0b14531036ba1c075ce4cba627123625ed6f2e209fb3355f3dda25da0a1 languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/scope-manager@npm:8.46.2" +"@typescript-eslint/scope-manager@npm:8.48.0": + version: 8.48.0 + resolution: "@typescript-eslint/scope-manager@npm:8.48.0" dependencies: - "@typescript-eslint/types": "npm:8.46.2" - "@typescript-eslint/visitor-keys": "npm:8.46.2" - checksum: 10c0/42f52ee621a3a0ef2233e7d3384d9dbd76218f5c906a9cce3152a1f55c060a3d3614c7b8fff5270bdf48e8fcc003e732d3f003f283ea6fb204d64a2f6bb3ea9c + "@typescript-eslint/types": "npm:8.48.0" + "@typescript-eslint/visitor-keys": "npm:8.48.0" + checksum: 10c0/0766e365901a8af9d9e41fa70464254aacf8b4d167734d88b6cdaa0235e86bfdffc57a3e39a20e105929b8df499d252090f64f81f86770f74626ca809afe54b6 languageName: node linkType: hard -"@typescript-eslint/tsconfig-utils@npm:8.46.2, @typescript-eslint/tsconfig-utils@npm:^8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/tsconfig-utils@npm:8.46.2" +"@typescript-eslint/tsconfig-utils@npm:8.48.0, @typescript-eslint/tsconfig-utils@npm:^8.48.0": + version: 8.48.0 + resolution: "@typescript-eslint/tsconfig-utils@npm:8.48.0" peerDependencies: typescript: ">=4.8.4 <6.0.0" - checksum: 10c0/23e34ad296347417e42234945138022fb045d180fde69941483884a38e85fa55d5449420d2a660c0ebf1794a445add2f13e171c8dd64e4e83f594e2c4e35bf4d + checksum: 10c0/52e9ce8ffbaf32f3c6f4b8fa8af6e3901c430411e137a0baf650fcefdd8edf3dcc4569eba726a28424471d4d1d96b815aa4cf7b63aa7b67380efd6a8dd354222 languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/type-utils@npm:8.46.2" +"@typescript-eslint/type-utils@npm:8.48.0": + version: 8.48.0 + resolution: "@typescript-eslint/type-utils@npm:8.48.0" dependencies: - "@typescript-eslint/types": "npm:8.46.2" - "@typescript-eslint/typescript-estree": "npm:8.46.2" - "@typescript-eslint/utils": "npm:8.46.2" + "@typescript-eslint/types": "npm:8.48.0" + "@typescript-eslint/typescript-estree": "npm:8.48.0" + "@typescript-eslint/utils": "npm:8.48.0" debug: "npm:^4.3.4" ts-api-utils: "npm:^2.1.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 10c0/e12fc65e4b58c1ab6fe65f5486265b7afe9a9a6730e3529aca927ddfc22e5913eb28999fc83e68ea1b49097e1edbbae1f61dd724b0bb0e7586fb24ecda1d4938 + checksum: 10c0/72ab5c7d183b844e4870bfa5dfeb68e2e7ce5f3e1b33c06d5a8e70f0d0a012c9152ad15071d41ba3788266109804a9f4cdb85d664b11df8948bc930e29e0c244 languageName: node linkType: hard -"@typescript-eslint/types@npm:8.46.2, @typescript-eslint/types@npm:^8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/types@npm:8.46.2" - checksum: 10c0/611716bae2369a1b8001c7f6cc03c5ecadfb956643cbbe27269defd28a61d43fe52eda008d7a09568b0be50c502e8292bf767b246366004283476e9a971b6fbc +"@typescript-eslint/types@npm:8.48.0, @typescript-eslint/types@npm:^8.48.0": + version: 8.48.0 + resolution: "@typescript-eslint/types@npm:8.48.0" + checksum: 10c0/865a8f4ae4a50aa8976f3d7e0f874f1a1c80227ec53ded68644d41011c729a489bb59f70683b29237ab945716ea0258e1d47387163379eab3edaaf5e5cc3b757 languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/typescript-estree@npm:8.46.2" +"@typescript-eslint/typescript-estree@npm:8.48.0": + version: 8.48.0 + resolution: "@typescript-eslint/typescript-estree@npm:8.48.0" dependencies: - "@typescript-eslint/project-service": "npm:8.46.2" - "@typescript-eslint/tsconfig-utils": "npm:8.46.2" - "@typescript-eslint/types": "npm:8.46.2" - "@typescript-eslint/visitor-keys": "npm:8.46.2" + "@typescript-eslint/project-service": "npm:8.48.0" + "@typescript-eslint/tsconfig-utils": "npm:8.48.0" + "@typescript-eslint/types": "npm:8.48.0" + "@typescript-eslint/visitor-keys": "npm:8.48.0" debug: "npm:^4.3.4" - fast-glob: "npm:^3.3.2" - is-glob: "npm:^4.0.3" minimatch: "npm:^9.0.4" semver: "npm:^7.6.0" + tinyglobby: "npm:^0.2.15" ts-api-utils: "npm:^2.1.0" peerDependencies: typescript: ">=4.8.4 <6.0.0" - checksum: 10c0/ad7dbf352982bc6e16473ef19fc7d209fffeb147a732db8a2464e0ec33e7fbbc24ce3f23d01bdf99d503626c582a476debf4c90c527d755eeb99b863476d9f5f + checksum: 10c0/f17dd35f7b82654fae9fe83c2eb650572464dbce0170d55b3ef94b99e9aae010f2cbadd436089c8e59eef97d41719ace3a2deb4ac3cdfac26d43b36f34df5590 languageName: node linkType: hard -"@typescript-eslint/utils@npm:8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/utils@npm:8.46.2" +"@typescript-eslint/utils@npm:8.48.0": + version: 8.48.0 + resolution: "@typescript-eslint/utils@npm:8.48.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.7.0" - "@typescript-eslint/scope-manager": "npm:8.46.2" - "@typescript-eslint/types": "npm:8.46.2" - "@typescript-eslint/typescript-estree": "npm:8.46.2" + "@typescript-eslint/scope-manager": "npm:8.48.0" + "@typescript-eslint/types": "npm:8.48.0" + "@typescript-eslint/typescript-estree": "npm:8.48.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 10c0/600b70730077ed85a6e278e06771f3933cdafce242f979e4af1c1b41290bf1efb14d20823c25c38a3a792def69b18eb9410af28bb228fe86027ad7859753c62d + checksum: 10c0/56334312d1dc114a5c8b05dac4da191c40a416a5705fa76797ebdc9f6a96d35727fd0993cf8776f5c4411837e5fc2151bfa61d3eecc98b24f5a821a63a4d56f3 languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:8.46.2": - version: 8.46.2 - resolution: "@typescript-eslint/visitor-keys@npm:8.46.2" +"@typescript-eslint/visitor-keys@npm:8.48.0": + version: 8.48.0 + resolution: "@typescript-eslint/visitor-keys@npm:8.48.0" dependencies: - "@typescript-eslint/types": "npm:8.46.2" + "@typescript-eslint/types": "npm:8.48.0" eslint-visitor-keys: "npm:^4.2.1" - checksum: 10c0/2067cd9a3c90b3817242cc49b5fa77428e1b92b28e16a12f45c2b399acbba7bd17e503553e5e68924e40078477a5c247dfa12e7709c24fe11c0b17a0c8486c33 + checksum: 10c0/20ae9ec255a786de40cdba281b63f634a642dcc34d2a79c5ffc160109f7f6227c28ae2c64be32cbc53dc68dc398c3da715bfcce90422b5024f15f7124a3c1704 languageName: node linkType: hard @@ -5950,21 +6012,21 @@ __metadata: languageName: node linkType: hard -"@zenstackhq/language@npm:2.21.0": - version: 2.21.0 - resolution: "@zenstackhq/language@npm:2.21.0" +"@zenstackhq/language@npm:2.22.0": + version: 2.22.0 + resolution: "@zenstackhq/language@npm:2.22.0" dependencies: langium: "npm:1.3.1" - checksum: 10c0/61f3d2e3beaa169f017d77a0089f2a48a777609a6ad28622364e919f53ad6e7ad2763d1daadb797fe5a4ae70d71f1f53fe009b9b17e5a8e9444763024103e62a + checksum: 10c0/089996200fb74cba90a54954fe705831c25ef3315c09bda32a3cca1e359641c9106734e6753e5f02ab0e5fcb2f089a314b01215279d8c6925c0da5a2411ef279 languageName: node linkType: hard "@zenstackhq/openapi@npm:^2.14.2": - version: 2.21.0 - resolution: "@zenstackhq/openapi@npm:2.21.0" + version: 2.22.0 + resolution: "@zenstackhq/openapi@npm:2.22.0" dependencies: - "@zenstackhq/runtime": "npm:2.21.0" - "@zenstackhq/sdk": "npm:2.21.0" + "@zenstackhq/runtime": "npm:2.22.0" + "@zenstackhq/sdk": "npm:2.22.0" openapi-types: "npm:^12.1.0" semver: "npm:^7.5.2" ts-pattern: "npm:^4.3.0" @@ -5972,7 +6034,7 @@ __metadata: zod-validation-error: "npm:^4.0.0" peerDependencies: zod: ^3.25.0 || ^4.0.0 - checksum: 10c0/76a610c5cc69bab98a87892134fadf2d1da989c52f01c53664c23b9e25cfe7f15c066bcd8d70ef4804bdb8f7d02c4add645fd5552a00a1f45d5f0bc98c058bf4 + checksum: 10c0/0b482d2b83f9852c589bfb076d2d9e2aa0e998194c31a2080bb61ef994114fc2b3093ea75b3e938a01ac13f177ebe24e965b42fb2e0e9ae0761c493398d39933 languageName: node linkType: hard @@ -6006,9 +6068,9 @@ __metadata: languageName: node linkType: hard -"@zenstackhq/runtime@npm:2.21.0": - version: 2.21.0 - resolution: "@zenstackhq/runtime@npm:2.21.0" +"@zenstackhq/runtime@npm:2.22.0": + version: 2.22.0 + resolution: "@zenstackhq/runtime@npm:2.22.0" dependencies: bcryptjs: "npm:^2.4.3" buffer: "npm:^6.0.3" @@ -6024,9 +6086,9 @@ __metadata: uuid: "npm:^9.0.0" zod-validation-error: "npm:^4.0.0" peerDependencies: - "@prisma/client": 5.0.0 - 6.18.x + "@prisma/client": 5.0.0 - 7.x zod: ^3.25.0 || ^4.0.0 - checksum: 10c0/fb6e51077cbfd3e9e32b59dac49792083c4065fe0705a7a484cf8df352a41734ec3413982310324dc7f1a93c48068c068b3425c7d536e7c8322d18b7ab05377c + checksum: 10c0/52f67d2b7b64cef10d2bba2feaa72f7d952f3e402be78f5e79dd3d6df06c1d0ca66571d745627fec78ef8baf7d3bb923a26df5c33d7ccaac7c2f0daeaabd035c languageName: node linkType: hard @@ -6048,33 +6110,33 @@ __metadata: languageName: node linkType: hard -"@zenstackhq/sdk@npm:2.21.0": - version: 2.21.0 - resolution: "@zenstackhq/sdk@npm:2.21.0" +"@zenstackhq/sdk@npm:2.22.0": + version: 2.22.0 + resolution: "@zenstackhq/sdk@npm:2.22.0" dependencies: - "@prisma/generator-helper": "npm:6.17.x" - "@prisma/internals": "npm:6.17.x" - "@zenstackhq/language": "npm:2.21.0" - "@zenstackhq/runtime": "npm:2.21.0" + "@prisma/generator-helper": "npm:6.19.x" + "@prisma/internals": "npm:6.19.x" + "@zenstackhq/language": "npm:2.22.0" + "@zenstackhq/runtime": "npm:2.22.0" langium: "npm:1.3.1" semver: "npm:^7.5.2" ts-morph: "npm:^26.0.0" ts-pattern: "npm:^4.3.0" - checksum: 10c0/6ed0c8e603b149b360058213daa50245648b0852f904c96e07e5936e193fe697539dc5783593b4edfd02bc273b425633d3677457ad3cab2eb0684245c8193442 + checksum: 10c0/182a120bc6ee6bac5cb2879282dab82a3804f96bb70cf2f5a85a62c3b36c4c7354ff1525adc55e9c204d7381b39345ee204228b106bedb676fc12a184b5fbff4 languageName: node linkType: hard "@zenstackhq/tanstack-query@npm:^2.14.2": - version: 2.21.0 - resolution: "@zenstackhq/tanstack-query@npm:2.21.0" + version: 2.22.0 + resolution: "@zenstackhq/tanstack-query@npm:2.22.0" dependencies: - "@zenstackhq/runtime": "npm:2.21.0" - "@zenstackhq/sdk": "npm:2.21.0" + "@zenstackhq/runtime": "npm:2.22.0" + "@zenstackhq/sdk": "npm:2.22.0" cross-fetch: "npm:^4.0.0" semver: "npm:^7.5.2" ts-morph: "npm:^26.0.0" ts-pattern: "npm:^4.3.0" - checksum: 10c0/ed84e2dea63ea8f4dd72a46a3c553cd41fb6ea82caa5e1f9fe1ba8109359b59383a7bc71e96227d91a92d5f817249fa0b906710a921919ae0117b135bd3970bc + checksum: 10c0/6780f65ab646852dbf72abf302fcc45629fd18be4e67c40d8f8401c71dcd88068faed3bef10a335e463a5b47f188ed8b6c74116e078ec69a30f484a97dbe92ef languageName: node linkType: hard @@ -6085,10 +6147,10 @@ __metadata: languageName: node linkType: hard -"abbrev@npm:^3.0.0": - version: 3.0.1 - resolution: "abbrev@npm:3.0.1" - checksum: 10c0/21ba8f574ea57a3106d6d35623f2c4a9111d9ee3e9a5be47baed46ec2457d2eac46e07a5c4a60186f88cb98abbe3e24f2d4cca70bc2b12f1692523e2209a9ccf +"abbrev@npm:^4.0.0": + version: 4.0.0 + resolution: "abbrev@npm:4.0.0" + checksum: 10c0/b4cc16935235e80702fc90192e349e32f8ef0ed151ef506aa78c81a7c455ec18375c4125414b99f84b2e055199d66383e787675f0bcd87da7a4dbd59f9eac1d5 languageName: node linkType: hard @@ -6408,17 +6470,6 @@ __metadata: languageName: node linkType: hard -"asn1js@npm:^3.0.6": - version: 3.0.6 - resolution: "asn1js@npm:3.0.6" - dependencies: - pvtsutils: "npm:^1.3.6" - pvutils: "npm:^1.1.3" - tslib: "npm:^2.8.1" - checksum: 10c0/96d35e65e3df819ad9cc2d91d1150a3041fd84687a62faa73405e72a6b4c655bc2450e779fad524969e14eeac1f69db2559f27ef6d06ddeeddada28f72ad9b89 - languageName: node - linkType: hard - "ast-types-flow@npm:^0.0.8": version: 0.0.8 resolution: "ast-types-flow@npm:0.0.8" @@ -6523,21 +6574,12 @@ __metadata: languageName: node linkType: hard -"baseline-browser-mapping@npm:^2.8.19": - version: 2.8.23 - resolution: "baseline-browser-mapping@npm:2.8.23" +"baseline-browser-mapping@npm:^2.8.25, baseline-browser-mapping@npm:^2.8.32": + version: 2.8.32 + resolution: "baseline-browser-mapping@npm:2.8.32" bin: baseline-browser-mapping: dist/cli.js - checksum: 10c0/5a63c1c241d288e5c79aa32a1cbea335b5af899172161aa9f9701a67c5b9b55ea3b3945a70a842385374627dde1de27504641bc95257d8c2e81f0c593c719121 - languageName: node - linkType: hard - -"baseline-browser-mapping@npm:^2.8.25": - version: 2.8.30 - resolution: "baseline-browser-mapping@npm:2.8.30" - bin: - baseline-browser-mapping: dist/cli.js - checksum: 10c0/724e2a71dc18af1555953278544d60d3677ad1413d19b4c68f0b1d16cb075186035125cad38d93c1ccc2df8dc8520e6d47452b76b265898ad7ac480630f12cae + checksum: 10c0/6c4aa0338ad177e946a27412de11769fb6474389a59cc03e13e0538d7285a94052a11525d46bb605ddb913a0c8a1180292d6f05cd4d6bc05bbf597c26bf5ce66 languageName: node linkType: hard @@ -6568,44 +6610,53 @@ __metadata: languageName: node linkType: hard -"better-auth@npm:1.3.1": - version: 1.3.1 - resolution: "better-auth@npm:1.3.1" +"better-auth@npm:1.4.0": + version: 1.4.0 + resolution: "better-auth@npm:1.4.0" dependencies: - "@better-auth/utils": "npm:0.2.5" - "@better-fetch/fetch": "npm:^1.1.18" - "@noble/ciphers": "npm:^0.6.0" - "@noble/hashes": "npm:^1.8.0" - "@simplewebauthn/browser": "npm:^13.0.0" - "@simplewebauthn/server": "npm:^13.0.0" - better-call: "npm:^1.0.12" + "@better-auth/core": "npm:1.4.0" + "@better-auth/telemetry": "npm:1.4.0" + "@better-auth/utils": "npm:0.3.0" + "@better-fetch/fetch": "npm:1.1.18" + "@noble/ciphers": "npm:^2.0.0" + "@noble/hashes": "npm:^2.0.0" + "@standard-schema/spec": "npm:^1.0.0" + better-call: "npm:1.1.0" defu: "npm:^6.1.4" - jose: "npm:^5.9.6" - kysely: "npm:^0.28.1" - nanostores: "npm:^0.11.3" - zod: "npm:^4.0.5" - peerDependencies: - react: ^18.0.0 || ^19.0.0 - react-dom: ^18.0.0 || ^19.0.0 + jose: "npm:^6.1.0" + kysely: "npm:^0.28.5" + nanostores: "npm:^1.0.1" + zod: "npm:^4.1.12" peerDependenciesMeta: + "@lynx-js/react": + optional: true + "@sveltejs/kit": + optional: true + next: + optional: true react: optional: true react-dom: optional: true - checksum: 10c0/5e003ce665f5ce5a685e6f302c2abf20189f291825dbd2ca7ceea476139bd3dee69e2ba598f8d97acb52474ded9f2a0e0127fc921ce4d8a9980f60a09a463cee + solid-js: + optional: true + svelte: + optional: true + vue: + optional: true + checksum: 10c0/9d4f5084dc09a4fd71edb360143698a4dbd4af58cbc48de1c0688c3977b887e94538777f0cc8bcdbb106dcc9eb59d61ac8a98cb3b76b825599dfc5e22c4b0a9d languageName: node linkType: hard -"better-call@npm:^1.0.12": - version: 1.0.24 - resolution: "better-call@npm:1.0.24" +"better-call@npm:1.1.0": + version: 1.1.0 + resolution: "better-call@npm:1.1.0" 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/cd4196b2cc47944997b6397be82abdce43db8e28fb104e91c6b6df0725fc10a6ec62af096df6270b6edfc33c22deaa048ac47d7a87674fcc8afb751e6bebefbf + checksum: 10c0/400fa8d9880ee934d684aed5c6c7136905494689db10f94f719825ec33436acd30f20685a7121630803637c4d4fc2306863950fced6e98726825d65d6b3d9089 languageName: node linkType: hard @@ -6644,9 +6695,9 @@ __metadata: linkType: hard "bowser@npm:^2.11.0": - version: 2.12.1 - resolution: "bowser@npm:2.12.1" - checksum: 10c0/017e8cc63ce2dec75037340626e1408f68334dac95f953ba7db33a266c019f1d262346d2be3994f9a12b7e9c02f57c562078719b8c5e8e8febe01053c613ffbc + version: 2.13.0 + resolution: "bowser@npm:2.13.0" + checksum: 10c0/210fb0b2c1eaa65f3c157863a671c7043d8f51297b08518cc61f31ad3efab455f5cb804fe69ce74dad261b7c0b19fa23a1b5c2ee639b234db9338999b47d82bb languageName: node linkType: hard @@ -6685,22 +6736,7 @@ __metadata: languageName: node linkType: hard -"browserslist@npm:^4.24.0": - version: 4.27.0 - resolution: "browserslist@npm:4.27.0" - dependencies: - baseline-browser-mapping: "npm:^2.8.19" - caniuse-lite: "npm:^1.0.30001751" - electron-to-chromium: "npm:^1.5.238" - node-releases: "npm:^2.0.26" - update-browserslist-db: "npm:^1.1.4" - bin: - browserslist: cli.js - checksum: 10c0/395611e54374da9171cdbe7e3704ab426e0f1d622751392df6d6cbf60c539bf06cf2407e9dd769bc01ee2abca6a14af6509a2e0bbb448ba75a054db6c1840643 - languageName: node - linkType: hard - -"browserslist@npm:^4.24.4, browserslist@npm:^4.26.3": +"browserslist@npm:^4.24.0, browserslist@npm:^4.24.4, browserslist@npm:^4.26.3": version: 4.28.0 resolution: "browserslist@npm:4.28.0" dependencies: @@ -6750,9 +6786,9 @@ __metadata: linkType: hard "buildcheck@npm:~0.0.6": - version: 0.0.6 - resolution: "buildcheck@npm:0.0.6" - checksum: 10c0/8cbdb89f41bc484b8325f4828db4135b206a0dffb641eb6cdb2b7022483c45dd0e5aac6d820c9a67bdd2caab3a02c76d7ceec7bd9ec494b5a2270d2806b01a76 + version: 0.0.7 + resolution: "buildcheck@npm:0.0.7" + checksum: 10c0/987c605267b1b6311bb2ac0638b073d322370267445a6d059da27985fce0b41f85a59d3a9aa9af839e8ac2d63da8af07be6dc737f8bd5323e1dfe6779ad67228 languageName: node linkType: hard @@ -6781,23 +6817,22 @@ __metadata: languageName: node linkType: hard -"cacache@npm:^19.0.1": - version: 19.0.1 - resolution: "cacache@npm:19.0.1" +"cacache@npm:^20.0.1": + version: 20.0.3 + resolution: "cacache@npm:20.0.3" dependencies: - "@npmcli/fs": "npm:^4.0.0" + "@npmcli/fs": "npm:^5.0.0" fs-minipass: "npm:^3.0.0" - glob: "npm:^10.2.2" - lru-cache: "npm:^10.0.1" + glob: "npm:^13.0.0" + lru-cache: "npm:^11.1.0" minipass: "npm:^7.0.3" minipass-collect: "npm:^2.0.1" minipass-flush: "npm:^1.0.5" minipass-pipeline: "npm:^1.2.4" p-map: "npm:^7.0.2" - ssri: "npm:^12.0.0" - tar: "npm:^7.4.3" - unique-filename: "npm:^4.0.0" - checksum: 10c0/01f2134e1bd7d3ab68be851df96c8d63b492b1853b67f2eecb2c37bb682d37cb70bb858a16f2f0554d3c0071be6dfe21456a1ff6fa4b7eed996570d6a25ffe9c + ssri: "npm:^13.0.0" + unique-filename: "npm:^5.0.0" + checksum: 10c0/c7da1ca694d20e8f8aedabd21dc11518f809a7d2b59aa76a1fc655db5a9e62379e465c157ddd2afe34b19230808882288effa6911b2de26a088a6d5645123462 languageName: node linkType: hard @@ -6857,17 +6892,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001579, caniuse-lite@npm:^1.0.30001751": - version: 1.0.30001753 - resolution: "caniuse-lite@npm:1.0.30001753" - checksum: 10c0/730344b6c54769f544f1d4bd7f99a122cd5f6e964e482adbcb18b63cda56e9c40aca1e3ab47c7154098803c9ba3772cca0aba936d1c924e67e8db8345712e5a8 - languageName: node - linkType: hard - -"caniuse-lite@npm:^1.0.30001702, caniuse-lite@npm:^1.0.30001754": - version: 1.0.30001756 - resolution: "caniuse-lite@npm:1.0.30001756" - checksum: 10c0/863df07bd8d5139371ce7d4e582f03fef38141726282dcd532421bbd95ea298c7f953a8e1a9790db89ca1816bd8ce3cce638a66361b769dd1f2dc8d4c721d546 +"caniuse-lite@npm:^1.0.30001579, caniuse-lite@npm:^1.0.30001702, caniuse-lite@npm:^1.0.30001754": + version: 1.0.30001757 + resolution: "caniuse-lite@npm:1.0.30001757" + checksum: 10c0/3ccb71fa2bf1f8c96ff1bf9b918b08806fed33307e20a3ce3259155fda131eaf96cfcd88d3d309c8fd7f8285cc71d89a3b93648a1c04814da31c301f98508d42 languageName: node linkType: hard @@ -7273,10 +7301,10 @@ __metadata: languageName: node linkType: hard -"csstype@npm:^3.0.2": - version: 3.1.3 - resolution: "csstype@npm:3.1.3" - checksum: 10c0/80c089d6f7e0c5b2bd83cf0539ab41474198579584fa10d86d0cafe0642202343cbc119e076a0b1aece191989477081415d66c9fefbf3c957fc2fc4b7009f248 +"csstype@npm:^3.0.2, csstype@npm:^3.2.2": + version: 3.2.3 + resolution: "csstype@npm:3.2.3" + checksum: 10c0/cd29c51e70fa822f1cecd8641a1445bed7063697469d35633b516e60fe8c1bde04b08f6c5b6022136bb669b64c63d4173af54864510fbb4ee23281801841a3ce languageName: node linkType: hard @@ -7677,8 +7705,8 @@ __metadata: linkType: hard "drizzle-kit@npm:^0.31.1": - version: 0.31.6 - resolution: "drizzle-kit@npm:0.31.6" + version: 0.31.7 + resolution: "drizzle-kit@npm:0.31.7" dependencies: "@drizzle-team/brocli": "npm:^0.10.2" "@esbuild-kit/esm-loader": "npm:^2.5.5" @@ -7686,7 +7714,7 @@ __metadata: esbuild-register: "npm:^3.5.0" bin: drizzle-kit: bin.cjs - checksum: 10c0/3f49947b39fb67eac8c8ea7ac0d6f8ac85e3fee728f1dfc42bd4b9c75f76bbb8f5a9e80c52bbba12d3267f1f24d7cf873019e7bdd69a1d4600b14cad3afd8f68 + checksum: 10c0/ccb36a23a2e107d440ca7a2c06f81f12c07fe8b62f5a3512eea877bcf4ab43422fc66ddcc9de8825e418dbc138cb56679de9bddd3ce8f769865f0267c19343ad languageName: node linkType: hard @@ -7810,27 +7838,20 @@ __metadata: languageName: node linkType: hard -"effect@npm:3.16.12": - version: 3.16.12 - resolution: "effect@npm:3.16.12" +"effect@npm:3.18.4": + version: 3.18.4 + resolution: "effect@npm:3.18.4" dependencies: "@standard-schema/spec": "npm:^1.0.0" fast-check: "npm:^3.23.1" - checksum: 10c0/43b73cece506926ff086fdaf62943c2706a83c4192f81f6cba5ff85761e05f5da3c72a547936678ad432a6ea7585cf8f9c38f2f6344492f132e986fd04425c58 - languageName: node - linkType: hard - -"electron-to-chromium@npm:^1.5.238": - version: 1.5.244 - resolution: "electron-to-chromium@npm:1.5.244" - checksum: 10c0/a3cbc8c9c9415234f97e92724924f943fcb82494b3a2f9ae998954d22496e86f7eaf5e2fceca8aa8be098b0693f508332ec2d3b4b39a42cd2de1fac4d048a19f + checksum: 10c0/086603b2b4e13426b5230e65a8ed9da8db7f00918c2e2c783565b40d5e5f59050148900dd7c9eee56ea0ff2ea48c1dd7e95b0879e1b1025752fbd9027a830f36 languageName: node linkType: hard "electron-to-chromium@npm:^1.5.249": - version: 1.5.259 - resolution: "electron-to-chromium@npm:1.5.259" - checksum: 10c0/a6600ff20d513e1acce29cd04af5fcb338295ebe5a13fa9802009464d9c269a4a092218c8ea8c9b85017a1efd75606fe0cdf5f36216979f7c8462af7df2f530d + version: 1.5.262 + resolution: "electron-to-chromium@npm:1.5.262" + checksum: 10c0/4e4e3a307f662991145fd0bbd9045e17af547987a9dc33c30239b1a7b60874989f9b71c636b6c7d2b9052777344d4358a7cf76924203873a392ea1568bf88e5d languageName: node linkType: hard @@ -8235,7 +8256,96 @@ __metadata: languageName: node linkType: hard -"esbuild@npm:>=0.12 <1, esbuild@npm:^0.25.0, esbuild@npm:^0.25.4, esbuild@npm:~0.25.0": +"esbuild@npm:>=0.12 <1": + version: 0.27.0 + resolution: "esbuild@npm:0.27.0" + dependencies: + "@esbuild/aix-ppc64": "npm:0.27.0" + "@esbuild/android-arm": "npm:0.27.0" + "@esbuild/android-arm64": "npm:0.27.0" + "@esbuild/android-x64": "npm:0.27.0" + "@esbuild/darwin-arm64": "npm:0.27.0" + "@esbuild/darwin-x64": "npm:0.27.0" + "@esbuild/freebsd-arm64": "npm:0.27.0" + "@esbuild/freebsd-x64": "npm:0.27.0" + "@esbuild/linux-arm": "npm:0.27.0" + "@esbuild/linux-arm64": "npm:0.27.0" + "@esbuild/linux-ia32": "npm:0.27.0" + "@esbuild/linux-loong64": "npm:0.27.0" + "@esbuild/linux-mips64el": "npm:0.27.0" + "@esbuild/linux-ppc64": "npm:0.27.0" + "@esbuild/linux-riscv64": "npm:0.27.0" + "@esbuild/linux-s390x": "npm:0.27.0" + "@esbuild/linux-x64": "npm:0.27.0" + "@esbuild/netbsd-arm64": "npm:0.27.0" + "@esbuild/netbsd-x64": "npm:0.27.0" + "@esbuild/openbsd-arm64": "npm:0.27.0" + "@esbuild/openbsd-x64": "npm:0.27.0" + "@esbuild/openharmony-arm64": "npm:0.27.0" + "@esbuild/sunos-x64": "npm:0.27.0" + "@esbuild/win32-arm64": "npm:0.27.0" + "@esbuild/win32-ia32": "npm:0.27.0" + "@esbuild/win32-x64": "npm:0.27.0" + dependenciesMeta: + "@esbuild/aix-ppc64": + optional: true + "@esbuild/android-arm": + optional: true + "@esbuild/android-arm64": + optional: true + "@esbuild/android-x64": + optional: true + "@esbuild/darwin-arm64": + optional: true + "@esbuild/darwin-x64": + optional: true + "@esbuild/freebsd-arm64": + optional: true + "@esbuild/freebsd-x64": + optional: true + "@esbuild/linux-arm": + optional: true + "@esbuild/linux-arm64": + optional: true + "@esbuild/linux-ia32": + optional: true + "@esbuild/linux-loong64": + optional: true + "@esbuild/linux-mips64el": + optional: true + "@esbuild/linux-ppc64": + optional: true + "@esbuild/linux-riscv64": + optional: true + "@esbuild/linux-s390x": + optional: true + "@esbuild/linux-x64": + optional: true + "@esbuild/netbsd-arm64": + optional: true + "@esbuild/netbsd-x64": + optional: true + "@esbuild/openbsd-arm64": + optional: true + "@esbuild/openbsd-x64": + optional: true + "@esbuild/openharmony-arm64": + optional: true + "@esbuild/sunos-x64": + optional: true + "@esbuild/win32-arm64": + optional: true + "@esbuild/win32-ia32": + optional: true + "@esbuild/win32-x64": + optional: true + bin: + esbuild: bin/esbuild + checksum: 10c0/a3a1deec285337b7dfe25cbb9aa8765d27a0192b610a8477a39bf5bd907a6bdb75e98898b61fb4337114cfadb13163bd95977db14e241373115f548e235b40a2 + languageName: node + linkType: hard + +"esbuild@npm:^0.25.0, esbuild@npm:^0.25.4, esbuild@npm:~0.25.0": version: 0.25.12 resolution: "esbuild@npm:0.25.12" dependencies: @@ -8416,10 +8526,10 @@ __metadata: linkType: hard "eslint-config-next@npm:^16.0.1": - version: 16.0.1 - resolution: "eslint-config-next@npm:16.0.1" + version: 16.0.5 + resolution: "eslint-config-next@npm:16.0.5" dependencies: - "@next/eslint-plugin-next": "npm:16.0.1" + "@next/eslint-plugin-next": "npm:16.0.5" eslint-import-resolver-node: "npm:^0.3.6" eslint-import-resolver-typescript: "npm:^3.5.2" eslint-plugin-import: "npm:^2.32.0" @@ -8434,7 +8544,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10c0/21c530ba67a263ce4ac8b67cf4a9c543179e726aa491e6b0eaea068ea375903935685161c188be95ee3bbc7a6709b58755331115c18c3abac1b6b12b3fe3ce20 + checksum: 10c0/63452b7d341da81abc34f5bfc14102933f7e694dd742c23ba75efdd796d57efdf35eb50cb8f69b08cb6f2b9d84792faabc3dac1900aea9633bc27992dde1fe11 languageName: node linkType: hard @@ -8629,8 +8739,8 @@ __metadata: linkType: hard "eslint@npm:^9.39.0": - version: 9.39.0 - resolution: "eslint@npm:9.39.0" + version: 9.39.1 + resolution: "eslint@npm:9.39.1" dependencies: "@eslint-community/eslint-utils": "npm:^4.8.0" "@eslint-community/regexpp": "npm:^4.12.1" @@ -8638,7 +8748,7 @@ __metadata: "@eslint/config-helpers": "npm:^0.4.2" "@eslint/core": "npm:^0.17.0" "@eslint/eslintrc": "npm:^3.3.1" - "@eslint/js": "npm:9.39.0" + "@eslint/js": "npm:9.39.1" "@eslint/plugin-kit": "npm:^0.4.1" "@humanfs/node": "npm:^0.16.6" "@humanwhocodes/module-importer": "npm:^1.0.1" @@ -8673,7 +8783,7 @@ __metadata: optional: true bin: eslint: bin/eslint.js - checksum: 10c0/4035f7a3d01b3a6026d0ade899713286ed9514e5b65afe5eb671b66834a4c211769de18d1329dadb4e0bb487ea61e6a5ba0905c2b92144b8b9a2216c1ccca3e8 + checksum: 10c0/59b2480639404ba24578ca480f973683b87b7aac8aa7e349240474a39067804fd13cd8b9cb22fee074170b8c7c563b57bab703ec0f0d3f81ea017e5d2cad299d languageName: node linkType: hard @@ -8756,9 +8866,9 @@ __metadata: linkType: hard "exsolve@npm:^1.0.7": - version: 1.0.7 - resolution: "exsolve@npm:1.0.7" - checksum: 10c0/4479369d0bd84bb7e0b4f5d9bc18d26a89b6dbbbccd73f9d383d14892ef78ddbe159e01781055342f83dc00ebe90044036daf17ddf55cc21e2cac6609aa15631 + version: 1.0.8 + resolution: "exsolve@npm:1.0.8" + checksum: 10c0/65e44ae05bd4a4a5d87cfdbbd6b8f24389282cf9f85fa5feb17ca87ad3f354877e6af4cd99e02fc29044174891f82d1d68c77f69234410eb8f163530e6278c67 languageName: node linkType: hard @@ -8786,9 +8896,9 @@ __metadata: linkType: hard "fast-equals@npm:^5.0.1": - version: 5.3.2 - resolution: "fast-equals@npm:5.3.2" - checksum: 10c0/babadb98fb93c693ee3c8eecbc980ed52fa7be7508eca9b68d8c899bc48e2e47af6d30160187358f7987e54440b6fd21ecd3c6e48ebeb15e1875d6a2ac7e1421 + version: 5.3.3 + resolution: "fast-equals@npm:5.3.3" + checksum: 10c0/a186cbfe4d9171911af9c6bb02d059e28bc177f66527790bf95d35a08f6f070033caea5755d2bbf2ce7af56374c1d4d854ee8184f9e906e3e01b54dbd09c414c languageName: node linkType: hard @@ -8805,7 +8915,7 @@ __metadata: languageName: node linkType: hard -"fast-glob@npm:^3.2.11, fast-glob@npm:^3.2.5, fast-glob@npm:^3.3.0, fast-glob@npm:^3.3.2, fast-glob@npm:^3.3.3": +"fast-glob@npm:^3.2.11, fast-glob@npm:^3.2.5, fast-glob@npm:^3.3.0, fast-glob@npm:^3.3.3": version: 3.3.3 resolution: "fast-glob@npm:3.3.3" dependencies: @@ -8961,7 +9071,7 @@ __metadata: languageName: node linkType: hard -"foreground-child@npm:^3.1.0, foreground-child@npm:^3.3.1": +"foreground-child@npm:^3.3.1": version: 3.3.1 resolution: "foreground-child@npm:3.3.1" dependencies: @@ -9230,35 +9340,30 @@ __metadata: languageName: node linkType: hard -"glob@npm:^10.2.2": - version: 10.4.5 - resolution: "glob@npm:10.4.5" - dependencies: - foreground-child: "npm:^3.1.0" - jackspeak: "npm:^3.1.2" - minimatch: "npm:^9.0.4" - minipass: "npm:^7.1.2" - package-json-from-dist: "npm:^1.0.0" - path-scurry: "npm:^1.11.1" - bin: - glob: dist/esm/bin.mjs - checksum: 10c0/19a9759ea77b8e3ca0a43c2f07ecddc2ad46216b786bb8f993c445aee80d345925a21e5280c7b7c6c59e860a0154b84e4b2b60321fea92cd3c56b4a7489f160e - languageName: node - linkType: hard - "glob@npm:^11.0.0": - version: 11.0.3 - resolution: "glob@npm:11.0.3" + version: 11.1.0 + resolution: "glob@npm:11.1.0" dependencies: foreground-child: "npm:^3.3.1" jackspeak: "npm:^4.1.1" - minimatch: "npm:^10.0.3" + minimatch: "npm:^10.1.1" minipass: "npm:^7.1.2" package-json-from-dist: "npm:^1.0.0" path-scurry: "npm:^2.0.0" bin: glob: dist/esm/bin.mjs - checksum: 10c0/7d24457549ec2903920dfa3d8e76850e7c02aa709122f0164b240c712f5455c0b457e6f2a1eee39344c6148e39895be8094ae8cfef7ccc3296ed30bce250c661 + checksum: 10c0/1ceae07f23e316a6fa74581d9a74be6e8c2e590d2f7205034dd5c0435c53f5f7b712c2be00c3b65bf0a49294a1c6f4b98cd84c7637e29453b5aa13b79f1763a2 + languageName: node + linkType: hard + +"glob@npm:^13.0.0": + version: 13.0.0 + resolution: "glob@npm:13.0.0" + dependencies: + minimatch: "npm:^10.1.1" + minipass: "npm:^7.1.2" + path-scurry: "npm:^2.0.0" + checksum: 10c0/8e2f5821f3f7c312dd102e23a15b80c79e0837a9872784293ba2e15ec73b3f3749a49a42a31bfcb4e52c84820a474e92331c2eebf18819d20308f5c33876630a languageName: node linkType: hard @@ -9558,16 +9663,16 @@ __metadata: linkType: hard "ip-address@npm:^10.0.1": - version: 10.0.1 - resolution: "ip-address@npm:10.0.1" - checksum: 10c0/1634d79dae18394004775cb6d699dc46b7c23df6d2083164025a2b15240c1164fccde53d0e08bd5ee4fc53913d033ab6b5e395a809ad4b956a940c446e948843 + version: 10.1.0 + resolution: "ip-address@npm:10.1.0" + checksum: 10c0/0103516cfa93f6433b3bd7333fa876eb21263912329bfa47010af5e16934eeeff86f3d2ae700a3744a137839ddfad62b900c7a445607884a49b5d1e32a3d7566 languageName: node linkType: hard "ipaddr.js@npm:^2.0.1": - version: 2.2.0 - resolution: "ipaddr.js@npm:2.2.0" - checksum: 10c0/e4ee875dc1bd92ac9d27e06cfd87cdb63ca786ff9fd7718f1d4f7a8ef27db6e5d516128f52d2c560408cbb75796ac2f83ead669e73507c86282d45f84c5abbb6 + version: 2.3.0 + resolution: "ipaddr.js@npm:2.3.0" + checksum: 10c0/084bab99e2f6875d7a62adc3325e1c64b038a12c9521e35fb967b5e263a8b3afb1b8884dd77c276092331f5d63298b767491e10997ef147c62da01b143780bbd languageName: node linkType: hard @@ -9923,19 +10028,6 @@ __metadata: languageName: node linkType: hard -"jackspeak@npm:^3.1.2": - version: 3.4.3 - resolution: "jackspeak@npm:3.4.3" - dependencies: - "@isaacs/cliui": "npm:^8.0.2" - "@pkgjs/parseargs": "npm:^0.11.0" - dependenciesMeta: - "@pkgjs/parseargs": - optional: true - checksum: 10c0/6acc10d139eaefdbe04d2f679e6191b3abf073f111edf10b1de5302c97ec93fffeb2fdd8681ed17f16268aa9dd4f8c588ed9d1d3bffbbfa6e8bf897cbb3149b9 - languageName: node - linkType: hard - "jackspeak@npm:^4.1.1": version: 4.1.1 resolution: "jackspeak@npm:4.1.1" @@ -9983,10 +10075,10 @@ __metadata: languageName: node linkType: hard -"jose@npm:^5.9.6": - version: 5.10.0 - resolution: "jose@npm:5.10.0" - checksum: 10c0/e20d9fc58d7e402f2e5f04e824b8897d5579aae60e64cb88ebdea1395311c24537bf4892f7de413fab1acf11e922797fb1b42269bc8fc65089a3749265ccb7b0 +"jose@npm:^6.1.0": + version: 6.1.2 + resolution: "jose@npm:6.1.2" + checksum: 10c0/55f79426f43e652ed6d5de938d50f66bb0a10dcae078db81a23f8d3303e889ce226f000e815f3211f9956bb84badce10da892d130d40fe2eca658045a6f1778e languageName: node linkType: hard @@ -9997,14 +10089,14 @@ __metadata: languageName: node linkType: hard -"js-yaml@npm:^4.1.0": - version: 4.1.0 - resolution: "js-yaml@npm:4.1.0" +"js-yaml@npm:^4.1.1": + version: 4.1.1 + resolution: "js-yaml@npm:4.1.1" dependencies: argparse: "npm:^2.0.1" bin: js-yaml: bin/js-yaml.js - checksum: 10c0/184a24b4eaacfce40ad9074c64fd42ac83cf74d8c8cd137718d456ced75051229e5061b8633c3366b8aada17945a7a356b337828c19da92b51ae62126575018f + checksum: 10c0/561c7d7088c40a9bb53cc75becbfb1df6ae49b34b5e6e5a81744b14ae8667ec564ad2527709d1a6e7d5e5fa6d483aa0f373a50ad98d42fde368ec4a190d4fae7 languageName: node linkType: hard @@ -10113,7 +10205,7 @@ __metadata: languageName: node linkType: hard -"kysely@npm:^0.28.1": +"kysely@npm:^0.28.5": version: 0.28.8 resolution: "kysely@npm:0.28.8" checksum: 10c0/e654c940bed73299291c727e5ef3ecf23fcf4712ac0062cab3cbbb3e2ce4f1f98a74919638b9c034e555a1988d387ca4b28714710e7d46919ee3acf4b7ec23bd @@ -10429,14 +10521,7 @@ __metadata: languageName: node linkType: hard -"lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": - version: 10.4.3 - resolution: "lru-cache@npm:10.4.3" - checksum: 10c0/ebd04fbca961e6c1d6c0af3799adcc966a1babe798f685bb84e6599266599cd95d94630b10262f5424539bc4640107e8a33aa28585374abf561d30d16f4b39fb - languageName: node - linkType: hard - -"lru-cache@npm:^11.0.0": +"lru-cache@npm:^11.0.0, lru-cache@npm:^11.1.0, lru-cache@npm:^11.2.1": version: 11.2.2 resolution: "lru-cache@npm:11.2.2" checksum: 10c0/72d7831bbebc85e2bdefe01047ee5584db69d641c48d7a509e86f66f6ee111b30af7ec3bd68a967d47b69a4b1fa8bbf3872630bd06a63b6735e6f0a5f1c8e83d @@ -10461,7 +10546,7 @@ __metadata: languageName: node linkType: hard -"magic-string@npm:^0.30.19": +"magic-string@npm:^0.30.21": version: 0.30.21 resolution: "magic-string@npm:0.30.21" dependencies: @@ -10470,22 +10555,22 @@ __metadata: languageName: node linkType: hard -"make-fetch-happen@npm:^14.0.3": - version: 14.0.3 - resolution: "make-fetch-happen@npm:14.0.3" +"make-fetch-happen@npm:^15.0.0": + version: 15.0.3 + resolution: "make-fetch-happen@npm:15.0.3" dependencies: - "@npmcli/agent": "npm:^3.0.0" - cacache: "npm:^19.0.1" + "@npmcli/agent": "npm:^4.0.0" + cacache: "npm:^20.0.1" http-cache-semantics: "npm:^4.1.1" minipass: "npm:^7.0.2" - minipass-fetch: "npm:^4.0.0" + minipass-fetch: "npm:^5.0.0" minipass-flush: "npm:^1.0.5" minipass-pipeline: "npm:^1.2.4" negotiator: "npm:^1.0.0" - proc-log: "npm:^5.0.0" + proc-log: "npm:^6.0.0" promise-retry: "npm:^2.0.1" - ssri: "npm:^12.0.0" - checksum: 10c0/c40efb5e5296e7feb8e37155bde8eb70bc57d731b1f7d90e35a092fde403d7697c56fb49334d92d330d6f1ca29a98142036d6480a12681133a0a1453164cb2f0 + ssri: "npm:^13.0.0" + checksum: 10c0/525f74915660be60b616bcbd267c4a5b59481b073ba125e45c9c3a041bb1a47a2bd0ae79d028eb6f5f95bf9851a4158423f5068539c3093621abb64027e8e461 languageName: node linkType: hard @@ -10564,11 +10649,11 @@ __metadata: linkType: hard "mime-types@npm:^3.0.0": - version: 3.0.1 - resolution: "mime-types@npm:3.0.1" + version: 3.0.2 + resolution: "mime-types@npm:3.0.2" dependencies: mime-db: "npm:^1.54.0" - checksum: 10c0/bd8c20d3694548089cf229016124f8f40e6a60bbb600161ae13e45f793a2d5bb40f96bbc61f275836696179c77c1d6bf4967b2a75e0a8ad40fe31f4ed5be4da5 + checksum: 10c0/35a0dd1035d14d185664f346efcdb72e93ef7a9b6e9ae808bd1f6358227010267fab52657b37562c80fc888ff76becb2b2938deb5e730818b7983bf8bd359767 languageName: node linkType: hard @@ -10586,7 +10671,7 @@ __metadata: languageName: node linkType: hard -"minimatch@npm:^10.0.1, minimatch@npm:^10.0.3": +"minimatch@npm:^10.0.1, minimatch@npm:^10.1.1": version: 10.1.1 resolution: "minimatch@npm:10.1.1" dependencies: @@ -10660,9 +10745,9 @@ __metadata: languageName: node linkType: hard -"minipass-fetch@npm:^4.0.0": - version: 4.0.1 - resolution: "minipass-fetch@npm:4.0.1" +"minipass-fetch@npm:^5.0.0": + version: 5.0.0 + resolution: "minipass-fetch@npm:5.0.0" dependencies: encoding: "npm:^0.1.13" minipass: "npm:^7.0.3" @@ -10671,7 +10756,7 @@ __metadata: dependenciesMeta: encoding: optional: true - checksum: 10c0/a3147b2efe8e078c9bf9d024a0059339c5a09c5b1dded6900a219c218cc8b1b78510b62dae556b507304af226b18c3f1aeb1d48660283602d5b6586c399eed5c + checksum: 10c0/9443aab5feab190972f84b64116e54e58dd87a58e62399cae0a4a7461b80568281039b7c3a38ba96453431ebc799d1e26999e548540156216729a4967cd5ef06 languageName: node linkType: hard @@ -10711,7 +10796,7 @@ __metadata: languageName: node linkType: hard -"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4, minipass@npm:^7.1.2": +"minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4, minipass@npm:^7.1.2": version: 7.1.2 resolution: "minipass@npm:7.1.2" checksum: 10c0/b0fd20bb9fb56e5fa9a8bfac539e8915ae07430a619e4b86ff71f5fc757ef3924b23b2c4230393af1eda647ed3d75739e4e0acb250a6b1eb277cf7f8fe449557 @@ -10815,11 +10900,11 @@ __metadata: linkType: hard "nan@npm:^2.19.0, nan@npm:^2.23.0": - version: 2.23.0 - resolution: "nan@npm:2.23.0" + version: 2.23.1 + resolution: "nan@npm:2.23.1" dependencies: node-gyp: "npm:latest" - checksum: 10c0/b986dd257dca53ab43a3b6ca6d0eafde697b69e1d63b242fa4aece50ce97eb169f9c4a5d8eb0eb5f58d118a9595fee11f3198fa210f023440053bb6f54109e73 + checksum: 10c0/bda21d2eeea65d49d673d0ec63030212264a55b4a7e6546a73b5a1540dcfa3c3f3cc0e7f23940d2e8edd4dc58525e97941d533d3be55a2da2158489150de32b9 languageName: node linkType: hard @@ -10832,10 +10917,10 @@ __metadata: languageName: node linkType: hard -"nanostores@npm:^0.11.3": - version: 0.11.4 - resolution: "nanostores@npm:0.11.4" - checksum: 10c0/45ce577ccd96938b756c238e5783b0de3369381905f164e7bd003794d34a3c1eb7bddb049699a48a35bb03d9745bcb3cd6ad549b5e81493b2de22ae2bdccf14c +"nanostores@npm:^1.0.1": + version: 1.1.0 + resolution: "nanostores@npm:1.1.0" + checksum: 10c0/c604a4afd4adc882637e2e44004924208bd40a95af9699ec8672eda1abd510d2a75688a0284cd5fbbf90af3311e59c77973df5d003ac3ffe98feb248777fbef7 languageName: node linkType: hard @@ -10969,19 +11054,19 @@ __metadata: languageName: node linkType: hard -"next@npm:16.0.0": - version: 16.0.0 - resolution: "next@npm:16.0.0" +"next@npm:16.0.5": + version: 16.0.5 + resolution: "next@npm:16.0.5" dependencies: - "@next/env": "npm:16.0.0" - "@next/swc-darwin-arm64": "npm:16.0.0" - "@next/swc-darwin-x64": "npm:16.0.0" - "@next/swc-linux-arm64-gnu": "npm:16.0.0" - "@next/swc-linux-arm64-musl": "npm:16.0.0" - "@next/swc-linux-x64-gnu": "npm:16.0.0" - "@next/swc-linux-x64-musl": "npm:16.0.0" - "@next/swc-win32-arm64-msvc": "npm:16.0.0" - "@next/swc-win32-x64-msvc": "npm:16.0.0" + "@next/env": "npm:16.0.5" + "@next/swc-darwin-arm64": "npm:16.0.5" + "@next/swc-darwin-x64": "npm:16.0.5" + "@next/swc-linux-arm64-gnu": "npm:16.0.5" + "@next/swc-linux-arm64-musl": "npm:16.0.5" + "@next/swc-linux-x64-gnu": "npm:16.0.5" + "@next/swc-linux-x64-musl": "npm:16.0.5" + "@next/swc-win32-arm64-msvc": "npm:16.0.5" + "@next/swc-win32-x64-msvc": "npm:16.0.5" "@swc/helpers": "npm:0.5.15" caniuse-lite: "npm:^1.0.30001579" postcss: "npm:8.4.31" @@ -11024,7 +11109,7 @@ __metadata: optional: true bin: next: dist/bin/next - checksum: 10c0/8e93f45b7a6261417c10d8f1f5b53265e7d4dc0223b541c087a2726230ee5b11d767a6b436e69f345150606cb4aec646abfc741384083b19d62f41b11d20d790 + checksum: 10c0/d3b3a1be6e003ec2ede3535903716fe9d9d6eb6485f5f09f1c5de070b64fc636ea2316e868260fee272a74373e6296a5ab4db645d7ec89c845ac6eb9ccbad601 languageName: node linkType: hard @@ -11076,9 +11161,9 @@ __metadata: linkType: hard "node-forge@npm:^1.3.1": - version: 1.3.1 - resolution: "node-forge@npm:1.3.1" - checksum: 10c0/e882819b251a4321f9fc1d67c85d1501d3004b4ee889af822fd07f64de3d1a8e272ff00b689570af0465d65d6bf5074df9c76e900e0aff23e60b847f2a46fbe8 + version: 1.3.2 + resolution: "node-forge@npm:1.3.2" + checksum: 10c0/1def35652c93a588718a6d0d0b4f33e3e7de283aa6f4c00d01d1605d6ccce23fb3b59bcbfb6434014acd23a251cfcc2736052b406f53d94e1b19c09d289d0176 languageName: node linkType: hard @@ -11094,22 +11179,22 @@ __metadata: linkType: hard "node-gyp@npm:latest": - version: 11.5.0 - resolution: "node-gyp@npm:11.5.0" + version: 12.1.0 + resolution: "node-gyp@npm:12.1.0" dependencies: env-paths: "npm:^2.2.0" exponential-backoff: "npm:^3.1.1" graceful-fs: "npm:^4.2.6" - make-fetch-happen: "npm:^14.0.3" - nopt: "npm:^8.0.0" - proc-log: "npm:^5.0.0" + make-fetch-happen: "npm:^15.0.0" + nopt: "npm:^9.0.0" + proc-log: "npm:^6.0.0" semver: "npm:^7.3.5" - tar: "npm:^7.4.3" + tar: "npm:^7.5.2" tinyglobby: "npm:^0.2.12" - which: "npm:^5.0.0" + which: "npm:^6.0.0" bin: node-gyp: bin/node-gyp.js - checksum: 10c0/31ff49586991b38287bb15c3d529dd689cfc32f992eed9e6997b9d712d5d21fe818a8b1bbfe3b76a7e33765c20210c5713212f4aa329306a615b87d8a786da3a + checksum: 10c0/f43efea8aaf0beb6b2f6184e533edad779b2ae38062953e21951f46221dd104006cc574154f2ad4a135467a5aae92c49e84ef289311a82e08481c5df0e8dc495 languageName: node linkType: hard @@ -11123,7 +11208,7 @@ __metadata: languageName: node linkType: hard -"node-releases@npm:^2.0.26, node-releases@npm:^2.0.27": +"node-releases@npm:^2.0.27": version: 2.0.27 resolution: "node-releases@npm:2.0.27" checksum: 10c0/f1e6583b7833ea81880627748d28a3a7ff5703d5409328c216ae57befbced10ce2c991bea86434e8ec39003bd017f70481e2e5f8c1f7e0a7663241f81d6e00e2 @@ -11131,20 +11216,20 @@ __metadata: linkType: hard "nodemailer@npm:^7.0.3": - version: 7.0.10 - resolution: "nodemailer@npm:7.0.10" - checksum: 10c0/9bb39bde904397879a6394e5202146167cabc3bd4089c1b0255ce16875e721d1cf132afde25a570fc4cf38f159ba6b6b5411d3b9371775543d38343fbd505101 + version: 7.0.11 + resolution: "nodemailer@npm:7.0.11" + checksum: 10c0/208f108fdb4c5dd0e3a2f013578d53dad505cf1b9c7a084f6d22fc9d6f3912daafb4a23793ca568ff848afc35f15f4eb24382d3f6f9fb8ede4a8410d4ca63618 languageName: node linkType: hard -"nopt@npm:^8.0.0": - version: 8.1.0 - resolution: "nopt@npm:8.1.0" +"nopt@npm:^9.0.0": + version: 9.0.0 + resolution: "nopt@npm:9.0.0" dependencies: - abbrev: "npm:^3.0.0" + abbrev: "npm:^4.0.0" bin: nopt: bin/nopt.js - checksum: 10c0/62e9ea70c7a3eb91d162d2c706b6606c041e4e7b547cbbb48f8b3695af457dd6479904d7ace600856bf923dd8d1ed0696f06195c8c20f02ac87c1da0e1d315ef + checksum: 10c0/1822eb6f9b020ef6f7a7516d7b64a8036e09666ea55ac40416c36e4b2b343122c3cff0e2f085675f53de1d2db99a2a89a60ccea1d120bcd6a5347bf6ceb4a7fd languageName: node linkType: hard @@ -11419,9 +11504,9 @@ __metadata: linkType: hard "p-map@npm:^7.0.2": - version: 7.0.3 - resolution: "p-map@npm:7.0.3" - checksum: 10c0/46091610da2b38ce47bcd1d8b4835a6fa4e832848a6682cf1652bc93915770f4617afc844c10a77d1b3e56d2472bb2d5622353fa3ead01a7f42b04fc8e744a5c + version: 7.0.4 + resolution: "p-map@npm:7.0.4" + checksum: 10c0/a5030935d3cb2919d7e89454d1ce82141e6f9955413658b8c9403cfe379283770ed3048146b44cde168aa9e8c716505f196d5689db0ae3ce9a71521a2fef3abd languageName: node linkType: hard @@ -11509,23 +11594,13 @@ __metadata: languageName: node linkType: hard -"path-scurry@npm:^1.11.1": - version: 1.11.1 - resolution: "path-scurry@npm:1.11.1" - dependencies: - lru-cache: "npm:^10.2.0" - minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" - checksum: 10c0/32a13711a2a505616ae1cc1b5076801e453e7aae6ac40ab55b388bb91b9d0547a52f5aaceff710ea400205f18691120d4431e520afbe4266b836fadede15872d - languageName: node - linkType: hard - "path-scurry@npm:^2.0.0": - version: 2.0.0 - resolution: "path-scurry@npm:2.0.0" + version: 2.0.1 + resolution: "path-scurry@npm:2.0.1" dependencies: lru-cache: "npm:^11.0.0" minipass: "npm:^7.1.2" - checksum: 10c0/3da4adedaa8e7ef8d6dc4f35a0ff8f05a9b4d8365f2b28047752b62d4c1ad73eec21e37b1579ef2d075920157856a3b52ae8309c480a6f1a8bbe06ff8e52b33c + checksum: 10c0/2a16ed0e81fbc43513e245aa5763354e25e787dab0d539581a6c3f0f967461a159ed6236b2559de23aa5b88e7dc32b469b6c47568833dd142a4b24b4f5cd2620 languageName: node linkType: hard @@ -11736,8 +11811,9 @@ __metadata: "@zenstackhq/runtime": "npm:2.14.2" "@zenstackhq/tanstack-query": "npm:^2.14.2" argon2: "npm:^0.43.0" + baseline-browser-mapping: "npm:^2.8.32" bcrypt: "npm:^6.0.0" - better-auth: "npm:1.3.1" + better-auth: "npm:1.4.0" class-variance-authority: "npm:^0.7.1" clsx: "npm:^2.1.1" cmdk: "npm:^1.1.1" @@ -11755,7 +11831,7 @@ __metadata: lucide-react: "npm:^0.553.0" minio: "npm:^8.0.5" motion: "npm:^12.23.24" - next: "npm:16.0.0" + next: "npm:16.0.5" next-safe-action: "npm:^7.10.8" next-themes: "npm:^0.4.6" node-cron: "npm:^4.2.1" @@ -11927,11 +12003,11 @@ __metadata: linkType: hard "prettier@npm:^3.5.3": - version: 3.6.2 - resolution: "prettier@npm:3.6.2" + version: 3.7.1 + resolution: "prettier@npm:3.7.1" bin: prettier: bin/prettier.cjs - checksum: 10c0/488cb2f2b99ec13da1e50074912870217c11edaddedeadc649b1244c749d15ba94e846423d062e2c4c9ae683e2d65f754de28889ba06e697ac4f988d44f45812 + checksum: 10c0/a6610043ee0a64a3251a948bf82fad3e59d984a8e8dea206400cfa190585417e3343b32c1f6ae7d8f40798a9b4bd91affc08fa7795dd99a9dec5c9bccdf31500 languageName: node linkType: hard @@ -11973,10 +12049,10 @@ __metadata: languageName: node linkType: hard -"proc-log@npm:^5.0.0": - version: 5.0.0 - resolution: "proc-log@npm:5.0.0" - checksum: 10c0/bbe5edb944b0ad63387a1d5b1911ae93e05ce8d0f60de1035b218cdcceedfe39dbd2c697853355b70f1a090f8f58fe90da487c85216bf9671f9499d1a897e9e3 +"proc-log@npm:^6.0.0": + version: 6.1.0 + resolution: "proc-log@npm:6.1.0" + checksum: 10c0/4f178d4062733ead9d71a9b1ab24ebcecdfe2250916a5b1555f04fe2eda972a0ec76fbaa8df1ad9c02707add6749219d118a4fc46dc56bdfe4dde4b47d80bb82 languageName: node linkType: hard @@ -12048,22 +12124,6 @@ __metadata: languageName: node linkType: hard -"pvtsutils@npm:^1.3.6": - version: 1.3.6 - resolution: "pvtsutils@npm:1.3.6" - dependencies: - tslib: "npm:^2.8.1" - checksum: 10c0/b1b42646370505ccae536dcffa662303b2c553995211330c8e39dec9ab8c197585d7751c2c5b9ab2f186feda0219d9bb23c34ee1e565573be96450f79d89a13c - languageName: node - linkType: hard - -"pvutils@npm:^1.1.3": - version: 1.1.5 - resolution: "pvutils@npm:1.1.5" - checksum: 10c0/e968b07b78a58fec9377fe7aa6342c8cfa21c8fb4afc4e51e1489bd42bec6dc71b8a52541d0aede0aea17adec7ca3f89f29f56efdc31d0083cc02e9bb5721bcf - languageName: node - linkType: hard - "query-string@npm:^7.1.3": version: 7.1.3 resolution: "query-string@npm:7.1.3" @@ -12177,11 +12237,11 @@ __metadata: linkType: hard "react-hook-form@npm:^7.56.3": - version: 7.66.0 - resolution: "react-hook-form@npm:7.66.0" + version: 7.66.1 + resolution: "react-hook-form@npm:7.66.1" peerDependencies: react: ^16.8.0 || ^17 || ^18 || ^19 - checksum: 10c0/9faeafdaedfabfcbf5f8bb1aeefb81863b8e158eef4b089e2a32180fe474aec47d05fe3ed7d4faea085ca9f689118fb1135b94cdeed2022bd7d3fa3a56530c63 + checksum: 10c0/f82238249d44111b377116bdfb6063045e3e81fef4c73d7f487160554fa4b43ff0970dec1f4d031e57bc2dfbdd974bdfba5608bc8c5785998a7b8a39a566428f languageName: node linkType: hard @@ -12399,13 +12459,6 @@ __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" @@ -12629,9 +12682,9 @@ __metadata: linkType: hard "sax@npm:>=0.6.0": - version: 1.4.1 - resolution: "sax@npm:1.4.1" - checksum: 10c0/6bf86318a254c5d898ede6bd3ded15daf68ae08a5495a2739564eb265cd13bcc64a07ab466fb204f67ce472bb534eb8612dac587435515169593f4fffa11de7c + version: 1.4.3 + resolution: "sax@npm:1.4.3" + checksum: 10c0/45bba07561d93f184a8686e1a543418ced8c844b994fbe45cc49d5cd2fc8ac7ec949dae38565e35e388ad0cca2b75997a29b6857c927bf6553da3f80ed0e4e62 languageName: node linkType: hard @@ -12752,7 +12805,7 @@ __metadata: languageName: node linkType: hard -"sharp@npm:0.34.4, sharp@npm:^0.34.4": +"sharp@npm:0.34.4": version: 0.34.4 resolution: "sharp@npm:0.34.4" dependencies: @@ -12830,7 +12883,7 @@ __metadata: languageName: node linkType: hard -"sharp@npm:^0.34.3": +"sharp@npm:^0.34.3, sharp@npm:^0.34.4": version: 0.34.5 resolution: "sharp@npm:0.34.5" dependencies: @@ -13180,12 +13233,12 @@ __metadata: languageName: node linkType: hard -"ssri@npm:^12.0.0": - version: 12.0.0 - resolution: "ssri@npm:12.0.0" +"ssri@npm:^13.0.0": + version: 13.0.0 + resolution: "ssri@npm:13.0.0" dependencies: minipass: "npm:^7.0.3" - checksum: 10c0/caddd5f544b2006e88fa6b0124d8d7b28208b83c72d7672d5ade44d794525d23b540f3396108c4eb9280dcb7c01f0bef50682f5b4b2c34291f7c5e211fd1417d + checksum: 10c0/405f3a531cd98b013cecb355d63555dca42fd12c7bc6671738aaa9a82882ff41cdf0ef9a2b734ca4f9a760338f114c29d01d9238a65db3ccac27929bd6e6d4b2 languageName: node linkType: hard @@ -13506,9 +13559,9 @@ __metadata: linkType: hard "tailwind-merge@npm:^3.3.0": - version: 3.3.1 - resolution: "tailwind-merge@npm:3.3.1" - checksum: 10c0/b84c6a78d4669fa12bf5ab8f0cdc4400a3ce0a7c006511af4af4be70bb664a27466dbe13ee9e3b31f50ddf6c51d380e8192ce0ec9effce23ca729d71a9f63818 + version: 3.4.0 + resolution: "tailwind-merge@npm:3.4.0" + checksum: 10c0/eaf17bb695c51c7bb7a90366a9c62be295473ee97fcfd1da54287714d4a5788a88ff4ad1ab9e0128638257fda777d6c9ea88682e36195e31a7fa2cf43f45e310 languageName: node linkType: hard @@ -13545,10 +13598,10 @@ __metadata: languageName: node linkType: hard -"tailwindcss@npm:4.1.16, tailwindcss@npm:^4.1.7": - version: 4.1.16 - resolution: "tailwindcss@npm:4.1.16" - checksum: 10c0/11beec3112686767292f43d602ffa26068be6b505adba7929ad17b2a3d8e262bdb2eb7c8d226325654ab8268ddd0ca7b7231df8ba59a77becbdae0df9f86268a +"tailwindcss@npm:4.1.17, tailwindcss@npm:^4.1.7": + version: 4.1.17 + resolution: "tailwindcss@npm:4.1.17" + checksum: 10c0/1fecf618ba9895e068e5a6d842b978f56a815bc849a28338cebbcb07b13df763715c2f8848def938403c73d59f08ffff33a4b83a977a9e38fa56adc60d1d56c8 languageName: node linkType: hard @@ -13584,7 +13637,7 @@ __metadata: languageName: node linkType: hard -"tar@npm:^7.4.3": +"tar@npm:^7.5.2": version: 7.5.2 resolution: "tar@npm:7.5.2" dependencies: @@ -13685,13 +13738,13 @@ __metadata: linkType: hard "tinyexec@npm:^1.0.1": - version: 1.0.1 - resolution: "tinyexec@npm:1.0.1" - checksum: 10c0/e1ec3c8194a0427ce001ba69fd933d0c957e2b8994808189ed8020d3e0c01299aea8ecf0083cc514ecbf90754695895f2b5c0eac07eb2d0c406f7d4fbb8feade + version: 1.0.2 + resolution: "tinyexec@npm:1.0.2" + checksum: 10c0/1261a8e34c9b539a9aae3b7f0bb5372045ff28ee1eba035a2a059e532198fe1a182ec61ac60fa0b4a4129f0c4c4b1d2d57355b5cb9aa2d17ac9454ecace502ee languageName: node linkType: hard -"tinyglobby@npm:^0.2.11, tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.13": +"tinyglobby@npm:^0.2.11, tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.13, tinyglobby@npm:^0.2.15": version: 0.2.15 resolution: "tinyglobby@npm:0.2.15" dependencies: @@ -13794,14 +13847,7 @@ __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.6.2, tslib@npm:^2.7.0, tslib@npm:^2.8.0, tslib@npm:^2.8.1": +"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.6.2, tslib@npm:^2.7.0, tslib@npm:^2.8.0": version: 2.8.1 resolution: "tslib@npm:2.8.1" checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62 @@ -13824,15 +13870,6 @@ __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.4.0 resolution: "tw-animate-css@npm:1.4.0" @@ -13940,21 +13977,21 @@ __metadata: linkType: hard "typescript-eslint@npm:^8.46.0": - version: 8.46.2 - resolution: "typescript-eslint@npm:8.46.2" + version: 8.48.0 + resolution: "typescript-eslint@npm:8.48.0" dependencies: - "@typescript-eslint/eslint-plugin": "npm:8.46.2" - "@typescript-eslint/parser": "npm:8.46.2" - "@typescript-eslint/typescript-estree": "npm:8.46.2" - "@typescript-eslint/utils": "npm:8.46.2" + "@typescript-eslint/eslint-plugin": "npm:8.48.0" + "@typescript-eslint/parser": "npm:8.48.0" + "@typescript-eslint/typescript-estree": "npm:8.48.0" + "@typescript-eslint/utils": "npm:8.48.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 10c0/9c1bef1887ee984e63cbf4f4321f22ed232b192597400b74220aaecd42235bccc3c7786e002d283f81e1a0812a1c6d83ea5860bffa5e87d119204ecb9db0296a + checksum: 10c0/bd1a8691148c2424a92458e1f67f0b78b4ee8698a561ec53412874fb1333cf475d604c71a5832ce5140dbda76420dfd299d3cd39dd18ca7101476f86d3cd67af languageName: node linkType: hard -"typescript@npm:^5.8.2, typescript@npm:^5.8.3": +"typescript@npm:^5.8.3": version: 5.9.3 resolution: "typescript@npm:5.9.3" bin: @@ -13964,7 +14001,7 @@ __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.3#optional!builtin": version: 5.9.3 resolution: "typescript@patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5" bin: @@ -13986,13 +14023,6 @@ __metadata: languageName: node linkType: hard -"uncrypto@npm:^0.1.3": - version: 0.1.3 - resolution: "uncrypto@npm:0.1.3" - checksum: 10c0/74a29afefd76d5b77bedc983559ceb33f5bbc8dada84ff33755d1e3355da55a4e03a10e7ce717918c436b4dfafde1782e799ebaf2aadd775612b49f7b5b2998e - languageName: node - linkType: hard - "underscore@npm:^1.7.0": version: 1.13.7 resolution: "underscore@npm:1.13.7" @@ -14014,21 +14044,21 @@ __metadata: languageName: node linkType: hard -"unique-filename@npm:^4.0.0": - version: 4.0.0 - resolution: "unique-filename@npm:4.0.0" +"unique-filename@npm:^5.0.0": + version: 5.0.0 + resolution: "unique-filename@npm:5.0.0" dependencies: - unique-slug: "npm:^5.0.0" - checksum: 10c0/38ae681cceb1408ea0587b6b01e29b00eee3c84baee1e41fd5c16b9ed443b80fba90c40e0ba69627e30855570a34ba8b06702d4a35035d4b5e198bf5a64c9ddc + unique-slug: "npm:^6.0.0" + checksum: 10c0/afb897e9cf4c2fb622ea716f7c2bb462001928fc5f437972213afdf1cc32101a230c0f1e9d96fc91ee5185eca0f2feb34127145874975f347be52eb91d6ccc2c languageName: node linkType: hard -"unique-slug@npm:^5.0.0": - version: 5.0.0 - resolution: "unique-slug@npm:5.0.0" +"unique-slug@npm:^6.0.0": + version: 6.0.0 + resolution: "unique-slug@npm:6.0.0" dependencies: imurmurhash: "npm:^0.1.4" - checksum: 10c0/d324c5a44887bd7e105ce800fcf7533d43f29c48757ac410afd42975de82cc38ea2035c0483f4de82d186691bf3208ef35c644f73aa2b1b20b8e651be5afd293 + checksum: 10c0/da7ade4cb04eb33ad0499861f82fe95ce9c7c878b7139dc54d140ecfb6a6541c18a5c8dac16188b8b379fe62c0c1f1b710814baac910cde5f4fec06212126c6a languageName: node linkType: hard @@ -14559,14 +14589,14 @@ __metadata: languageName: node linkType: hard -"which@npm:^5.0.0": - version: 5.0.0 - resolution: "which@npm:5.0.0" +"which@npm:^6.0.0": + version: 6.0.0 + resolution: "which@npm:6.0.0" dependencies: isexe: "npm:^3.1.1" bin: node-which: bin/which.js - checksum: 10c0/e556e4cd8b7dbf5df52408c9a9dd5ac6518c8c5267c8953f5b0564073c66ed5bf9503b14d876d0e9c7844d4db9725fb0dcf45d6e911e17e26ab363dc3965ae7b + checksum: 10c0/fe9d6463fe44a76232bb6e3b3181922c87510a5b250a98f1e43a69c99c079b3f42ddeca7e03d3e5f2241bf2d334f5a7657cfa868b97c109f3870625842f4cc15 languageName: node linkType: hard @@ -14815,9 +14845,9 @@ __metadata: languageName: node linkType: hard -"zod@npm:^3.25.0 || ^4.0.0, zod@npm:^4.0.5": - version: 4.1.12 - resolution: "zod@npm:4.1.12" - checksum: 10c0/b64c1feb19e99d77075261eaf613e0b2be4dfcd3551eff65ad8b4f2a079b61e379854d066f7d447491fcf193f45babd8095551a9d47973d30b46b6d8e2c46774 +"zod@npm:^3.25.0 || ^4.0.0, zod@npm:^4.1.12": + version: 4.1.13 + resolution: "zod@npm:4.1.13" + checksum: 10c0/d7e74e82dba81a91ffc3239cd85bc034abe193a28f7087a94ab258a3e48e9a7ca4141920cac979a0d781495b48fc547777394149f26be04c3dc642f58bbc3941 languageName: node linkType: hard