@openfin/fdc3-api 36.80.7 → 36.80.9
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/out/fdc3-api-alpha.d.ts +11 -1
- package/out/fdc3-api-beta.d.ts +11 -1
- package/out/fdc3-api-public.d.ts +11 -1
- package/out/fdc3-api.d.ts +10 -4
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -7536,6 +7536,15 @@ declare class InteropBroker extends Base {
|
|
|
7536
7536
|
setContext({ context }: {
|
|
7537
7537
|
context: OpenFin.Context;
|
|
7538
7538
|
}, clientIdentity: OpenFin.ClientIdentity): void;
|
|
7539
|
+
/**
|
|
7540
|
+
* Sets a context for the context group.
|
|
7541
|
+
* @param setContextOptions - New context to set.
|
|
7542
|
+
* @param contextGroupId - Context group id.
|
|
7543
|
+
*
|
|
7544
|
+
*/
|
|
7545
|
+
setContextForGroup({ context }: {
|
|
7546
|
+
context: OpenFin.Context;
|
|
7547
|
+
}, contextGroupId: string): void;
|
|
7539
7548
|
/**
|
|
7540
7549
|
* Get current context for a client subscribed to a Context Group.
|
|
7541
7550
|
*
|
|
@@ -12790,6 +12799,7 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12790
12799
|
'interop-broker-remove-client-from-context-group': VoidCall;
|
|
12791
12800
|
'interop-broker-remove-from-context-group': VoidCall;
|
|
12792
12801
|
'interop-broker-set-context': VoidCall;
|
|
12802
|
+
'interop-broker-set-context-for-group': VoidCall;
|
|
12793
12803
|
'query-permission-for-current-context': {
|
|
12794
12804
|
request: {
|
|
12795
12805
|
apiName: string;
|
|
@@ -17783,7 +17793,7 @@ declare type WillResizeEvent = WillMoveOrResizeEvent & {
|
|
|
17783
17793
|
*/
|
|
17784
17794
|
declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
17785
17795
|
/* Excluded from this release type: __constructor */
|
|
17786
|
-
|
|
17796
|
+
createWindow(options: OpenFin.WindowCreationOptions): Promise<OpenFin.Window>;
|
|
17787
17797
|
/**
|
|
17788
17798
|
* Retrieves an array of frame info objects representing the main frame and any
|
|
17789
17799
|
* iframes that are currently on the page.
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -7536,6 +7536,15 @@ declare class InteropBroker extends Base {
|
|
|
7536
7536
|
setContext({ context }: {
|
|
7537
7537
|
context: OpenFin.Context;
|
|
7538
7538
|
}, clientIdentity: OpenFin.ClientIdentity): void;
|
|
7539
|
+
/**
|
|
7540
|
+
* Sets a context for the context group.
|
|
7541
|
+
* @param setContextOptions - New context to set.
|
|
7542
|
+
* @param contextGroupId - Context group id.
|
|
7543
|
+
*
|
|
7544
|
+
*/
|
|
7545
|
+
setContextForGroup({ context }: {
|
|
7546
|
+
context: OpenFin.Context;
|
|
7547
|
+
}, contextGroupId: string): void;
|
|
7539
7548
|
/**
|
|
7540
7549
|
* Get current context for a client subscribed to a Context Group.
|
|
7541
7550
|
*
|
|
@@ -12790,6 +12799,7 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12790
12799
|
'interop-broker-remove-client-from-context-group': VoidCall;
|
|
12791
12800
|
'interop-broker-remove-from-context-group': VoidCall;
|
|
12792
12801
|
'interop-broker-set-context': VoidCall;
|
|
12802
|
+
'interop-broker-set-context-for-group': VoidCall;
|
|
12793
12803
|
'query-permission-for-current-context': {
|
|
12794
12804
|
request: {
|
|
12795
12805
|
apiName: string;
|
|
@@ -17783,7 +17793,7 @@ declare type WillResizeEvent = WillMoveOrResizeEvent & {
|
|
|
17783
17793
|
*/
|
|
17784
17794
|
declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
17785
17795
|
/* Excluded from this release type: __constructor */
|
|
17786
|
-
|
|
17796
|
+
createWindow(options: OpenFin.WindowCreationOptions): Promise<OpenFin.Window>;
|
|
17787
17797
|
/**
|
|
17788
17798
|
* Retrieves an array of frame info objects representing the main frame and any
|
|
17789
17799
|
* iframes that are currently on the page.
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -7536,6 +7536,15 @@ declare class InteropBroker extends Base {
|
|
|
7536
7536
|
setContext({ context }: {
|
|
7537
7537
|
context: OpenFin.Context;
|
|
7538
7538
|
}, clientIdentity: OpenFin.ClientIdentity): void;
|
|
7539
|
+
/**
|
|
7540
|
+
* Sets a context for the context group.
|
|
7541
|
+
* @param setContextOptions - New context to set.
|
|
7542
|
+
* @param contextGroupId - Context group id.
|
|
7543
|
+
*
|
|
7544
|
+
*/
|
|
7545
|
+
setContextForGroup({ context }: {
|
|
7546
|
+
context: OpenFin.Context;
|
|
7547
|
+
}, contextGroupId: string): void;
|
|
7539
7548
|
/**
|
|
7540
7549
|
* Get current context for a client subscribed to a Context Group.
|
|
7541
7550
|
*
|
|
@@ -12790,6 +12799,7 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12790
12799
|
'interop-broker-remove-client-from-context-group': VoidCall;
|
|
12791
12800
|
'interop-broker-remove-from-context-group': VoidCall;
|
|
12792
12801
|
'interop-broker-set-context': VoidCall;
|
|
12802
|
+
'interop-broker-set-context-for-group': VoidCall;
|
|
12793
12803
|
'query-permission-for-current-context': {
|
|
12794
12804
|
request: {
|
|
12795
12805
|
apiName: string;
|
|
@@ -17783,7 +17793,7 @@ declare type WillResizeEvent = WillMoveOrResizeEvent & {
|
|
|
17783
17793
|
*/
|
|
17784
17794
|
declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
17785
17795
|
/* Excluded from this release type: __constructor */
|
|
17786
|
-
|
|
17796
|
+
createWindow(options: OpenFin.WindowCreationOptions): Promise<OpenFin.Window>;
|
|
17787
17797
|
/**
|
|
17788
17798
|
* Retrieves an array of frame info objects representing the main frame and any
|
|
17789
17799
|
* iframes that are currently on the page.
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -7641,6 +7641,15 @@ declare class InteropBroker extends Base {
|
|
|
7641
7641
|
setContext({ context }: {
|
|
7642
7642
|
context: OpenFin.Context;
|
|
7643
7643
|
}, clientIdentity: OpenFin.ClientIdentity): void;
|
|
7644
|
+
/**
|
|
7645
|
+
* Sets a context for the context group.
|
|
7646
|
+
* @param setContextOptions - New context to set.
|
|
7647
|
+
* @param contextGroupId - Context group id.
|
|
7648
|
+
*
|
|
7649
|
+
*/
|
|
7650
|
+
setContextForGroup({ context }: {
|
|
7651
|
+
context: OpenFin.Context;
|
|
7652
|
+
}, contextGroupId: string): void;
|
|
7644
7653
|
/**
|
|
7645
7654
|
* Get current context for a client subscribed to a Context Group.
|
|
7646
7655
|
*
|
|
@@ -13179,6 +13188,7 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
13179
13188
|
'interop-broker-remove-client-from-context-group': VoidCall;
|
|
13180
13189
|
'interop-broker-remove-from-context-group': VoidCall;
|
|
13181
13190
|
'interop-broker-set-context': VoidCall;
|
|
13191
|
+
'interop-broker-set-context-for-group': VoidCall;
|
|
13182
13192
|
'query-permission-for-current-context': {
|
|
13183
13193
|
request: {
|
|
13184
13194
|
apiName: string;
|
|
@@ -18225,10 +18235,6 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
|
18225
18235
|
* @internal
|
|
18226
18236
|
*/
|
|
18227
18237
|
constructor(wire: Transport, identity: OpenFin.Identity);
|
|
18228
|
-
/**
|
|
18229
|
-
* create a new window
|
|
18230
|
-
* @internal
|
|
18231
|
-
*/
|
|
18232
18238
|
createWindow(options: OpenFin.WindowCreationOptions): Promise<OpenFin.Window>;
|
|
18233
18239
|
/**
|
|
18234
18240
|
* Retrieves an array of frame info objects representing the main frame and any
|