@openfin/fdc3-api 44.101.3 → 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 +14 -1
- package/out/fdc3-api-beta.d.ts +14 -1
- package/out/fdc3-api-public.d.ts +14 -1
- package/out/fdc3-api.d.ts +14 -1
- package/package.json +1 -1
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
|
|
@@ -9554,6 +9558,15 @@ declare type LogUploadOptions = {
|
|
|
9554
9558
|
* Max file size limit in Megabytes for the logs archive.
|
|
9555
9559
|
*/
|
|
9556
9560
|
sizeLimit?: number;
|
|
9561
|
+
/**
|
|
9562
|
+
* HTTP method used to upload the log archive.
|
|
9563
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9564
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9565
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9566
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9567
|
+
* @defaultValue 'POST'
|
|
9568
|
+
*/
|
|
9569
|
+
method?: 'POST' | 'PUT';
|
|
9557
9570
|
};
|
|
9558
9571
|
|
|
9559
9572
|
/**
|
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
|
|
@@ -9554,6 +9558,15 @@ declare type LogUploadOptions = {
|
|
|
9554
9558
|
* Max file size limit in Megabytes for the logs archive.
|
|
9555
9559
|
*/
|
|
9556
9560
|
sizeLimit?: number;
|
|
9561
|
+
/**
|
|
9562
|
+
* HTTP method used to upload the log archive.
|
|
9563
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9564
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9565
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9566
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9567
|
+
* @defaultValue 'POST'
|
|
9568
|
+
*/
|
|
9569
|
+
method?: 'POST' | 'PUT';
|
|
9557
9570
|
};
|
|
9558
9571
|
|
|
9559
9572
|
/**
|
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
|
|
@@ -9554,6 +9558,15 @@ declare type LogUploadOptions = {
|
|
|
9554
9558
|
* Max file size limit in Megabytes for the logs archive.
|
|
9555
9559
|
*/
|
|
9556
9560
|
sizeLimit?: number;
|
|
9561
|
+
/**
|
|
9562
|
+
* HTTP method used to upload the log archive.
|
|
9563
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9564
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9565
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9566
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9567
|
+
* @defaultValue 'POST'
|
|
9568
|
+
*/
|
|
9569
|
+
method?: 'POST' | 'PUT';
|
|
9557
9570
|
};
|
|
9558
9571
|
|
|
9559
9572
|
/**
|
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
|
|
@@ -9863,6 +9867,15 @@ declare type LogUploadOptions = {
|
|
|
9863
9867
|
* Max file size limit in Megabytes for the logs archive.
|
|
9864
9868
|
*/
|
|
9865
9869
|
sizeLimit?: number;
|
|
9870
|
+
/**
|
|
9871
|
+
* HTTP method used to upload the log archive.
|
|
9872
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9873
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9874
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9875
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9876
|
+
* @defaultValue 'POST'
|
|
9877
|
+
*/
|
|
9878
|
+
method?: 'POST' | 'PUT';
|
|
9866
9879
|
};
|
|
9867
9880
|
|
|
9868
9881
|
/**
|