-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnames.js
More file actions
13 lines (13 loc) · 684 Bytes
/
names.js
File metadata and controls
13 lines (13 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
export const BODY_TOO_LARGE = "BODY:TOO_LARGE";
export const CREDENTIAL_INVALID = "CREDENTIAL:INVALID";
export const GENERIC = "GENERIC";
export const OTP_CONFLICT = "OTP:CONFLICT";
export const OTP_EXPIRED = "OTP:EXPIRED";
export const OTP_INCORRECT = "OTP:INCORRECT";
export const OTP_INVALID_COOKIE = "OTP:INVALID_COOKIE";
export const OTP_INVALID_FORMAT = "OTP:INVALID_FORMAT";
export const OTP_RESENT_NOT_ALLOWED = "OTP:RESENT_NOT_ALLOWED";
export const OTP_TOO_MANY_ATTEMPTS = "OTP:TOO_MANY_ATTEMPTS";
export const OTP_TOO_MANY_CREDENTIALS = "OTP:TOO_MANY_CREDENTIALS";
export const OTP_VERIFICATION_NOT_ALLOWED = "OTP:VERIFICATION_NOT_ALLOWED";
export const SERVER = "SERVER";