Refactor runtime bootstrap and ship control flows
This commit is contained in:
14
apps/viewer/src/contractsAuth.ts
Normal file
14
apps/viewer/src/contractsAuth.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
export interface AuthSessionResponse {
|
||||
userId: string;
|
||||
email: string;
|
||||
roles: string[];
|
||||
accessToken: string;
|
||||
accessTokenExpiresAtUtc: string;
|
||||
refreshToken: string;
|
||||
refreshTokenExpiresAtUtc: string;
|
||||
}
|
||||
|
||||
export interface ForgotPasswordResponse {
|
||||
accepted: boolean;
|
||||
resetToken?: string | null;
|
||||
}
|
||||
Reference in New Issue
Block a user