@frontegg/types 5.68.3 → 5.70.1
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.
|
@@ -63,6 +63,10 @@ export interface AllUsersLocalization {
|
|
|
63
63
|
* Table row action for resending activation email to specific user
|
|
64
64
|
*/
|
|
65
65
|
resendActivationAction: string;
|
|
66
|
+
/**
|
|
67
|
+
* Table row action for log out all specific user sessions
|
|
68
|
+
*/
|
|
69
|
+
logOutUserSessionsActions: string;
|
|
66
70
|
/**
|
|
67
71
|
* Table row action display on logged in user row to leave the active tenant
|
|
68
72
|
*/
|
|
@@ -179,4 +179,98 @@ export interface SecurityLocalization {
|
|
|
179
179
|
*/
|
|
180
180
|
save: string;
|
|
181
181
|
};
|
|
182
|
+
/**
|
|
183
|
+
* Session management policy section
|
|
184
|
+
*/
|
|
185
|
+
security_SessionManagement: {
|
|
186
|
+
/**
|
|
187
|
+
* Session management section title
|
|
188
|
+
*/
|
|
189
|
+
sectionTitle: string;
|
|
190
|
+
/**
|
|
191
|
+
* Idle session timeout item title
|
|
192
|
+
*/
|
|
193
|
+
idleSessionTimeoutTitle: string;
|
|
194
|
+
/**
|
|
195
|
+
* Idle session timeout item description
|
|
196
|
+
*/
|
|
197
|
+
idleSessionTimeoutDescription: string;
|
|
198
|
+
/**
|
|
199
|
+
* Idle session timeout form error
|
|
200
|
+
*/
|
|
201
|
+
idleSessionTimeoutErrorMessage: string;
|
|
202
|
+
/**
|
|
203
|
+
* Session timeout item title
|
|
204
|
+
*/
|
|
205
|
+
sessionTimeoutTitle: string;
|
|
206
|
+
/**
|
|
207
|
+
* Session timeout item description
|
|
208
|
+
*/
|
|
209
|
+
sessionTimeoutDescription: string;
|
|
210
|
+
/**
|
|
211
|
+
* Session timeout form error
|
|
212
|
+
*/
|
|
213
|
+
sessionTimeoutErrorMessage: string;
|
|
214
|
+
/**
|
|
215
|
+
* Concurrent sessions item title
|
|
216
|
+
*/
|
|
217
|
+
concurrentSessionsTitle: string;
|
|
218
|
+
/**
|
|
219
|
+
* Concurrent sessions item description
|
|
220
|
+
*/
|
|
221
|
+
concurrentSessionsDescription: string;
|
|
222
|
+
/**
|
|
223
|
+
* Concurrent sessions timeout form error
|
|
224
|
+
*/
|
|
225
|
+
concurrentSessionsTimeoutErrorMessage: string;
|
|
226
|
+
/**
|
|
227
|
+
* Settings `day` option
|
|
228
|
+
*/
|
|
229
|
+
day: string;
|
|
230
|
+
/**
|
|
231
|
+
* Settings `days` option
|
|
232
|
+
*/
|
|
233
|
+
days: string;
|
|
234
|
+
/**
|
|
235
|
+
* Settings `hour` option
|
|
236
|
+
*/
|
|
237
|
+
hour: string;
|
|
238
|
+
/**
|
|
239
|
+
* Settings `hours` option
|
|
240
|
+
*/
|
|
241
|
+
hours: string;
|
|
242
|
+
/**
|
|
243
|
+
* Settings `minutes` option
|
|
244
|
+
*/
|
|
245
|
+
minute: string;
|
|
246
|
+
/**
|
|
247
|
+
* Settings `minutes` option
|
|
248
|
+
*/
|
|
249
|
+
minutes: string;
|
|
250
|
+
/**
|
|
251
|
+
* Save button text
|
|
252
|
+
*/
|
|
253
|
+
saveButton: string;
|
|
254
|
+
};
|
|
255
|
+
/**
|
|
256
|
+
* Apply session management policies dialog
|
|
257
|
+
*/
|
|
258
|
+
security_SessionManagementDialog: {
|
|
259
|
+
/**
|
|
260
|
+
* Dialog title
|
|
261
|
+
*/
|
|
262
|
+
title: string;
|
|
263
|
+
/**
|
|
264
|
+
* Dialog description
|
|
265
|
+
*/
|
|
266
|
+
description: string;
|
|
267
|
+
/**
|
|
268
|
+
* Confirm button
|
|
269
|
+
*/
|
|
270
|
+
confirm: string;
|
|
271
|
+
/**
|
|
272
|
+
* Cancel button
|
|
273
|
+
*/
|
|
274
|
+
cancel: string;
|
|
275
|
+
};
|
|
182
276
|
}
|
|
@@ -63,6 +63,10 @@ export interface UsersLocalization {
|
|
|
63
63
|
* Table row action for resending activation email to specific user
|
|
64
64
|
*/
|
|
65
65
|
resendActivationAction: string;
|
|
66
|
+
/**
|
|
67
|
+
* Table row action for log out all specific user sessions
|
|
68
|
+
*/
|
|
69
|
+
logOutUserSessionsActions: string;
|
|
66
70
|
/**
|
|
67
71
|
* Table row action display on logged in user row to leave the active tenant
|
|
68
72
|
*/
|