mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-12 14:05:08 +10:00
21 lines
861 B
TypeScript
21 lines
861 B
TypeScript
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",
|
|
}
|