@openfin/fdc3-api 43.100.35 → 43.100.36
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 +66 -0
- package/out/fdc3-api-beta.d.ts +66 -0
- package/out/fdc3-api-public.d.ts +66 -0
- package/out/fdc3-api.d.ts +66 -0
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -9004,19 +9004,74 @@ declare type LogInfo = {
|
|
|
9004
9004
|
*/
|
|
9005
9005
|
declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
9006
9006
|
|
|
9007
|
+
/**
|
|
9008
|
+
* Options for the Log Uploader.
|
|
9009
|
+
*/
|
|
9010
|
+
declare type LogUploaderOptions = LogUploadOptions & {
|
|
9011
|
+
ui?: LogUploaderUIOptions & {
|
|
9012
|
+
/**
|
|
9013
|
+
* Whether the Log Uploader UI should be shown.
|
|
9014
|
+
* @defaultValue true
|
|
9015
|
+
*/
|
|
9016
|
+
show?: boolean;
|
|
9017
|
+
};
|
|
9018
|
+
};
|
|
9019
|
+
|
|
9020
|
+
/**
|
|
9021
|
+
* Options for the Log Uploader UI.
|
|
9022
|
+
* @interface
|
|
9023
|
+
*/
|
|
9007
9024
|
declare type LogUploaderUIOptions = {
|
|
9025
|
+
/**
|
|
9026
|
+
* Title for the Log Uploader window.
|
|
9027
|
+
* @defaultValue 'Here Log Uploader'
|
|
9028
|
+
*/
|
|
9008
9029
|
title?: string;
|
|
9030
|
+
/**
|
|
9031
|
+
* URL of an icon to use for the Log Uploader tool. The default is the Here logo.
|
|
9032
|
+
*/
|
|
9009
9033
|
icon?: string;
|
|
9034
|
+
/**
|
|
9035
|
+
* Name of the organization displayed in the Uploader window.
|
|
9036
|
+
* @defaultValue 'Here'
|
|
9037
|
+
*/
|
|
9010
9038
|
header?: string;
|
|
9039
|
+
/**
|
|
9040
|
+
* An explanation for the user of the purpose of the tool.
|
|
9041
|
+
* @defaultValue 'The following logs are being requested'
|
|
9042
|
+
*/
|
|
9011
9043
|
description?: string;
|
|
9044
|
+
/**
|
|
9045
|
+
* An email address that the user can contact with questions.
|
|
9046
|
+
* @defaultValue 'support@here.io'
|
|
9047
|
+
*/
|
|
9012
9048
|
email?: string;
|
|
9049
|
+
/**
|
|
9050
|
+
* URL of a webpage where the user can find more information about log uploading.
|
|
9051
|
+
* @defaultValue 'https://resources.here.io/docs/core/manage/security/'
|
|
9052
|
+
*/
|
|
9013
9053
|
website?: string;
|
|
9054
|
+
/**
|
|
9055
|
+
* Description of the webpage where the user can find more information.
|
|
9056
|
+
* @defaultValue 'Here Security'
|
|
9057
|
+
*/
|
|
9014
9058
|
websiteDescription?: string;
|
|
9015
9059
|
};
|
|
9016
9060
|
|
|
9017
9061
|
declare type LogUploadOptions = {
|
|
9062
|
+
/**
|
|
9063
|
+
* The URL where log files are to be uploaded.
|
|
9064
|
+
*/
|
|
9018
9065
|
endpoint: string;
|
|
9066
|
+
/**
|
|
9067
|
+
* An array of URL match patterns to define the manifests of the programs that the Log Uploader should upload logs for.
|
|
9068
|
+
* @defaultValue []
|
|
9069
|
+
*/
|
|
9019
9070
|
manifests?: string[];
|
|
9071
|
+
/**
|
|
9072
|
+
* An array of strings that specifies which logs should be uploaded.
|
|
9073
|
+
* @defaultValue ['app', 'rvm', 'debug']
|
|
9074
|
+
*/
|
|
9020
9075
|
logs?: string[];
|
|
9021
9076
|
ui?: LogUploaderUIOptions;
|
|
9022
9077
|
};
|
|
@@ -10011,6 +10066,7 @@ declare namespace OpenFin {
|
|
|
10011
10066
|
PlatformViewCreationOptions,
|
|
10012
10067
|
ProcessAffinityStrategy,
|
|
10013
10068
|
PlatformOptions,
|
|
10069
|
+
LogUploaderOptions,
|
|
10014
10070
|
LogUploaderUIOptions,
|
|
10015
10071
|
LogUploadOptions,
|
|
10016
10072
|
Manifest,
|
|
@@ -13328,6 +13384,12 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13328
13384
|
};
|
|
13329
13385
|
response: void;
|
|
13330
13386
|
};
|
|
13387
|
+
'launch-log-uploader': ApiCall<{
|
|
13388
|
+
options: OpenFin.LogUploaderOptions;
|
|
13389
|
+
}, void> & {
|
|
13390
|
+
apiPath: '.launchLogUploader';
|
|
13391
|
+
namespace: 'System';
|
|
13392
|
+
};
|
|
13331
13393
|
'dispatch-notification-event': {
|
|
13332
13394
|
request: {
|
|
13333
13395
|
notificationId: string;
|
|
@@ -15874,6 +15936,10 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
15874
15936
|
* Not indended for general use, will be used by the `@openfin/workspace-platform` package.
|
|
15875
15937
|
*/
|
|
15876
15938
|
serveAsset(options: OpenFin.ServeAssetOptions): Promise<OpenFin.ServedAssetInfo>;
|
|
15939
|
+
/**
|
|
15940
|
+
* Launches the Log Uploader. Full documentation can be found [here](https://resources.here.io/docs/core/develop/debug/log-uploader/).
|
|
15941
|
+
*/
|
|
15942
|
+
launchLogUploader(options: OpenFin.LogUploaderOptions): Promise<void>;
|
|
15877
15943
|
}
|
|
15878
15944
|
|
|
15879
15945
|
/**
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -9004,19 +9004,74 @@ declare type LogInfo = {
|
|
|
9004
9004
|
*/
|
|
9005
9005
|
declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
9006
9006
|
|
|
9007
|
+
/**
|
|
9008
|
+
* Options for the Log Uploader.
|
|
9009
|
+
*/
|
|
9010
|
+
declare type LogUploaderOptions = LogUploadOptions & {
|
|
9011
|
+
ui?: LogUploaderUIOptions & {
|
|
9012
|
+
/**
|
|
9013
|
+
* Whether the Log Uploader UI should be shown.
|
|
9014
|
+
* @defaultValue true
|
|
9015
|
+
*/
|
|
9016
|
+
show?: boolean;
|
|
9017
|
+
};
|
|
9018
|
+
};
|
|
9019
|
+
|
|
9020
|
+
/**
|
|
9021
|
+
* Options for the Log Uploader UI.
|
|
9022
|
+
* @interface
|
|
9023
|
+
*/
|
|
9007
9024
|
declare type LogUploaderUIOptions = {
|
|
9025
|
+
/**
|
|
9026
|
+
* Title for the Log Uploader window.
|
|
9027
|
+
* @defaultValue 'Here Log Uploader'
|
|
9028
|
+
*/
|
|
9008
9029
|
title?: string;
|
|
9030
|
+
/**
|
|
9031
|
+
* URL of an icon to use for the Log Uploader tool. The default is the Here logo.
|
|
9032
|
+
*/
|
|
9009
9033
|
icon?: string;
|
|
9034
|
+
/**
|
|
9035
|
+
* Name of the organization displayed in the Uploader window.
|
|
9036
|
+
* @defaultValue 'Here'
|
|
9037
|
+
*/
|
|
9010
9038
|
header?: string;
|
|
9039
|
+
/**
|
|
9040
|
+
* An explanation for the user of the purpose of the tool.
|
|
9041
|
+
* @defaultValue 'The following logs are being requested'
|
|
9042
|
+
*/
|
|
9011
9043
|
description?: string;
|
|
9044
|
+
/**
|
|
9045
|
+
* An email address that the user can contact with questions.
|
|
9046
|
+
* @defaultValue 'support@here.io'
|
|
9047
|
+
*/
|
|
9012
9048
|
email?: string;
|
|
9049
|
+
/**
|
|
9050
|
+
* URL of a webpage where the user can find more information about log uploading.
|
|
9051
|
+
* @defaultValue 'https://resources.here.io/docs/core/manage/security/'
|
|
9052
|
+
*/
|
|
9013
9053
|
website?: string;
|
|
9054
|
+
/**
|
|
9055
|
+
* Description of the webpage where the user can find more information.
|
|
9056
|
+
* @defaultValue 'Here Security'
|
|
9057
|
+
*/
|
|
9014
9058
|
websiteDescription?: string;
|
|
9015
9059
|
};
|
|
9016
9060
|
|
|
9017
9061
|
declare type LogUploadOptions = {
|
|
9062
|
+
/**
|
|
9063
|
+
* The URL where log files are to be uploaded.
|
|
9064
|
+
*/
|
|
9018
9065
|
endpoint: string;
|
|
9066
|
+
/**
|
|
9067
|
+
* An array of URL match patterns to define the manifests of the programs that the Log Uploader should upload logs for.
|
|
9068
|
+
* @defaultValue []
|
|
9069
|
+
*/
|
|
9019
9070
|
manifests?: string[];
|
|
9071
|
+
/**
|
|
9072
|
+
* An array of strings that specifies which logs should be uploaded.
|
|
9073
|
+
* @defaultValue ['app', 'rvm', 'debug']
|
|
9074
|
+
*/
|
|
9020
9075
|
logs?: string[];
|
|
9021
9076
|
ui?: LogUploaderUIOptions;
|
|
9022
9077
|
};
|
|
@@ -10011,6 +10066,7 @@ declare namespace OpenFin {
|
|
|
10011
10066
|
PlatformViewCreationOptions,
|
|
10012
10067
|
ProcessAffinityStrategy,
|
|
10013
10068
|
PlatformOptions,
|
|
10069
|
+
LogUploaderOptions,
|
|
10014
10070
|
LogUploaderUIOptions,
|
|
10015
10071
|
LogUploadOptions,
|
|
10016
10072
|
Manifest,
|
|
@@ -13328,6 +13384,12 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13328
13384
|
};
|
|
13329
13385
|
response: void;
|
|
13330
13386
|
};
|
|
13387
|
+
'launch-log-uploader': ApiCall<{
|
|
13388
|
+
options: OpenFin.LogUploaderOptions;
|
|
13389
|
+
}, void> & {
|
|
13390
|
+
apiPath: '.launchLogUploader';
|
|
13391
|
+
namespace: 'System';
|
|
13392
|
+
};
|
|
13331
13393
|
'dispatch-notification-event': {
|
|
13332
13394
|
request: {
|
|
13333
13395
|
notificationId: string;
|
|
@@ -15874,6 +15936,10 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
15874
15936
|
* Not indended for general use, will be used by the `@openfin/workspace-platform` package.
|
|
15875
15937
|
*/
|
|
15876
15938
|
serveAsset(options: OpenFin.ServeAssetOptions): Promise<OpenFin.ServedAssetInfo>;
|
|
15939
|
+
/**
|
|
15940
|
+
* Launches the Log Uploader. Full documentation can be found [here](https://resources.here.io/docs/core/develop/debug/log-uploader/).
|
|
15941
|
+
*/
|
|
15942
|
+
launchLogUploader(options: OpenFin.LogUploaderOptions): Promise<void>;
|
|
15877
15943
|
}
|
|
15878
15944
|
|
|
15879
15945
|
/**
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -9004,19 +9004,74 @@ declare type LogInfo = {
|
|
|
9004
9004
|
*/
|
|
9005
9005
|
declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
9006
9006
|
|
|
9007
|
+
/**
|
|
9008
|
+
* Options for the Log Uploader.
|
|
9009
|
+
*/
|
|
9010
|
+
declare type LogUploaderOptions = LogUploadOptions & {
|
|
9011
|
+
ui?: LogUploaderUIOptions & {
|
|
9012
|
+
/**
|
|
9013
|
+
* Whether the Log Uploader UI should be shown.
|
|
9014
|
+
* @defaultValue true
|
|
9015
|
+
*/
|
|
9016
|
+
show?: boolean;
|
|
9017
|
+
};
|
|
9018
|
+
};
|
|
9019
|
+
|
|
9020
|
+
/**
|
|
9021
|
+
* Options for the Log Uploader UI.
|
|
9022
|
+
* @interface
|
|
9023
|
+
*/
|
|
9007
9024
|
declare type LogUploaderUIOptions = {
|
|
9025
|
+
/**
|
|
9026
|
+
* Title for the Log Uploader window.
|
|
9027
|
+
* @defaultValue 'Here Log Uploader'
|
|
9028
|
+
*/
|
|
9008
9029
|
title?: string;
|
|
9030
|
+
/**
|
|
9031
|
+
* URL of an icon to use for the Log Uploader tool. The default is the Here logo.
|
|
9032
|
+
*/
|
|
9009
9033
|
icon?: string;
|
|
9034
|
+
/**
|
|
9035
|
+
* Name of the organization displayed in the Uploader window.
|
|
9036
|
+
* @defaultValue 'Here'
|
|
9037
|
+
*/
|
|
9010
9038
|
header?: string;
|
|
9039
|
+
/**
|
|
9040
|
+
* An explanation for the user of the purpose of the tool.
|
|
9041
|
+
* @defaultValue 'The following logs are being requested'
|
|
9042
|
+
*/
|
|
9011
9043
|
description?: string;
|
|
9044
|
+
/**
|
|
9045
|
+
* An email address that the user can contact with questions.
|
|
9046
|
+
* @defaultValue 'support@here.io'
|
|
9047
|
+
*/
|
|
9012
9048
|
email?: string;
|
|
9049
|
+
/**
|
|
9050
|
+
* URL of a webpage where the user can find more information about log uploading.
|
|
9051
|
+
* @defaultValue 'https://resources.here.io/docs/core/manage/security/'
|
|
9052
|
+
*/
|
|
9013
9053
|
website?: string;
|
|
9054
|
+
/**
|
|
9055
|
+
* Description of the webpage where the user can find more information.
|
|
9056
|
+
* @defaultValue 'Here Security'
|
|
9057
|
+
*/
|
|
9014
9058
|
websiteDescription?: string;
|
|
9015
9059
|
};
|
|
9016
9060
|
|
|
9017
9061
|
declare type LogUploadOptions = {
|
|
9062
|
+
/**
|
|
9063
|
+
* The URL where log files are to be uploaded.
|
|
9064
|
+
*/
|
|
9018
9065
|
endpoint: string;
|
|
9066
|
+
/**
|
|
9067
|
+
* An array of URL match patterns to define the manifests of the programs that the Log Uploader should upload logs for.
|
|
9068
|
+
* @defaultValue []
|
|
9069
|
+
*/
|
|
9019
9070
|
manifests?: string[];
|
|
9071
|
+
/**
|
|
9072
|
+
* An array of strings that specifies which logs should be uploaded.
|
|
9073
|
+
* @defaultValue ['app', 'rvm', 'debug']
|
|
9074
|
+
*/
|
|
9020
9075
|
logs?: string[];
|
|
9021
9076
|
ui?: LogUploaderUIOptions;
|
|
9022
9077
|
};
|
|
@@ -10011,6 +10066,7 @@ declare namespace OpenFin {
|
|
|
10011
10066
|
PlatformViewCreationOptions,
|
|
10012
10067
|
ProcessAffinityStrategy,
|
|
10013
10068
|
PlatformOptions,
|
|
10069
|
+
LogUploaderOptions,
|
|
10014
10070
|
LogUploaderUIOptions,
|
|
10015
10071
|
LogUploadOptions,
|
|
10016
10072
|
Manifest,
|
|
@@ -13328,6 +13384,12 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13328
13384
|
};
|
|
13329
13385
|
response: void;
|
|
13330
13386
|
};
|
|
13387
|
+
'launch-log-uploader': ApiCall<{
|
|
13388
|
+
options: OpenFin.LogUploaderOptions;
|
|
13389
|
+
}, void> & {
|
|
13390
|
+
apiPath: '.launchLogUploader';
|
|
13391
|
+
namespace: 'System';
|
|
13392
|
+
};
|
|
13331
13393
|
'dispatch-notification-event': {
|
|
13332
13394
|
request: {
|
|
13333
13395
|
notificationId: string;
|
|
@@ -15874,6 +15936,10 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
15874
15936
|
* Not indended for general use, will be used by the `@openfin/workspace-platform` package.
|
|
15875
15937
|
*/
|
|
15876
15938
|
serveAsset(options: OpenFin.ServeAssetOptions): Promise<OpenFin.ServedAssetInfo>;
|
|
15939
|
+
/**
|
|
15940
|
+
* Launches the Log Uploader. Full documentation can be found [here](https://resources.here.io/docs/core/develop/debug/log-uploader/).
|
|
15941
|
+
*/
|
|
15942
|
+
launchLogUploader(options: OpenFin.LogUploaderOptions): Promise<void>;
|
|
15877
15943
|
}
|
|
15878
15944
|
|
|
15879
15945
|
/**
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -9300,19 +9300,74 @@ declare type LogInfo = {
|
|
|
9300
9300
|
*/
|
|
9301
9301
|
declare type LogLevel = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
9302
9302
|
|
|
9303
|
+
/**
|
|
9304
|
+
* Options for the Log Uploader.
|
|
9305
|
+
*/
|
|
9306
|
+
declare type LogUploaderOptions = LogUploadOptions & {
|
|
9307
|
+
ui?: LogUploaderUIOptions & {
|
|
9308
|
+
/**
|
|
9309
|
+
* Whether the Log Uploader UI should be shown.
|
|
9310
|
+
* @defaultValue true
|
|
9311
|
+
*/
|
|
9312
|
+
show?: boolean;
|
|
9313
|
+
};
|
|
9314
|
+
};
|
|
9315
|
+
|
|
9316
|
+
/**
|
|
9317
|
+
* Options for the Log Uploader UI.
|
|
9318
|
+
* @interface
|
|
9319
|
+
*/
|
|
9303
9320
|
declare type LogUploaderUIOptions = {
|
|
9321
|
+
/**
|
|
9322
|
+
* Title for the Log Uploader window.
|
|
9323
|
+
* @defaultValue 'Here Log Uploader'
|
|
9324
|
+
*/
|
|
9304
9325
|
title?: string;
|
|
9326
|
+
/**
|
|
9327
|
+
* URL of an icon to use for the Log Uploader tool. The default is the Here logo.
|
|
9328
|
+
*/
|
|
9305
9329
|
icon?: string;
|
|
9330
|
+
/**
|
|
9331
|
+
* Name of the organization displayed in the Uploader window.
|
|
9332
|
+
* @defaultValue 'Here'
|
|
9333
|
+
*/
|
|
9306
9334
|
header?: string;
|
|
9335
|
+
/**
|
|
9336
|
+
* An explanation for the user of the purpose of the tool.
|
|
9337
|
+
* @defaultValue 'The following logs are being requested'
|
|
9338
|
+
*/
|
|
9307
9339
|
description?: string;
|
|
9340
|
+
/**
|
|
9341
|
+
* An email address that the user can contact with questions.
|
|
9342
|
+
* @defaultValue 'support@here.io'
|
|
9343
|
+
*/
|
|
9308
9344
|
email?: string;
|
|
9345
|
+
/**
|
|
9346
|
+
* URL of a webpage where the user can find more information about log uploading.
|
|
9347
|
+
* @defaultValue 'https://resources.here.io/docs/core/manage/security/'
|
|
9348
|
+
*/
|
|
9309
9349
|
website?: string;
|
|
9350
|
+
/**
|
|
9351
|
+
* Description of the webpage where the user can find more information.
|
|
9352
|
+
* @defaultValue 'Here Security'
|
|
9353
|
+
*/
|
|
9310
9354
|
websiteDescription?: string;
|
|
9311
9355
|
};
|
|
9312
9356
|
|
|
9313
9357
|
declare type LogUploadOptions = {
|
|
9358
|
+
/**
|
|
9359
|
+
* The URL where log files are to be uploaded.
|
|
9360
|
+
*/
|
|
9314
9361
|
endpoint: string;
|
|
9362
|
+
/**
|
|
9363
|
+
* An array of URL match patterns to define the manifests of the programs that the Log Uploader should upload logs for.
|
|
9364
|
+
* @defaultValue []
|
|
9365
|
+
*/
|
|
9315
9366
|
manifests?: string[];
|
|
9367
|
+
/**
|
|
9368
|
+
* An array of strings that specifies which logs should be uploaded.
|
|
9369
|
+
* @defaultValue ['app', 'rvm', 'debug']
|
|
9370
|
+
*/
|
|
9316
9371
|
logs?: string[];
|
|
9317
9372
|
ui?: LogUploaderUIOptions;
|
|
9318
9373
|
};
|
|
@@ -10329,6 +10384,7 @@ declare namespace OpenFin {
|
|
|
10329
10384
|
PlatformViewCreationOptions,
|
|
10330
10385
|
ProcessAffinityStrategy,
|
|
10331
10386
|
PlatformOptions,
|
|
10387
|
+
LogUploaderOptions,
|
|
10332
10388
|
LogUploaderUIOptions,
|
|
10333
10389
|
LogUploadOptions,
|
|
10334
10390
|
Manifest,
|
|
@@ -13729,6 +13785,12 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13729
13785
|
};
|
|
13730
13786
|
response: void;
|
|
13731
13787
|
};
|
|
13788
|
+
'launch-log-uploader': ApiCall<{
|
|
13789
|
+
options: OpenFin.LogUploaderOptions;
|
|
13790
|
+
}, void> & {
|
|
13791
|
+
apiPath: '.launchLogUploader';
|
|
13792
|
+
namespace: 'System';
|
|
13793
|
+
};
|
|
13732
13794
|
'dispatch-notification-event': {
|
|
13733
13795
|
request: {
|
|
13734
13796
|
notificationId: string;
|
|
@@ -16281,6 +16343,10 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
16281
16343
|
* Not indended for general use, will be used by the `@openfin/workspace-platform` package.
|
|
16282
16344
|
*/
|
|
16283
16345
|
serveAsset(options: OpenFin.ServeAssetOptions): Promise<OpenFin.ServedAssetInfo>;
|
|
16346
|
+
/**
|
|
16347
|
+
* Launches the Log Uploader. Full documentation can be found [here](https://resources.here.io/docs/core/develop/debug/log-uploader/).
|
|
16348
|
+
*/
|
|
16349
|
+
launchLogUploader(options: OpenFin.LogUploaderOptions): Promise<void>;
|
|
16284
16350
|
}
|
|
16285
16351
|
|
|
16286
16352
|
/**
|