feat: handle login from deeplink

This commit is contained in:
Zamitto 2024-06-16 13:58:24 -03:00
parent 55c214eae6
commit 32566e5dfc
17 changed files with 243 additions and 62 deletions

View file

@ -244,6 +244,12 @@ export interface RealDebridUser {
expiration: string;
}
export interface UserAuth {
id: string;
displayName: string;
profileImageUrl: string | null;
}
export interface UserProfile {
id: string;
displayName: string;