@openfin/core 44.100.21 → 44.100.23

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,7 +8706,36 @@ declare type LogInfo = {
8706
8706
  */
8707
8707
  declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
8708
8708
 
8709
- declare type LogTypes = 'app' | 'debug' | 'rvm' | 'debug:self' | 'debug:self:archive' | 'debug:self:archive:last';
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';
8710
8739
 
8711
8740
  /**
8712
8741
  * Options for the Log Uploader.
@@ -8774,14 +8803,6 @@ declare type LogUploadOptions = {
8774
8803
  manifests?: string[];
8775
8804
  /**
8776
8805
  * An array of strings that specifies which logs should be uploaded.
8777
- * app: Uploads app logs
8778
- * rvm: Uploads rvm logs
8779
- * debug: Uploads debug logs
8780
- * debug:self: Uploads the most current debug log the current application
8781
- * debug:self:archive: Uploads all debug logs for the current application
8782
- * debug:self:archive:last: Uploads the last two debug logs for the current application
8783
- *
8784
- * For the debug log options, the one with the most specific matching pattern will be used.
8785
8806
  * @defaultValue ['app', 'rvm', 'debug']
8786
8807
  */
8787
8808
  logs?: LogTypes[];
@@ -9875,6 +9896,7 @@ declare namespace OpenFin_2 {
9875
9896
  PlatformOptions,
9876
9897
  LogUploaderOptions,
9877
9898
  LogUploaderUIOptions,
9899
+ LogTypes,
9878
9900
  LogUploadOptions,
9879
9901
  Manifest,
9880
9902
  LayoutContent,
@@ -8706,7 +8706,36 @@ declare type LogInfo = {
8706
8706
  */
8707
8707
  declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
8708
8708
 
8709
- declare type LogTypes = 'app' | 'debug' | 'rvm' | 'debug:self' | 'debug:self:archive' | 'debug:self:archive:last';
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';
8710
8739
 
8711
8740
  /**
8712
8741
  * Options for the Log Uploader.
@@ -8774,14 +8803,6 @@ declare type LogUploadOptions = {
8774
8803
  manifests?: string[];
8775
8804
  /**
8776
8805
  * An array of strings that specifies which logs should be uploaded.
8777
- * app: Uploads app logs
8778
- * rvm: Uploads rvm logs
8779
- * debug: Uploads debug logs
8780
- * debug:self: Uploads the most current debug log the current application
8781
- * debug:self:archive: Uploads all debug logs for the current application
8782
- * debug:self:archive:last: Uploads the last two debug logs for the current application
8783
- *
8784
- * For the debug log options, the one with the most specific matching pattern will be used.
8785
8806
  * @defaultValue ['app', 'rvm', 'debug']
8786
8807
  */
8787
8808
  logs?: LogTypes[];
@@ -9875,6 +9896,7 @@ declare namespace OpenFin_2 {
9875
9896
  PlatformOptions,
9876
9897
  LogUploaderOptions,
9877
9898
  LogUploaderUIOptions,
9899
+ LogTypes,
9878
9900
  LogUploadOptions,
9879
9901
  Manifest,
9880
9902
  LayoutContent,
@@ -8706,7 +8706,36 @@ declare type LogInfo = {
8706
8706
  */
8707
8707
  declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
8708
8708
 
8709
- declare type LogTypes = 'app' | 'debug' | 'rvm' | 'debug:self' | 'debug:self:archive' | 'debug:self:archive:last';
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';
8710
8739
 
8711
8740
  /**
8712
8741
  * Options for the Log Uploader.
@@ -8774,14 +8803,6 @@ declare type LogUploadOptions = {
8774
8803
  manifests?: string[];
8775
8804
  /**
8776
8805
  * An array of strings that specifies which logs should be uploaded.
8777
- * app: Uploads app logs
8778
- * rvm: Uploads rvm logs
8779
- * debug: Uploads debug logs
8780
- * debug:self: Uploads the most current debug log the current application
8781
- * debug:self:archive: Uploads all debug logs for the current application
8782
- * debug:self:archive:last: Uploads the last two debug logs for the current application
8783
- *
8784
- * For the debug log options, the one with the most specific matching pattern will be used.
8785
8806
  * @defaultValue ['app', 'rvm', 'debug']
8786
8807
  */
8787
8808
  logs?: LogTypes[];
@@ -9875,6 +9896,7 @@ declare namespace OpenFin_2 {
9875
9896
  PlatformOptions,
9876
9897
  LogUploaderOptions,
9877
9898
  LogUploaderUIOptions,
9899
+ LogTypes,
9878
9900
  LogUploadOptions,
9879
9901
  Manifest,
9880
9902
  LayoutContent,
package/out/stub.d.ts CHANGED
@@ -9015,7 +9015,36 @@ declare type LogInfo = {
9015
9015
  */
9016
9016
  declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
9017
9017
 
9018
- declare type LogTypes = 'app' | 'debug' | 'rvm' | 'debug:self' | 'debug:self:archive' | 'debug:self:archive:last';
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';
9019
9048
 
9020
9049
  /**
9021
9050
  * Options for the Log Uploader.
@@ -9083,14 +9112,6 @@ declare type LogUploadOptions = {
9083
9112
  manifests?: string[];
9084
9113
  /**
9085
9114
  * An array of strings that specifies which logs should be uploaded.
9086
- * app: Uploads app logs
9087
- * rvm: Uploads rvm logs
9088
- * debug: Uploads debug logs
9089
- * debug:self: Uploads the most current debug log the current application
9090
- * debug:self:archive: Uploads all debug logs for the current application
9091
- * debug:self:archive:last: Uploads the last two debug logs for the current application
9092
- *
9093
- * For the debug log options, the one with the most specific matching pattern will be used.
9094
9115
  * @defaultValue ['app', 'rvm', 'debug']
9095
9116
  */
9096
9117
  logs?: LogTypes[];
@@ -10209,6 +10230,7 @@ declare namespace OpenFin_2 {
10209
10230
  PlatformOptions,
10210
10231
  LogUploaderOptions,
10211
10232
  LogUploaderUIOptions,
10233
+ LogTypes,
10212
10234
  LogUploadOptions,
10213
10235
  Manifest,
10214
10236
  LayoutContent,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "44.100.21",
3
+ "version": "44.100.23",
4
4
  "description": "The core renderer entry point of OpenFin",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "out/stub.js",