UNPKG

@arc-publishing/sdk-identity

Version:
23 lines (22 loc) 636 B
export interface UserIdentity { uuid?: string; accessToken?: string; refreshToken?: string; impersonator?: string; idToken?: string; expiresIn?: number; disqus?: { enabled: boolean; publicKey: string; ssoKey?: string; }; } export interface UpdatePasswordSuccessResponse { userName: string; passwordReset: boolean; type: string; lastLoginDate?: number; locked?: boolean; } export declare function isUpdatePasswordSuccessResponse(object: any): object is UpdatePasswordSuccessResponse; export declare function isUserIdentity(object: any): object is UserIdentity;