ws-voice-infinity-global-module 1.0.38 → 1.0.40
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/lib/components.d.ts +2 -1
- package/lib/index.css +2 -2
- package/lib/module/components/mainPageHeader/templates/r41/mainPageHeaderTemplate.js +1 -1
- package/lib/module/services/topNavService.js +1 -1
- package/lib/services.d.ts +7 -0
- package/lib/services.js +1 -1
- package/lib/store.d.ts +1 -0
- package/package.json +1 -1
package/lib/components.d.ts
CHANGED
|
@@ -286,7 +286,8 @@ interface IAuthModalProps {
|
|
|
286
286
|
globalStore?: GlobalStore;
|
|
287
287
|
eventStore?: EventStore;
|
|
288
288
|
showAuthModal: boolean;
|
|
289
|
-
|
|
289
|
+
runLoginAs?: string | null;
|
|
290
|
+
authModalCloseCallback: (success?: boolean) => void | null;
|
|
290
291
|
}
|
|
291
292
|
|
|
292
293
|
declare class AuthModal extends React.Component<IAuthModalProps, any> {
|