@openfin/core 41.103.9 → 41.103.10

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.
@@ -2781,7 +2781,7 @@ declare class ChannelProvider extends ChannelBase {
2781
2781
  * a read-only array containing all the identities of connecting clients.
2782
2782
  */
2783
2783
  get connections(): OpenFin_2.ClientConnectionPayload[];
2784
- static handleClientDisconnection(channel: ChannelProvider, payload: any): void;
2784
+ static handleClientDisconnection(channel: ChannelProvider, payload: ClientDisconnectionPayload): void;
2785
2785
  static setProviderRemoval(provider: ChannelProvider, remove: Function): void;
2786
2786
  /* Excluded from this release type: __constructor */
2787
2787
  /**
@@ -3065,6 +3065,10 @@ declare type ClickedMenuResult<Data extends unknown = unknown> = {
3065
3065
  */
3066
3066
  declare type ClientConnectionPayload = ClientIdentity & ClientInfo;
3067
3067
 
3068
+ declare type ClientDisconnectionPayload = OpenFin_2.Identity & {
3069
+ endpointId?: string;
3070
+ };
3071
+
3068
3072
  /**
3069
3073
  * Identity of a channel client. Includes endpointId to differentiate between different connections for an entity.
3070
3074
  * @interface
@@ -2781,7 +2781,7 @@ declare class ChannelProvider extends ChannelBase {
2781
2781
  * a read-only array containing all the identities of connecting clients.
2782
2782
  */
2783
2783
  get connections(): OpenFin_2.ClientConnectionPayload[];
2784
- static handleClientDisconnection(channel: ChannelProvider, payload: any): void;
2784
+ static handleClientDisconnection(channel: ChannelProvider, payload: ClientDisconnectionPayload): void;
2785
2785
  static setProviderRemoval(provider: ChannelProvider, remove: Function): void;
2786
2786
  /* Excluded from this release type: __constructor */
2787
2787
  /**
@@ -3065,6 +3065,10 @@ declare type ClickedMenuResult<Data extends unknown = unknown> = {
3065
3065
  */
3066
3066
  declare type ClientConnectionPayload = ClientIdentity & ClientInfo;
3067
3067
 
3068
+ declare type ClientDisconnectionPayload = OpenFin_2.Identity & {
3069
+ endpointId?: string;
3070
+ };
3071
+
3068
3072
  /**
3069
3073
  * Identity of a channel client. Includes endpointId to differentiate between different connections for an entity.
3070
3074
  * @interface
@@ -2781,7 +2781,7 @@ declare class ChannelProvider extends ChannelBase {
2781
2781
  * a read-only array containing all the identities of connecting clients.
2782
2782
  */
2783
2783
  get connections(): OpenFin_2.ClientConnectionPayload[];
2784
- static handleClientDisconnection(channel: ChannelProvider, payload: any): void;
2784
+ static handleClientDisconnection(channel: ChannelProvider, payload: ClientDisconnectionPayload): void;
2785
2785
  static setProviderRemoval(provider: ChannelProvider, remove: Function): void;
2786
2786
  /* Excluded from this release type: __constructor */
2787
2787
  /**
@@ -3065,6 +3065,10 @@ declare type ClickedMenuResult<Data extends unknown = unknown> = {
3065
3065
  */
3066
3066
  declare type ClientConnectionPayload = ClientIdentity & ClientInfo;
3067
3067
 
3068
+ declare type ClientDisconnectionPayload = OpenFin_2.Identity & {
3069
+ endpointId?: string;
3070
+ };
3071
+
3068
3072
  /**
3069
3073
  * Identity of a channel client. Includes endpointId to differentiate between different connections for an entity.
3070
3074
  * @interface
package/out/stub.d.ts CHANGED
@@ -2834,7 +2834,7 @@ declare class ChannelProvider extends ChannelBase {
2834
2834
  * a read-only array containing all the identities of connecting clients.
2835
2835
  */
2836
2836
  get connections(): OpenFin_2.ClientConnectionPayload[];
2837
- static handleClientDisconnection(channel: ChannelProvider, payload: any): void;
2837
+ static handleClientDisconnection(channel: ChannelProvider, payload: ClientDisconnectionPayload): void;
2838
2838
  static setProviderRemoval(provider: ChannelProvider, remove: Function): void;
2839
2839
  /**
2840
2840
  * @internal
@@ -3121,6 +3121,10 @@ declare type ClickedMenuResult<Data extends unknown = unknown> = {
3121
3121
  */
3122
3122
  declare type ClientConnectionPayload = ClientIdentity & ClientInfo;
3123
3123
 
3124
+ declare type ClientDisconnectionPayload = OpenFin_2.Identity & {
3125
+ endpointId?: string;
3126
+ };
3127
+
3124
3128
  /**
3125
3129
  * Identity of a channel client. Includes endpointId to differentiate between different connections for an entity.
3126
3130
  * @interface