@openfin/fdc3-api 44.101.4 → 44.101.6
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
CHANGED
|
@@ -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:
|
|
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
|
/**
|
|
@@ -3232,6 +3232,10 @@ declare type ClientChangedContextGroup = InteropClientEvent<'client-changed-cont
|
|
|
3232
3232
|
*/
|
|
3233
3233
|
declare type ClientConnectionPayload = ClientIdentity & ClientInfo;
|
|
3234
3234
|
|
|
3235
|
+
declare type ClientDisconnectionPayload = OpenFin.Identity & {
|
|
3236
|
+
endpointId?: string;
|
|
3237
|
+
};
|
|
3238
|
+
|
|
3235
3239
|
/**
|
|
3236
3240
|
* Identity of a channel client. Includes endpointId to differentiate between different connections for an entity.
|
|
3237
3241
|
* @interface
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -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:
|
|
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
|
/**
|
|
@@ -3232,6 +3232,10 @@ declare type ClientChangedContextGroup = InteropClientEvent<'client-changed-cont
|
|
|
3232
3232
|
*/
|
|
3233
3233
|
declare type ClientConnectionPayload = ClientIdentity & ClientInfo;
|
|
3234
3234
|
|
|
3235
|
+
declare type ClientDisconnectionPayload = OpenFin.Identity & {
|
|
3236
|
+
endpointId?: string;
|
|
3237
|
+
};
|
|
3238
|
+
|
|
3235
3239
|
/**
|
|
3236
3240
|
* Identity of a channel client. Includes endpointId to differentiate between different connections for an entity.
|
|
3237
3241
|
* @interface
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -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:
|
|
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
|
/**
|
|
@@ -3232,6 +3232,10 @@ declare type ClientChangedContextGroup = InteropClientEvent<'client-changed-cont
|
|
|
3232
3232
|
*/
|
|
3233
3233
|
declare type ClientConnectionPayload = ClientIdentity & ClientInfo;
|
|
3234
3234
|
|
|
3235
|
+
declare type ClientDisconnectionPayload = OpenFin.Identity & {
|
|
3236
|
+
endpointId?: string;
|
|
3237
|
+
};
|
|
3238
|
+
|
|
3235
3239
|
/**
|
|
3236
3240
|
* Identity of a channel client. Includes endpointId to differentiate between different connections for an entity.
|
|
3237
3241
|
* @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:
|
|
2938
|
+
static handleClientDisconnection(channel: ChannelProvider, payload: ClientDisconnectionPayload): void;
|
|
2939
2939
|
static setProviderRemoval(provider: ChannelProvider, remove: Function): void;
|
|
2940
2940
|
/**
|
|
2941
2941
|
* @internal
|
|
@@ -3288,6 +3288,10 @@ declare type ClientChangedContextGroup = InteropClientEvent<'client-changed-cont
|
|
|
3288
3288
|
*/
|
|
3289
3289
|
declare type ClientConnectionPayload = ClientIdentity & ClientInfo;
|
|
3290
3290
|
|
|
3291
|
+
declare type ClientDisconnectionPayload = OpenFin.Identity & {
|
|
3292
|
+
endpointId?: string;
|
|
3293
|
+
};
|
|
3294
|
+
|
|
3291
3295
|
/**
|
|
3292
3296
|
* Identity of a channel client. Includes endpointId to differentiate between different connections for an entity.
|
|
3293
3297
|
* @interface
|