@openfin/fdc3-api 45.100.67 → 45.100.70
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 +17 -0
- package/out/fdc3-api-beta.d.ts +17 -0
- package/out/fdc3-api-public.d.ts +17 -0
- package/out/fdc3-api.d.ts +17 -0
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -3826,6 +3826,14 @@ declare type ConstWindowOptions = {
|
|
|
3826
3826
|
* @default false
|
|
3827
3827
|
*/
|
|
3828
3828
|
backgroundThrottling: boolean;
|
|
3829
|
+
/**
|
|
3830
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3831
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3832
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3833
|
+
*
|
|
3834
|
+
* @defaultValue false
|
|
3835
|
+
*/
|
|
3836
|
+
chromeBrowser: boolean;
|
|
3829
3837
|
/**
|
|
3830
3838
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3831
3839
|
*/
|
|
@@ -9531,6 +9539,15 @@ declare type LogUploadOptions = {
|
|
|
9531
9539
|
* Max file size limit in Megabytes for the logs archive.
|
|
9532
9540
|
*/
|
|
9533
9541
|
sizeLimit?: number;
|
|
9542
|
+
/**
|
|
9543
|
+
* HTTP method used to upload the log archive.
|
|
9544
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9545
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9546
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9547
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9548
|
+
* @defaultValue 'POST'
|
|
9549
|
+
*/
|
|
9550
|
+
method?: 'POST' | 'PUT';
|
|
9534
9551
|
};
|
|
9535
9552
|
|
|
9536
9553
|
/**
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -3826,6 +3826,14 @@ declare type ConstWindowOptions = {
|
|
|
3826
3826
|
* @default false
|
|
3827
3827
|
*/
|
|
3828
3828
|
backgroundThrottling: boolean;
|
|
3829
|
+
/**
|
|
3830
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3831
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3832
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3833
|
+
*
|
|
3834
|
+
* @defaultValue false
|
|
3835
|
+
*/
|
|
3836
|
+
chromeBrowser: boolean;
|
|
3829
3837
|
/**
|
|
3830
3838
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3831
3839
|
*/
|
|
@@ -9531,6 +9539,15 @@ declare type LogUploadOptions = {
|
|
|
9531
9539
|
* Max file size limit in Megabytes for the logs archive.
|
|
9532
9540
|
*/
|
|
9533
9541
|
sizeLimit?: number;
|
|
9542
|
+
/**
|
|
9543
|
+
* HTTP method used to upload the log archive.
|
|
9544
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9545
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9546
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9547
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9548
|
+
* @defaultValue 'POST'
|
|
9549
|
+
*/
|
|
9550
|
+
method?: 'POST' | 'PUT';
|
|
9534
9551
|
};
|
|
9535
9552
|
|
|
9536
9553
|
/**
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -3826,6 +3826,14 @@ declare type ConstWindowOptions = {
|
|
|
3826
3826
|
* @default false
|
|
3827
3827
|
*/
|
|
3828
3828
|
backgroundThrottling: boolean;
|
|
3829
|
+
/**
|
|
3830
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3831
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3832
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3833
|
+
*
|
|
3834
|
+
* @defaultValue false
|
|
3835
|
+
*/
|
|
3836
|
+
chromeBrowser: boolean;
|
|
3829
3837
|
/**
|
|
3830
3838
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3831
3839
|
*/
|
|
@@ -9531,6 +9539,15 @@ declare type LogUploadOptions = {
|
|
|
9531
9539
|
* Max file size limit in Megabytes for the logs archive.
|
|
9532
9540
|
*/
|
|
9533
9541
|
sizeLimit?: number;
|
|
9542
|
+
/**
|
|
9543
|
+
* HTTP method used to upload the log archive.
|
|
9544
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9545
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9546
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9547
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9548
|
+
* @defaultValue 'POST'
|
|
9549
|
+
*/
|
|
9550
|
+
method?: 'POST' | 'PUT';
|
|
9534
9551
|
};
|
|
9535
9552
|
|
|
9536
9553
|
/**
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -3885,6 +3885,14 @@ declare type ConstWindowOptions = {
|
|
|
3885
3885
|
* @default false
|
|
3886
3886
|
*/
|
|
3887
3887
|
backgroundThrottling: boolean;
|
|
3888
|
+
/**
|
|
3889
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3890
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3891
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3892
|
+
*
|
|
3893
|
+
* @defaultValue false
|
|
3894
|
+
*/
|
|
3895
|
+
chromeBrowser: boolean;
|
|
3888
3896
|
/**
|
|
3889
3897
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3890
3898
|
*/
|
|
@@ -9840,6 +9848,15 @@ declare type LogUploadOptions = {
|
|
|
9840
9848
|
* Max file size limit in Megabytes for the logs archive.
|
|
9841
9849
|
*/
|
|
9842
9850
|
sizeLimit?: number;
|
|
9851
|
+
/**
|
|
9852
|
+
* HTTP method used to upload the log archive.
|
|
9853
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9854
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9855
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9856
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9857
|
+
* @defaultValue 'POST'
|
|
9858
|
+
*/
|
|
9859
|
+
method?: 'POST' | 'PUT';
|
|
9843
9860
|
};
|
|
9844
9861
|
|
|
9845
9862
|
/**
|