@openfin/fdc3-api 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.
- package/out/fdc3-api-alpha.d.ts +37 -1
- package/out/fdc3-api-beta.d.ts +37 -1
- package/out/fdc3-api-public.d.ts +37 -1
- package/out/fdc3-api.d.ts +37 -1
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -9048,6 +9048,37 @@ declare type LogInfo = {
|
|
|
9048
9048
|
*/
|
|
9049
9049
|
declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
9050
9050
|
|
|
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';
|
|
9081
|
+
|
|
9051
9082
|
/**
|
|
9052
9083
|
* Options for the Log Uploader.
|
|
9053
9084
|
*/
|
|
@@ -9116,8 +9147,12 @@ declare type LogUploadOptions = {
|
|
|
9116
9147
|
* An array of strings that specifies which logs should be uploaded.
|
|
9117
9148
|
* @defaultValue ['app', 'rvm', 'debug']
|
|
9118
9149
|
*/
|
|
9119
|
-
logs?:
|
|
9150
|
+
logs?: LogTypes[];
|
|
9120
9151
|
ui?: LogUploaderUIOptions;
|
|
9152
|
+
/**
|
|
9153
|
+
* Max file size limit in Megabytes for the logs archive.
|
|
9154
|
+
*/
|
|
9155
|
+
sizeLimit?: number;
|
|
9121
9156
|
};
|
|
9122
9157
|
|
|
9123
9158
|
/**
|
|
@@ -10203,6 +10238,7 @@ declare namespace OpenFin {
|
|
|
10203
10238
|
PlatformOptions,
|
|
10204
10239
|
LogUploaderOptions,
|
|
10205
10240
|
LogUploaderUIOptions,
|
|
10241
|
+
LogTypes,
|
|
10206
10242
|
LogUploadOptions,
|
|
10207
10243
|
Manifest,
|
|
10208
10244
|
LayoutContent,
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -9048,6 +9048,37 @@ declare type LogInfo = {
|
|
|
9048
9048
|
*/
|
|
9049
9049
|
declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
9050
9050
|
|
|
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';
|
|
9081
|
+
|
|
9051
9082
|
/**
|
|
9052
9083
|
* Options for the Log Uploader.
|
|
9053
9084
|
*/
|
|
@@ -9116,8 +9147,12 @@ declare type LogUploadOptions = {
|
|
|
9116
9147
|
* An array of strings that specifies which logs should be uploaded.
|
|
9117
9148
|
* @defaultValue ['app', 'rvm', 'debug']
|
|
9118
9149
|
*/
|
|
9119
|
-
logs?:
|
|
9150
|
+
logs?: LogTypes[];
|
|
9120
9151
|
ui?: LogUploaderUIOptions;
|
|
9152
|
+
/**
|
|
9153
|
+
* Max file size limit in Megabytes for the logs archive.
|
|
9154
|
+
*/
|
|
9155
|
+
sizeLimit?: number;
|
|
9121
9156
|
};
|
|
9122
9157
|
|
|
9123
9158
|
/**
|
|
@@ -10203,6 +10238,7 @@ declare namespace OpenFin {
|
|
|
10203
10238
|
PlatformOptions,
|
|
10204
10239
|
LogUploaderOptions,
|
|
10205
10240
|
LogUploaderUIOptions,
|
|
10241
|
+
LogTypes,
|
|
10206
10242
|
LogUploadOptions,
|
|
10207
10243
|
Manifest,
|
|
10208
10244
|
LayoutContent,
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -9048,6 +9048,37 @@ declare type LogInfo = {
|
|
|
9048
9048
|
*/
|
|
9049
9049
|
declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
9050
9050
|
|
|
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';
|
|
9081
|
+
|
|
9051
9082
|
/**
|
|
9052
9083
|
* Options for the Log Uploader.
|
|
9053
9084
|
*/
|
|
@@ -9116,8 +9147,12 @@ declare type LogUploadOptions = {
|
|
|
9116
9147
|
* An array of strings that specifies which logs should be uploaded.
|
|
9117
9148
|
* @defaultValue ['app', 'rvm', 'debug']
|
|
9118
9149
|
*/
|
|
9119
|
-
logs?:
|
|
9150
|
+
logs?: LogTypes[];
|
|
9120
9151
|
ui?: LogUploaderUIOptions;
|
|
9152
|
+
/**
|
|
9153
|
+
* Max file size limit in Megabytes for the logs archive.
|
|
9154
|
+
*/
|
|
9155
|
+
sizeLimit?: number;
|
|
9121
9156
|
};
|
|
9122
9157
|
|
|
9123
9158
|
/**
|
|
@@ -10203,6 +10238,7 @@ declare namespace OpenFin {
|
|
|
10203
10238
|
PlatformOptions,
|
|
10204
10239
|
LogUploaderOptions,
|
|
10205
10240
|
LogUploaderUIOptions,
|
|
10241
|
+
LogTypes,
|
|
10206
10242
|
LogUploadOptions,
|
|
10207
10243
|
Manifest,
|
|
10208
10244
|
LayoutContent,
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -9357,6 +9357,37 @@ declare type LogInfo = {
|
|
|
9357
9357
|
*/
|
|
9358
9358
|
declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
9359
9359
|
|
|
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';
|
|
9390
|
+
|
|
9360
9391
|
/**
|
|
9361
9392
|
* Options for the Log Uploader.
|
|
9362
9393
|
*/
|
|
@@ -9425,8 +9456,12 @@ declare type LogUploadOptions = {
|
|
|
9425
9456
|
* An array of strings that specifies which logs should be uploaded.
|
|
9426
9457
|
* @defaultValue ['app', 'rvm', 'debug']
|
|
9427
9458
|
*/
|
|
9428
|
-
logs?:
|
|
9459
|
+
logs?: LogTypes[];
|
|
9429
9460
|
ui?: LogUploaderUIOptions;
|
|
9461
|
+
/**
|
|
9462
|
+
* Max file size limit in Megabytes for the logs archive.
|
|
9463
|
+
*/
|
|
9464
|
+
sizeLimit?: number;
|
|
9430
9465
|
};
|
|
9431
9466
|
|
|
9432
9467
|
/**
|
|
@@ -10537,6 +10572,7 @@ declare namespace OpenFin {
|
|
|
10537
10572
|
PlatformOptions,
|
|
10538
10573
|
LogUploaderOptions,
|
|
10539
10574
|
LogUploaderUIOptions,
|
|
10575
|
+
LogTypes,
|
|
10540
10576
|
LogUploadOptions,
|
|
10541
10577
|
Manifest,
|
|
10542
10578
|
LayoutContent,
|