@arc-publishing/sdk-identity
Version:
JS Identity SDK for working with Identity API
23 lines (22 loc) • 636 B
TypeScript
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;