@embedreach/components 0.1.44 → 0.1.46

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
@@ -101,8 +101,8 @@ declare type ReauthCallback = () => Promise<string> | void;
101
101
  declare interface SDKCallbacks {
102
102
  /** Called when reauthentication is required */
103
103
  onReauthRequested: ReauthCallback;
104
- /** Called when tenant information is requested */
105
- onTenantInformationRequested: () => void;
104
+ /** Called when tenant information is requested @deprecated */
105
+ onTenantInformationRequested?: () => void;
106
106
  }
107
107
 
108
108
  export declare const SegmentBuilder: default_2.FC<SegmentBuilderProps>;