@frontegg/types 6.79.0-alpha.1 → 6.79.0-alpha.2

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.
@@ -12,6 +12,10 @@ export interface AuthOptions extends Partial<Omit<AuthState, 'routes'>> {
12
12
  * In case enforceRedirectToSameSite is enabled, use this white list to include all allowed origin of after auth redirect url
13
13
  */
14
14
  allowedRedirectOrigins?: string[];
15
+ /**
16
+ * Origins that are allowed to clear idle session timeout from
17
+ */
18
+ clearIdleTimeoutAllowedOrigins?: string[];
15
19
  }
16
20
  export interface AuditsOptions extends Partial<AuditsState> {
17
21
  virtualScroll?: boolean;
@@ -243,6 +243,11 @@ export interface UsersGroupsLocalization {
243
243
  * @default 'No group members'
244
244
  */
245
245
  noMembersMessage: string;
246
+ /**
247
+ * Group Card no roles message
248
+ * @default 'None'
249
+ * */
250
+ emptyRolesMessage: string;
246
251
  };
247
252
  /**
248
253
  * Group Details localization
@@ -263,6 +268,16 @@ export interface UsersGroupsLocalization {
263
268
  * @default 'Back to all groups'
264
269
  * */
265
270
  pageTitle: string;
271
+ /**
272
+ * Group Details Header roles label
273
+ * @default 'Roles'
274
+ * */
275
+ roles: string;
276
+ /**
277
+ * Group Details Header empty roles message
278
+ * @default 'None'
279
+ * */
280
+ emptyRolesMessage: string;
266
281
  };
267
282
  /**
268
283
  * Group details deleteMemberDialog
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.79.0-alpha.1
1
+ /** @license Frontegg v6.79.0-alpha.2
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.79.0-alpha.1
1
+ /** @license Frontegg v6.79.0-alpha.2
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@frontegg/types",
3
- "version": "6.79.0-alpha.1",
3
+ "version": "6.79.0-alpha.2",
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": "6.79.0-alpha.1",
9
+ "@frontegg/redux-store": "6.79.0-alpha.2",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },