@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.
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
|
/**
|
|
@@ -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-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
|
/**
|
|
@@ -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-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
|
/**
|
|
@@ -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:
|
|
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
|