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