@opencxh/domain 1.3.6 → 1.4.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.
|
@@ -145,6 +145,12 @@ export interface AppManifest<TSDK = any> {
|
|
|
145
145
|
* A function that will be called when the application is initialized.
|
|
146
146
|
*/
|
|
147
147
|
initialize?: () => void;
|
|
148
|
+
/**
|
|
149
|
+
* A function that will be called once the user has successfully authenticated
|
|
150
|
+
* and an active organization is selected. Use this to fetch user-specific
|
|
151
|
+
* settings, register SIP accounts, or perform other auth-dependent startup work.
|
|
152
|
+
*/
|
|
153
|
+
onAuthenticated?: () => void;
|
|
148
154
|
}
|
|
149
155
|
export interface RemoteApp {
|
|
150
156
|
url: string;
|