Files
Reactive-Resume/libs/utils/src/namespaces/error.ts
T
2023-11-14 13:02:38 +01:00

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",
}