fix(deps): update dependency @auth/core to ^0.32.0 (#603)

* fix(deps): update dependency @auth/core to ^0.32.0

* fix(deps): update dependency @auth/core to ^0.32.0

* fix: type issues with next-auth types

---------

Co-authored-by: homarr-renovate[bot] <158783068+homarr-renovate[bot]@users.noreply.github.com>
Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
This commit is contained in:
homarr-renovate[bot]
2024-06-02 11:01:10 +02:00
committed by GitHub
parent 869efbc638
commit dc3b00736e
7 changed files with 10 additions and 10 deletions

View File

@@ -1,12 +1,12 @@
import type { DefaultSession } from "@auth/core/types";
import type { DefaultSession } from "next-auth";
import type { GroupPermissionKey } from "@homarr/definitions";
import { createConfiguration } from "./configuration";
export type { Session } from "@auth/core/types";
export type { Session } from "next-auth";
declare module "@auth/core/types" {
declare module "next-auth" {
interface Session {
user: {
id: string;