@opencxh/domain 1.3.6 → 1.4.2

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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencxh/domain",
3
- "version": "1.3.6",
3
+ "version": "1.4.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",