@openfin/fdc3-api 39.83.1 → 39.83.2

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.
@@ -8563,6 +8563,23 @@ declare type LogLevel = OpenFin.LogLevel;
8563
8563
  */
8564
8564
  declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
8565
8565
 
8566
+ declare type LogUploaderUIOptions = {
8567
+ title?: string;
8568
+ icon?: string;
8569
+ header?: string;
8570
+ description?: string;
8571
+ email?: string;
8572
+ website?: string;
8573
+ websiteDescription?: string;
8574
+ };
8575
+
8576
+ declare type LogUploadOptions = {
8577
+ endpoint: string;
8578
+ manifests?: string[];
8579
+ logs?: string[];
8580
+ ui?: LogUploaderUIOptions;
8581
+ };
8582
+
8566
8583
  /**
8567
8584
  * @interface
8568
8585
  */
@@ -8621,6 +8638,7 @@ declare type Manifest = {
8621
8638
  enableErrorReporting?: boolean;
8622
8639
  };
8623
8640
  interopBrokerConfiguration: InteropBrokerOptions;
8641
+ logUpload?: LogUploadOptions;
8624
8642
  };
8625
8643
 
8626
8644
  /**
@@ -9482,6 +9500,8 @@ declare namespace OpenFin {
9482
9500
  PlatformViewCreationOptions,
9483
9501
  ProcessAffinityStrategy,
9484
9502
  PlatformOptions,
9503
+ LogUploaderUIOptions,
9504
+ LogUploadOptions,
9485
9505
  Manifest,
9486
9506
  LayoutContent,
9487
9507
  LayoutItemConfig,
@@ -8563,6 +8563,23 @@ declare type LogLevel = OpenFin.LogLevel;
8563
8563
  */
8564
8564
  declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
8565
8565
 
8566
+ declare type LogUploaderUIOptions = {
8567
+ title?: string;
8568
+ icon?: string;
8569
+ header?: string;
8570
+ description?: string;
8571
+ email?: string;
8572
+ website?: string;
8573
+ websiteDescription?: string;
8574
+ };
8575
+
8576
+ declare type LogUploadOptions = {
8577
+ endpoint: string;
8578
+ manifests?: string[];
8579
+ logs?: string[];
8580
+ ui?: LogUploaderUIOptions;
8581
+ };
8582
+
8566
8583
  /**
8567
8584
  * @interface
8568
8585
  */
@@ -8621,6 +8638,7 @@ declare type Manifest = {
8621
8638
  enableErrorReporting?: boolean;
8622
8639
  };
8623
8640
  interopBrokerConfiguration: InteropBrokerOptions;
8641
+ logUpload?: LogUploadOptions;
8624
8642
  };
8625
8643
 
8626
8644
  /**
@@ -9482,6 +9500,8 @@ declare namespace OpenFin {
9482
9500
  PlatformViewCreationOptions,
9483
9501
  ProcessAffinityStrategy,
9484
9502
  PlatformOptions,
9503
+ LogUploaderUIOptions,
9504
+ LogUploadOptions,
9485
9505
  Manifest,
9486
9506
  LayoutContent,
9487
9507
  LayoutItemConfig,
@@ -8563,6 +8563,23 @@ declare type LogLevel = OpenFin.LogLevel;
8563
8563
  */
8564
8564
  declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
8565
8565
 
8566
+ declare type LogUploaderUIOptions = {
8567
+ title?: string;
8568
+ icon?: string;
8569
+ header?: string;
8570
+ description?: string;
8571
+ email?: string;
8572
+ website?: string;
8573
+ websiteDescription?: string;
8574
+ };
8575
+
8576
+ declare type LogUploadOptions = {
8577
+ endpoint: string;
8578
+ manifests?: string[];
8579
+ logs?: string[];
8580
+ ui?: LogUploaderUIOptions;
8581
+ };
8582
+
8566
8583
  /**
8567
8584
  * @interface
8568
8585
  */
@@ -8621,6 +8638,7 @@ declare type Manifest = {
8621
8638
  enableErrorReporting?: boolean;
8622
8639
  };
8623
8640
  interopBrokerConfiguration: InteropBrokerOptions;
8641
+ logUpload?: LogUploadOptions;
8624
8642
  };
8625
8643
 
8626
8644
  /**
@@ -9482,6 +9500,8 @@ declare namespace OpenFin {
9482
9500
  PlatformViewCreationOptions,
9483
9501
  ProcessAffinityStrategy,
9484
9502
  PlatformOptions,
9503
+ LogUploaderUIOptions,
9504
+ LogUploadOptions,
9485
9505
  Manifest,
9486
9506
  LayoutContent,
9487
9507
  LayoutItemConfig,
package/out/fdc3-api.d.ts CHANGED
@@ -8856,6 +8856,23 @@ declare type LogLevel = OpenFin.LogLevel;
8856
8856
  */
8857
8857
  declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
8858
8858
 
8859
+ declare type LogUploaderUIOptions = {
8860
+ title?: string;
8861
+ icon?: string;
8862
+ header?: string;
8863
+ description?: string;
8864
+ email?: string;
8865
+ website?: string;
8866
+ websiteDescription?: string;
8867
+ };
8868
+
8869
+ declare type LogUploadOptions = {
8870
+ endpoint: string;
8871
+ manifests?: string[];
8872
+ logs?: string[];
8873
+ ui?: LogUploaderUIOptions;
8874
+ };
8875
+
8859
8876
  /**
8860
8877
  * @interface
8861
8878
  */
@@ -8914,6 +8931,7 @@ declare type Manifest = {
8914
8931
  enableErrorReporting?: boolean;
8915
8932
  };
8916
8933
  interopBrokerConfiguration: InteropBrokerOptions;
8934
+ logUpload?: LogUploadOptions;
8917
8935
  };
8918
8936
 
8919
8937
  /**
@@ -9797,6 +9815,8 @@ declare namespace OpenFin {
9797
9815
  PlatformViewCreationOptions,
9798
9816
  ProcessAffinityStrategy,
9799
9817
  PlatformOptions,
9818
+ LogUploaderUIOptions,
9819
+ LogUploadOptions,
9800
9820
  Manifest,
9801
9821
  LayoutContent,
9802
9822
  LayoutItemConfig,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "39.83.1",
3
+ "version": "39.83.2",
4
4
  "description": "OpenFin fdc3 module utilities and types.",
5
5
  "license": "SEE LICENSE IN LICENSE.MD",
6
6
  "private": false,