@openfin/core 45.100.68 → 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/mock-alpha.d.ts +17 -0
- package/out/mock-beta.d.ts +17 -0
- package/out/mock-public.d.ts +17 -0
- package/out/stub.d.ts +17 -0
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
|
@@ -3829,6 +3829,14 @@ declare type ConstWindowOptions = {
|
|
|
3829
3829
|
* @default false
|
|
3830
3830
|
*/
|
|
3831
3831
|
backgroundThrottling: boolean;
|
|
3832
|
+
/**
|
|
3833
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3834
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3835
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3836
|
+
*
|
|
3837
|
+
* @defaultValue false
|
|
3838
|
+
*/
|
|
3839
|
+
chromeBrowser: boolean;
|
|
3832
3840
|
/**
|
|
3833
3841
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3834
3842
|
*/
|
|
@@ -9189,6 +9197,15 @@ declare type LogUploadOptions = {
|
|
|
9189
9197
|
* Max file size limit in Megabytes for the logs archive.
|
|
9190
9198
|
*/
|
|
9191
9199
|
sizeLimit?: number;
|
|
9200
|
+
/**
|
|
9201
|
+
* HTTP method used to upload the log archive.
|
|
9202
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9203
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9204
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9205
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9206
|
+
* @defaultValue 'POST'
|
|
9207
|
+
*/
|
|
9208
|
+
method?: 'POST' | 'PUT';
|
|
9192
9209
|
};
|
|
9193
9210
|
|
|
9194
9211
|
/**
|
package/out/mock-beta.d.ts
CHANGED
|
@@ -3829,6 +3829,14 @@ declare type ConstWindowOptions = {
|
|
|
3829
3829
|
* @default false
|
|
3830
3830
|
*/
|
|
3831
3831
|
backgroundThrottling: boolean;
|
|
3832
|
+
/**
|
|
3833
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3834
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3835
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3836
|
+
*
|
|
3837
|
+
* @defaultValue false
|
|
3838
|
+
*/
|
|
3839
|
+
chromeBrowser: boolean;
|
|
3832
3840
|
/**
|
|
3833
3841
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3834
3842
|
*/
|
|
@@ -9189,6 +9197,15 @@ declare type LogUploadOptions = {
|
|
|
9189
9197
|
* Max file size limit in Megabytes for the logs archive.
|
|
9190
9198
|
*/
|
|
9191
9199
|
sizeLimit?: number;
|
|
9200
|
+
/**
|
|
9201
|
+
* HTTP method used to upload the log archive.
|
|
9202
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9203
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9204
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9205
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9206
|
+
* @defaultValue 'POST'
|
|
9207
|
+
*/
|
|
9208
|
+
method?: 'POST' | 'PUT';
|
|
9192
9209
|
};
|
|
9193
9210
|
|
|
9194
9211
|
/**
|
package/out/mock-public.d.ts
CHANGED
|
@@ -3829,6 +3829,14 @@ declare type ConstWindowOptions = {
|
|
|
3829
3829
|
* @default false
|
|
3830
3830
|
*/
|
|
3831
3831
|
backgroundThrottling: boolean;
|
|
3832
|
+
/**
|
|
3833
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3834
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3835
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3836
|
+
*
|
|
3837
|
+
* @defaultValue false
|
|
3838
|
+
*/
|
|
3839
|
+
chromeBrowser: boolean;
|
|
3832
3840
|
/**
|
|
3833
3841
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3834
3842
|
*/
|
|
@@ -9189,6 +9197,15 @@ declare type LogUploadOptions = {
|
|
|
9189
9197
|
* Max file size limit in Megabytes for the logs archive.
|
|
9190
9198
|
*/
|
|
9191
9199
|
sizeLimit?: number;
|
|
9200
|
+
/**
|
|
9201
|
+
* HTTP method used to upload the log archive.
|
|
9202
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9203
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9204
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9205
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9206
|
+
* @defaultValue 'POST'
|
|
9207
|
+
*/
|
|
9208
|
+
method?: 'POST' | 'PUT';
|
|
9192
9209
|
};
|
|
9193
9210
|
|
|
9194
9211
|
/**
|
package/out/stub.d.ts
CHANGED
|
@@ -3888,6 +3888,14 @@ declare type ConstWindowOptions = {
|
|
|
3888
3888
|
* @default false
|
|
3889
3889
|
*/
|
|
3890
3890
|
backgroundThrottling: boolean;
|
|
3891
|
+
/**
|
|
3892
|
+
* If `true`, the window is registered with Chromium as a `ChromeBrowser`,
|
|
3893
|
+
* making it visible to Chrome extensions via the `chrome.windows` API.
|
|
3894
|
+
* The window must be created with this option set; it cannot be flipped at runtime.
|
|
3895
|
+
*
|
|
3896
|
+
* @defaultValue false
|
|
3897
|
+
*/
|
|
3898
|
+
chromeBrowser: boolean;
|
|
3891
3899
|
/**
|
|
3892
3900
|
* Configures how new content (e,g, from `window.open` or a link) is opened.
|
|
3893
3901
|
*/
|
|
@@ -9498,6 +9506,15 @@ declare type LogUploadOptions = {
|
|
|
9498
9506
|
* Max file size limit in Megabytes for the logs archive.
|
|
9499
9507
|
*/
|
|
9500
9508
|
sizeLimit?: number;
|
|
9509
|
+
/**
|
|
9510
|
+
* HTTP method used to upload the log archive.
|
|
9511
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9512
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9513
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9514
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9515
|
+
* @defaultValue 'POST'
|
|
9516
|
+
*/
|
|
9517
|
+
method?: 'POST' | 'PUT';
|
|
9501
9518
|
};
|
|
9502
9519
|
|
|
9503
9520
|
/**
|