@openfin/core 44.101.3 → 44.101.4
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 +9 -0
- package/out/mock-beta.d.ts +9 -0
- package/out/mock-public.d.ts +9 -0
- package/out/stub.d.ts +9 -0
- package/out/stub.mjs +17028 -0
- package/package.json +16 -1
package/out/mock-alpha.d.ts
CHANGED
|
@@ -9212,6 +9212,15 @@ declare type LogUploadOptions = {
|
|
|
9212
9212
|
* Max file size limit in Megabytes for the logs archive.
|
|
9213
9213
|
*/
|
|
9214
9214
|
sizeLimit?: number;
|
|
9215
|
+
/**
|
|
9216
|
+
* HTTP method used to upload the log archive.
|
|
9217
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9218
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9219
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9220
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9221
|
+
* @defaultValue 'POST'
|
|
9222
|
+
*/
|
|
9223
|
+
method?: 'POST' | 'PUT';
|
|
9215
9224
|
};
|
|
9216
9225
|
|
|
9217
9226
|
/**
|
package/out/mock-beta.d.ts
CHANGED
|
@@ -9212,6 +9212,15 @@ declare type LogUploadOptions = {
|
|
|
9212
9212
|
* Max file size limit in Megabytes for the logs archive.
|
|
9213
9213
|
*/
|
|
9214
9214
|
sizeLimit?: number;
|
|
9215
|
+
/**
|
|
9216
|
+
* HTTP method used to upload the log archive.
|
|
9217
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9218
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9219
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9220
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9221
|
+
* @defaultValue 'POST'
|
|
9222
|
+
*/
|
|
9223
|
+
method?: 'POST' | 'PUT';
|
|
9215
9224
|
};
|
|
9216
9225
|
|
|
9217
9226
|
/**
|
package/out/mock-public.d.ts
CHANGED
|
@@ -9212,6 +9212,15 @@ declare type LogUploadOptions = {
|
|
|
9212
9212
|
* Max file size limit in Megabytes for the logs archive.
|
|
9213
9213
|
*/
|
|
9214
9214
|
sizeLimit?: number;
|
|
9215
|
+
/**
|
|
9216
|
+
* HTTP method used to upload the log archive.
|
|
9217
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9218
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9219
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9220
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9221
|
+
* @defaultValue 'POST'
|
|
9222
|
+
*/
|
|
9223
|
+
method?: 'POST' | 'PUT';
|
|
9215
9224
|
};
|
|
9216
9225
|
|
|
9217
9226
|
/**
|
package/out/stub.d.ts
CHANGED
|
@@ -9521,6 +9521,15 @@ declare type LogUploadOptions = {
|
|
|
9521
9521
|
* Max file size limit in Megabytes for the logs archive.
|
|
9522
9522
|
*/
|
|
9523
9523
|
sizeLimit?: number;
|
|
9524
|
+
/**
|
|
9525
|
+
* HTTP method used to upload the log archive.
|
|
9526
|
+
* Accepted values are `'POST'` and `'PUT'` (case-insensitive; values are normalised to uppercase before validation).
|
|
9527
|
+
* - `POST` sends a multipart `FormData` request (current behaviour).
|
|
9528
|
+
* - `PUT` sends the raw zip binary with an explicit `Content-Length` and no `Content-Type` header,
|
|
9529
|
+
* suitable for endpoints that expect a raw body (e.g. pre-signed upload URLs).
|
|
9530
|
+
* @defaultValue 'POST'
|
|
9531
|
+
*/
|
|
9532
|
+
method?: 'POST' | 'PUT';
|
|
9524
9533
|
};
|
|
9525
9534
|
|
|
9526
9535
|
/**
|