@embedreach/components 0.1.86 → 0.1.88
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/dist/chunks/index.js +19480 -1255
- package/dist/index.d.ts +1 -3
- package/dist/index.umd.js +171 -171
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -117,9 +117,8 @@ declare interface LanguageConfig {
|
|
|
117
117
|
* @interface ReachConfig
|
|
118
118
|
*/
|
|
119
119
|
export declare interface ReachConfig {
|
|
120
|
-
theme?: ThemeConfig;
|
|
121
120
|
authToken: string;
|
|
122
|
-
|
|
121
|
+
theme?: ThemeConfig;
|
|
123
122
|
/** Event callbacks */
|
|
124
123
|
callbacks?: SDKCallbacks;
|
|
125
124
|
/** Initial feature to load */
|
|
@@ -168,7 +167,6 @@ declare type ReauthCallback = () => Promise<string> | void;
|
|
|
168
167
|
declare interface SDKCallbacks {
|
|
169
168
|
/** Called when reauthentication is required */
|
|
170
169
|
onReauthRequested: ReauthCallback;
|
|
171
|
-
/** Called when tenant information is requested */
|
|
172
170
|
onTenantInformationRequested?: () => void;
|
|
173
171
|
}
|
|
174
172
|
|