@openfin/fdc3-api 43.100.58 → 43.100.62
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 +14 -6
- package/out/fdc3-api-beta.d.ts +14 -6
- package/out/fdc3-api-public.d.ts +14 -6
- package/out/fdc3-api.d.ts +14 -6
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -9752,6 +9752,12 @@ declare type MutableWindowOptions = {
|
|
|
9752
9752
|
/**
|
|
9753
9753
|
* Shows the window's icon in the taskbar.
|
|
9754
9754
|
*
|
|
9755
|
+
* @remarks
|
|
9756
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
|
9757
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
|
9758
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
|
9759
|
+
* {@link Window._Window.showPopupWindow}.
|
|
9760
|
+
*
|
|
9755
9761
|
* @default true
|
|
9756
9762
|
*/
|
|
9757
9763
|
showTaskbarIcon: boolean;
|
|
@@ -13097,6 +13103,13 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13097
13103
|
apiPath: '.getOSInfo';
|
|
13098
13104
|
namespace: 'System';
|
|
13099
13105
|
};
|
|
13106
|
+
'launch-log-uploader': ApiCall<{
|
|
13107
|
+
options: OpenFin.LogUploaderOptions;
|
|
13108
|
+
}, void> & {
|
|
13109
|
+
secure: true;
|
|
13110
|
+
apiPath: '.launchLogUploader';
|
|
13111
|
+
namespace: 'System';
|
|
13112
|
+
};
|
|
13100
13113
|
'launch-external-process': ApiCall<OpenFin.ExternalProcessRequestType, OpenFin.Identity> & {
|
|
13101
13114
|
secure: true;
|
|
13102
13115
|
apiPath: '.launchExternalProcess';
|
|
@@ -13464,12 +13477,6 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13464
13477
|
};
|
|
13465
13478
|
response: void;
|
|
13466
13479
|
};
|
|
13467
|
-
'launch-log-uploader': ApiCall<{
|
|
13468
|
-
options: OpenFin.LogUploaderOptions;
|
|
13469
|
-
}, void> & {
|
|
13470
|
-
apiPath: '.launchLogUploader';
|
|
13471
|
-
namespace: 'System';
|
|
13472
|
-
};
|
|
13473
13480
|
'dispatch-notification-event': {
|
|
13474
13481
|
request: {
|
|
13475
13482
|
notificationId: string;
|
|
@@ -16121,6 +16128,7 @@ declare type SystemPermissions = {
|
|
|
16121
16128
|
downloadAsset: boolean;
|
|
16122
16129
|
serveAsset: boolean;
|
|
16123
16130
|
enableNativeWindowIntegrationProvider: boolean;
|
|
16131
|
+
launchLogUploader: boolean;
|
|
16124
16132
|
};
|
|
16125
16133
|
|
|
16126
16134
|
/**
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -9752,6 +9752,12 @@ declare type MutableWindowOptions = {
|
|
|
9752
9752
|
/**
|
|
9753
9753
|
* Shows the window's icon in the taskbar.
|
|
9754
9754
|
*
|
|
9755
|
+
* @remarks
|
|
9756
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
|
9757
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
|
9758
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
|
9759
|
+
* {@link Window._Window.showPopupWindow}.
|
|
9760
|
+
*
|
|
9755
9761
|
* @default true
|
|
9756
9762
|
*/
|
|
9757
9763
|
showTaskbarIcon: boolean;
|
|
@@ -13097,6 +13103,13 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13097
13103
|
apiPath: '.getOSInfo';
|
|
13098
13104
|
namespace: 'System';
|
|
13099
13105
|
};
|
|
13106
|
+
'launch-log-uploader': ApiCall<{
|
|
13107
|
+
options: OpenFin.LogUploaderOptions;
|
|
13108
|
+
}, void> & {
|
|
13109
|
+
secure: true;
|
|
13110
|
+
apiPath: '.launchLogUploader';
|
|
13111
|
+
namespace: 'System';
|
|
13112
|
+
};
|
|
13100
13113
|
'launch-external-process': ApiCall<OpenFin.ExternalProcessRequestType, OpenFin.Identity> & {
|
|
13101
13114
|
secure: true;
|
|
13102
13115
|
apiPath: '.launchExternalProcess';
|
|
@@ -13464,12 +13477,6 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13464
13477
|
};
|
|
13465
13478
|
response: void;
|
|
13466
13479
|
};
|
|
13467
|
-
'launch-log-uploader': ApiCall<{
|
|
13468
|
-
options: OpenFin.LogUploaderOptions;
|
|
13469
|
-
}, void> & {
|
|
13470
|
-
apiPath: '.launchLogUploader';
|
|
13471
|
-
namespace: 'System';
|
|
13472
|
-
};
|
|
13473
13480
|
'dispatch-notification-event': {
|
|
13474
13481
|
request: {
|
|
13475
13482
|
notificationId: string;
|
|
@@ -16121,6 +16128,7 @@ declare type SystemPermissions = {
|
|
|
16121
16128
|
downloadAsset: boolean;
|
|
16122
16129
|
serveAsset: boolean;
|
|
16123
16130
|
enableNativeWindowIntegrationProvider: boolean;
|
|
16131
|
+
launchLogUploader: boolean;
|
|
16124
16132
|
};
|
|
16125
16133
|
|
|
16126
16134
|
/**
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -9752,6 +9752,12 @@ declare type MutableWindowOptions = {
|
|
|
9752
9752
|
/**
|
|
9753
9753
|
* Shows the window's icon in the taskbar.
|
|
9754
9754
|
*
|
|
9755
|
+
* @remarks
|
|
9756
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
|
9757
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
|
9758
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
|
9759
|
+
* {@link Window._Window.showPopupWindow}.
|
|
9760
|
+
*
|
|
9755
9761
|
* @default true
|
|
9756
9762
|
*/
|
|
9757
9763
|
showTaskbarIcon: boolean;
|
|
@@ -13097,6 +13103,13 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13097
13103
|
apiPath: '.getOSInfo';
|
|
13098
13104
|
namespace: 'System';
|
|
13099
13105
|
};
|
|
13106
|
+
'launch-log-uploader': ApiCall<{
|
|
13107
|
+
options: OpenFin.LogUploaderOptions;
|
|
13108
|
+
}, void> & {
|
|
13109
|
+
secure: true;
|
|
13110
|
+
apiPath: '.launchLogUploader';
|
|
13111
|
+
namespace: 'System';
|
|
13112
|
+
};
|
|
13100
13113
|
'launch-external-process': ApiCall<OpenFin.ExternalProcessRequestType, OpenFin.Identity> & {
|
|
13101
13114
|
secure: true;
|
|
13102
13115
|
apiPath: '.launchExternalProcess';
|
|
@@ -13464,12 +13477,6 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13464
13477
|
};
|
|
13465
13478
|
response: void;
|
|
13466
13479
|
};
|
|
13467
|
-
'launch-log-uploader': ApiCall<{
|
|
13468
|
-
options: OpenFin.LogUploaderOptions;
|
|
13469
|
-
}, void> & {
|
|
13470
|
-
apiPath: '.launchLogUploader';
|
|
13471
|
-
namespace: 'System';
|
|
13472
|
-
};
|
|
13473
13480
|
'dispatch-notification-event': {
|
|
13474
13481
|
request: {
|
|
13475
13482
|
notificationId: string;
|
|
@@ -16121,6 +16128,7 @@ declare type SystemPermissions = {
|
|
|
16121
16128
|
downloadAsset: boolean;
|
|
16122
16129
|
serveAsset: boolean;
|
|
16123
16130
|
enableNativeWindowIntegrationProvider: boolean;
|
|
16131
|
+
launchLogUploader: boolean;
|
|
16124
16132
|
};
|
|
16125
16133
|
|
|
16126
16134
|
/**
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -10065,6 +10065,12 @@ declare type MutableWindowOptions = {
|
|
|
10065
10065
|
/**
|
|
10066
10066
|
* Shows the window's icon in the taskbar.
|
|
10067
10067
|
*
|
|
10068
|
+
* @remarks
|
|
10069
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
|
10070
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
|
10071
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
|
10072
|
+
* {@link Window._Window.showPopupWindow}.
|
|
10073
|
+
*
|
|
10068
10074
|
* @default true
|
|
10069
10075
|
*/
|
|
10070
10076
|
showTaskbarIcon: boolean;
|
|
@@ -13511,6 +13517,13 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13511
13517
|
apiPath: '.getOSInfo';
|
|
13512
13518
|
namespace: 'System';
|
|
13513
13519
|
};
|
|
13520
|
+
'launch-log-uploader': ApiCall<{
|
|
13521
|
+
options: OpenFin.LogUploaderOptions;
|
|
13522
|
+
}, void> & {
|
|
13523
|
+
secure: true;
|
|
13524
|
+
apiPath: '.launchLogUploader';
|
|
13525
|
+
namespace: 'System';
|
|
13526
|
+
};
|
|
13514
13527
|
'launch-external-process': ApiCall<OpenFin.ExternalProcessRequestType, OpenFin.Identity> & {
|
|
13515
13528
|
secure: true;
|
|
13516
13529
|
apiPath: '.launchExternalProcess';
|
|
@@ -13878,12 +13891,6 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13878
13891
|
};
|
|
13879
13892
|
response: void;
|
|
13880
13893
|
};
|
|
13881
|
-
'launch-log-uploader': ApiCall<{
|
|
13882
|
-
options: OpenFin.LogUploaderOptions;
|
|
13883
|
-
}, void> & {
|
|
13884
|
-
apiPath: '.launchLogUploader';
|
|
13885
|
-
namespace: 'System';
|
|
13886
|
-
};
|
|
13887
13894
|
'dispatch-notification-event': {
|
|
13888
13895
|
request: {
|
|
13889
13896
|
notificationId: string;
|
|
@@ -16541,6 +16548,7 @@ declare type SystemPermissions = {
|
|
|
16541
16548
|
downloadAsset: boolean;
|
|
16542
16549
|
serveAsset: boolean;
|
|
16543
16550
|
enableNativeWindowIntegrationProvider: boolean;
|
|
16551
|
+
launchLogUploader: boolean;
|
|
16544
16552
|
};
|
|
16545
16553
|
|
|
16546
16554
|
/**
|