@openfin/node-adapter 34.78.52 → 34.78.54
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/node-adapter-alpha.d.ts +28 -22
- package/out/node-adapter-beta.d.ts +28 -22
- package/out/node-adapter-public.d.ts +28 -22
- package/out/node-adapter.d.ts +28 -22
- package/out/node-adapter.js +0 -12
- package/package.json +1 -1
@@ -918,7 +918,6 @@ declare namespace ApplicationEvents {
|
|
918
918
|
WindowRespondingEvent,
|
919
919
|
WindowStartLoadEvent,
|
920
920
|
ApplicationWindowEvent,
|
921
|
-
ApplicationWindowEventTypes,
|
922
921
|
ClosedEvent,
|
923
922
|
ConnectedEvent_2 as ConnectedEvent,
|
924
923
|
ApplicationConnectedEvent,
|
@@ -1337,11 +1336,6 @@ declare type ApplicationType = {
|
|
1337
1336
|
*/
|
1338
1337
|
declare type ApplicationWindowEvent = WindowAlertRequestedEvent | WindowCreatedEvent | WindowEndLoadEvent | WindowNotRespondingEvent | WindowRespondingEvent | WindowStartLoadEvent;
|
1339
1338
|
|
1340
|
-
/**
|
1341
|
-
* Array of valid `type` values for an {@link ApplicationWindowEvent}.
|
1342
|
-
*/
|
1343
|
-
declare const ApplicationWindowEventTypes: readonly ["window-alert-requested", "window-created", "window-end-load", "window-not-responding", "window-responding", "window-start-load"];
|
1344
|
-
|
1345
1339
|
declare type ApplicationWindowInfo = OpenFin.ApplicationWindowInfo;
|
1346
1340
|
|
1347
1341
|
/**
|
@@ -5115,7 +5109,7 @@ declare type Event_10 = ApplicationEvents.Event | ApiReadyEvent | SnapshotApplie
|
|
5115
5109
|
* under the {@link OpenFin.SystemEvents} namespace (payloads inherited from propagated events are defined in the namespace
|
5116
5110
|
* from which they propagate).
|
5117
5111
|
*/
|
5118
|
-
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ViewEvents.PropagatedEvent<'system'
|
5112
|
+
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ExcludeRequested<ViewEvents.PropagatedEvent<'system'>> | ExcludeRequested<ApplicationEvents.PropagatedEvent<'system'>> | ApplicationCreatedEvent | DesktopIconClickedEvent | IdleStateChangedEvent | MonitorInfoChangedEvent | SessionChangedEvent | AppVersionEventWithId | SystemShutdownEvent;
|
5119
5113
|
|
5120
5114
|
/**
|
5121
5115
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by a {@link Channel}. Events are
|
@@ -5653,7 +5647,7 @@ declare type FileDownloadEvent = {
|
|
5653
5647
|
*
|
5654
5648
|
* @interface
|
5655
5649
|
*/
|
5656
|
-
declare type FileDownloadLocationChangedEvent =
|
5650
|
+
declare type FileDownloadLocationChangedEvent = BaseEvent_3 & {
|
5657
5651
|
type: 'file-download-location-changed';
|
5658
5652
|
};
|
5659
5653
|
|
@@ -6660,6 +6654,11 @@ declare type IdentityEvent = BaseEvent & {
|
|
6660
6654
|
|
6661
6655
|
/* Excluded from this release type: IdEventType */
|
6662
6656
|
|
6657
|
+
/**
|
6658
|
+
* @deprecated Renamed to {@link IdleStateChangedEvent}.
|
6659
|
+
*/
|
6660
|
+
declare type IdleEvent = IdleStateChangedEvent;
|
6661
|
+
|
6663
6662
|
/**
|
6664
6663
|
* Generated when a user enters or returns from idle state.
|
6665
6664
|
* @remarks This method is continuously generated every minute while the user is in idle.
|
@@ -6667,7 +6666,7 @@ declare type IdentityEvent = BaseEvent & {
|
|
6667
6666
|
* A user returns from idle state when the computer is unlocked or keyboard/mouse activity has resumed.
|
6668
6667
|
* @interface
|
6669
6668
|
*/
|
6670
|
-
declare type
|
6669
|
+
declare type IdleStateChangedEvent = BaseEvent_8 & {
|
6671
6670
|
type: 'idle-state-changed';
|
6672
6671
|
elapsedTime: number;
|
6673
6672
|
isIdle: boolean;
|
@@ -9552,14 +9551,9 @@ declare type MonitorDetails = {
|
|
9552
9551
|
};
|
9553
9552
|
|
9554
9553
|
/**
|
9555
|
-
*
|
9556
|
-
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
9557
|
-
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
9558
|
-
* @interface
|
9554
|
+
* @deprecated Renamed to {@link MonitorInfoChangedEvent}.
|
9559
9555
|
*/
|
9560
|
-
declare type MonitorEvent =
|
9561
|
-
type: 'monitor-info-changed';
|
9562
|
-
};
|
9556
|
+
declare type MonitorEvent = MonitorInfoChangedEvent;
|
9563
9557
|
|
9564
9558
|
/**
|
9565
9559
|
* @interface
|
@@ -9583,6 +9577,16 @@ declare type MonitorInfo = {
|
|
9583
9577
|
virtualScreen: DipRect;
|
9584
9578
|
};
|
9585
9579
|
|
9580
|
+
/**
|
9581
|
+
* Generated on changes of a monitor's size/location.
|
9582
|
+
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
9583
|
+
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
9584
|
+
* @interface
|
9585
|
+
*/
|
9586
|
+
declare type MonitorInfoChangedEvent = BaseEvent_8 & OpenFin.MonitorInfo & {
|
9587
|
+
type: 'monitor-info-changed';
|
9588
|
+
};
|
9589
|
+
|
9586
9590
|
/**
|
9587
9591
|
* @interface
|
9588
9592
|
*/
|
@@ -15178,7 +15182,9 @@ declare namespace SystemEvents {
|
|
15178
15182
|
NotRequested,
|
15179
15183
|
ExcludeRequested,
|
15180
15184
|
BaseEvent_8 as BaseEvent,
|
15185
|
+
IdleStateChangedEvent,
|
15181
15186
|
IdleEvent,
|
15187
|
+
MonitorInfoChangedEvent,
|
15182
15188
|
MonitorEvent,
|
15183
15189
|
SessionChangedEvent,
|
15184
15190
|
AppVersionEvent,
|
@@ -19253,7 +19259,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19253
19259
|
* Generated when an alert is fired and suppressed due to the customWindowAlert flag being true.
|
19254
19260
|
* @interface
|
19255
19261
|
*/
|
19256
|
-
declare type WindowAlertRequestedEvent =
|
19262
|
+
declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
19257
19263
|
type: 'window-alert-requested';
|
19258
19264
|
};
|
19259
19265
|
|
@@ -19301,7 +19307,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19301
19307
|
* Generated when a child window is created.
|
19302
19308
|
* @interface
|
19303
19309
|
*/
|
19304
|
-
declare type WindowCreatedEvent =
|
19310
|
+
declare type WindowCreatedEvent = BaseEvent_3 & {
|
19305
19311
|
type: 'window-created';
|
19306
19312
|
};
|
19307
19313
|
|
@@ -19358,7 +19364,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19358
19364
|
* Generated when a child window ends loading.
|
19359
19365
|
* @interface
|
19360
19366
|
*/
|
19361
|
-
declare type WindowEndLoadEvent =
|
19367
|
+
declare type WindowEndLoadEvent = BaseEvent_3 & {
|
19362
19368
|
type: 'window-end-load';
|
19363
19369
|
};
|
19364
19370
|
|
@@ -19572,7 +19578,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19572
19578
|
* Generated when a child window is not responding.
|
19573
19579
|
* @interface
|
19574
19580
|
*/
|
19575
|
-
declare type WindowNotRespondingEvent =
|
19581
|
+
declare type WindowNotRespondingEvent = BaseEvent_3 & {
|
19576
19582
|
type: 'window-not-responding';
|
19577
19583
|
};
|
19578
19584
|
|
@@ -19604,7 +19610,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19604
19610
|
* Generated when a child window is responding.
|
19605
19611
|
* @interface
|
19606
19612
|
*/
|
19607
|
-
declare type WindowRespondingEvent =
|
19613
|
+
declare type WindowRespondingEvent = BaseEvent_3 & {
|
19608
19614
|
type: 'window-responding';
|
19609
19615
|
};
|
19610
19616
|
|
@@ -19633,7 +19639,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19633
19639
|
* Generated when a child window starts loading.
|
19634
19640
|
* @interface
|
19635
19641
|
*/
|
19636
|
-
declare type WindowStartLoadEvent =
|
19642
|
+
declare type WindowStartLoadEvent = BaseEvent_3 & {
|
19637
19643
|
type: 'window-start-load';
|
19638
19644
|
};
|
19639
19645
|
|
@@ -918,7 +918,6 @@ declare namespace ApplicationEvents {
|
|
918
918
|
WindowRespondingEvent,
|
919
919
|
WindowStartLoadEvent,
|
920
920
|
ApplicationWindowEvent,
|
921
|
-
ApplicationWindowEventTypes,
|
922
921
|
ClosedEvent,
|
923
922
|
ConnectedEvent_2 as ConnectedEvent,
|
924
923
|
ApplicationConnectedEvent,
|
@@ -1337,11 +1336,6 @@ declare type ApplicationType = {
|
|
1337
1336
|
*/
|
1338
1337
|
declare type ApplicationWindowEvent = WindowAlertRequestedEvent | WindowCreatedEvent | WindowEndLoadEvent | WindowNotRespondingEvent | WindowRespondingEvent | WindowStartLoadEvent;
|
1339
1338
|
|
1340
|
-
/**
|
1341
|
-
* Array of valid `type` values for an {@link ApplicationWindowEvent}.
|
1342
|
-
*/
|
1343
|
-
declare const ApplicationWindowEventTypes: readonly ["window-alert-requested", "window-created", "window-end-load", "window-not-responding", "window-responding", "window-start-load"];
|
1344
|
-
|
1345
1339
|
declare type ApplicationWindowInfo = OpenFin.ApplicationWindowInfo;
|
1346
1340
|
|
1347
1341
|
/**
|
@@ -5115,7 +5109,7 @@ declare type Event_10 = ApplicationEvents.Event | ApiReadyEvent | SnapshotApplie
|
|
5115
5109
|
* under the {@link OpenFin.SystemEvents} namespace (payloads inherited from propagated events are defined in the namespace
|
5116
5110
|
* from which they propagate).
|
5117
5111
|
*/
|
5118
|
-
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ViewEvents.PropagatedEvent<'system'
|
5112
|
+
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ExcludeRequested<ViewEvents.PropagatedEvent<'system'>> | ExcludeRequested<ApplicationEvents.PropagatedEvent<'system'>> | ApplicationCreatedEvent | DesktopIconClickedEvent | IdleStateChangedEvent | MonitorInfoChangedEvent | SessionChangedEvent | AppVersionEventWithId | SystemShutdownEvent;
|
5119
5113
|
|
5120
5114
|
/**
|
5121
5115
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by a {@link Channel}. Events are
|
@@ -5653,7 +5647,7 @@ declare type FileDownloadEvent = {
|
|
5653
5647
|
*
|
5654
5648
|
* @interface
|
5655
5649
|
*/
|
5656
|
-
declare type FileDownloadLocationChangedEvent =
|
5650
|
+
declare type FileDownloadLocationChangedEvent = BaseEvent_3 & {
|
5657
5651
|
type: 'file-download-location-changed';
|
5658
5652
|
};
|
5659
5653
|
|
@@ -6660,6 +6654,11 @@ declare type IdentityEvent = BaseEvent & {
|
|
6660
6654
|
|
6661
6655
|
/* Excluded from this release type: IdEventType */
|
6662
6656
|
|
6657
|
+
/**
|
6658
|
+
* @deprecated Renamed to {@link IdleStateChangedEvent}.
|
6659
|
+
*/
|
6660
|
+
declare type IdleEvent = IdleStateChangedEvent;
|
6661
|
+
|
6663
6662
|
/**
|
6664
6663
|
* Generated when a user enters or returns from idle state.
|
6665
6664
|
* @remarks This method is continuously generated every minute while the user is in idle.
|
@@ -6667,7 +6666,7 @@ declare type IdentityEvent = BaseEvent & {
|
|
6667
6666
|
* A user returns from idle state when the computer is unlocked or keyboard/mouse activity has resumed.
|
6668
6667
|
* @interface
|
6669
6668
|
*/
|
6670
|
-
declare type
|
6669
|
+
declare type IdleStateChangedEvent = BaseEvent_8 & {
|
6671
6670
|
type: 'idle-state-changed';
|
6672
6671
|
elapsedTime: number;
|
6673
6672
|
isIdle: boolean;
|
@@ -9552,14 +9551,9 @@ declare type MonitorDetails = {
|
|
9552
9551
|
};
|
9553
9552
|
|
9554
9553
|
/**
|
9555
|
-
*
|
9556
|
-
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
9557
|
-
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
9558
|
-
* @interface
|
9554
|
+
* @deprecated Renamed to {@link MonitorInfoChangedEvent}.
|
9559
9555
|
*/
|
9560
|
-
declare type MonitorEvent =
|
9561
|
-
type: 'monitor-info-changed';
|
9562
|
-
};
|
9556
|
+
declare type MonitorEvent = MonitorInfoChangedEvent;
|
9563
9557
|
|
9564
9558
|
/**
|
9565
9559
|
* @interface
|
@@ -9583,6 +9577,16 @@ declare type MonitorInfo = {
|
|
9583
9577
|
virtualScreen: DipRect;
|
9584
9578
|
};
|
9585
9579
|
|
9580
|
+
/**
|
9581
|
+
* Generated on changes of a monitor's size/location.
|
9582
|
+
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
9583
|
+
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
9584
|
+
* @interface
|
9585
|
+
*/
|
9586
|
+
declare type MonitorInfoChangedEvent = BaseEvent_8 & OpenFin.MonitorInfo & {
|
9587
|
+
type: 'monitor-info-changed';
|
9588
|
+
};
|
9589
|
+
|
9586
9590
|
/**
|
9587
9591
|
* @interface
|
9588
9592
|
*/
|
@@ -15178,7 +15182,9 @@ declare namespace SystemEvents {
|
|
15178
15182
|
NotRequested,
|
15179
15183
|
ExcludeRequested,
|
15180
15184
|
BaseEvent_8 as BaseEvent,
|
15185
|
+
IdleStateChangedEvent,
|
15181
15186
|
IdleEvent,
|
15187
|
+
MonitorInfoChangedEvent,
|
15182
15188
|
MonitorEvent,
|
15183
15189
|
SessionChangedEvent,
|
15184
15190
|
AppVersionEvent,
|
@@ -19253,7 +19259,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19253
19259
|
* Generated when an alert is fired and suppressed due to the customWindowAlert flag being true.
|
19254
19260
|
* @interface
|
19255
19261
|
*/
|
19256
|
-
declare type WindowAlertRequestedEvent =
|
19262
|
+
declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
19257
19263
|
type: 'window-alert-requested';
|
19258
19264
|
};
|
19259
19265
|
|
@@ -19301,7 +19307,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19301
19307
|
* Generated when a child window is created.
|
19302
19308
|
* @interface
|
19303
19309
|
*/
|
19304
|
-
declare type WindowCreatedEvent =
|
19310
|
+
declare type WindowCreatedEvent = BaseEvent_3 & {
|
19305
19311
|
type: 'window-created';
|
19306
19312
|
};
|
19307
19313
|
|
@@ -19358,7 +19364,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19358
19364
|
* Generated when a child window ends loading.
|
19359
19365
|
* @interface
|
19360
19366
|
*/
|
19361
|
-
declare type WindowEndLoadEvent =
|
19367
|
+
declare type WindowEndLoadEvent = BaseEvent_3 & {
|
19362
19368
|
type: 'window-end-load';
|
19363
19369
|
};
|
19364
19370
|
|
@@ -19572,7 +19578,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19572
19578
|
* Generated when a child window is not responding.
|
19573
19579
|
* @interface
|
19574
19580
|
*/
|
19575
|
-
declare type WindowNotRespondingEvent =
|
19581
|
+
declare type WindowNotRespondingEvent = BaseEvent_3 & {
|
19576
19582
|
type: 'window-not-responding';
|
19577
19583
|
};
|
19578
19584
|
|
@@ -19604,7 +19610,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19604
19610
|
* Generated when a child window is responding.
|
19605
19611
|
* @interface
|
19606
19612
|
*/
|
19607
|
-
declare type WindowRespondingEvent =
|
19613
|
+
declare type WindowRespondingEvent = BaseEvent_3 & {
|
19608
19614
|
type: 'window-responding';
|
19609
19615
|
};
|
19610
19616
|
|
@@ -19633,7 +19639,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19633
19639
|
* Generated when a child window starts loading.
|
19634
19640
|
* @interface
|
19635
19641
|
*/
|
19636
|
-
declare type WindowStartLoadEvent =
|
19642
|
+
declare type WindowStartLoadEvent = BaseEvent_3 & {
|
19637
19643
|
type: 'window-start-load';
|
19638
19644
|
};
|
19639
19645
|
|
@@ -918,7 +918,6 @@ declare namespace ApplicationEvents {
|
|
918
918
|
WindowRespondingEvent,
|
919
919
|
WindowStartLoadEvent,
|
920
920
|
ApplicationWindowEvent,
|
921
|
-
ApplicationWindowEventTypes,
|
922
921
|
ClosedEvent,
|
923
922
|
ConnectedEvent_2 as ConnectedEvent,
|
924
923
|
ApplicationConnectedEvent,
|
@@ -1337,11 +1336,6 @@ declare type ApplicationType = {
|
|
1337
1336
|
*/
|
1338
1337
|
declare type ApplicationWindowEvent = WindowAlertRequestedEvent | WindowCreatedEvent | WindowEndLoadEvent | WindowNotRespondingEvent | WindowRespondingEvent | WindowStartLoadEvent;
|
1339
1338
|
|
1340
|
-
/**
|
1341
|
-
* Array of valid `type` values for an {@link ApplicationWindowEvent}.
|
1342
|
-
*/
|
1343
|
-
declare const ApplicationWindowEventTypes: readonly ["window-alert-requested", "window-created", "window-end-load", "window-not-responding", "window-responding", "window-start-load"];
|
1344
|
-
|
1345
1339
|
declare type ApplicationWindowInfo = OpenFin.ApplicationWindowInfo;
|
1346
1340
|
|
1347
1341
|
/**
|
@@ -5115,7 +5109,7 @@ declare type Event_10 = ApplicationEvents.Event | ApiReadyEvent | SnapshotApplie
|
|
5115
5109
|
* under the {@link OpenFin.SystemEvents} namespace (payloads inherited from propagated events are defined in the namespace
|
5116
5110
|
* from which they propagate).
|
5117
5111
|
*/
|
5118
|
-
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ViewEvents.PropagatedEvent<'system'
|
5112
|
+
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ExcludeRequested<ViewEvents.PropagatedEvent<'system'>> | ExcludeRequested<ApplicationEvents.PropagatedEvent<'system'>> | ApplicationCreatedEvent | DesktopIconClickedEvent | IdleStateChangedEvent | MonitorInfoChangedEvent | SessionChangedEvent | AppVersionEventWithId | SystemShutdownEvent;
|
5119
5113
|
|
5120
5114
|
/**
|
5121
5115
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by a {@link Channel}. Events are
|
@@ -5653,7 +5647,7 @@ declare type FileDownloadEvent = {
|
|
5653
5647
|
*
|
5654
5648
|
* @interface
|
5655
5649
|
*/
|
5656
|
-
declare type FileDownloadLocationChangedEvent =
|
5650
|
+
declare type FileDownloadLocationChangedEvent = BaseEvent_3 & {
|
5657
5651
|
type: 'file-download-location-changed';
|
5658
5652
|
};
|
5659
5653
|
|
@@ -6660,6 +6654,11 @@ declare type IdentityEvent = BaseEvent & {
|
|
6660
6654
|
|
6661
6655
|
/* Excluded from this release type: IdEventType */
|
6662
6656
|
|
6657
|
+
/**
|
6658
|
+
* @deprecated Renamed to {@link IdleStateChangedEvent}.
|
6659
|
+
*/
|
6660
|
+
declare type IdleEvent = IdleStateChangedEvent;
|
6661
|
+
|
6663
6662
|
/**
|
6664
6663
|
* Generated when a user enters or returns from idle state.
|
6665
6664
|
* @remarks This method is continuously generated every minute while the user is in idle.
|
@@ -6667,7 +6666,7 @@ declare type IdentityEvent = BaseEvent & {
|
|
6667
6666
|
* A user returns from idle state when the computer is unlocked or keyboard/mouse activity has resumed.
|
6668
6667
|
* @interface
|
6669
6668
|
*/
|
6670
|
-
declare type
|
6669
|
+
declare type IdleStateChangedEvent = BaseEvent_8 & {
|
6671
6670
|
type: 'idle-state-changed';
|
6672
6671
|
elapsedTime: number;
|
6673
6672
|
isIdle: boolean;
|
@@ -9552,14 +9551,9 @@ declare type MonitorDetails = {
|
|
9552
9551
|
};
|
9553
9552
|
|
9554
9553
|
/**
|
9555
|
-
*
|
9556
|
-
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
9557
|
-
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
9558
|
-
* @interface
|
9554
|
+
* @deprecated Renamed to {@link MonitorInfoChangedEvent}.
|
9559
9555
|
*/
|
9560
|
-
declare type MonitorEvent =
|
9561
|
-
type: 'monitor-info-changed';
|
9562
|
-
};
|
9556
|
+
declare type MonitorEvent = MonitorInfoChangedEvent;
|
9563
9557
|
|
9564
9558
|
/**
|
9565
9559
|
* @interface
|
@@ -9583,6 +9577,16 @@ declare type MonitorInfo = {
|
|
9583
9577
|
virtualScreen: DipRect;
|
9584
9578
|
};
|
9585
9579
|
|
9580
|
+
/**
|
9581
|
+
* Generated on changes of a monitor's size/location.
|
9582
|
+
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
9583
|
+
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
9584
|
+
* @interface
|
9585
|
+
*/
|
9586
|
+
declare type MonitorInfoChangedEvent = BaseEvent_8 & OpenFin.MonitorInfo & {
|
9587
|
+
type: 'monitor-info-changed';
|
9588
|
+
};
|
9589
|
+
|
9586
9590
|
/**
|
9587
9591
|
* @interface
|
9588
9592
|
*/
|
@@ -15178,7 +15182,9 @@ declare namespace SystemEvents {
|
|
15178
15182
|
NotRequested,
|
15179
15183
|
ExcludeRequested,
|
15180
15184
|
BaseEvent_8 as BaseEvent,
|
15185
|
+
IdleStateChangedEvent,
|
15181
15186
|
IdleEvent,
|
15187
|
+
MonitorInfoChangedEvent,
|
15182
15188
|
MonitorEvent,
|
15183
15189
|
SessionChangedEvent,
|
15184
15190
|
AppVersionEvent,
|
@@ -19253,7 +19259,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19253
19259
|
* Generated when an alert is fired and suppressed due to the customWindowAlert flag being true.
|
19254
19260
|
* @interface
|
19255
19261
|
*/
|
19256
|
-
declare type WindowAlertRequestedEvent =
|
19262
|
+
declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
19257
19263
|
type: 'window-alert-requested';
|
19258
19264
|
};
|
19259
19265
|
|
@@ -19301,7 +19307,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19301
19307
|
* Generated when a child window is created.
|
19302
19308
|
* @interface
|
19303
19309
|
*/
|
19304
|
-
declare type WindowCreatedEvent =
|
19310
|
+
declare type WindowCreatedEvent = BaseEvent_3 & {
|
19305
19311
|
type: 'window-created';
|
19306
19312
|
};
|
19307
19313
|
|
@@ -19358,7 +19364,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19358
19364
|
* Generated when a child window ends loading.
|
19359
19365
|
* @interface
|
19360
19366
|
*/
|
19361
|
-
declare type WindowEndLoadEvent =
|
19367
|
+
declare type WindowEndLoadEvent = BaseEvent_3 & {
|
19362
19368
|
type: 'window-end-load';
|
19363
19369
|
};
|
19364
19370
|
|
@@ -19572,7 +19578,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19572
19578
|
* Generated when a child window is not responding.
|
19573
19579
|
* @interface
|
19574
19580
|
*/
|
19575
|
-
declare type WindowNotRespondingEvent =
|
19581
|
+
declare type WindowNotRespondingEvent = BaseEvent_3 & {
|
19576
19582
|
type: 'window-not-responding';
|
19577
19583
|
};
|
19578
19584
|
|
@@ -19604,7 +19610,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19604
19610
|
* Generated when a child window is responding.
|
19605
19611
|
* @interface
|
19606
19612
|
*/
|
19607
|
-
declare type WindowRespondingEvent =
|
19613
|
+
declare type WindowRespondingEvent = BaseEvent_3 & {
|
19608
19614
|
type: 'window-responding';
|
19609
19615
|
};
|
19610
19616
|
|
@@ -19633,7 +19639,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19633
19639
|
* Generated when a child window starts loading.
|
19634
19640
|
* @interface
|
19635
19641
|
*/
|
19636
|
-
declare type WindowStartLoadEvent =
|
19642
|
+
declare type WindowStartLoadEvent = BaseEvent_3 & {
|
19637
19643
|
type: 'window-start-load';
|
19638
19644
|
};
|
19639
19645
|
|
package/out/node-adapter.d.ts
CHANGED
@@ -924,7 +924,6 @@ declare namespace ApplicationEvents {
|
|
924
924
|
WindowRespondingEvent,
|
925
925
|
WindowStartLoadEvent,
|
926
926
|
ApplicationWindowEvent,
|
927
|
-
ApplicationWindowEventTypes,
|
928
927
|
ClosedEvent,
|
929
928
|
ConnectedEvent_2 as ConnectedEvent,
|
930
929
|
ApplicationConnectedEvent,
|
@@ -1343,11 +1342,6 @@ declare type ApplicationType = {
|
|
1343
1342
|
*/
|
1344
1343
|
declare type ApplicationWindowEvent = WindowAlertRequestedEvent | WindowCreatedEvent | WindowEndLoadEvent | WindowNotRespondingEvent | WindowRespondingEvent | WindowStartLoadEvent;
|
1345
1344
|
|
1346
|
-
/**
|
1347
|
-
* Array of valid `type` values for an {@link ApplicationWindowEvent}.
|
1348
|
-
*/
|
1349
|
-
declare const ApplicationWindowEventTypes: readonly ["window-alert-requested", "window-created", "window-end-load", "window-not-responding", "window-responding", "window-start-load"];
|
1350
|
-
|
1351
1345
|
declare type ApplicationWindowInfo = OpenFin.ApplicationWindowInfo;
|
1352
1346
|
|
1353
1347
|
/**
|
@@ -5214,7 +5208,7 @@ declare type Event_10 = ApplicationEvents.Event | ApiReadyEvent | SnapshotApplie
|
|
5214
5208
|
* under the {@link OpenFin.SystemEvents} namespace (payloads inherited from propagated events are defined in the namespace
|
5215
5209
|
* from which they propagate).
|
5216
5210
|
*/
|
5217
|
-
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ViewEvents.PropagatedEvent<'system'
|
5211
|
+
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ExcludeRequested<ViewEvents.PropagatedEvent<'system'>> | ExcludeRequested<ApplicationEvents.PropagatedEvent<'system'>> | ApplicationCreatedEvent | DesktopIconClickedEvent | IdleStateChangedEvent | MonitorInfoChangedEvent | SessionChangedEvent | AppVersionEventWithId | SystemShutdownEvent;
|
5218
5212
|
|
5219
5213
|
/**
|
5220
5214
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by a {@link Channel}. Events are
|
@@ -5773,7 +5767,7 @@ declare type FileDownloadEvent = {
|
|
5773
5767
|
*
|
5774
5768
|
* @interface
|
5775
5769
|
*/
|
5776
|
-
declare type FileDownloadLocationChangedEvent =
|
5770
|
+
declare type FileDownloadLocationChangedEvent = BaseEvent_3 & {
|
5777
5771
|
type: 'file-download-location-changed';
|
5778
5772
|
};
|
5779
5773
|
|
@@ -6811,6 +6805,11 @@ declare type IdentityEvent = BaseEvent & {
|
|
6811
6805
|
*/
|
6812
6806
|
declare type IdEventType = WithId<AppVersionEventType>;
|
6813
6807
|
|
6808
|
+
/**
|
6809
|
+
* @deprecated Renamed to {@link IdleStateChangedEvent}.
|
6810
|
+
*/
|
6811
|
+
declare type IdleEvent = IdleStateChangedEvent;
|
6812
|
+
|
6814
6813
|
/**
|
6815
6814
|
* Generated when a user enters or returns from idle state.
|
6816
6815
|
* @remarks This method is continuously generated every minute while the user is in idle.
|
@@ -6818,7 +6817,7 @@ declare type IdEventType = WithId<AppVersionEventType>;
|
|
6818
6817
|
* A user returns from idle state when the computer is unlocked or keyboard/mouse activity has resumed.
|
6819
6818
|
* @interface
|
6820
6819
|
*/
|
6821
|
-
declare type
|
6820
|
+
declare type IdleStateChangedEvent = BaseEvent_8 & {
|
6822
6821
|
type: 'idle-state-changed';
|
6823
6822
|
elapsedTime: number;
|
6824
6823
|
isIdle: boolean;
|
@@ -9904,14 +9903,9 @@ declare type MonitorDetails = {
|
|
9904
9903
|
};
|
9905
9904
|
|
9906
9905
|
/**
|
9907
|
-
*
|
9908
|
-
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
9909
|
-
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
9910
|
-
* @interface
|
9906
|
+
* @deprecated Renamed to {@link MonitorInfoChangedEvent}.
|
9911
9907
|
*/
|
9912
|
-
declare type MonitorEvent =
|
9913
|
-
type: 'monitor-info-changed';
|
9914
|
-
};
|
9908
|
+
declare type MonitorEvent = MonitorInfoChangedEvent;
|
9915
9909
|
|
9916
9910
|
/**
|
9917
9911
|
* @interface
|
@@ -9935,6 +9929,16 @@ declare type MonitorInfo = {
|
|
9935
9929
|
virtualScreen: DipRect;
|
9936
9930
|
};
|
9937
9931
|
|
9932
|
+
/**
|
9933
|
+
* Generated on changes of a monitor's size/location.
|
9934
|
+
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
9935
|
+
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
9936
|
+
* @interface
|
9937
|
+
*/
|
9938
|
+
declare type MonitorInfoChangedEvent = BaseEvent_8 & OpenFin.MonitorInfo & {
|
9939
|
+
type: 'monitor-info-changed';
|
9940
|
+
};
|
9941
|
+
|
9938
9942
|
/**
|
9939
9943
|
* @interface
|
9940
9944
|
*/
|
@@ -15647,7 +15651,9 @@ declare namespace SystemEvents {
|
|
15647
15651
|
NotRequested,
|
15648
15652
|
ExcludeRequested,
|
15649
15653
|
BaseEvent_8 as BaseEvent,
|
15654
|
+
IdleStateChangedEvent,
|
15650
15655
|
IdleEvent,
|
15656
|
+
MonitorInfoChangedEvent,
|
15651
15657
|
MonitorEvent,
|
15652
15658
|
SessionChangedEvent,
|
15653
15659
|
AppVersionEvent,
|
@@ -19900,7 +19906,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19900
19906
|
* Generated when an alert is fired and suppressed due to the customWindowAlert flag being true.
|
19901
19907
|
* @interface
|
19902
19908
|
*/
|
19903
|
-
declare type WindowAlertRequestedEvent =
|
19909
|
+
declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
19904
19910
|
type: 'window-alert-requested';
|
19905
19911
|
};
|
19906
19912
|
|
@@ -19948,7 +19954,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
19948
19954
|
* Generated when a child window is created.
|
19949
19955
|
* @interface
|
19950
19956
|
*/
|
19951
|
-
declare type WindowCreatedEvent =
|
19957
|
+
declare type WindowCreatedEvent = BaseEvent_3 & {
|
19952
19958
|
type: 'window-created';
|
19953
19959
|
};
|
19954
19960
|
|
@@ -20005,7 +20011,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
20005
20011
|
* Generated when a child window ends loading.
|
20006
20012
|
* @interface
|
20007
20013
|
*/
|
20008
|
-
declare type WindowEndLoadEvent =
|
20014
|
+
declare type WindowEndLoadEvent = BaseEvent_3 & {
|
20009
20015
|
type: 'window-end-load';
|
20010
20016
|
};
|
20011
20017
|
|
@@ -20219,7 +20225,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
20219
20225
|
* Generated when a child window is not responding.
|
20220
20226
|
* @interface
|
20221
20227
|
*/
|
20222
|
-
declare type WindowNotRespondingEvent =
|
20228
|
+
declare type WindowNotRespondingEvent = BaseEvent_3 & {
|
20223
20229
|
type: 'window-not-responding';
|
20224
20230
|
};
|
20225
20231
|
|
@@ -20251,7 +20257,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
20251
20257
|
* Generated when a child window is responding.
|
20252
20258
|
* @interface
|
20253
20259
|
*/
|
20254
|
-
declare type WindowRespondingEvent =
|
20260
|
+
declare type WindowRespondingEvent = BaseEvent_3 & {
|
20255
20261
|
type: 'window-responding';
|
20256
20262
|
};
|
20257
20263
|
|
@@ -20280,7 +20286,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
|
|
20280
20286
|
* Generated when a child window starts loading.
|
20281
20287
|
* @interface
|
20282
20288
|
*/
|
20283
|
-
declare type WindowStartLoadEvent =
|
20289
|
+
declare type WindowStartLoadEvent = BaseEvent_3 & {
|
20284
20290
|
type: 'window-start-load';
|
20285
20291
|
};
|
20286
20292
|
|
package/out/node-adapter.js
CHANGED
@@ -18044,18 +18044,6 @@ var application = {};
|
|
18044
18044
|
* @packageDocumentation
|
18045
18045
|
*/
|
18046
18046
|
Object.defineProperty(application, "__esModule", { value: true });
|
18047
|
-
application.ApplicationWindowEventTypes = void 0;
|
18048
|
-
/**
|
18049
|
-
* Array of valid `type` values for an {@link ApplicationWindowEvent}.
|
18050
|
-
*/
|
18051
|
-
application.ApplicationWindowEventTypes = [
|
18052
|
-
'window-alert-requested',
|
18053
|
-
'window-created',
|
18054
|
-
'window-end-load',
|
18055
|
-
'window-not-responding',
|
18056
|
-
'window-responding',
|
18057
|
-
'window-start-load'
|
18058
|
-
];
|
18059
18047
|
|
18060
18048
|
var base = {};
|
18061
18049
|
|