@openfin/fdc3-api 45.100.81 → 45.100.83

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.
@@ -2882,7 +2882,7 @@ declare class ChannelProvider extends ChannelBase {
2882
2882
  * a read-only array containing all the identities of connecting clients.
2883
2883
  */
2884
2884
  get connections(): OpenFin.ClientConnectionPayload[];
2885
- static handleClientDisconnection(channel: ChannelProvider, payload: any): void;
2885
+ static handleClientDisconnection(channel: ChannelProvider, payload: ClientDisconnectionPayload): void;
2886
2886
  static setProviderRemoval(provider: ChannelProvider, remove: Function): void;
2887
2887
  /* Excluded from this release type: __constructor */
2888
2888
  /**
@@ -3278,6 +3278,10 @@ declare type ClientChangedContextGroup = InteropClientEvent<'client-changed-cont
3278
3278
  */
3279
3279
  declare type ClientConnectionPayload = ClientIdentity & ClientInfo;
3280
3280
 
3281
+ declare type ClientDisconnectionPayload = OpenFin.Identity & {
3282
+ endpointId?: string;
3283
+ };
3284
+
3281
3285
  /**
3282
3286
  * Identity of a channel client. Includes endpointId to differentiate between different connections for an entity.
3283
3287
  * @interface
@@ -2882,7 +2882,7 @@ declare class ChannelProvider extends ChannelBase {
2882
2882
  * a read-only array containing all the identities of connecting clients.
2883
2883
  */
2884
2884
  get connections(): OpenFin.ClientConnectionPayload[];
2885
- static handleClientDisconnection(channel: ChannelProvider, payload: any): void;
2885
+ static handleClientDisconnection(channel: ChannelProvider, payload: ClientDisconnectionPayload): void;
2886
2886
  static setProviderRemoval(provider: ChannelProvider, remove: Function): void;
2887
2887
  /* Excluded from this release type: __constructor */
2888
2888
  /**
@@ -3278,6 +3278,10 @@ declare type ClientChangedContextGroup = InteropClientEvent<'client-changed-cont
3278
3278
  */
3279
3279
  declare type ClientConnectionPayload = ClientIdentity & ClientInfo;
3280
3280
 
3281
+ declare type ClientDisconnectionPayload = OpenFin.Identity & {
3282
+ endpointId?: string;
3283
+ };
3284
+
3281
3285
  /**
3282
3286
  * Identity of a channel client. Includes endpointId to differentiate between different connections for an entity.
3283
3287
  * @interface
@@ -2882,7 +2882,7 @@ declare class ChannelProvider extends ChannelBase {
2882
2882
  * a read-only array containing all the identities of connecting clients.
2883
2883
  */
2884
2884
  get connections(): OpenFin.ClientConnectionPayload[];
2885
- static handleClientDisconnection(channel: ChannelProvider, payload: any): void;
2885
+ static handleClientDisconnection(channel: ChannelProvider, payload: ClientDisconnectionPayload): void;
2886
2886
  static setProviderRemoval(provider: ChannelProvider, remove: Function): void;
2887
2887
  /* Excluded from this release type: __constructor */
2888
2888
  /**
@@ -3278,6 +3278,10 @@ declare type ClientChangedContextGroup = InteropClientEvent<'client-changed-cont
3278
3278
  */
3279
3279
  declare type ClientConnectionPayload = ClientIdentity & ClientInfo;
3280
3280
 
3281
+ declare type ClientDisconnectionPayload = OpenFin.Identity & {
3282
+ endpointId?: string;
3283
+ };
3284
+
3281
3285
  /**
3282
3286
  * Identity of a channel client. Includes endpointId to differentiate between different connections for an entity.
3283
3287
  * @interface
package/out/fdc3-api.d.ts CHANGED
@@ -2935,7 +2935,7 @@ declare class ChannelProvider extends ChannelBase {
2935
2935
  * a read-only array containing all the identities of connecting clients.
2936
2936
  */
2937
2937
  get connections(): OpenFin.ClientConnectionPayload[];
2938
- static handleClientDisconnection(channel: ChannelProvider, payload: any): void;
2938
+ static handleClientDisconnection(channel: ChannelProvider, payload: ClientDisconnectionPayload): void;
2939
2939
  static setProviderRemoval(provider: ChannelProvider, remove: Function): void;
2940
2940
  /**
2941
2941
  * @internal
@@ -3334,6 +3334,10 @@ declare type ClientChangedContextGroup = InteropClientEvent<'client-changed-cont
3334
3334
  */
3335
3335
  declare type ClientConnectionPayload = ClientIdentity & ClientInfo;
3336
3336
 
3337
+ declare type ClientDisconnectionPayload = OpenFin.Identity & {
3338
+ endpointId?: string;
3339
+ };
3340
+
3337
3341
  /**
3338
3342
  * Identity of a channel client. Includes endpointId to differentiate between different connections for an entity.
3339
3343
  * @interface
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "45.100.81",
3
+ "version": "45.100.83",
4
4
  "description": "OpenFin fdc3 module utilities and types.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "private": false,