release: @marketplaces/auth 0.1.0 (built from main)
This commit is contained in:
14
dist/telegram/models/session.model.d.ts
vendored
Normal file
14
dist/telegram/models/session.model.d.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
export interface AuthSession {
|
||||
sessionId: string;
|
||||
userId: number | null;
|
||||
username: string | null;
|
||||
displayName: string;
|
||||
active: boolean;
|
||||
expires: string;
|
||||
}
|
||||
export interface WebSessionStart {
|
||||
webSessionID: string;
|
||||
url: string;
|
||||
}
|
||||
export type AuthStatus = 'unknown' | 'checking' | 'authenticated' | 'expired' | 'unauthenticated';
|
||||
export type AdminAuthStatus = 'unknown' | 'checking' | 'authenticated' | 'expired' | 'unauthenticated';
|
||||
Reference in New Issue
Block a user