File size: 861 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
export enum ErrorMessage {
InvalidCredentials = "InvalidCredentials",
UserAlreadyExists = "UserAlreadyExists",
SecretsNotFound = "SecretsNotFound",
OAuthUser = "OAuthUser",
InvalidResetToken = "InvalidResetToken",
InvalidVerificationToken = "InvalidVerificationToken",
EmailAlreadyVerified = "EmailAlreadyVerified",
TwoFactorNotEnabled = "TwoFactorNotEnabled",
TwoFactorAlreadyEnabled = "TwoFactorAlreadyEnabled",
InvalidTwoFactorCode = "InvalidTwoFactorCode",
InvalidTwoFactorBackupCode = "InvalidTwoFactorBackupCode",
InvalidBrowserConnection = "InvalidBrowserConnection",
ResumeSlugAlreadyExists = "ResumeSlugAlreadyExists",
ResumeNotFound = "ResumeNotFound",
ResumeLocked = "ResumeLocked",
ResumePrinterError = "ResumePrinterError",
ResumePreviewError = "ResumePreviewError",
SomethingWentWrong = "SomethingWentWrong",
}
|