You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Adjusted reference Desktop Agent implementation for FDC3 for Web to open a new app instance when raiseIntent is called with an appId but no instanceId ([#1556](https://github.com/finos/FDC3/pull/1556))
69
+
* Added `addIntentWithContextListener` to `DesktopAgent` and implemented in `DesktopAgentProxy`
* Adds a listener for incoming intents raised by other applications, via calls to `fdc3.raiseIntent` or `fdc3.raiseIntentForContext, but filters intents for one or more context types. See `addIntentListener` for details and restrictions for both usage and implementation.
* // start chat has been requested by another application
362
+
* return;
363
+
* });
364
+
*/
365
+
366
+
addIntentListenerWithContext(
367
+
intent: Intent,
368
+
contextType: string|string[],
369
+
handler: IntentHandler
370
+
): Promise<Listener>;
371
+
356
372
/**
357
373
* Adds a listener for incoming context broadcasts from the Desktop Agent (via a User channel or `fdc3.open`API call. If the consumer is only interested in a context of a particular type, they can they can specify that type. If the consumer is able to receive context of any type or will inspect types received, then they can pass `null` as the `contextType` parameter to receive all context types.
0 commit comments