@frontegg/types 5.24.0 → 5.27.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/FronteggAppOptions.d.ts +5 -1
- package/package.json +1 -1
package/FronteggAppOptions.d.ts
CHANGED
|
@@ -81,8 +81,12 @@ export interface FronteggAppOptions extends FronteggStoreOptions {
|
|
|
81
81
|
*/
|
|
82
82
|
localizations?: LocalizationsOverrides;
|
|
83
83
|
/**
|
|
84
|
-
* Pass Redux store object created by
|
|
84
|
+
* Pass Redux store object created by create Frontegg Store to manage actions and state of the frontegg application
|
|
85
85
|
* mostly used when building your own components.
|
|
86
86
|
*/
|
|
87
87
|
store?: EnhancedStore;
|
|
88
|
+
/**
|
|
89
|
+
* Option to support tracing from the Frontegg login box
|
|
90
|
+
*/
|
|
91
|
+
tracing?: boolean;
|
|
88
92
|
}
|