@frontegg/types 5.39.0 → 5.40.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.
- package/ContextOptions.d.ts +1 -1
- package/FronteggAppOptions.d.ts +2 -0
- package/package.json +1 -1
package/ContextOptions.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export interface ContextOptions {
|
|
|
3
3
|
/**
|
|
4
4
|
* Backend API baseUrl, visit https://portal.frontegg.com/administration/domain to get your Frontegg baseUrl
|
|
5
5
|
*/
|
|
6
|
-
baseUrl: string;
|
|
6
|
+
baseUrl: string | ((url: string) => string);
|
|
7
7
|
/**
|
|
8
8
|
* Frontegg clientId. Identifier from your Frontegg workspace account.
|
|
9
9
|
*/
|
package/FronteggAppOptions.d.ts
CHANGED
|
@@ -5,9 +5,11 @@ import { ContextOptions } from './ContextOptions';
|
|
|
5
5
|
import { FronteggStoreOptions } from './FronteggStoreOptions';
|
|
6
6
|
import { EnhancedStore } from '@reduxjs/toolkit';
|
|
7
7
|
import { LocalizationsOverrides } from './Localizations';
|
|
8
|
+
import { CustomEventsOptions } from '@frontegg/redux-store';
|
|
8
9
|
export interface FronteggAppOptions extends FronteggStoreOptions {
|
|
9
10
|
withCompanyName?: boolean;
|
|
10
11
|
contextOptions: ContextOptions;
|
|
12
|
+
events?: CustomEventsOptions;
|
|
11
13
|
themeOptions?: FronteggThemeOptions;
|
|
12
14
|
/**
|
|
13
15
|
* Authentication background logo image
|