@openfin/fdc3-api 36.78.14 → 36.78.17

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.
@@ -4942,7 +4942,7 @@ declare class EmitterBase<EmitterEvent extends BaseEvent, EmitterEventType exten
4942
4942
  private getOrCreateEmitter;
4943
4943
  listeners: (type: string | symbol) => Function[];
4944
4944
  listenerCount: (type: string | symbol) => number;
4945
- protected registerEventListener: (eventType: EmitterEventType, options: OpenFin.SubscriptionOptions, applySubscription: (emitter: EventEmitter) => void, undoSubscription: (emitter: EventEmitter) => void) => Promise<void>;
4945
+ protected registerEventListener: (eventType: EmitterEventType, options: OpenFin.SubscriptionOptions | undefined, applySubscription: (emitter: EventEmitter) => void, undoSubscription: (emitter: EventEmitter) => void) => Promise<void>;
4946
4946
  protected deregisterEventListener: (eventType: EmitterEventType, options?: OpenFin.SubscriptionOptions) => Promise<void | EventEmitter>;
4947
4947
  /**
4948
4948
  * Adds a listener to the end of the listeners array for the specified event.
@@ -6791,7 +6791,7 @@ declare type Hotkey = {
6791
6791
  * @remarks For reference on keyboard event properties see [KeyboardEvent](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent).
6792
6792
  * @interface
6793
6793
  */
6794
- declare type HotkeyEvent = BaseEvent_4 & {
6794
+ declare type HotkeyEvent = InputEvent_2 & BaseEvent_4 & {
6795
6795
  type: 'hotkey';
6796
6796
  };
6797
6797
 
@@ -9976,7 +9976,7 @@ declare type MutableWindowOptions = {
9976
9976
  showTaskbarIcon: boolean;
9977
9977
  interop: InteropConfig;
9978
9978
  /* Excluded from this release type: _internalWorkspaceData */
9979
- workspacePlatform: unknown;
9979
+ /* Excluded from this release type: workspacePlatform */
9980
9980
  };
9981
9981
 
9982
9982
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
@@ -18473,7 +18473,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
18473
18473
  * })
18474
18474
  * ```
18475
18475
  *
18476
- * Overriding the built in context menu (ote that this can be done per element or document wide):
18476
+ * Overriding the built in context menu (note: that this can be done per element or document wide):
18477
18477
  * ```js
