@openfin/node-adapter 34.78.45 → 34.78.48

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.
@@ -4096,6 +4096,15 @@ declare type Context_3 = {
4096
4096
  type: string;
4097
4097
  };
4098
4098
 
4099
+ /**
4100
+ * Generated when a window's context is updated via {@link Platform#setWindowContext Platform.setWindowContext}. Only available on windows in a Platform.
4101
+ * @interface
4102
+ */
4103
+ declare type ContextChangedEvent = BaseWindowEvent & {
4104
+ type: 'context-changed';
4105
+ context: any;
4106
+ };
4107
+
4099
4108
  /**
4100
4109
  * @interface
4101
4110
  */
@@ -6164,6 +6173,17 @@ declare type HiddenEvent = BaseViewEvent & {
6164
6173
  type: 'hidden';
6165
6174
  };
6166
6175
 
6176
+ /**
6177
+ * Generated when the context of a View's host window changes, either due to a call to {@link Platform#setWindowContext Platform.setWindowContext},
6178
+ * or because the View has moved to a new window. Only available on Views in a Platform.
6179
+ * @interface
6180
+ */
6181
+ declare type HostContextChangedEvent = BaseViewEvent & {
6182
+ type: 'host-context-changed';
6183
+ context: any;
6184
+ reason: 'reparented' | 'updated';
6185
+ };
6186
+
6167
6187
  /**
6168
6188
  * @interface
6169
6189
  */
