@frontegg/types 7.97.0 → 7.98.0
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.
|
@@ -116,6 +116,10 @@ export interface UsersLocalization {
|
|
|
116
116
|
* User pending activation status displayed in lastLogin column
|
|
117
117
|
*/
|
|
118
118
|
pendingActivationStatus: string;
|
|
119
|
+
/**
|
|
120
|
+
* User approved status displayed in status column
|
|
121
|
+
*/
|
|
122
|
+
approvedStatus: string;
|
|
119
123
|
/**
|
|
120
124
|
* Table row action for editing user roles
|
|
121
125
|
*/
|
|
@@ -93,5 +93,45 @@ export interface ForgetPasswordLocalization {
|
|
|
93
93
|
* @default Try another method
|
|
94
94
|
*/
|
|
95
95
|
tryAnotherMethod?: string;
|
|
96
|
+
/**
|
|
97
|
+
* Generic unknown error message
|
|
98
|
+
* @default Unknown error occurred
|
|
99
|
+
*/
|
|
100
|
+
unknownError?: string;
|
|
101
|
+
/**
|
|
102
|
+
* Error message when sending recovery email fails
|
|
103
|
+
* @default An error occurred while sending recovery email
|
|
104
|
+
*/
|
|
105
|
+
sendingRecoveryEmailError?: string;
|
|
106
|
+
/**
|
|
107
|
+
* Error message when sending recovery SMS fails
|
|
108
|
+
* @default An error occurred while sending recovery SMS
|
|
109
|
+
*/
|
|
110
|
+
sendingRecoverySmsError?: string;
|
|
111
|
+
/**
|
|
112
|
+
* Error message when session ID is not found
|
|
113
|
+
* @default Session ID not found
|
|
114
|
+
*/
|
|
115
|
+
sessionIdNotFound?: string;
|
|
116
|
+
/**
|
|
117
|
+
* Error message when server response is invalid
|
|
118
|
+
* @default Invalid response from server
|
|
119
|
+
*/
|
|
120
|
+
invalidServerResponse?: string;
|
|
121
|
+
/**
|
|
122
|
+
* Error message when verifying SMS code fails
|
|
123
|
+
* @default An error occurred while verifying password via SMS
|
|
124
|
+
*/
|
|
125
|
+
verifyingSmsError?: string;
|
|
126
|
+
/**
|
|
127
|
+
* Error message when no active recovery methods are found
|
|
128
|
+
* @default No active password recovery methods found
|
|
129
|
+
*/
|
|
130
|
+
noActiveRecoveryMethods?: string;
|
|
131
|
+
/**
|
|
132
|
+
* Error message when determining recovery strategy fails
|
|
133
|
+
* @default An error occurred while determining recovery strategy
|
|
134
|
+
*/
|
|
135
|
+
determiningRecoveryStrategyError?: string;
|
|
96
136
|
} & OtcLocalization;
|
|
97
137
|
}
|
package/index.js
CHANGED
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontegg/types",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.98.0",
|
|
4
4
|
"main": "./node/index.js",
|
|
5
5
|
"author": "Frontegg LTD",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@babel/runtime": "^7.18.6",
|
|
9
|
-
"@frontegg/redux-store": "7.
|
|
9
|
+
"@frontegg/redux-store": "7.98.0",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|