18478
18478
  * document.addEventListener('contextmenu', e => {
18479
18479
  * e.preventDefault();
@@ -4942,7 +4942,7 @@ declare class EmitterBase<EmitterEvent extends BaseEvent, EmitterEventType exten
4942
4942
  private getOrCreateEmitter;
4943
4943
  listeners: (type: string | symbol) => Function[];
4944
4944
  listenerCount: (type: string | symbol) => number;
4945
- protected registerEventListener: (eventType: EmitterEventType, options: OpenFin.SubscriptionOptions, applySubscription: (emitter: EventEmitter) => void, undoSubscription: (emitter: EventEmitter) => void) => Promise<void>;
4945
+ protected registerEventListener: (eventType: EmitterEventType, options: OpenFin.SubscriptionOptions | undefined, applySubscription: (emitter: EventEmitter) => void, undoSubscription: (emitter: EventEmitter) => void) => Promise<void>;
4946
4946
  protected deregisterEventListener: (eventType: EmitterEventType, options?: OpenFin.SubscriptionOptions) => Promise<void | EventEmitter>;
4947
4947
  /**
4948
4948
  * Adds a listener to the end of the listeners array for the specified event.
@@ -6791,7 +6791,7 @@ declare type Hotkey = {
6791
6791
  * @remarks For reference on keyboard event properties see [KeyboardEvent](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent).
6792
6792
  * @interface
6793
6793
  */
6794
- declare type HotkeyEvent = BaseEvent_4 & {
6794
+ declare type HotkeyEvent = InputEvent_2 & BaseEvent_4 & {
6795
6795
  type: 'hotkey';
6796
6796
  };
6797
6797
 
@@ -9976,7 +9976,7 @@ declare type MutableWindowOptions = {
9976
9976
  showTaskbarIcon: boolean;
9977
9977
  interop: InteropConfig;
9978
9978
  /* Excluded from this release type: _internalWorkspaceData */
9979
- workspacePlatform: unknown;
9979
+ /* Excluded from this release type: workspacePlatform */
9980
9980
  };
9981
9981
 
9982
9982
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
@@ -18473,7 +18473,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
18473
18473
  * })
18474
18474
  * ```
18475
18475
  *
18476
- * Overriding the built in context menu (ote that this can be done per element or document wide):
18476
+ * Overriding the built in context menu (note: that this can be done per element or document wide):
18477
18477
  * ```js
18478
18478
  * document.addEventListener('contextmenu', e => {
18479
18479
  * e.preventDefault();
@@ -4942,7 +4942,7 @@ declare class EmitterBase<EmitterEvent extends BaseEvent, EmitterEventType exten
4942
4942
  private getOrCreateEmitter;
4943
4943
  listeners: (type: string | symbol) => Function[];
4944
4944
  listenerCount: (type: string | symbol) => number;
4945
- protected registerEventListener: (eventType: EmitterEventType, options: OpenFin.SubscriptionOptions, applySubscription: (emitter: EventEmitter) => void, undoSubscription: (emitter: EventEmitter) => void) => Promise<void>;
4945
+ protected registerEventListener: (eventType: EmitterEventType, options: OpenFin.SubscriptionOptions | undefined, applySubscription: (emitter: EventEmitter) => void, undoSubscription: (emitter: EventEmitter) => void) => Promise<void>;
4946
4946
  protected deregisterEventListener: (eventType: EmitterEventType, options?: OpenFin.SubscriptionOptions) => Promise<void | EventEmitter>;
4947
4947
  /**
4948
4948
  * Adds a listener to the end of the listeners array for the specified event.
@@ -6791,7 +6791,7 @@ declare type Hotkey = {
6791
6791
  * @remarks For reference on keyboard event properties see [KeyboardEvent](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent).
6792
6792
  * @interface
6793
6793
  */
6794
- declare type HotkeyEvent = BaseEvent_4 & {
6794
+ declare type HotkeyEvent = InputEvent_2 & BaseEvent_4 & {
6795
6795
  type: 'hotkey';
6796
6796
  };
6797
6797
 
@@ -9976,7 +9976,7 @@ declare type MutableWindowOptions = {
9976
9976
  showTaskbarIcon: boolean;
9977
9977
  interop: InteropConfig;
9978
9978
  /* Excluded from this release type: _internalWorkspaceData */
9979
- workspacePlatform: unknown;
9979
+ /* Excluded from this release type: workspacePlatform */
9980
9980
  };
9981
9981
 
9982
9982
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
@@ -18473,7 +18473,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
18473
18473
  * })
18474
18474
  * ```
18475
18475
  *
18476
- * Overriding the built in context menu (ote that this can be done per element or document wide):
18476
+ * Overriding the built in context menu (note: that this can be done per element or document wide):
18477
18477
  * ```js
18478
18478
  * document.addEventListener('contextmenu', e => {
18479
18479
  * e.preventDefault();
package/out/fdc3-api.d.ts CHANGED
@@ -4990,7 +4990,7 @@ declare class EmitterBase<EmitterEvent extends BaseEvent, EmitterEventType exten
4990
4990
  private getOrCreateEmitter;
4991
4991
  listeners: (type: string | symbol) => Function[];
4992
4992
  listenerCount: (type: string | symbol) => number;
4993
- protected registerEventListener: (eventType: EmitterEventType, options: OpenFin.SubscriptionOptions, applySubscription: (emitter: EventEmitter) => void, undoSubscription: (emitter: EventEmitter) => void) => Promise<void>;
4993
+ protected registerEventListener: (eventType: EmitterEventType, options: OpenFin.SubscriptionOptions | undefined, applySubscription: (emitter: EventEmitter) => void, undoSubscription: (emitter: EventEmitter) => void) => Promise<void>;
4994
4994
  protected deregisterEventListener: (eventType: EmitterEventType, options?: OpenFin.SubscriptionOptions) => Promise<void | EventEmitter>;
4995
4995
  /**
4996
4996
  * Adds a listener to the end of the listeners array for the specified event.
@@ -6866,7 +6866,7 @@ declare type Hotkey = {
6866
6866
  * @remarks For reference on keyboard event properties see [KeyboardEvent](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent).
6867
6867
  * @interface
6868
6868
  */
6869
- declare type HotkeyEvent = BaseEvent_4 & {
6869
+ declare type HotkeyEvent = InputEvent_2 & BaseEvent_4 & {
6870
6870
  type: 'hotkey';
6871
6871
  };
6872
6872
 
@@ -10261,7 +10261,11 @@ declare type MutableWindowOptions = {
10261
10261
  * Used by Workspace to store custom data. Overwriting or modifying this field may impact the functionality of Workspace
10262
10262
  */
10263
10263
  _internalWorkspaceData: any;
10264
- workspacePlatform: unknown;
10264
+ /**
10265
+ * @internal
10266
+ * Used by workspace to stork platform specific options. Overwriting or modifying this field may impact the functionality of Workspace
10267
+ */
10268
+ workspacePlatform: WorkspacePlatformOptions;
10265
10269
  };
10266
10270
 
10267
10271
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
@@ -18903,7 +18907,7 @@ declare class _Window extends WebContents<OpenFin.WindowEvent> {
18903
18907
  * })
18904
18908
  * ```
18905
18909
  *
18906
- * Overriding the built in context menu (ote that this can be done per element or document wide):
18910
+ * Overriding the built in context menu (note: that this can be done per element or document wide):
18907
18911
  * ```js
18908
18912
  * document.addEventListener('contextmenu', e => {
18909
18913
  * e.preventDefault();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "36.78.14",
3
+ "version": "36.78.17",
4
4
  "description": "OpenFin fdc3 module utilities and types.",
5
5
  "license": "SEE LICENSE IN LICENSE.MD",
6
6
  "private": false,