@openfin/node-adapter 34.78.17 → 34.78.19

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.
@@ -517,6 +517,7 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
517
517
  /**
518
518
  * Sets or removes a custom JumpList for the application. Only applicable in Windows OS.
519
519
  * If categories is null the previously set custom JumpList (if any) will be replaced by the standard JumpList for the app (managed by Windows).
520
+ *
520
521
  * Note: If the "name" property is omitted it defaults to "tasks".
521
522
  * @param jumpListCategories An array of JumpList Categories to populate. If null, remove any existing JumpList configuration and set to Windows default.
522
523
  *
@@ -787,6 +788,7 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
787
788
  getProcessInfo(): Promise<OpenFin.AppProcessInfo>;
788
789
  /**
789
790
  * Sets file auto download location. It's only allowed in the same application.
791
+ *
790
792
  * Note: This method is restricted by default and must be enabled via
791
793
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
792
794
  * @param downloadLocation file auto download location
@@ -808,6 +810,7 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
808
810
  setFileDownloadLocation(downloadLocation: string): Promise<void>;
809
811
  /**
810
812
  * Gets file auto download location. It's only allowed in the same application. If file auto download location is not set, it will return the default location.
813
+ *
811
814
  * Note: This method is restricted by default and must be enabled via
812
815
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
813
816
  *
@@ -1206,6 +1209,7 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1206
1209
  * @defaultValue false
1207
1210
  *
1208
1211
  * **Platforms Only.** Prevent the Platform Provider from quitting automatically when the last Platform Window is closed.
1212
+ *
1209
1213
  * Note: if the Platform Provider is showing, it won't close automatically.
1210
1214
  * If you want a hidden Platform Provider to remain open after the last Platform Window has been closed, set this property to true.
1211
1215
  */
