@hastehaul/common 3.4.0 → 3.5.0
Sign up to get free protection for your applications and to get access to all the features.
- package/build/utils/enums.d.ts +1 -0
- package/build/utils/enums.js +1 -0
- package/package.json +1 -1
package/build/utils/enums.d.ts
CHANGED
@@ -45,6 +45,7 @@ export declare enum AccountStatus {
|
|
45
45
|
ResourceNotFoundError = 2306,// 2306 => Resource not found Error
|
46
46
|
SystemError = 2307,// 2307 => System Error
|
47
47
|
TooManyRequestError = 2308,// 2308 => Too Many request error
|
48
|
+
CustomerNotFound = 2309,// 2306 => Resource not found Error
|
48
49
|
IncorrectOrNotFoundOTP = 2400,// 2400 => Incorrect/Not Found OTP
|
49
50
|
OTPExpired = 2401
|
50
51
|
}
|
package/build/utils/enums.js
CHANGED
@@ -57,6 +57,7 @@ var AccountStatus;
|
|
57
57
|
AccountStatus[AccountStatus["ResourceNotFoundError"] = 2306] = "ResourceNotFoundError";
|
58
58
|
AccountStatus[AccountStatus["SystemError"] = 2307] = "SystemError";
|
59
59
|
AccountStatus[AccountStatus["TooManyRequestError"] = 2308] = "TooManyRequestError";
|
60
|
+
AccountStatus[AccountStatus["CustomerNotFound"] = 2309] = "CustomerNotFound";
|
60
61
|
AccountStatus[AccountStatus["IncorrectOrNotFoundOTP"] = 2400] = "IncorrectOrNotFoundOTP";
|
61
62
|
AccountStatus[AccountStatus["OTPExpired"] = 2401] = "OTPExpired";
|
62
63
|
})(AccountStatus || (exports.AccountStatus = AccountStatus = {}));
|