@openfin/node-adapter 34.78.21 → 34.78.22

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.
@@ -1700,7 +1700,9 @@ declare type BaseConfig = {
1700
1700
  };
1701
1701
 
1702
1702
  /**
1703
- * A base event.
1703
+ * A base OpenFin event. All OpenFin event payloads extend this type.
1704
+ *
1705
+ * @interface
1704
1706
  */
1705
1707
  declare type BaseEvent = {
1706
1708
  topic: string;
@@ -6085,7 +6087,8 @@ declare type Identity_5 = {
6085
6087
  declare type IdentityCall<AdditionalPayload = {}, Response = void> = ApiCall<AdditionalPayload & OpenFin.Identity, Response>;
6086
6088
 
6087
6089
  /**
6088
- * An Identity event.
6090
+ * An event that contains the `uuid` property of an {@link OpenFin.Identity}.
6091
+ *
6089
6092
  * @interface
6090
6093
  */
6091
6094
  declare type IdentityEvent = BaseEvent & {
@@ -9262,7 +9265,7 @@ declare type MutableWindowOptions = {
9262
9265
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
9263
9266
 
9264
9267
  /**
9265
- * A Name event.
9268
+ * An event that contains an entire {@link OpenFin.Identity}.
9266
9269
  * @interface
9267
9270
  */
9268
9271
  declare type NamedEvent = IdentityEvent & {
@@ -1700,7 +1700,9 @@ declare type BaseConfig = {
1700
1700
  };
1701
1701
 
1702
1702
  /**
1703
- * A base event.
1703
+ * A base OpenFin event. All OpenFin event payloads extend this type.
1704
+ *
1705
+ * @interface
1704
1706
  */
1705
1707
  declare type BaseEvent = {
1706
1708
  topic: string;
@@ -6085,7 +6087,8 @@ declare type Identity_5 = {
6085
6087
  declare type IdentityCall<AdditionalPayload = {}, Response = void> = ApiCall<AdditionalPayload & OpenFin.Identity, Response>;
6086
6088
 
6087
6089
  /**
6088
- * An Identity event.
6090
+ * An event that contains the `uuid` property of an {@link OpenFin.Identity}.
6091
+ *
6089
6092
  * @interface
6090
6093
  */
6091
6094
  declare type IdentityEvent = BaseEvent & {
@@ -9262,7 +9265,7 @@ declare type MutableWindowOptions = {
9262
9265
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
9263
9266
 
9264
9267
  /**
9265
- * A Name event.
9268
+ * An event that contains an entire {@link OpenFin.Identity}.
9266
9269
  * @interface
9267
9270
  */
9268
9271
  declare type NamedEvent = IdentityEvent & {
@@ -1700,7 +1700,9 @@ declare type BaseConfig = {
1700
1700
  };
1701
1701
 
1702
1702
  /**
1703
- * A base event.
1703
+ * A base OpenFin event. All OpenFin event payloads extend this type.
1704
+ *
1705
+ * @interface
1704
1706
  */
1705
1707
  declare type BaseEvent = {
1706
1708
  topic: string;
@@ -6085,7 +6087,8 @@ declare type Identity_5 = {
6085
6087
  declare type IdentityCall<AdditionalPayload = {}, Response = void> = ApiCall<AdditionalPayload & OpenFin.Identity, Response>;
6086
6088
 
6087
6089
  /**
6088
- * An Identity event.
6090
+ * An event that contains the `uuid` property of an {@link OpenFin.Identity}.
6091
+ *
6089
6092
  * @interface
6090
6093
  */
6091
6094
  declare type IdentityEvent = BaseEvent & {
@@ -9262,7 +9265,7 @@ declare type MutableWindowOptions = {
9262
9265
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
9263
9266
 
9264
9267
  /**
9265
- * A Name event.
9268
+ * An event that contains an entire {@link OpenFin.Identity}.
9266
9269
  * @interface
9267
9270
  */
9268
9271
  declare type NamedEvent = IdentityEvent & {
@@ -1720,7 +1720,9 @@ declare type BaseConfig = {
1720
1720
  };
1721
1721
 
1722
1722
  /**
1723
- * A base event.
1723
+ * A base OpenFin event. All OpenFin event payloads extend this type.
1724
+ *
1725
+ * @interface
1724
1726
  */
1725
1727
  declare type BaseEvent = {
1726
1728
  topic: string;
@@ -6231,7 +6233,8 @@ declare type Identity_5 = {
6231
6233
  declare type IdentityCall<AdditionalPayload = {}, Response = void> = ApiCall<AdditionalPayload & OpenFin.Identity, Response>;
6232
6234
 
6233
6235
  /**
6234
- * An Identity event.
6236
+ * An event that contains the `uuid` property of an {@link OpenFin.Identity}.
6237
+ *
6235
6238
  * @interface
6236
6239
  */
6237
6240
  declare type IdentityEvent = BaseEvent & {
@@ -9718,7 +9721,7 @@ declare type MutableWindowOptions = {
9718
9721
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
9719
9722
 
9720
9723
  /**
9721
- * A Name event.
9724
+ * An event that contains an entire {@link OpenFin.Identity}.
9722
9725
  * @interface
9723
9726
  */
9724
9727
  declare type NamedEvent = IdentityEvent & {
@@ -17820,6 +17820,11 @@ Object.defineProperty(application, "__esModule", { value: true });
17820
17820
 
17821
17821
  var base = {};
17822
17822
 
17823
+ /**
17824
+ * Namespace for shared event payloads and utility types common to all event emitters.
17825
+ *
17826
+ * @packageDocumentation
17827
+ */
17823
17828
  Object.defineProperty(base, "__esModule", { value: true });
17824
17829
 
17825
17830
  var externalApplication = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/node-adapter",
3
- "version": "34.78.21",
3
+ "version": "34.78.22",
4
4
  "description": "See README.md",
5
5
  "main": "out/node-adapter.js",
6
6
  "types": "out/node-adapter.d.ts",