@embedreach/components 0.1.87 → 0.1.89

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/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
- tenantExternalId: string;
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