@konplit-services/common 1.0.77 → 1.0.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -79,6 +79,10 @@ export declare const error_codes: {
|
|
|
79
79
|
error_code: string;
|
|
80
80
|
code: number;
|
|
81
81
|
};
|
|
82
|
+
ACCOUNT_TWO_FACTOR_ALREADY_DISABLED: {
|
|
83
|
+
error_code: string;
|
|
84
|
+
code: number;
|
|
85
|
+
};
|
|
82
86
|
BUSINESS_ACCOUNT_NOT_FOUND: string;
|
|
83
87
|
PERMISSIONS_DENIED: string;
|
|
84
88
|
INVALID_STATUS_VALUE: string;
|
|
@@ -84,6 +84,10 @@ exports.error_codes = {
|
|
|
84
84
|
error_code: "ACCOUNT_TWO_FACTOR_ALREADY_ENABLED",
|
|
85
85
|
code: 320002,
|
|
86
86
|
},
|
|
87
|
+
ACCOUNT_TWO_FACTOR_ALREADY_DISABLED: {
|
|
88
|
+
error_code: "ACCOUNT_TWO_FACTOR_ALREADY_DISABLED",
|
|
89
|
+
code: 320003,
|
|
90
|
+
},
|
|
87
91
|
BUSINESS_ACCOUNT_NOT_FOUND: "BUSINESS_ACCOUNT_NOT_FOUND",
|
|
88
92
|
PERMISSIONS_DENIED: "PERMISSIONS_DENIED",
|
|
89
93
|
INVALID_STATUS_VALUE: "INVALID_STATUS_VALUE",
|
|
@@ -17,6 +17,7 @@ export declare const lang: {
|
|
|
17
17
|
account_blocked: string;
|
|
18
18
|
account_not_found: string;
|
|
19
19
|
account_two_factor_already_enabled: string;
|
|
20
|
+
account_two_factor_already_disabled: string;
|
|
20
21
|
permission_not_found: string;
|
|
21
22
|
user_blocked: string;
|
|
22
23
|
is_suspended: string;
|
|
@@ -25,6 +25,7 @@ exports.lang = {
|
|
|
25
25
|
account_blocked: "This account has been blocked",
|
|
26
26
|
account_not_found: "Account not found",
|
|
27
27
|
account_two_factor_already_enabled: "Two factor already enabled on the account",
|
|
28
|
+
account_two_factor_already_disabled: "Two factor already disabled on the account",
|
|
28
29
|
permission_not_found: "permssion not found",
|
|
29
30
|
user_blocked: "this user has been blocked",
|
|
30
31
|
// account_already_verified:"account already verified",
|