@@ -3218,8 +3222,9 @@ declare type ConstWindowOptions = {
3218
3222
  closeOnLastViewRemoved: boolean;
3219
3223
  /**
3220
3224
  * Centers the window in the primary monitor. This option overrides `defaultLeft` and `defaultTop`. When `saveWindowState` is `true`,
3221
- * this value will be ignored for subsequent launches in favor of the cached value. **NOTE:** On macOS _defaultCenter_ is
3222
- * somewhat above center vertically.
3225
+ * this value will be ignored for subsequent launches in favor of the cached value.
3226
+ *
3227
+ * **NOTE:** On macOS _defaultCenter_ is somewhat above center vertically.
3223
3228
  */
3224
3229
  defaultCentered: boolean;
3225
3230
  /**
@@ -3281,6 +3286,7 @@ declare type ConstWindowOptions = {
3281
3286
  * @defaultValue true
3282
3287
  *
3283
3288
  * Caches the location of the window.
3289
+ *
3284
3290
  * Note: this option is ignored in Platforms as it would cause inconsistent {@link Platform#applySnapshot applySnapshot} behavior.
3285
3291
  */
3286
3292
  saveWindowState: boolean;
@@ -3293,7 +3299,8 @@ declare type ConstWindowOptions = {
3293
3299
  * @defaultValue false
3294
3300
  *
3295
3301
  * Makes this window a frameless window that can be created and resized to less than 41x36 px (width x height).
3296
- * _Note: Caveats of small windows are no Aero Snap and drag to/from maximize._
3302
+ *
3303
+ * Note: Caveats of small windows are no Aero Snap and drag to/from maximize.
3297
3304
  * _Windows 10: Requires `maximizable` to be false. Resizing with the mouse is only possible down to 38x39 px._
3298
3305
  */
3299
3306
  smallWindow: boolean;
@@ -3409,7 +3416,8 @@ declare type ContentCreationRulesEvent = NamedEvent & {
3409
3416
  frameName: string;
3410
3417
  /**
3411
3418
  * The rule which triggered this event. May be undefined on `child-window-created` where no rule corresponds to the child Window creation.
3412
- * <br>Note: It is only defined if the rules engine found a match for a user-supplied rule, not in the case of an api call or the default behavior.
3419
+ *
3420
+ * Note: It is only defined if the rules engine found a match for a user-supplied rule, not in the case of an api call or the default behavior.
3413
3421
  */
3414
3422
  rule: OpenFin.ContentCreationRule;
3415
3423
  /**
@@ -7120,6 +7128,7 @@ declare type LayoutItemConfig = {
7120
7128
  };
7121
7129
 
7122
7130
  declare class LayoutManager {
7131
+ #private;
7123
7132
  private readonly splitterController;
7124
7133
  private readonly tabDragController;
7125
7134
  private readonly layoutContentCache;
@@ -8012,8 +8021,9 @@ declare type MutableWindowOptions = {
8012
8021
  hotkeys: Hotkey[];
8013
8022
  /**
8014
8023
  * A URL for the icon to be shown in the window title bar and the taskbar.
8015
- * When omitted, inherits from the parent application._
8016
- * note: Window OS caches taskbar icons, therefore an icon change might only be visible after the cache is removed or the uuid is changed.
8024
+ * When omitted, inherits from the parent application.
8025
+ *
8026
+ * Note: Window OS caches taskbar icons, therefore an icon change might only be visible after the cache is removed or the uuid is changed.
8017
8027
  */
8018
8028
  icon: string;
8019
8029
  /**
@@ -9994,7 +10004,8 @@ declare type PopupOptions = {
9994
10004
  resultDispatchBehavior?: PopupResultBehavior;
9995
10005
  /**
9996
10006
  * Hide the popup window instead of closing when `close` is called on it.
9997
- * <br>Note: if this is `true` and `blurBehavior` and/or `resultDispatchBehavior` are set to `close`, the window will be hidden.
10007
+ *
10008
+ * Note: if this is `true` and `blurBehavior` and/or `resultDispatchBehavior` are set to `close`, the window will be hidden.
9998
10009
  * @defaultValue false
9999
10010
  */
10000
10011
  hideOnClose?: boolean;
@@ -10009,7 +10020,8 @@ declare type PopupOptions = {
10009
10020
  onPopupReady?: (popupWindow: _Window) => any;
10010
10021
  /**
10011
10022
  * Executed when this window's popup calls `dispatchPopupResult`.
10012
- * <br>Note: If this is defined, `showPopupWindow` will not return a `PopupResult`.
10023
+ *
10024
+ * Note: If this is defined, `showPopupWindow` will not return a `PopupResult`.
10013
10025
  */
10014
10026
  onPopupResult?: (payload: PopupResult) => any;
10015
10027
  };
@@ -12331,7 +12343,8 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
12331
12343
  showDeveloperTools(identity: Identity_2): Promise<void>;
12332
12344
  /**
12333
12345
  * Attempt to close an external process. The process will be terminated if it
12334
- * has not closed after the elapsed timeout in milliseconds.<br>
12346
+ * has not closed after the elapsed timeout in milliseconds.
12347
+ *
12335
12348
  * Note: This method is restricted by default and must be enabled via
12336
12349
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
12337
12350
  * @param options A object defined in the TerminateExternalRequestType interface
@@ -12363,7 +12376,8 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
12363
12376
  */
12364
12377
  updateProxySettings(options: ProxyConfig): Promise<void>;
12365
12378
  /**
12366
- * Downloads the given application asset<br>
12379
+ * Downloads the given application asset.
12380
+ *
12367
12381
  * Note: This method is restricted by default and must be enabled via
12368
12382
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
12369
12383
  * @param appAsset App asset object
@@ -14500,7 +14514,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
14500
14514
  /**
14501
14515
  * Navigates the WebContents to a specified URL.
14502
14516
  *
14503
- * @remarks The url must contain the protocol prefix such as http:// or https://.
14517
+ * Note: The url must contain the protocol prefix such as http:// or https://.
14504
14518
  * @param url - The URL to navigate the WebContents to.
14505
14519
  *
14506
14520
  * @example
@@ -14668,7 +14682,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
14668
14682
  * Prints the WebContents.
14669
14683
  * @param options Printer Options
14670
14684
  *
14671
- * @remarks When `silent` is set to `true`, the API will pick the system's default printer if deviceName
14685
+ * Note: When `silent` is set to `true`, the API will pick the system's default printer if deviceName
14672
14686
  * is empty and the default settings for printing.
14673
14687
  *
14674
14688
  * Use the CSS style `page-break-before: always;` to force print to a new page.
@@ -14692,7 +14706,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
14692
14706
  * @param searchTerm Term to find in page
14693
14707
  * @param options Search options
14694
14708
  *
14695
- * @remarks By default, each subsequent call will highlight the next text that matches the search term.
14709
+ * Note: By default, each subsequent call will highlight the next text that matches the search term.
14696
14710
  *
14697
14711
  * Returns a promise with the results for the request. By subscribing to the
14698
14712
  * found-in-page event, you can get the results of this call as well.
@@ -14882,7 +14896,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
14882
14896
  /**
14883
14897
  * Retrieves the process information associated with a WebContents.
14884
14898
  *
14885
- * @remarks This includes any iframes associated with the WebContents
14899
+ * Note: This includes any iframes associated with the WebContents
14886
14900
  *
14887
14901
  * @example
14888
14902
  * View:
@@ -15052,7 +15066,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
15052
15066
  /**
15053
15067
  * Shows a popup window.
15054
15068
  *
15055
- * @remarks If this WebContents is a view and its attached window has a popup open, this will close it.
15069
+ * Note: If this WebContents is a view and its attached window has a popup open, this will close it.
15056
15070
  *
15057
15071
  * Shows a popup window. Including a `name` in `options` will attempt to show an existing window as a popup, if
15058
15072
  * that window doesn't exist or no `name` is included a window will be created. If the caller view or the caller
@@ -15060,7 +15074,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
15060
15074
  * open popup window before showing the new popup window. Also, if the caller view is destroyed or detached, the popup
15061
15075
  * will be dismissed.
15062
15076
  *
15063
- * NOTE: in the case where the window being shown as a popup needs to be created, it is a child of the caller view's parent window.
15077
+ * Note: in the case where the window being shown as a popup needs to be created, it is a child of the caller view's parent window.
15064
15078
  *
15065
15079
  * @example
15066
15080
  *
@@ -517,6 +517,7 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
517
517
  /**
518
518
  * Sets or removes a custom JumpList for the application. Only applicable in Windows OS.
519
519
  * If categories is null the previously set custom JumpList (if any) will be replaced by the standard JumpList for the app (managed by Windows).
520
+ *
520
521
  * Note: If the "name" property is omitted it defaults to "tasks".
521
522
  * @param jumpListCategories An array of JumpList Categories to populate. If null, remove any existing JumpList configuration and set to Windows default.
522
523
  *
@@ -787,6 +788,7 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
787
788
  getProcessInfo(): Promise<OpenFin.AppProcessInfo>;
788
789
  /**
789
790
  * Sets file auto download location. It's only allowed in the same application.
791
+ *
790
792
  * Note: This method is restricted by default and must be enabled via
791
793
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
792
794
  * @param downloadLocation file auto download location
@@ -808,6 +810,7 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
808
810
  setFileDownloadLocation(downloadLocation: string): Promise<void>;
809
811
  /**
810
812
  * Gets file auto download location. It's only allowed in the same application. If file auto download location is not set, it will return the default location.
813
+ *
811
814
  * Note: This method is restricted by default and must be enabled via
812
815
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
813
816
  *
@@ -1206,6 +1209,7 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1206
1209
  * @defaultValue false
1207
1210
  *
1208
1211
  * **Platforms Only.** Prevent the Platform Provider from quitting automatically when the last Platform Window is closed.
1212
+ *
1209
1213
  * Note: if the Platform Provider is showing, it won't close automatically.
1210
1214
  * If you want a hidden Platform Provider to remain open after the last Platform Window has been closed, set this property to true.
1211
1215
  */
@@ -3218,8 +3222,9 @@ declare type ConstWindowOptions = {
3218
3222
  closeOnLastViewRemoved: boolean;
3219
3223
  /**
3220
3224
  * Centers the window in the primary monitor. This option overrides `defaultLeft` and `defaultTop`. When `saveWindowState` is `true`,
3221
- * this value will be ignored for subsequent launches in favor of the cached value. **NOTE:** On macOS _defaultCenter_ is
3222
- * somewhat above center vertically.
3225
+ * this value will be ignored for subsequent launches in favor of the cached value.
3226
+ *
3227
+ * **NOTE:** On macOS _defaultCenter_ is somewhat above center vertically.
3223
3228
  */
3224
3229
  defaultCentered: boolean;
3225
3230
  /**
@@ -3281,6 +3286,7 @@ declare type ConstWindowOptions = {
3281
3286
  * @defaultValue true
3282
3287
  *
3283
3288
  * Caches the location of the window.
3289
+ *
3284
3290
  * Note: this option is ignored in Platforms as it would cause inconsistent {@link Platform#applySnapshot applySnapshot} behavior.
3285
3291
  */
3286
3292
  saveWindowState: boolean;
@@ -3293,7 +3299,8 @@ declare type ConstWindowOptions = {
3293
3299
  * @defaultValue false
3294
3300
  *
3295
3301
  * Makes this window a frameless window that can be created and resized to less than 41x36 px (width x height).
3296
- * _Note: Caveats of small windows are no Aero Snap and drag to/from maximize._
3302
+ *
3303
+ * Note: Caveats of small windows are no Aero Snap and drag to/from maximize.
3297
3304
  * _Windows 10: Requires `maximizable` to be false. Resizing with the mouse is only possible down to 38x39 px._
3298
3305
  */
3299
3306
  smallWindow: boolean;
@@ -3409,7 +3416,8 @@ declare type ContentCreationRulesEvent = NamedEvent & {
3409
3416
  frameName: string;
3410
3417
  /**
3411
3418
  * The rule which triggered this event. May be undefined on `child-window-created` where no rule corresponds to the child Window creation.
3412
- * <br>Note: It is only defined if the rules engine found a match for a user-supplied rule, not in the case of an api call or the default behavior.
3419
+ *
3420
+ * Note: It is only defined if the rules engine found a match for a user-supplied rule, not in the case of an api call or the default behavior.
3413
3421
  */
3414
3422
  rule: OpenFin.ContentCreationRule;
3415
3423
  /**
@@ -7120,6 +7128,7 @@ declare type LayoutItemConfig = {
7120
7128
  };
7121
7129
 
7122
7130
  declare class LayoutManager {
7131
+ #private;
7123
7132
  private readonly splitterController;
7124
7133
  private readonly tabDragController;
7125
7134
  private readonly layoutContentCache;
@@ -8012,8 +8021,9 @@ declare type MutableWindowOptions = {
8012
8021
  hotkeys: Hotkey[];
8013
8022
  /**
8014
8023
  * A URL for the icon to be shown in the window title bar and the taskbar.
8015
- * When omitted, inherits from the parent application._
8016
- * note: Window OS caches taskbar icons, therefore an icon change might only be visible after the cache is removed or the uuid is changed.
8024
+ * When omitted, inherits from the parent application.
8025
+ *
8026
+ * Note: Window OS caches taskbar icons, therefore an icon change might only be visible after the cache is removed or the uuid is changed.
8017
8027
  */
8018
8028
  icon: string;
8019
8029
  /**
@@ -9994,7 +10004,8 @@ declare type PopupOptions = {
9994
10004
  resultDispatchBehavior?: PopupResultBehavior;
9995
10005
  /**
9996
10006
  * Hide the popup window instead of closing when `close` is called on it.
9997
- * <br>Note: if this is `true` and `blurBehavior` and/or `resultDispatchBehavior` are set to `close`, the window will be hidden.
10007
+ *
10008
+ * Note: if this is `true` and `blurBehavior` and/or `resultDispatchBehavior` are set to `close`, the window will be hidden.
9998
10009
  * @defaultValue false
9999
10010
  */
10000
10011
  hideOnClose?: boolean;
@@ -10009,7 +10020,8 @@ declare type PopupOptions = {
10009
10020
  onPopupReady?: (popupWindow: _Window) => any;
10010
10021
  /**
10011
10022
  * Executed when this window's popup calls `dispatchPopupResult`.
10012
- * <br>Note: If this is defined, `showPopupWindow` will not return a `PopupResult`.
10023
+ *
10024
+ * Note: If this is defined, `showPopupWindow` will not return a `PopupResult`.
10013
10025
  */
10014
10026
  onPopupResult?: (payload: PopupResult) => any;
10015
10027
  };
@@ -12331,7 +12343,8 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
12331
12343
  showDeveloperTools(identity: Identity_2): Promise<void>;
12332
12344
  /**
12333
12345
  * Attempt to close an external process. The process will be terminated if it
12334
- * has not closed after the elapsed timeout in milliseconds.<br>
12346
+ * has not closed after the elapsed timeout in milliseconds.
12347
+ *
12335
12348
  * Note: This method is restricted by default and must be enabled via
12336
12349
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
12337
12350
  * @param options A object defined in the TerminateExternalRequestType interface
@@ -12363,7 +12376,8 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
12363
12376
  */
12364
12377
  updateProxySettings(options: ProxyConfig): Promise<void>;
12365
12378
  /**
12366
- * Downloads the given application asset<br>
12379
+ * Downloads the given application asset.
12380
+ *
12367
12381
  * Note: This method is restricted by default and must be enabled via
12368
12382
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
12369
12383
  * @param appAsset App asset object
@@ -14500,7 +14514,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
14500
14514
  /**
14501
14515
  * Navigates the WebContents to a specified URL.
14502
14516
  *
14503
- * @remarks The url must contain the protocol prefix such as http:// or https://.
14517
+ * Note: The url must contain the protocol prefix such as http:// or https://.
14504
14518
  * @param url - The URL to navigate the WebContents to.
14505
14519
  *
14506
14520
  * @example
@@ -14668,7 +14682,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
14668
14682
  * Prints the WebContents.
14669
14683
  * @param options Printer Options
14670
14684
  *
14671
- * @remarks When `silent` is set to `true`, the API will pick the system's default printer if deviceName
14685
+ * Note: When `silent` is set to `true`, the API will pick the system's default printer if deviceName
14672
14686
  * is empty and the default settings for printing.
14673
14687
  *
14674
14688
  * Use the CSS style `page-break-before: always;` to force print to a new page.
@@ -14692,7 +14706,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
14692
14706
  * @param searchTerm Term to find in page
14693
14707
  * @param options Search options
14694
14708
  *
14695
- * @remarks By default, each subsequent call will highlight the next text that matches the search term.
14709
+ * Note: By default, each subsequent call will highlight the next text that matches the search term.
14696
14710
  *
14697
14711
  * Returns a promise with the results for the request. By subscribing to the
14698
14712
  * found-in-page event, you can get the results of this call as well.
@@ -14882,7 +14896,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
14882
14896
  /**
14883
14897
  * Retrieves the process information associated with a WebContents.
14884
14898
  *
14885
- * @remarks This includes any iframes associated with the WebContents
14899
+ * Note: This includes any iframes associated with the WebContents
14886
14900
  *
14887
14901
  * @example
14888
14902
  * View:
@@ -15052,7 +15066,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
15052
15066
  /**
15053
15067
  * Shows a popup window.
15054
15068
  *
15055
- * @remarks If this WebContents is a view and its attached window has a popup open, this will close it.
15069
+ * Note: If this WebContents is a view and its attached window has a popup open, this will close it.
15056
15070
  *
15057
15071
  * Shows a popup window. Including a `name` in `options` will attempt to show an existing window as a popup, if
15058
15072
  * that window doesn't exist or no `name` is included a window will be created. If the caller view or the caller
@@ -15060,7 +15074,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
15060
15074
  * open popup window before showing the new popup window. Also, if the caller view is destroyed or detached, the popup
15061
15075
  * will be dismissed.
15062
15076
  *
15063
- * NOTE: in the case where the window being shown as a popup needs to be created, it is a child of the caller view's parent window.
15077
+ * Note: in the case where the window being shown as a popup needs to be created, it is a child of the caller view's parent window.
15064
15078
  *
15065
15079
  * @example
15066
15080
  *
@@ -517,6 +517,7 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
517
517
  /**
518
518
  * Sets or removes a custom JumpList for the application. Only applicable in Windows OS.
519
519
  * If categories is null the previously set custom JumpList (if any) will be replaced by the standard JumpList for the app (managed by Windows).
520
+ *
520
521
  * Note: If the "name" property is omitted it defaults to "tasks".
521
522
  * @param jumpListCategories An array of JumpList Categories to populate. If null, remove any existing JumpList configuration and set to Windows default.
522
523
  *
@@ -787,6 +788,7 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
787
788
  getProcessInfo(): Promise<OpenFin.AppProcessInfo>;
788
789
  /**
789
790
  * Sets file auto download location. It's only allowed in the same application.
791
+ *
790
792
  * Note: This method is restricted by default and must be enabled via
791
793
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
792
794
  * @param downloadLocation file auto download location
@@ -808,6 +810,7 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
808
810
  setFileDownloadLocation(downloadLocation: string): Promise<void>;
809
811
  /**
810
812
  * Gets file auto download location. It's only allowed in the same application. If file auto download location is not set, it will return the default location.
813
+ *
811
814
  * Note: This method is restricted by default and must be enabled via
812
815
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
813
816
  *
@@ -1206,6 +1209,7 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1206
1209
  * @defaultValue false
1207
1210
  *
1208
1211
  * **Platforms Only.** Prevent the Platform Provider from quitting automatically when the last Platform Window is closed.
1212
+ *
1209
1213
  * Note: if the Platform Provider is showing, it won't close automatically.
1210
1214
  * If you want a hidden Platform Provider to remain open after the last Platform Window has been closed, set this property to true.
1211
1215
  */
@@ -3218,8 +3222,9 @@ declare type ConstWindowOptions = {
3218
3222
  closeOnLastViewRemoved: boolean;
3219
3223
  /**
3220
3224
  * Centers the window in the primary monitor. This option overrides `defaultLeft` and `defaultTop`. When `saveWindowState` is `true`,
3221
- * this value will be ignored for subsequent launches in favor of the cached value. **NOTE:** On macOS _defaultCenter_ is
3222
- * somewhat above center vertically.
3225
+ * this value will be ignored for subsequent launches in favor of the cached value.
3226
+ *
3227
+ * **NOTE:** On macOS _defaultCenter_ is somewhat above center vertically.
3223
3228
  */
3224
3229
  defaultCentered: boolean;
3225
3230
  /**
@@ -3281,6 +3286,7 @@ declare type ConstWindowOptions = {
3281
3286
  * @defaultValue true
3282
3287
  *
3283
3288
  * Caches the location of the window.
3289
+ *
3284
3290
  * Note: this option is ignored in Platforms as it would cause inconsistent {@link Platform#applySnapshot applySnapshot} behavior.
3285
3291
  */
3286
3292
  saveWindowState: boolean;
@@ -3293,7 +3299,8 @@ declare type ConstWindowOptions = {
3293
3299
  * @defaultValue false
3294
3300
  *
3295
3301
  * Makes this window a frameless window that can be created and resized to less than 41x36 px (width x height).
3296
- * _Note: Caveats of small windows are no Aero Snap and drag to/from maximize._
3302
+ *
3303
+ * Note: Caveats of small windows are no Aero Snap and drag to/from maximize.
3297
3304
  * _Windows 10: Requires `maximizable` to be false. Resizing with the mouse is only possible down to 38x39 px._
3298
3305
  */
3299
3306
  smallWindow: boolean;
@@ -3409,7 +3416,8 @@ declare type ContentCreationRulesEvent = NamedEvent & {
3409
3416
  frameName: string;
3410
3417
  /**
3411
3418
  * The rule which triggered this event. May be undefined on `child-window-created` where no rule corresponds to the child Window creation.
3412
- * <br>Note: It is only defined if the rules engine found a match for a user-supplied rule, not in the case of an api call or the default behavior.
3419
+ *
3420
+ * Note: It is only defined if the rules engine found a match for a user-supplied rule, not in the case of an api call or the default behavior.
3413
3421
  */
3414
3422
  rule: OpenFin.ContentCreationRule;
3415
3423
  /**
@@ -7120,6 +7128,7 @@ declare type LayoutItemConfig = {
7120
7128
  };
7121
7129
 
7122
7130
  declare class LayoutManager {
7131
+ #private;
7123
7132
  private readonly splitterController;
7124
7133
  private readonly tabDragController;
7125
7134
  private readonly layoutContentCache;
@@ -8012,8 +8021,9 @@ declare type MutableWindowOptions = {
8012
8021
  hotkeys: Hotkey[];
8013
8022
  /**
8014
8023
  * A URL for the icon to be shown in the window title bar and the taskbar.
8015
- * When omitted, inherits from the parent application._
8016
- * note: Window OS caches taskbar icons, therefore an icon change might only be visible after the cache is removed or the uuid is changed.
8024
+ * When omitted, inherits from the parent application.
8025
+ *
8026
+ * Note: Window OS caches taskbar icons, therefore an icon change might only be visible after the cache is removed or the uuid is changed.
8017
8027
  */
8018
8028
  icon: string;
8019
8029
  /**
@@ -9994,7 +10004,8 @@ declare type PopupOptions = {
9994
10004
  resultDispatchBehavior?: PopupResultBehavior;
9995
10005
  /**
9996
10006
  * Hide the popup window instead of closing when `close` is called on it.
9997
- * <br>Note: if this is `true` and `blurBehavior` and/or `resultDispatchBehavior` are set to `close`, the window will be hidden.
10007
+ *
10008
+ * Note: if this is `true` and `blurBehavior` and/or `resultDispatchBehavior` are set to `close`, the window will be hidden.
9998
10009
  * @defaultValue false
9999
10010
  */
10000
10011
  hideOnClose?: boolean;
@@ -10009,7 +10020,8 @@ declare type PopupOptions = {
10009
10020
  onPopupReady?: (popupWindow: _Window) => any;
10010
10021
  /**
10011
10022
  * Executed when this window's popup calls `dispatchPopupResult`.
10012
- * <br>Note: If this is defined, `showPopupWindow` will not return a `PopupResult`.
10023
+ *
10024
+ * Note: If this is defined, `showPopupWindow` will not return a `PopupResult`.
10013
10025
  */
10014
10026
  onPopupResult?: (payload: PopupResult) => any;
10015
10027
  };
@@ -12331,7 +12343,8 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
12331
12343
  showDeveloperTools(identity: Identity_2): Promise<void>;
12332
12344
  /**
12333
12345
  * Attempt to close an external process. The process will be terminated if it
12334
- * has not closed after the elapsed timeout in milliseconds.<br>
12346
+ * has not closed after the elapsed timeout in milliseconds.
12347
+ *
12335
12348
  * Note: This method is restricted by default and must be enabled via
12336
12349
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
12337
12350
  * @param options A object defined in the TerminateExternalRequestType interface
@@ -12363,7 +12376,8 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
12363
12376
  */
12364
12377
  updateProxySettings(options: ProxyConfig): Promise<void>;
12365
12378
  /**
12366
- * Downloads the given application asset<br>
12379
+ * Downloads the given application asset.
12380
+ *
12367
12381
  * Note: This method is restricted by default and must be enabled via
12368
12382
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
12369
12383
  * @param appAsset App asset object
@@ -14500,7 +14514,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
14500
14514
  /**
14501
14515
  * Navigates the WebContents to a specified URL.
14502
14516
  *
14503
- * @remarks The url must contain the protocol prefix such as http:// or https://.
14517
+ * Note: The url must contain the protocol prefix such as http:// or https://.
14504
14518
  * @param url - The URL to navigate the WebContents to.
14505
14519
  *
14506
14520
  * @example
@@ -14668,7 +14682,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
14668
14682
  * Prints the WebContents.
14669
14683
  * @param options Printer Options
14670
14684
  *
14671
- * @remarks When `silent` is set to `true`, the API will pick the system's default printer if deviceName
14685
+ * Note: When `silent` is set to `true`, the API will pick the system's default printer if deviceName
14672
14686
  * is empty and the default settings for printing.
14673
14687
  *
14674
14688
  * Use the CSS style `page-break-before: always;` to force print to a new page.
@@ -14692,7 +14706,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
14692
14706
  * @param searchTerm Term to find in page
14693
14707
  * @param options Search options
14694
14708
  *
14695
- * @remarks By default, each subsequent call will highlight the next text that matches the search term.
14709
+ * Note: By default, each subsequent call will highlight the next text that matches the search term.
14696
14710
  *
14697
14711
  * Returns a promise with the results for the request. By subscribing to the
14698
14712
  * found-in-page event, you can get the results of this call as well.
@@ -14882,7 +14896,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
14882
14896
  /**
14883
14897
  * Retrieves the process information associated with a WebContents.
14884
14898
  *
14885
- * @remarks This includes any iframes associated with the WebContents
14899
+ * Note: This includes any iframes associated with the WebContents
14886
14900
  *
14887
14901
  * @example
14888
14902
  * View:
@@ -15052,7 +15066,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
15052
15066
  /**
15053
15067
  * Shows a popup window.
15054
15068
  *
15055
- * @remarks If this WebContents is a view and its attached window has a popup open, this will close it.
15069
+ * Note: If this WebContents is a view and its attached window has a popup open, this will close it.
15056
15070
  *
15057
15071
  * Shows a popup window. Including a `name` in `options` will attempt to show an existing window as a popup, if
15058
15072
  * that window doesn't exist or no `name` is included a window will be created. If the caller view or the caller
@@ -15060,7 +15074,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
15060
15074
  * open popup window before showing the new popup window. Also, if the caller view is destroyed or detached, the popup
15061
15075
  * will be dismissed.
15062
15076
  *
15063
- * NOTE: in the case where the window being shown as a popup needs to be created, it is a child of the caller view's parent window.
15077
+ * Note: in the case where the window being shown as a popup needs to be created, it is a child of the caller view's parent window.
15064
15078
  *
15065
15079
  * @example
15066
15080
  *
@@ -523,6 +523,7 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
523
523
  /**
524
524
  * Sets or removes a custom JumpList for the application. Only applicable in Windows OS.
525
525
  * If categories is null the previously set custom JumpList (if any) will be replaced by the standard JumpList for the app (managed by Windows).
526
+ *
526
527
  * Note: If the "name" property is omitted it defaults to "tasks".
527
528
  * @param jumpListCategories An array of JumpList Categories to populate. If null, remove any existing JumpList configuration and set to Windows default.
528
529
  *
@@ -793,6 +794,7 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
793
794
  getProcessInfo(): Promise<OpenFin.AppProcessInfo>;
794
795
  /**
795
796
  * Sets file auto download location. It's only allowed in the same application.
797
+ *
796
798
  * Note: This method is restricted by default and must be enabled via
797
799
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
798
800
  * @param downloadLocation file auto download location
@@ -814,6 +816,7 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
814
816
  setFileDownloadLocation(downloadLocation: string): Promise<void>;
815
817
  /**
816
818
  * Gets file auto download location. It's only allowed in the same application. If file auto download location is not set, it will return the default location.
819
+ *
817
820
  * Note: This method is restricted by default and must be enabled via
818
821
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
819
822
  *
@@ -1212,6 +1215,7 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1212
1215
  * @defaultValue false
1213
1216
  *
1214
1217
  * **Platforms Only.** Prevent the Platform Provider from quitting automatically when the last Platform Window is closed.
1218
+ *
1215
1219
  * Note: if the Platform Provider is showing, it won't close automatically.
1216
1220
  * If you want a hidden Platform Provider to remain open after the last Platform Window has been closed, set this property to true.
1217
1221
  */
@@ -3312,8 +3316,9 @@ declare type ConstWindowOptions = {
3312
3316
  closeOnLastViewRemoved: boolean;
3313
3317
  /**
3314
3318
  * Centers the window in the primary monitor. This option overrides `defaultLeft` and `defaultTop`. When `saveWindowState` is `true`,
3315
- * this value will be ignored for subsequent launches in favor of the cached value. **NOTE:** On macOS _defaultCenter_ is
3316
- * somewhat above center vertically.
3319
+ * this value will be ignored for subsequent launches in favor of the cached value.
3320
+ *
3321
+ * **NOTE:** On macOS _defaultCenter_ is somewhat above center vertically.
3317
3322
  */
3318
3323
  defaultCentered: boolean;
3319
3324
  /**
@@ -3375,6 +3380,7 @@ declare type ConstWindowOptions = {
3375
3380
  * @defaultValue true
3376
3381
  *
3377
3382
  * Caches the location of the window.
3383
+ *
3378
3384
  * Note: this option is ignored in Platforms as it would cause inconsistent {@link Platform#applySnapshot applySnapshot} behavior.
3379
3385
  */
3380
3386
  saveWindowState: boolean;
@@ -3387,7 +3393,8 @@ declare type ConstWindowOptions = {
3387
3393
  * @defaultValue false
3388
3394
  *
3389
3395
  * Makes this window a frameless window that can be created and resized to less than 41x36 px (width x height).
3390
- * _Note: Caveats of small windows are no Aero Snap and drag to/from maximize._
3396
+ *
3397
+ * Note: Caveats of small windows are no Aero Snap and drag to/from maximize.
3391
3398
  * _Windows 10: Requires `maximizable` to be false. Resizing with the mouse is only possible down to 38x39 px._
3392
3399
  */
3393
3400
  smallWindow: boolean;
@@ -3503,7 +3510,8 @@ declare type ContentCreationRulesEvent = NamedEvent & {
3503
3510
  frameName: string;
3504
3511
  /**
3505
3512
  * The rule which triggered this event. May be undefined on `child-window-created` where no rule corresponds to the child Window creation.
3506
- * <br>Note: It is only defined if the rules engine found a match for a user-supplied rule, not in the case of an api call or the default behavior.
3513
+ *
3514
+ * Note: It is only defined if the rules engine found a match for a user-supplied rule, not in the case of an api call or the default behavior.
3507
3515
  */
3508
3516
  rule: OpenFin.ContentCreationRule;
3509
3517
  /**
@@ -7407,6 +7415,7 @@ declare type LayoutItemConfig = {
7407
7415
  };
7408
7416
 
7409
7417
  declare class LayoutManager {
7418
+ #private;
7410
7419
  private readonly splitterController;
7411
7420
  private readonly tabDragController;
7412
7421
  private readonly layoutContentCache;
@@ -8464,8 +8473,9 @@ declare type MutableWindowOptions = {
8464
8473
  hotkeys: Hotkey[];
8465
8474
  /**
8466
8475
  * A URL for the icon to be shown in the window title bar and the taskbar.
8467
- * When omitted, inherits from the parent application._
8468
- * note: Window OS caches taskbar icons, therefore an icon change might only be visible after the cache is removed or the uuid is changed.
8476
+ * When omitted, inherits from the parent application.
8477
+ *
8478
+ * Note: Window OS caches taskbar icons, therefore an icon change might only be visible after the cache is removed or the uuid is changed.
8469
8479
  */
8470
8480
  icon: string;
8471
8481
  /**
@@ -10522,7 +10532,8 @@ declare type PopupOptions = {
10522
10532
  resultDispatchBehavior?: PopupResultBehavior;
10523
10533
  /**
10524
10534
  * Hide the popup window instead of closing when `close` is called on it.
10525
- * <br>Note: if this is `true` and `blurBehavior` and/or `resultDispatchBehavior` are set to `close`, the window will be hidden.
10535
+ *
10536
+ * Note: if this is `true` and `blurBehavior` and/or `resultDispatchBehavior` are set to `close`, the window will be hidden.
10526
10537
  * @defaultValue false
10527
10538
  */
10528
10539
  hideOnClose?: boolean;
@@ -10537,7 +10548,8 @@ declare type PopupOptions = {
10537
10548
  onPopupReady?: (popupWindow: _Window) => any;
10538
10549
  /**
10539
10550
  * Executed when this window's popup calls `dispatchPopupResult`.
10540
- * <br>Note: If this is defined, `showPopupWindow` will not return a `PopupResult`.
10551
+ *
10552
+ * Note: If this is defined, `showPopupWindow` will not return a `PopupResult`.
10541
10553
  */
10542
10554
  onPopupResult?: (payload: PopupResult) => any;
10543
10555
  };
@@ -12865,7 +12877,8 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
12865
12877
  showDeveloperTools(identity: Identity_2): Promise<void>;
12866
12878
  /**
12867
12879
  * Attempt to close an external process. The process will be terminated if it
12868
- * has not closed after the elapsed timeout in milliseconds.<br>
12880
+ * has not closed after the elapsed timeout in milliseconds.
12881
+ *
12869
12882
  * Note: This method is restricted by default and must be enabled via
12870
12883
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
12871
12884
  * @param options A object defined in the TerminateExternalRequestType interface
@@ -12897,7 +12910,8 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
12897
12910
  */
12898
12911
  updateProxySettings(options: ProxyConfig): Promise<void>;
12899
12912
  /**
12900
- * Downloads the given application asset<br>
12913
+ * Downloads the given application asset.
12914
+ *
12901
12915
  * Note: This method is restricted by default and must be enabled via
12902
12916
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
12903
12917
  * @param appAsset App asset object
@@ -15128,7 +15142,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
15128
15142
  /**
15129
15143
  * Navigates the WebContents to a specified URL.
15130
15144
  *
15131
- * @remarks The url must contain the protocol prefix such as http:// or https://.
15145
+ * Note: The url must contain the protocol prefix such as http:// or https://.
15132
15146
  * @param url - The URL to navigate the WebContents to.
15133
15147
  *
15134
15148
  * @example
@@ -15296,7 +15310,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
15296
15310
  * Prints the WebContents.
15297
15311
  * @param options Printer Options
15298
15312
  *
15299
- * @remarks When `silent` is set to `true`, the API will pick the system's default printer if deviceName
15313
+ * Note: When `silent` is set to `true`, the API will pick the system's default printer if deviceName
15300
15314
  * is empty and the default settings for printing.
15301
15315
  *
15302
15316
  * Use the CSS style `page-break-before: always;` to force print to a new page.
@@ -15320,7 +15334,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
15320
15334
  * @param searchTerm Term to find in page
15321
15335
  * @param options Search options
15322
15336
  *
15323
- * @remarks By default, each subsequent call will highlight the next text that matches the search term.
15337
+ * Note: By default, each subsequent call will highlight the next text that matches the search term.
15324
15338
  *
15325
15339
  * Returns a promise with the results for the request. By subscribing to the
15326
15340
  * found-in-page event, you can get the results of this call as well.
@@ -15510,7 +15524,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
15510
15524
  /**
15511
15525
  * Retrieves the process information associated with a WebContents.
15512
15526
  *
15513
- * @remarks This includes any iframes associated with the WebContents
15527
+ * Note: This includes any iframes associated with the WebContents
15514
15528
  *
15515
15529
  * @example
15516
15530
  * View:
@@ -15680,7 +15694,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
15680
15694
  /**
15681
15695
  * Shows a popup window.
15682
15696
  *
15683
- * @remarks If this WebContents is a view and its attached window has a popup open, this will close it.
15697
+ * Note: If this WebContents is a view and its attached window has a popup open, this will close it.
15684
15698
  *
15685
15699
  * Shows a popup window. Including a `name` in `options` will attempt to show an existing window as a popup, if
15686
15700
  * that window doesn't exist or no `name` is included a window will be created. If the caller view or the caller
@@ -15688,7 +15702,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
15688
15702
  * open popup window before showing the new popup window. Also, if the caller view is destroyed or detached, the popup
15689
15703
  * will be dismissed.
15690
15704
  *
15691
- * NOTE: in the case where the window being shown as a popup needs to be created, it is a child of the caller view's parent window.
15705
+ * Note: in the case where the window being shown as a popup needs to be created, it is a child of the caller view's parent window.
15692
15706
  *
15693
15707
  * @example
15694
15708
  *
@@ -1595,7 +1595,7 @@ class WebContents extends base_1$k.EmitterBase {
1595
1595
  /**
1596
1596
  * Navigates the WebContents to a specified URL.
1597
1597
  *
1598
- * @remarks The url must contain the protocol prefix such as http:// or https://.
1598
+ * Note: The url must contain the protocol prefix such as http:// or https://.
1599
1599
  * @param url - The URL to navigate the WebContents to.
1600
1600
  *
1601
1601
  * @example
@@ -1778,7 +1778,7 @@ class WebContents extends base_1$k.EmitterBase {
1778
1778
  * Prints the WebContents.
1779
1779
  * @param options Printer Options
1780
1780
  *
1781
- * @remarks When `silent` is set to `true`, the API will pick the system's default printer if deviceName
1781
+ * Note: When `silent` is set to `true`, the API will pick the system's default printer if deviceName
1782
1782
  * is empty and the default settings for printing.
1783
1783
  *
1784
1784
  * Use the CSS style `page-break-before: always;` to force print to a new page.
@@ -1804,7 +1804,7 @@ class WebContents extends base_1$k.EmitterBase {
1804
1804
  * @param searchTerm Term to find in page
1805
1805
  * @param options Search options
1806
1806
  *
1807
- * @remarks By default, each subsequent call will highlight the next text that matches the search term.
1807
+ * Note: By default, each subsequent call will highlight the next text that matches the search term.
1808
1808
  *
1809
1809
  * Returns a promise with the results for the request. By subscribing to the
1810
1810
  * found-in-page event, you can get the results of this call as well.
@@ -2005,7 +2005,7 @@ class WebContents extends base_1$k.EmitterBase {
2005
2005
  /**
2006
2006
  * Retrieves the process information associated with a WebContents.
2007
2007
  *
2008
- * @remarks This includes any iframes associated with the WebContents
2008
+ * Note: This includes any iframes associated with the WebContents
2009
2009
  *
2010
2010
  * @example
2011
2011
  * View:
@@ -2186,7 +2186,7 @@ class WebContents extends base_1$k.EmitterBase {
2186
2186
  /**
2187
2187
  * Shows a popup window.
2188
2188
  *
2189
- * @remarks If this WebContents is a view and its attached window has a popup open, this will close it.
2189
+ * Note: If this WebContents is a view and its attached window has a popup open, this will close it.
2190
2190
  *
2191
2191
  * Shows a popup window. Including a `name` in `options` will attempt to show an existing window as a popup, if
2192
2192
  * that window doesn't exist or no `name` is included a window will be created. If the caller view or the caller
@@ -2194,7 +2194,7 @@ class WebContents extends base_1$k.EmitterBase {
2194
2194
  * open popup window before showing the new popup window. Also, if the caller view is destroyed or detached, the popup
2195
2195
  * will be dismissed.
2196
2196
  *
2197
- * NOTE: in the case where the window being shown as a popup needs to be created, it is a child of the caller view's parent window.
2197
+ * Note: in the case where the window being shown as a popup needs to be created, it is a child of the caller view's parent window.
2198
2198
  *
2199
2199
  * @example
2200
2200
  *
@@ -3662,6 +3662,7 @@ function requireInstance$1 () {
3662
3662
  /**
3663
3663
  * Sets or removes a custom JumpList for the application. Only applicable in Windows OS.
3664
3664
  * If categories is null the previously set custom JumpList (if any) will be replaced by the standard JumpList for the app (managed by Windows).
3665
+ *
3665
3666
  * Note: If the "name" property is omitted it defaults to "tasks".
3666
3667
  * @param jumpListCategories An array of JumpList Categories to populate. If null, remove any existing JumpList configuration and set to Windows default.
3667
3668
  *
@@ -3962,6 +3963,7 @@ function requireInstance$1 () {
3962
3963
  }
3963
3964
  /**
3964
3965
  * Sets file auto download location. It's only allowed in the same application.
3966
+ *
3965
3967
  * Note: This method is restricted by default and must be enabled via
3966
3968
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
3967
3969
  * @param downloadLocation file auto download location
@@ -3987,6 +3989,7 @@ function requireInstance$1 () {
3987
3989
  }
3988
3990
  /**
3989
3991
  * Gets file auto download location. It's only allowed in the same application. If file auto download location is not set, it will return the default location.
3992
+ *
3990
3993
  * Note: This method is restricted by default and must be enabled via
3991
3994
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
3992
3995
  *
@@ -7388,7 +7391,8 @@ class System extends base_1$j.EmitterBase {
7388
7391
  }
7389
7392
  /**
7390
7393
  * Attempt to close an external process. The process will be terminated if it
7391
- * has not closed after the elapsed timeout in milliseconds.<br>
7394
+ * has not closed after the elapsed timeout in milliseconds.
7395
+ *
7392
7396
  * Note: This method is restricted by default and must be enabled via
7393
7397
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
7394
7398
  * @param options A object defined in the TerminateExternalRequestType interface
@@ -7424,7 +7428,8 @@ class System extends base_1$j.EmitterBase {
7424
7428
  return this.wire.sendAction('update-proxy', options).then(() => undefined);
7425
7429
  }
7426
7430
  /**
7427
- * Downloads the given application asset<br>
7431
+ * Downloads the given application asset.
7432
+ *
7428
7433
  * Note: This method is restricted by default and must be enabled via
7429
7434
  * <a href="https://developers.openfin.co/docs/api-security">API security settings</a>.
7430
7435
  * @param appAsset App asset object
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/node-adapter",
3
- "version": "34.78.17",
3
+ "version": "34.78.19",
4
4
  "description": "See README.md",
5
5
  "main": "out/node-adapter.js",
6
6
  "types": "out/node-adapter.d.ts",
Binary file