@openfin/fdc3-api 44.100.21 → 44.100.22
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 +31 -9
- package/out/fdc3-api-beta.d.ts +31 -9
- package/out/fdc3-api-public.d.ts +31 -9
- package/out/fdc3-api.d.ts +31 -9
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -9048,7 +9048,36 @@ declare type LogInfo = {
|
|
|
9048
9048
|
*/
|
|
9049
9049
|
declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
9050
9050
|
|
|
9051
|
-
|
|
9051
|
+
/**
|
|
9052
|
+
* Log types
|
|
9053
|
+
*
|
|
9054
|
+
* Note: For the debug log options, the one with the most specific matching pattern will be used.
|
|
9055
|
+
*/
|
|
9056
|
+
declare type LogTypes =
|
|
9057
|
+
/**
|
|
9058
|
+
* Uploads app logs
|
|
9059
|
+
*/
|
|
9060
|
+
'app'
|
|
9061
|
+
/**
|
|
9062
|
+
* Uploads rvm logs
|
|
9063
|
+
*/
|
|
9064
|
+
| 'rvm'
|
|
9065
|
+
/**
|
|
9066
|
+
* Uploads all debug logs
|
|
9067
|
+
*/
|
|
9068
|
+
| 'debug'
|
|
9069
|
+
/**
|
|
9070
|
+
* Uploads the most current debug log the current application
|
|
9071
|
+
*/
|
|
9072
|
+
| 'debug:self'
|
|
9073
|
+
/**
|
|
9074
|
+
* Uploads all debug logs for the current application
|
|
9075
|
+
*/
|
|
9076
|
+
| 'debug:self:archive'
|
|
9077
|
+
/**
|
|
9078
|
+
* Uploads the last two debug logs for the current application
|
|
9079
|
+
*/
|
|
9080
|
+
| 'debug:self:archive:last';
|
|
9052
9081
|
|
|
9053
9082
|
/**
|
|
9054
9083
|
* Options for the Log Uploader.
|
|
@@ -9116,14 +9145,6 @@ declare type LogUploadOptions = {
|
|
|
9116
9145
|
manifests?: string[];
|
|
9117
9146
|
/**
|
|
9118
9147
|
* An array of strings that specifies which logs should be uploaded.
|
|
9119
|
-
* app: Uploads app logs
|
|
9120
|
-
* rvm: Uploads rvm logs
|
|
9121
|
-
* debug: Uploads debug logs
|
|
9122
|
-
* debug:self: Uploads the most current debug log the current application
|
|
9123
|
-
* debug:self:archive: Uploads all debug logs for the current application
|
|
9124
|
-
* debug:self:archive:last: Uploads the last two debug logs for the current application
|
|
9125
|
-
*
|
|
9126
|
-
* For the debug log options, the one with the most specific matching pattern will be used.
|
|
9127
9148
|
* @defaultValue ['app', 'rvm', 'debug']
|
|
9128
9149
|
*/
|
|
9129
9150
|
logs?: LogTypes[];
|
|
@@ -10217,6 +10238,7 @@ declare namespace OpenFin {
|
|
|
10217
10238
|
PlatformOptions,
|
|
10218
10239
|
LogUploaderOptions,
|
|
10219
10240
|
LogUploaderUIOptions,
|
|
10241
|
+
LogTypes,
|
|
10220
10242
|
LogUploadOptions,
|
|
10221
10243
|
Manifest,
|
|
10222
10244
|
LayoutContent,
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -9048,7 +9048,36 @@ declare type LogInfo = {
|
|
|
9048
9048
|
*/
|
|
9049
9049
|
declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
9050
9050
|
|
|
9051
|
-
|
|
9051
|
+
/**
|
|
9052
|
+
* Log types
|
|
9053
|
+
*
|
|
9054
|
+
* Note: For the debug log options, the one with the most specific matching pattern will be used.
|
|
9055
|
+
*/
|
|
9056
|
+
declare type LogTypes =
|
|
9057
|
+
/**
|
|
9058
|
+
* Uploads app logs
|
|
9059
|
+
*/
|
|
9060
|
+
'app'
|
|
9061
|
+
/**
|
|
9062
|
+
* Uploads rvm logs
|
|
9063
|
+
*/
|
|
9064
|
+
| 'rvm'
|
|
9065
|
+
/**
|
|
9066
|
+
* Uploads all debug logs
|
|
9067
|
+
*/
|
|
9068
|
+
| 'debug'
|
|
9069
|
+
/**
|
|
9070
|
+
* Uploads the most current debug log the current application
|
|
9071
|
+
*/
|
|
9072
|
+
| 'debug:self'
|
|
9073
|
+
/**
|
|
9074
|
+
* Uploads all debug logs for the current application
|
|
9075
|
+
*/
|
|
9076
|
+
| 'debug:self:archive'
|
|
9077
|
+
/**
|
|
9078
|
+
* Uploads the last two debug logs for the current application
|
|
9079
|
+
*/
|
|
9080
|
+
| 'debug:self:archive:last';
|
|
9052
9081
|
|
|
9053
9082
|
/**
|
|
9054
9083
|
* Options for the Log Uploader.
|
|
@@ -9116,14 +9145,6 @@ declare type LogUploadOptions = {
|
|
|
9116
9145
|
manifests?: string[];
|
|
9117
9146
|
/**
|
|
9118
9147
|
* An array of strings that specifies which logs should be uploaded.
|
|
9119
|
-
* app: Uploads app logs
|
|
9120
|
-
* rvm: Uploads rvm logs
|
|
9121
|
-
* debug: Uploads debug logs
|
|
9122
|
-
* debug:self: Uploads the most current debug log the current application
|
|
9123
|
-
* debug:self:archive: Uploads all debug logs for the current application
|
|
9124
|
-
* debug:self:archive:last: Uploads the last two debug logs for the current application
|
|
9125
|
-
*
|
|
9126
|
-
* For the debug log options, the one with the most specific matching pattern will be used.
|
|
9127
9148
|
* @defaultValue ['app', 'rvm', 'debug']
|
|
9128
9149
|
*/
|
|
9129
9150
|
logs?: LogTypes[];
|
|
@@ -10217,6 +10238,7 @@ declare namespace OpenFin {
|
|
|
10217
10238
|
PlatformOptions,
|
|
10218
10239
|
LogUploaderOptions,
|
|
10219
10240
|
LogUploaderUIOptions,
|
|
10241
|
+
LogTypes,
|
|
10220
10242
|
LogUploadOptions,
|
|
10221
10243
|
Manifest,
|
|
10222
10244
|
LayoutContent,
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -9048,7 +9048,36 @@ declare type LogInfo = {
|
|
|
9048
9048
|
*/
|
|
9049
9049
|
declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
9050
9050
|
|
|
9051
|
-
|
|
9051
|
+
/**
|
|
9052
|
+
* Log types
|
|
9053
|
+
*
|
|
9054
|
+
* Note: For the debug log options, the one with the most specific matching pattern will be used.
|
|
9055
|
+
*/
|
|
9056
|
+
declare type LogTypes =
|
|
9057
|
+
/**
|
|
9058
|
+
* Uploads app logs
|
|
9059
|
+
*/
|
|
9060
|
+
'app'
|
|
9061
|
+
/**
|
|
9062
|
+
* Uploads rvm logs
|
|
9063
|
+
*/
|
|
9064
|
+
| 'rvm'
|
|
9065
|
+
/**
|
|
9066
|
+
* Uploads all debug logs
|
|
9067
|
+
*/
|
|
9068
|
+
| 'debug'
|
|
9069
|
+
/**
|
|
9070
|
+
* Uploads the most current debug log the current application
|
|
9071
|
+
*/
|
|
9072
|
+
| 'debug:self'
|
|
9073
|
+
/**
|
|
9074
|
+
* Uploads all debug logs for the current application
|
|
9075
|
+
*/
|
|
9076
|
+
| 'debug:self:archive'
|
|
9077
|
+
/**
|
|
9078
|
+
* Uploads the last two debug logs for the current application
|
|
9079
|
+
*/
|
|
9080
|
+
| 'debug:self:archive:last';
|
|
9052
9081
|
|
|
9053
9082
|
/**
|
|
9054
9083
|
* Options for the Log Uploader.
|
|
@@ -9116,14 +9145,6 @@ declare type LogUploadOptions = {
|
|
|
9116
9145
|
manifests?: string[];
|
|
9117
9146
|
/**
|
|
9118
9147
|
* An array of strings that specifies which logs should be uploaded.
|
|
9119
|
-
* app: Uploads app logs
|
|
9120
|
-
* rvm: Uploads rvm logs
|
|
9121
|
-
* debug: Uploads debug logs
|
|
9122
|
-
* debug:self: Uploads the most current debug log the current application
|
|
9123
|
-
* debug:self:archive: Uploads all debug logs for the current application
|
|
9124
|
-
* debug:self:archive:last: Uploads the last two debug logs for the current application
|
|
9125
|
-
*
|
|
9126
|
-
* For the debug log options, the one with the most specific matching pattern will be used.
|
|
9127
9148
|
* @defaultValue ['app', 'rvm', 'debug']
|
|
9128
9149
|
*/
|
|
9129
9150
|
logs?: LogTypes[];
|
|
@@ -10217,6 +10238,7 @@ declare namespace OpenFin {
|
|
|
10217
10238
|
PlatformOptions,
|
|
10218
10239
|
LogUploaderOptions,
|
|
10219
10240
|
LogUploaderUIOptions,
|
|
10241
|
+
LogTypes,
|
|
10220
10242
|
LogUploadOptions,
|
|
10221
10243
|
Manifest,
|
|
10222
10244
|
LayoutContent,
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -9357,7 +9357,36 @@ declare type LogInfo = {
|
|
|
9357
9357
|
*/
|
|
9358
9358
|
declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
9359
9359
|
|
|
9360
|
-
|
|
9360
|
+
/**
|
|
9361
|
+
* Log types
|
|
9362
|
+
*
|
|
9363
|
+
* Note: For the debug log options, the one with the most specific matching pattern will be used.
|
|
9364
|
+
*/
|
|
9365
|
+
declare type LogTypes =
|
|
9366
|
+
/**
|
|
9367
|
+
* Uploads app logs
|
|
9368
|
+
*/
|
|
9369
|
+
'app'
|
|
9370
|
+
/**
|
|
9371
|
+
* Uploads rvm logs
|
|
9372
|
+
*/
|
|
9373
|
+
| 'rvm'
|
|
9374
|
+
/**
|
|
9375
|
+
* Uploads all debug logs
|
|
9376
|
+
*/
|
|
9377
|
+
| 'debug'
|
|
9378
|
+
/**
|
|
9379
|
+
* Uploads the most current debug log the current application
|
|
9380
|
+
*/
|
|
9381
|
+
| 'debug:self'
|
|
9382
|
+
/**
|
|
9383
|
+
* Uploads all debug logs for the current application
|
|
9384
|
+
*/
|
|
9385
|
+
| 'debug:self:archive'
|
|
9386
|
+
/**
|
|
9387
|
+
* Uploads the last two debug logs for the current application
|
|
9388
|
+
*/
|
|
9389
|
+
| 'debug:self:archive:last';
|
|
9361
9390
|
|
|
9362
9391
|
/**
|
|
9363
9392
|
* Options for the Log Uploader.
|
|
@@ -9425,14 +9454,6 @@ declare type LogUploadOptions = {
|
|
|
9425
9454
|
manifests?: string[];
|
|
9426
9455
|
/**
|
|
9427
9456
|
* An array of strings that specifies which logs should be uploaded.
|
|
9428
|
-
* app: Uploads app logs
|
|
9429
|
-
* rvm: Uploads rvm logs
|
|
9430
|
-
* debug: Uploads debug logs
|
|
9431
|
-
* debug:self: Uploads the most current debug log the current application
|
|
9432
|
-
* debug:self:archive: Uploads all debug logs for the current application
|
|
9433
|
-
* debug:self:archive:last: Uploads the last two debug logs for the current application
|
|
9434
|
-
*
|
|
9435
|
-
* For the debug log options, the one with the most specific matching pattern will be used.
|
|
9436
9457
|
* @defaultValue ['app', 'rvm', 'debug']
|
|
9437
9458
|
*/
|
|
9438
9459
|
logs?: LogTypes[];
|
|
@@ -10551,6 +10572,7 @@ declare namespace OpenFin {
|
|
|
10551
10572
|
PlatformOptions,
|
|
10552
10573
|
LogUploaderOptions,
|
|
10553
10574
|
LogUploaderUIOptions,
|
|
10575
|
+
LogTypes,
|
|
10554
10576
|
LogUploadOptions,
|
|
10555
10577
|
Manifest,
|
|
10556
10578
|
LayoutContent,
|