@studyportals/sp-hs-misc
Version:
Miscellaneous code used in HouseStark's projects
18 lines (17 loc) • 681 B
JavaScript
/**
* Enumerates the reasons why an authentication operation can fail.
*
* @deprecated Use @studyportals/client-internal-platform-sso
*/
var AuthenticationFailureReason;
//# sourceMappingURL=authentication-failure-reason.enum.js.map
(function (AuthenticationFailureReason) {
/**
* The specified user identifier does not exist.
*/
AuthenticationFailureReason[AuthenticationFailureReason["USER_DOES_NOT_EXIST"] = 0] = "USER_DOES_NOT_EXIST";
/**
* The specified secret is incorrect.
*/
AuthenticationFailureReason[AuthenticationFailureReason["INCORRECT_SECRET"] = 1] = "INCORRECT_SECRET";
})(AuthenticationFailureReason || (AuthenticationFailureReason = {}));