@@ -9900,23 +9920,23 @@ declare class OpenFinLayout implements OpenFin.LayoutInstance {
9900
9920
  private readonly splitterController;
9901
9921
  private readonly tabDragController;
9902
9922
  private readonly layoutContentCache;
9923
+ private get defaultFaviconUrl();
9924
+ private get isDragging();
9925
+ private get resizing();
9926
+ private get showBackgroundImages();
9927
+ private get showFavicons();
9928
+ private get showViewsOnSplitterDrag();
9929
+ private get showViewsOnTabDrag();
9930
+ private get showViewsOnWindowResize();
9903
9931
  private client;
9904
9932
  private container;
9905
9933
  private containerResizeObserver;
9906
9934
  private viewsResizeObserver;
9907
9935
  private dragProxy;
9908
- private isDragging;
9909
- private resizing;
9910
9936
  layout: GoldenLayout.GoldenLayout;
9911
9937
  private layoutConfigToRestore?;
9912
9938
  readonly ofWindow: OpenFin.Window;
9913
9939
  readonly platform: Platform_2;
9914
- private showBackgroundImages;
9915
- private showFavicons;
9916
- private defaultFaviconUrl;
9917
- private showViewsOnWindowResize?;
9918
- private showViewsOnSplitterDrag?;
9919
- private showViewsOnTabDrag?;
9920
9940
  private dropzonePreview?;
9921
9941
  private lastItemDestroyed?;
9922
9942
  private viewsSubscribedTo;
@@ -15932,7 +15952,7 @@ declare type ViewDetachedEvent = BaseWindowEvent & {
15932
15952
  */
15933
15953
  declare type ViewEvent = (WebContentsEvent<'view'> & {
15934
15954
  target: OpenFin.Identity;
15935
- }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent;
15955
+ }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
15936
15956
 
15937
15957
  declare type ViewEvent_2 = Events.ViewEvents.ViewEvent;
15938
15958
 
@@ -15946,6 +15966,7 @@ declare namespace ViewEvents {
15946
15966
  HiddenEvent,
15947
15967
  HotkeyEvent,
15948
15968
  ShownEvent,
15969
+ HostContextChangedEvent,
15949
15970
  ViewEvent,
15950
15971
  WillPropagateViewEvent,
15951
15972
  ViewEventType,
@@ -18930,6 +18951,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
18930
18951
  BoundsChangedEvent,
18931
18952
  BoundsChangingEvent,
18932
18953
  WindowCloseRequestedEvent,
18954
+ ContextChangedEvent,
18933
18955
  WindowClosedEvent,
18934
18956
  WindowClosingEvent,
18935
18957
  DisabledMovementBoundsChangedEvent,
@@ -19169,7 +19191,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
19169
19191
  * A union of all events that emit natively on the `Window` topic, i.e. excluding those that propagate
19170
19192
  * from {@link OpenFin.ViewEvents}.
19171
19193
  */
19172
- declare type WindowSourcedEvent = WebContentsEvent<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | WindowCloseRequestedEvent | WindowClosedEvent | WindowClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | WindowHiddenEvent | WindowHotkeyEvent | WindowInitializedEvent | LayoutInitializedEvent | LayoutReadyEvent | MaximizedEvent | MinimizedEvent | WindowOptionsChangedEvent_2 | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | WindowRestoredEvent | WindowShowRequestedEvent | WindowShownEvent | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillRedirectEvent | WillResizeEvent;
19194
+ declare type WindowSourcedEvent = WebContentsEvent<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | ContextChangedEvent | WindowCloseRequestedEvent | WindowClosedEvent | WindowClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | WindowHiddenEvent | WindowHotkeyEvent | WindowInitializedEvent | LayoutInitializedEvent | LayoutReadyEvent | MaximizedEvent | MinimizedEvent | WindowOptionsChangedEvent_2 | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | WindowRestoredEvent | WindowShowRequestedEvent | WindowShownEvent | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillRedirectEvent | WillResizeEvent;
19173
19195
 
19174
19196
  /**
19175
19197
  * Generated when a child window starts loading.
@@ -4096,6 +4096,15 @@ declare type Context_3 = {
4096
4096
  type: string;
4097
4097
  };
4098
4098
 
4099
+ /**
4100
+ * Generated when a window's context is updated via {@link Platform#setWindowContext Platform.setWindowContext}. Only available on windows in a Platform.
4101
+ * @interface
4102
+ */
4103
+ declare type ContextChangedEvent = BaseWindowEvent & {
4104
+ type: 'context-changed';
4105
+ context: any;
4106
+ };
4107
+
4099
4108
  /**
4100
4109
  * @interface
4101
4110
  */
@@ -6164,6 +6173,17 @@ declare type HiddenEvent = BaseViewEvent & {
6164
6173
  type: 'hidden';
6165
6174
  };
6166
6175
 
6176
+ /**
6177
+ * Generated when the context of a View's host window changes, either due to a call to {@link Platform#setWindowContext Platform.setWindowContext},
6178
+ * or because the View has moved to a new window. Only available on Views in a Platform.
6179
+ * @interface
6180
+ */
6181
+ declare type HostContextChangedEvent = BaseViewEvent & {
6182
+ type: 'host-context-changed';
6183
+ context: any;
6184
+ reason: 'reparented' | 'updated';
6185
+ };
6186
+
6167
6187
  /**
6168
6188
  * @interface
6169
6189
  */
@@ -9900,23 +9920,23 @@ declare class OpenFinLayout implements OpenFin.LayoutInstance {
9900
9920
  private readonly splitterController;
9901
9921
  private readonly tabDragController;
9902
9922
  private readonly layoutContentCache;
9923
+ private get defaultFaviconUrl();
9924
+ private get isDragging();
9925
+ private get resizing();
9926
+ private get showBackgroundImages();
9927
+ private get showFavicons();
9928
+ private get showViewsOnSplitterDrag();
9929
+ private get showViewsOnTabDrag();
9930
+ private get showViewsOnWindowResize();
9903
9931
  private client;
9904
9932
  private container;
9905
9933
  private containerResizeObserver;
9906
9934
  private viewsResizeObserver;
9907
9935
  private dragProxy;
9908
- private isDragging;
9909
- private resizing;
9910
9936
  layout: GoldenLayout.GoldenLayout;
9911
9937
  private layoutConfigToRestore?;
9912
9938
  readonly ofWindow: OpenFin.Window;
9913
9939
  readonly platform: Platform_2;
9914
- private showBackgroundImages;
9915
- private showFavicons;
9916
- private defaultFaviconUrl;
9917
- private showViewsOnWindowResize?;
9918
- private showViewsOnSplitterDrag?;
9919
- private showViewsOnTabDrag?;
9920
9940
  private dropzonePreview?;
9921
9941
  private lastItemDestroyed?;
9922
9942
  private viewsSubscribedTo;
@@ -15932,7 +15952,7 @@ declare type ViewDetachedEvent = BaseWindowEvent & {
15932
15952
  */
15933
15953
  declare type ViewEvent = (WebContentsEvent<'view'> & {
15934
15954
  target: OpenFin.Identity;
15935
- }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent;
15955
+ }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
15936
15956
 
15937
15957
  declare type ViewEvent_2 = Events.ViewEvents.ViewEvent;
15938
15958
 
@@ -15946,6 +15966,7 @@ declare namespace ViewEvents {
15946
15966
  HiddenEvent,
15947
15967
  HotkeyEvent,
15948
15968
  ShownEvent,
15969
+ HostContextChangedEvent,
15949
15970
  ViewEvent,
15950
15971
  WillPropagateViewEvent,
15951
15972
  ViewEventType,
@@ -18930,6 +18951,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
18930
18951
  BoundsChangedEvent,
18931
18952
  BoundsChangingEvent,
18932
18953
  WindowCloseRequestedEvent,
18954
+ ContextChangedEvent,
18933
18955
  WindowClosedEvent,
18934
18956
  WindowClosingEvent,
18935
18957
  DisabledMovementBoundsChangedEvent,
@@ -19169,7 +19191,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
19169
19191
  * A union of all events that emit natively on the `Window` topic, i.e. excluding those that propagate
19170
19192
  * from {@link OpenFin.ViewEvents}.
19171
19193
  */
19172
- declare type WindowSourcedEvent = WebContentsEvent<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | WindowCloseRequestedEvent | WindowClosedEvent | WindowClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | WindowHiddenEvent | WindowHotkeyEvent | WindowInitializedEvent | LayoutInitializedEvent | LayoutReadyEvent | MaximizedEvent | MinimizedEvent | WindowOptionsChangedEvent_2 | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | WindowRestoredEvent | WindowShowRequestedEvent | WindowShownEvent | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillRedirectEvent | WillResizeEvent;
19194
+ declare type WindowSourcedEvent = WebContentsEvent<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | ContextChangedEvent | WindowCloseRequestedEvent | WindowClosedEvent | WindowClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | WindowHiddenEvent | WindowHotkeyEvent | WindowInitializedEvent | LayoutInitializedEvent | LayoutReadyEvent | MaximizedEvent | MinimizedEvent | WindowOptionsChangedEvent_2 | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | WindowRestoredEvent | WindowShowRequestedEvent | WindowShownEvent | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillRedirectEvent | WillResizeEvent;
19173
19195
 
19174
19196
  /**
19175
19197
  * Generated when a child window starts loading.
@@ -4096,6 +4096,15 @@ declare type Context_3 = {
4096
4096
  type: string;
4097
4097
  };
4098
4098
 
4099
+ /**
4100
+ * Generated when a window's context is updated via {@link Platform#setWindowContext Platform.setWindowContext}. Only available on windows in a Platform.
4101
+ * @interface
4102
+ */
4103
+ declare type ContextChangedEvent = BaseWindowEvent & {
4104
+ type: 'context-changed';
4105
+ context: any;
4106
+ };
4107
+
4099
4108
  /**
4100
4109
  * @interface
4101
4110
  */
@@ -6164,6 +6173,17 @@ declare type HiddenEvent = BaseViewEvent & {
6164
6173
  type: 'hidden';
6165
6174
  };
6166
6175
 
6176
+ /**
6177
+ * Generated when the context of a View's host window changes, either due to a call to {@link Platform#setWindowContext Platform.setWindowContext},
6178
+ * or because the View has moved to a new window. Only available on Views in a Platform.
6179
+ * @interface
6180
+ */
6181
+ declare type HostContextChangedEvent = BaseViewEvent & {
6182
+ type: 'host-context-changed';
6183
+ context: any;
6184
+ reason: 'reparented' | 'updated';
6185
+ };
6186
+
6167
6187
  /**
6168
6188
  * @interface
6169
6189
  */
@@ -9900,23 +9920,23 @@ declare class OpenFinLayout implements OpenFin.LayoutInstance {
9900
9920
  private readonly splitterController;
9901
9921
  private readonly tabDragController;
9902
9922
  private readonly layoutContentCache;
9923
+ private get defaultFaviconUrl();
9924
+ private get isDragging();
9925
+ private get resizing();
9926
+ private get showBackgroundImages();
9927
+ private get showFavicons();
9928
+ private get showViewsOnSplitterDrag();
9929
+ private get showViewsOnTabDrag();
9930
+ private get showViewsOnWindowResize();
9903
9931
  private client;
9904
9932
  private container;
9905
9933
  private containerResizeObserver;
9906
9934
  private viewsResizeObserver;
9907
9935
  private dragProxy;
9908
- private isDragging;
9909
- private resizing;
9910
9936
  layout: GoldenLayout.GoldenLayout;
9911
9937
  private layoutConfigToRestore?;
9912
9938
  readonly ofWindow: OpenFin.Window;
9913
9939
  readonly platform: Platform_2;
9914
- private showBackgroundImages;
9915
- private showFavicons;
9916
- private defaultFaviconUrl;
9917
- private showViewsOnWindowResize?;
9918
- private showViewsOnSplitterDrag?;
9919
- private showViewsOnTabDrag?;
9920
9940
  private dropzonePreview?;
9921
9941
  private lastItemDestroyed?;
9922
9942
  private viewsSubscribedTo;
@@ -15932,7 +15952,7 @@ declare type ViewDetachedEvent = BaseWindowEvent & {
15932
15952
  */
15933
15953
  declare type ViewEvent = (WebContentsEvent<'view'> & {
15934
15954
  target: OpenFin.Identity;
15935
- }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent;
15955
+ }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
15936
15956
 
15937
15957
  declare type ViewEvent_2 = Events.ViewEvents.ViewEvent;
15938
15958
 
@@ -15946,6 +15966,7 @@ declare namespace ViewEvents {
15946
15966
  HiddenEvent,
15947
15967
  HotkeyEvent,
15948
15968
  ShownEvent,
15969
+ HostContextChangedEvent,
15949
15970
  ViewEvent,
15950
15971
  WillPropagateViewEvent,
15951
15972
  ViewEventType,
@@ -18930,6 +18951,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
18930
18951
  BoundsChangedEvent,
18931
18952
  BoundsChangingEvent,
18932
18953
  WindowCloseRequestedEvent,
18954
+ ContextChangedEvent,
18933
18955
  WindowClosedEvent,
18934
18956
  WindowClosingEvent,
18935
18957
  DisabledMovementBoundsChangedEvent,
@@ -19169,7 +19191,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
19169
19191
  * A union of all events that emit natively on the `Window` topic, i.e. excluding those that propagate
19170
19192
  * from {@link OpenFin.ViewEvents}.
19171
19193
  */
19172
- declare type WindowSourcedEvent = WebContentsEvent<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | WindowCloseRequestedEvent | WindowClosedEvent | WindowClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | WindowHiddenEvent | WindowHotkeyEvent | WindowInitializedEvent | LayoutInitializedEvent | LayoutReadyEvent | MaximizedEvent | MinimizedEvent | WindowOptionsChangedEvent_2 | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | WindowRestoredEvent | WindowShowRequestedEvent | WindowShownEvent | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillRedirectEvent | WillResizeEvent;
19194
+ declare type WindowSourcedEvent = WebContentsEvent<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | ContextChangedEvent | WindowCloseRequestedEvent | WindowClosedEvent | WindowClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | WindowHiddenEvent | WindowHotkeyEvent | WindowInitializedEvent | LayoutInitializedEvent | LayoutReadyEvent | MaximizedEvent | MinimizedEvent | WindowOptionsChangedEvent_2 | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | WindowRestoredEvent | WindowShowRequestedEvent | WindowShownEvent | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillRedirectEvent | WillResizeEvent;
19173
19195
 
19174
19196
  /**
19175
19197
  * Generated when a child window starts loading.
@@ -4190,6 +4190,15 @@ declare type Context_3 = {
4190
4190
  type: string;
4191
4191
  };
4192
4192
 
4193
+ /**
4194
+ * Generated when a window's context is updated via {@link Platform#setWindowContext Platform.setWindowContext}. Only available on windows in a Platform.
4195
+ * @interface
4196
+ */
4197
+ declare type ContextChangedEvent = BaseWindowEvent & {
4198
+ type: 'context-changed';
4199
+ context: any;
4200
+ };
4201
+
4193
4202
  /**
4194
4203
  * @interface
4195
4204
  */
@@ -6310,6 +6319,17 @@ declare type HiddenEvent = BaseViewEvent & {
6310
6319
  type: 'hidden';
6311
6320
  };
6312
6321
 
6322
+ /**
6323
+ * Generated when the context of a View's host window changes, either due to a call to {@link Platform#setWindowContext Platform.setWindowContext},
6324
+ * or because the View has moved to a new window. Only available on Views in a Platform.
6325
+ * @interface
6326
+ */
6327
+ declare type HostContextChangedEvent = BaseViewEvent & {
6328
+ type: 'host-context-changed';
6329
+ context: any;
6330
+ reason: 'reparented' | 'updated';
6331
+ };
6332
+
6313
6333
  /**
6314
6334
  * @interface
6315
6335
  */
@@ -10355,23 +10375,23 @@ declare class OpenFinLayout implements OpenFin.LayoutInstance {
10355
10375
  private readonly splitterController;
10356
10376
  private readonly tabDragController;
10357
10377
  private readonly layoutContentCache;
10378
+ private get defaultFaviconUrl();
10379
+ private get isDragging();
10380
+ private get resizing();
10381
+ private get showBackgroundImages();
10382
+ private get showFavicons();
10383
+ private get showViewsOnSplitterDrag();
10384
+ private get showViewsOnTabDrag();
10385
+ private get showViewsOnWindowResize();
10358
10386
  private client;
10359
10387
  private container;
10360
10388
  private containerResizeObserver;
10361
10389
  private viewsResizeObserver;
10362
10390
  private dragProxy;
10363
- private isDragging;
10364
- private resizing;
10365
10391
  layout: GoldenLayout.GoldenLayout;
10366
10392
  private layoutConfigToRestore?;
10367
10393
  readonly ofWindow: OpenFin.Window;
10368
10394
  readonly platform: Platform_2;
10369
- private showBackgroundImages;
10370
- private showFavicons;
10371
- private defaultFaviconUrl;
10372
- private showViewsOnWindowResize?;
10373
- private showViewsOnSplitterDrag?;
10374
- private showViewsOnTabDrag?;
10375
10395
  private dropzonePreview?;
10376
10396
  private lastItemDestroyed?;
10377
10397
  private viewsSubscribedTo;
@@ -16560,7 +16580,7 @@ declare type ViewDetachedEvent = BaseWindowEvent & {
16560
16580
  */
16561
16581
  declare type ViewEvent = (WebContentsEvent<'view'> & {
16562
16582
  target: OpenFin.Identity;
16563
- }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent;
16583
+ }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
16564
16584
 
16565
16585
  declare type ViewEvent_2 = Events.ViewEvents.ViewEvent;
16566
16586
 
@@ -16574,6 +16594,7 @@ declare namespace ViewEvents {
16574
16594
  HiddenEvent,
16575
16595
  HotkeyEvent,
16576
16596
  ShownEvent,
16597
+ HostContextChangedEvent,
16577
16598
  ViewEvent,
16578
16599
  WillPropagateViewEvent,
16579
16600
  ViewEventType,
@@ -19642,6 +19663,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
19642
19663
  BoundsChangedEvent,
19643
19664
  BoundsChangingEvent,
19644
19665
  WindowCloseRequestedEvent,
19666
+ ContextChangedEvent,
19645
19667
  WindowClosedEvent,
19646
19668
  WindowClosingEvent,
19647
19669
  DisabledMovementBoundsChangedEvent,
@@ -19881,7 +19903,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
19881
19903
  * A union of all events that emit natively on the `Window` topic, i.e. excluding those that propagate
19882
19904
  * from {@link OpenFin.ViewEvents}.
19883
19905
  */
19884
- declare type WindowSourcedEvent = WebContentsEvent<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | WindowCloseRequestedEvent | WindowClosedEvent | WindowClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | WindowHiddenEvent | WindowHotkeyEvent | WindowInitializedEvent | LayoutInitializedEvent | LayoutReadyEvent | MaximizedEvent | MinimizedEvent | WindowOptionsChangedEvent_2 | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | WindowRestoredEvent | WindowShowRequestedEvent | WindowShownEvent | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillRedirectEvent | WillResizeEvent;
19906
+ declare type WindowSourcedEvent = WebContentsEvent<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | ContextChangedEvent | WindowCloseRequestedEvent | WindowClosedEvent | WindowClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | WindowHiddenEvent | WindowHotkeyEvent | WindowInitializedEvent | LayoutInitializedEvent | LayoutReadyEvent | MaximizedEvent | MinimizedEvent | WindowOptionsChangedEvent_2 | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | WindowRestoredEvent | WindowShowRequestedEvent | WindowShownEvent | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillRedirectEvent | WillResizeEvent;
19885
19907
 
19886
19908
  /**
19887
19909
  * Generated when a child window starts loading.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/node-adapter",
3
- "version": "34.78.45",
3
+ "version": "34.78.48",
4
4
  "description": "See README.md",
5
5
  "main": "out/node-adapter.js",
6
6
  "types": "out/node-adapter.d.ts",