@studyportals/sp-hs-misc
Version:
Miscellaneous code used in HouseStark's projects
17 lines (16 loc) • 407 B
TypeScript
/**
* Enumerates the reasons why an authentication operation can fail.
*
* @deprecated Use @studyportals/client-internal-platform-sso
*/
declare enum AuthenticationFailureReason {
/**
* The specified user identifier does not exist.
*/
USER_DOES_NOT_EXIST = 0,
/**
* The specified secret is incorrect.
*/
INCORRECT_SECRET = 1
}
export { AuthenticationFailureReason };