251206:1710 specs: frontend plan P1,P3 wait Verification
Some checks failed
Spec Validation / validate-markdown (push) Has been cancelled
Spec Validation / validate-diagrams (push) Has been cancelled
Spec Validation / check-todos (push) Has been cancelled

This commit is contained in:
admin
2025-12-06 17:10:56 +07:00
parent be3b71007a
commit 5c49bac772
40 changed files with 977 additions and 244 deletions

View File

@@ -9,6 +9,8 @@ declare module "next-auth" {
organizationId?: number;
} & DefaultSession["user"]
accessToken?: string;
refreshToken?: string;
error?: string;
}
interface User {
@@ -16,6 +18,7 @@ declare module "next-auth" {
role: string;
organizationId?: number;
accessToken?: string;
refreshToken?: string;
}
}
@@ -25,5 +28,8 @@ declare module "next-auth/jwt" {
role: string;
organizationId?: number;
accessToken?: string;
refreshToken?: string;
accessTokenExpires?: number;
error?: string;
}
}
}