@openfin/core 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/mock-alpha.d.ts +14 -6
- package/out/mock-beta.d.ts +14 -6
- package/out/mock-public.d.ts +14 -6
- package/out/stub.d.ts +14 -6
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
@@ -9410,6 +9410,12 @@ declare type MutableWindowOptions = {
|
|
9410
9410
|
/**
|
9411
9411
|
* Shows the window's icon in the taskbar.
|
9412
9412
|
*
|
9413
|
+
* @remarks
|
9414
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
9415
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
9416
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
9417
|
+
* {@link Window._Window.showPopupWindow}.
|
9418
|
+
*
|
9413
9419
|
* @default true
|
9414
9420
|
*/
|
9415
9421
|
showTaskbarIcon: boolean;
|
@@ -12757,6 +12763,13 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
12757
12763
|
apiPath: '.getOSInfo';
|
12758
12764
|
namespace: 'System';
|
12759
12765
|
};
|
12766
|
+
'launch-log-uploader': ApiCall<{
|
12767
|
+
options: OpenFin_2.LogUploaderOptions;
|
12768
|
+
}, void> & {
|
12769
|
+
secure: true;
|
12770
|
+
apiPath: '.launchLogUploader';
|
12771
|
+
namespace: 'System';
|
12772
|
+
};
|
12760
12773
|
'launch-external-process': ApiCall<OpenFin_2.ExternalProcessRequestType, OpenFin_2.Identity> & {
|
12761
12774
|
secure: true;
|
12762
12775
|
apiPath: '.launchExternalProcess';
|
@@ -13124,12 +13137,6 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
13124
13137
|
};
|
13125
13138
|
response: void;
|
13126
13139
|
};
|
13127
|
-
'launch-log-uploader': ApiCall<{
|
13128
|
-
options: OpenFin_2.LogUploaderOptions;
|
13129
|
-
}, void> & {
|
13130
|
-
apiPath: '.launchLogUploader';
|
13131
|
-
namespace: 'System';
|
13132
|
-
};
|
13133
13140
|
'dispatch-notification-event': {
|
13134
13141
|
request: {
|
13135
13142
|
notificationId: string;
|
@@ -15781,6 +15788,7 @@ declare type SystemPermissions = {
|
|
15781
15788
|
downloadAsset: boolean;
|
15782
15789
|
serveAsset: boolean;
|
15783
15790
|
enableNativeWindowIntegrationProvider: boolean;
|
15791
|
+
launchLogUploader: boolean;
|
15784
15792
|
};
|
15785
15793
|
|
15786
15794
|
/**
|
package/out/mock-beta.d.ts
CHANGED
@@ -9410,6 +9410,12 @@ declare type MutableWindowOptions = {
|
|
9410
9410
|
/**
|
9411
9411
|
* Shows the window's icon in the taskbar.
|
9412
9412
|
*
|
9413
|
+
* @remarks
|
9414
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
9415
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
9416
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
9417
|
+
* {@link Window._Window.showPopupWindow}.
|
9418
|
+
*
|
9413
9419
|
* @default true
|
9414
9420
|
*/
|
9415
9421
|
showTaskbarIcon: boolean;
|
@@ -12757,6 +12763,13 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
12757
12763
|
apiPath: '.getOSInfo';
|
12758
12764
|
namespace: 'System';
|
12759
12765
|
};
|
12766
|
+
'launch-log-uploader': ApiCall<{
|
12767
|
+
options: OpenFin_2.LogUploaderOptions;
|
12768
|
+
}, void> & {
|
12769
|
+
secure: true;
|
12770
|
+
apiPath: '.launchLogUploader';
|
12771
|
+
namespace: 'System';
|
12772
|
+
};
|
12760
12773
|
'launch-external-process': ApiCall<OpenFin_2.ExternalProcessRequestType, OpenFin_2.Identity> & {
|
12761
12774
|
secure: true;
|
12762
12775
|
apiPath: '.launchExternalProcess';
|
@@ -13124,12 +13137,6 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
13124
13137
|
};
|
13125
13138
|
response: void;
|
13126
13139
|
};
|
13127
|
-
'launch-log-uploader': ApiCall<{
|
13128
|
-
options: OpenFin_2.LogUploaderOptions;
|
13129
|
-
}, void> & {
|
13130
|
-
apiPath: '.launchLogUploader';
|
13131
|
-
namespace: 'System';
|
13132
|
-
};
|
13133
13140
|
'dispatch-notification-event': {
|
13134
13141
|
request: {
|
13135
13142
|
notificationId: string;
|
@@ -15781,6 +15788,7 @@ declare type SystemPermissions = {
|
|
15781
15788
|
downloadAsset: boolean;
|
15782
15789
|
serveAsset: boolean;
|
15783
15790
|
enableNativeWindowIntegrationProvider: boolean;
|
15791
|
+
launchLogUploader: boolean;
|
15784
15792
|
};
|
15785
15793
|
|
15786
15794
|
/**
|
package/out/mock-public.d.ts
CHANGED
@@ -9410,6 +9410,12 @@ declare type MutableWindowOptions = {
|
|
9410
9410
|
/**
|
9411
9411
|
* Shows the window's icon in the taskbar.
|
9412
9412
|
*
|
9413
|
+
* @remarks
|
9414
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
9415
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
9416
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
9417
|
+
* {@link Window._Window.showPopupWindow}.
|
9418
|
+
*
|
9413
9419
|
* @default true
|
9414
9420
|
*/
|
9415
9421
|
showTaskbarIcon: boolean;
|
@@ -12757,6 +12763,13 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
12757
12763
|
apiPath: '.getOSInfo';
|
12758
12764
|
namespace: 'System';
|
12759
12765
|
};
|
12766
|
+
'launch-log-uploader': ApiCall<{
|
12767
|
+
options: OpenFin_2.LogUploaderOptions;
|
12768
|
+
}, void> & {
|
12769
|
+
secure: true;
|
12770
|
+
apiPath: '.launchLogUploader';
|
12771
|
+
namespace: 'System';
|
12772
|
+
};
|
12760
12773
|
'launch-external-process': ApiCall<OpenFin_2.ExternalProcessRequestType, OpenFin_2.Identity> & {
|
12761
12774
|
secure: true;
|
12762
12775
|
apiPath: '.launchExternalProcess';
|
@@ -13124,12 +13137,6 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
13124
13137
|
};
|
13125
13138
|
response: void;
|
13126
13139
|
};
|
13127
|
-
'launch-log-uploader': ApiCall<{
|
13128
|
-
options: OpenFin_2.LogUploaderOptions;
|
13129
|
-
}, void> & {
|
13130
|
-
apiPath: '.launchLogUploader';
|
13131
|
-
namespace: 'System';
|
13132
|
-
};
|
13133
13140
|
'dispatch-notification-event': {
|
13134
13141
|
request: {
|
13135
13142
|
notificationId: string;
|
@@ -15781,6 +15788,7 @@ declare type SystemPermissions = {
|
|
15781
15788
|
downloadAsset: boolean;
|
15782
15789
|
serveAsset: boolean;
|
15783
15790
|
enableNativeWindowIntegrationProvider: boolean;
|
15791
|
+
launchLogUploader: boolean;
|
15784
15792
|
};
|
15785
15793
|
|
15786
15794
|
/**
|
package/out/stub.d.ts
CHANGED
@@ -9723,6 +9723,12 @@ declare type MutableWindowOptions = {
|
|
9723
9723
|
/**
|
9724
9724
|
* Shows the window's icon in the taskbar.
|
9725
9725
|
*
|
9726
|
+
* @remarks
|
9727
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
9728
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
9729
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
9730
|
+
* {@link Window._Window.showPopupWindow}.
|
9731
|
+
*
|
9726
9732
|
* @default true
|
9727
9733
|
*/
|
9728
9734
|
showTaskbarIcon: boolean;
|
@@ -13171,6 +13177,13 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
13171
13177
|
apiPath: '.getOSInfo';
|
13172
13178
|
namespace: 'System';
|
13173
13179
|
};
|
13180
|
+
'launch-log-uploader': ApiCall<{
|
13181
|
+
options: OpenFin_2.LogUploaderOptions;
|
13182
|
+
}, void> & {
|
13183
|
+
secure: true;
|
13184
|
+
apiPath: '.launchLogUploader';
|
13185
|
+
namespace: 'System';
|
13186
|
+
};
|
13174
13187
|
'launch-external-process': ApiCall<OpenFin_2.ExternalProcessRequestType, OpenFin_2.Identity> & {
|
13175
13188
|
secure: true;
|
13176
13189
|
apiPath: '.launchExternalProcess';
|
@@ -13538,12 +13551,6 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
13538
13551
|
};
|
13539
13552
|
response: void;
|
13540
13553
|
};
|
13541
|
-
'launch-log-uploader': ApiCall<{
|
13542
|
-
options: OpenFin_2.LogUploaderOptions;
|
13543
|
-
}, void> & {
|
13544
|
-
apiPath: '.launchLogUploader';
|
13545
|
-
namespace: 'System';
|
13546
|
-
};
|
13547
13554
|
'dispatch-notification-event': {
|
13548
13555
|
request: {
|
13549
13556
|
notificationId: string;
|
@@ -16201,6 +16208,7 @@ declare type SystemPermissions = {
|
|
16201
16208
|
downloadAsset: boolean;
|
16202
16209
|
serveAsset: boolean;
|
16203
16210
|
enableNativeWindowIntegrationProvider: boolean;
|
16211
|
+
launchLogUploader: boolean;
|
16204
16212
|
};
|
16205
16213
|
|
16206
16214
|
/**
|