@openfin/core 43.100.96 → 43.100.98

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.
@@ -8706,6 +8706,37 @@ declare type LogInfo = {
8706
8706
  */
8707
8707
  declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
8708
8708
 
8709
+ /**
8710
+ * Log types
8711
+ *
8712
+ * Note: For the debug log options, the one with the most specific matching pattern will be used.
8713
+ */
8714
+ declare type LogTypes =
8715
+ /**
8716
+ * Uploads app logs
8717
+ */
8718
+ 'app'
8719
+ /**
8720
+ * Uploads rvm logs
8721
+ */
8722
+ | 'rvm'
8723
+ /**
8724
+ * Uploads all debug logs
8725
+ */
8726
+ | 'debug'
8727
+ /**
8728
+ * Uploads the most current debug log the current application
8729
+ */
8730
+ | 'debug:self'
8731
+ /**
8732
+ * Uploads all debug logs for the current application
8733
+ */
8734
+ | 'debug:self:archive'
8735
+ /**
8736
+ * Uploads the last two debug logs for the current application
8737
+ */
8738
+ | 'debug:self:archive:last';
8739
+
8709
8740
  /**
8710
8741
  * Options for the Log Uploader.
8711
8742
  */
@@ -8774,8 +8805,12 @@ declare type LogUploadOptions = {
8774
8805
  * An array of strings that specifies which logs should be uploaded.
8775
8806
  * @defaultValue ['app', 'rvm', 'debug']
8776
8807
  */
8777
- logs?: string[];
8808
+ logs?: LogTypes[];
8778
8809
  ui?: LogUploaderUIOptions;
8810
+ /**
8811
+ * Max file size limit in Megabytes for the logs archive.
8812
+ */
8813
+ sizeLimit?: number;
8779
8814
  };
8780
8815
 
8781
8816
  /**
@@ -9861,6 +9896,7 @@ declare namespace OpenFin_2 {
9861
9896
  PlatformOptions,
9862
9897
  LogUploaderOptions,
9863
9898
  LogUploaderUIOptions,
9899
+ LogTypes,
9864
9900
  LogUploadOptions,
9865
9901
  Manifest,
9866
9902
  LayoutContent,
@@ -8706,6 +8706,37 @@ declare type LogInfo = {
8706
8706
  */
8707
8707
  declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
8708
8708
 
8709
+ /**
8710
+ * Log types
8711
+ *
8712
+ * Note: For the debug log options, the one with the most specific matching pattern will be used.
8713
+ */
8714
+ declare type LogTypes =
8715
+ /**
8716
+ * Uploads app logs
8717
+ */
8718
+ 'app'
8719
+ /**
8720
+ * Uploads rvm logs
8721
+ */
8722
+ | 'rvm'
8723
+ /**
8724
+ * Uploads all debug logs
8725
+ */
8726
+ | 'debug'
8727
+ /**
8728
+ * Uploads the most current debug log the current application
8729
+ */
8730
+ | 'debug:self'
8731
+ /**
8732
+ * Uploads all debug logs for the current application
8733
+ */
8734
+ | 'debug:self:archive'
8735
+ /**
8736
+ * Uploads the last two debug logs for the current application
8737
+ */
8738
+ | 'debug:self:archive:last';
8739
+
8709
8740
  /**
8710
8741
  * Options for the Log Uploader.
8711
8742
  */
@@ -8774,8 +8805,12 @@ declare type LogUploadOptions = {
8774
8805
  * An array of strings that specifies which logs should be uploaded.
8775
8806
  * @defaultValue ['app', 'rvm', 'debug']
8776
8807
  */
8777
- logs?: string[];
8808
+ logs?: LogTypes[];
8778
8809
  ui?: LogUploaderUIOptions;
8810
+ /**
8811
+ * Max file size limit in Megabytes for the logs archive.
8812
+ */
8813
+ sizeLimit?: number;
8779
8814
  };
8780
8815
 
8781
8816
  /**
@@ -9861,6 +9896,7 @@ declare namespace OpenFin_2 {
9861
9896
  PlatformOptions,
9862
9897
  LogUploaderOptions,
9863
9898
  LogUploaderUIOptions,
9899
+ LogTypes,
9864
9900
  LogUploadOptions,
9865
9901
  Manifest,
9866
9902
  LayoutContent,
@@ -8706,6 +8706,37 @@ declare type LogInfo = {
8706
8706
  */
8707
8707
  declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
8708
8708
 
8709
+ /**
8710
+ * Log types
8711
+ *
8712
+ * Note: For the debug log options, the one with the most specific matching pattern will be used.
8713
+ */
8714
+ declare type LogTypes =
8715
+ /**
8716
+ * Uploads app logs
8717
+ */
8718
+ 'app'
8719
+ /**
8720
+ * Uploads rvm logs
8721
+ */
8722
+ | 'rvm'
8723
+ /**
8724
+ * Uploads all debug logs
8725
+ */
8726
+ | 'debug'
8727
+ /**
8728
+ * Uploads the most current debug log the current application
8729
+ */
8730
+ | 'debug:self'
8731
+ /**
8732
+ * Uploads all debug logs for the current application
8733
+ */
8734
+ | 'debug:self:archive'
8735
+ /**
8736
+ * Uploads the last two debug logs for the current application
8737
+ */
8738
+ | 'debug:self:archive:last';
8739
+
8709
8740
  /**
8710
8741
  * Options for the Log Uploader.
8711
8742
  */
@@ -8774,8 +8805,12 @@ declare type LogUploadOptions = {
8774
8805
  * An array of strings that specifies which logs should be uploaded.
8775
8806
  * @defaultValue ['app', 'rvm', 'debug']
8776
8807
  */
8777
- logs?: string[];
8808
+ logs?: LogTypes[];
8778
8809
  ui?: LogUploaderUIOptions;
8810
+ /**
8811
+ * Max file size limit in Megabytes for the logs archive.
8812
+ */
8813
+ sizeLimit?: number;
8779
8814
  };
8780
8815
 
8781
8816
  /**
@@ -9861,6 +9896,7 @@ declare namespace OpenFin_2 {
9861
9896
  PlatformOptions,
9862
9897
  LogUploaderOptions,
9863
9898
  LogUploaderUIOptions,
9899
+ LogTypes,
9864
9900
  LogUploadOptions,
9865
9901
  Manifest,
9866
9902
  LayoutContent,
package/out/stub.d.ts CHANGED
@@ -9015,6 +9015,37 @@ declare type LogInfo = {
9015
9015
  */
9016
9016
  declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
9017
9017
 
9018
+ /**
9019
+ * Log types
9020
+ *
9021
+ * Note: For the debug log options, the one with the most specific matching pattern will be used.
9022
+ */
9023
+ declare type LogTypes =
9024
+ /**
9025
+ * Uploads app logs
9026
+ */
9027
+ 'app'
9028
+ /**
9029
+ * Uploads rvm logs
9030
+ */
9031
+ | 'rvm'
9032
+ /**
9033
+ * Uploads all debug logs
9034
+ */
9035
+ | 'debug'
9036
+ /**
9037
+ * Uploads the most current debug log the current application
9038
+ */
9039
+ | 'debug:self'
9040
+ /**
9041
+ * Uploads all debug logs for the current application
9042
+ */
9043
+ | 'debug:self:archive'
9044
+ /**
9045
+ * Uploads the last two debug logs for the current application
9046
+ */
9047
+ | 'debug:self:archive:last';
9048
+
9018
9049
  /**
9019
9050
  * Options for the Log Uploader.
9020
9051
  */
@@ -9083,8 +9114,12 @@ declare type LogUploadOptions = {
9083
9114
  * An array of strings that specifies which logs should be uploaded.
9084
9115
  * @defaultValue ['app', 'rvm', 'debug']
9085
9116
  */
9086
- logs?: string[];
9117
+ logs?: LogTypes[];
9087
9118
  ui?: LogUploaderUIOptions;
9119
+ /**
9120
+ * Max file size limit in Megabytes for the logs archive.
9121
+ */
9122
+ sizeLimit?: number;
9088
9123
  };
9089
9124
 
9090
9125
  /**
@@ -10195,6 +10230,7 @@ declare namespace OpenFin_2 {
10195
10230
  PlatformOptions,
10196
10231
  LogUploaderOptions,
10197
10232
  LogUploaderUIOptions,
10233
+ LogTypes,
10198
10234
  LogUploadOptions,
10199
10235
  Manifest,
10200
10236
  LayoutContent,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "43.100.96",
3
+ "version": "43.100.98",
4
4
  "description": "The core renderer entry point of OpenFin",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "out/stub.js",