@openfin/core 31.74.1 → 31.74.2

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.
Files changed (118) hide show
  1. package/package.json +1 -1
  2. package/src/OpenFin.d.ts +284 -253
  3. package/src/OpenFin.js +0 -2
  4. package/src/api/api-exposer/api-consumer.d.ts +28 -0
  5. package/src/api/api-exposer/api-consumer.js +28 -0
  6. package/src/api/api-exposer/api-exposer.d.ts +35 -0
  7. package/src/api/api-exposer/api-exposer.js +38 -0
  8. package/src/api/api-exposer/decorators.d.ts +10 -0
  9. package/src/api/api-exposer/decorators.js +18 -0
  10. package/src/api/api-exposer/index.d.ts +4 -0
  11. package/src/api/api-exposer/index.js +20 -0
  12. package/src/api/api-exposer/strategies/index.d.ts +1 -0
  13. package/src/api/api-exposer/strategies/index.js +17 -0
  14. package/src/api/api-exposer/strategies/openfin-channels/channels-consumer.d.ts +14 -0
  15. package/src/api/api-exposer/strategies/openfin-channels/channels-consumer.js +20 -0
  16. package/src/api/api-exposer/strategies/openfin-channels/channels-exposer.d.ts +20 -0
  17. package/src/api/api-exposer/strategies/openfin-channels/channels-exposer.js +23 -0
  18. package/src/api/api-exposer/strategies/openfin-channels/index.d.ts +2 -0
  19. package/src/api/api-exposer/strategies/openfin-channels/index.js +18 -0
  20. package/src/api/application/Factory.js +1 -2
  21. package/src/api/base.d.ts +2 -2
  22. package/src/api/events/application.d.ts +22 -22
  23. package/src/api/events/base.d.ts +6 -9
  24. package/src/api/events/channel.d.ts +5 -5
  25. package/src/api/events/emitterMap.d.ts +1 -1
  26. package/src/api/events/externalApplication.d.ts +3 -3
  27. package/src/api/events/frame.d.ts +5 -5
  28. package/src/api/events/globalHotkey.d.ts +3 -3
  29. package/src/api/events/platform.d.ts +3 -3
  30. package/src/api/events/system.d.ts +17 -17
  31. package/src/api/events/typedEventEmitter.d.ts +1 -1
  32. package/src/api/events/view.d.ts +17 -14
  33. package/src/api/events/webcontents.d.ts +24 -22
  34. package/src/api/events/window.d.ts +65 -57
  35. package/src/api/fin.d.ts +1 -1
  36. package/src/api/frame/Instance.d.ts +1 -1
  37. package/src/api/interappbus/channel/channel.d.ts +4 -4
  38. package/src/api/interappbus/channel/channel.js +3 -3
  39. package/src/api/interappbus/channel/client.d.ts +2 -2
  40. package/src/api/interappbus/channel/client.js +20 -20
  41. package/src/api/interappbus/channel/connection-manager.d.ts +1 -1
  42. package/src/api/interappbus/channel/connection-manager.js +12 -12
  43. package/src/api/interappbus/channel/index.d.ts +2 -2
  44. package/src/api/interappbus/channel/index.js +1 -1
  45. package/src/api/interappbus/channel/protocols/classic/strategy.d.ts +1 -1
  46. package/src/api/interappbus/channel/protocols/combined/strategy.d.ts +2 -2
  47. package/src/api/interappbus/channel/protocols/combined/strategy.js +5 -5
  48. package/src/api/interappbus/channel/protocols/index.d.ts +4 -4
  49. package/src/api/interappbus/channel/protocols/rtc/endpoint.d.ts +1 -1
  50. package/src/api/interappbus/channel/protocols/rtc/strategy.d.ts +1 -1
  51. package/src/api/interappbus/channel/protocols/strategy-types.d.ts +4 -4
  52. package/src/api/interappbus/channel/protocols/strategy.d.ts +3 -3
  53. package/src/api/interappbus/channel/provider.d.ts +5 -5
  54. package/src/api/interappbus/channel/provider.js +24 -24
  55. package/src/api/interop/InteropBroker.d.ts +1 -1
  56. package/src/api/interop/InteropBroker.js +6 -2
  57. package/src/api/interop/fdc3/PrivateChannelClient.d.ts +2 -1
  58. package/src/api/interop/fdc3/PrivateChannelClient.js +15 -7
  59. package/src/api/interop/fdc3/PrivateChannelProvider.d.ts +16 -2
  60. package/src/api/interop/fdc3/PrivateChannelProvider.js +80 -21
  61. package/src/api/interop/fdc3/fdc3-1.2.js +19 -4
  62. package/src/api/interop/fdc3/fdc3-2.0.d.ts +11 -10
  63. package/src/api/interop/fdc3/fdc3-2.0.js +18 -19
  64. package/src/api/interop/fdc3/shapes/fdc3v1.d.ts +3 -3
  65. package/src/api/interop/fdc3/shapes/fdc3v2.d.ts +5 -5
  66. package/src/api/interop/fdc3/utils.d.ts +17 -0
  67. package/src/api/interop/fdc3/utils.js +52 -18
  68. package/src/api/interop/fdc3/versions.d.ts +1 -1
  69. package/src/api/interop/utils.d.ts +0 -1
  70. package/src/api/interop/utils.js +1 -9
  71. package/src/api/me.d.ts +3 -3
  72. package/src/api/platform/Factory.js +5 -9
  73. package/src/api/platform/Instance.d.ts +1 -1
  74. package/src/api/platform/Instance.js +1 -1
  75. package/src/api/platform/common-utils.d.ts +1 -1
  76. package/src/api/platform/layout/Factory.d.ts +1 -1
  77. package/src/api/platform/layout/Factory.js +11 -3
  78. package/src/api/platform/layout/Instance.d.ts +9 -3
  79. package/src/api/platform/layout/Instance.js +26 -1
  80. package/src/api/platform/layout/controllers/layout-content-cache.d.ts +9 -0
  81. package/src/api/platform/layout/controllers/layout-content-cache.js +54 -0
  82. package/src/api/platform/layout/controllers/layout-entities-controller.d.ts +117 -0
  83. package/src/api/platform/layout/controllers/layout-entities-controller.js +270 -0
  84. package/src/api/platform/layout/controllers/splitter-controller.d.ts +1 -1
  85. package/src/api/platform/layout/entities/layout-entities.d.ts +144 -0
  86. package/src/api/platform/layout/entities/layout-entities.js +216 -0
  87. package/src/api/platform/layout/entities/shapes.d.ts +6 -0
  88. package/src/api/platform/layout/entities/shapes.js +2 -0
  89. package/src/api/platform/layout/layout.constants.d.ts +1 -0
  90. package/src/api/platform/layout/layout.constants.js +4 -0
  91. package/src/api/platform/layout/shapes.d.ts +4 -1
  92. package/src/api/platform/layout/utils/layout-traversal.d.ts +4 -0
  93. package/src/api/platform/layout/utils/layout-traversal.js +65 -0
  94. package/src/api/system/index.d.ts +13 -13
  95. package/src/api/view/Instance.d.ts +13 -3
  96. package/src/api/view/Instance.js +41 -4
  97. package/src/environment/browser.d.ts +1 -1
  98. package/src/environment/environment.d.ts +1 -1
  99. package/src/environment/node-env.d.ts +1 -1
  100. package/src/environment/openfin-env.d.ts +1 -1
  101. package/src/mock.d.ts +1 -1
  102. package/src/mock.js +5 -2
  103. package/src/shapes/ERROR_BOX_TYPES.d.ts +1 -1
  104. package/src/shapes/protocol.d.ts +3 -3
  105. package/src/transport/transport-errors.d.ts +2 -2
  106. package/src/transport/transport.d.ts +3 -3
  107. package/src/transport/transport.js +1 -4
  108. package/src/transport/wire.d.ts +14 -13
  109. package/src/util/channel-api-relay.d.ts +13 -0
  110. package/src/util/channel-api-relay.js +37 -0
  111. package/src/util/errors.d.ts +2 -2
  112. package/src/util/http.js +4 -2
  113. package/src/util/lazy.d.ts +16 -0
  114. package/src/util/lazy.js +26 -0
  115. package/src/util/promises.d.ts +1 -1
  116. package/src/util/reversible-map.d.ts +11 -0
  117. package/src/util/reversible-map.js +49 -0
  118. package/src/util/utilTypes.d.ts +1 -1
package/src/OpenFin.js CHANGED
@@ -1,4 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const snapshot_source_1 = require("./api/snapshot-source");
4
- const window_1 = require("./api/window");
@@ -0,0 +1,28 @@
1
+ import { ExposedProp } from "./decorators";
2
+ export type ConsumeStrategy<TMetaConsumeOptions, TPropConsumeDefinition> = {
3
+ getExposedFunctions: (options: TMetaConsumeOptions) => Promise<ExposedProp<TPropConsumeDefinition>[]>;
4
+ createFunction: (options: ExposedProp<TPropConsumeDefinition>, meta: TMetaConsumeOptions) => Function;
5
+ };
6
+ type PickOfType<T extends Record<any, any>, TTarget> = {
7
+ [key in keyof T as T[key] extends TTarget | undefined ? key : never]: T[key];
8
+ };
9
+ export type ApiClient<T extends Record<any, any>> = {
10
+ [key in keyof PickOfType<T, Function>]: (...args: Parameters<T[key]>) => ReturnType<T[key]> extends Promise<any> ? ReturnType<T[key]> : Promise<ReturnType<T[key]>>;
11
+ };
12
+ /**
13
+ * Consumer for apis exposed with {@see ApiExposer}.
14
+ *
15
+ * A strategy that matches the strategy used to expose a target API must be provided.
16
+ */
17
+ export declare class ApiConsumer<TMetaConsumeOptions = any, TPropConsumptionOptions = any> {
18
+ private strategy;
19
+ constructor(strategy: ConsumeStrategy<TMetaConsumeOptions, TPropConsumptionOptions>);
20
+ /**
21
+ * Consumes an api exposed using a given transport strategy, and generates a client
22
+ * for easy, type safe consumption of that client.
23
+ * @param options Strategy specific consumption options.
24
+ * @returns An api client matching the given type.
25
+ */
26
+ consume: <T extends Record<any, any>>(options: TMetaConsumeOptions) => Promise<ApiClient<T>>;
27
+ }
28
+ export {};
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ApiConsumer = void 0;
4
+ /**
5
+ * Consumer for apis exposed with {@see ApiExposer}.
6
+ *
7
+ * A strategy that matches the strategy used to expose a target API must be provided.
8
+ */
9
+ class ApiConsumer {
10
+ // eslint-disable-next-line
11
+ constructor(strategy) {
12
+ this.strategy = strategy;
13
+ /**
14
+ * Consumes an api exposed using a given transport strategy, and generates a client
15
+ * for easy, type safe consumption of that client.
16
+ * @param options Strategy specific consumption options.
17
+ * @returns An api client matching the given type.
18
+ */
19
+ this.consume = async (options) => {
20
+ const exposedProperties = await this.strategy.getExposedFunctions(options);
21
+ return exposedProperties.reduce((client, prop) => ({
22
+ ...client,
23
+ [prop.key]: this.strategy.createFunction(prop, options)
24
+ }), {});
25
+ };
26
+ }
27
+ }
28
+ exports.ApiConsumer = ApiConsumer;
@@ -0,0 +1,35 @@
1
+ import { ExposedProp } from './decorators';
2
+ export type ConsumptionConfig<T> = {
3
+ key: string;
4
+ options: T;
5
+ };
6
+ export type ExposeStrategy<TInstanceExposeOptions, TPropExposeOptions, TPropConsumeOptions> = {
7
+ /**
8
+ * Exposes the given function on the strategy.
9
+ */
10
+ exposeFunction: (target: Function, config: {
11
+ key: string;
12
+ options: TPropExposeOptions;
13
+ meta: TInstanceExposeOptions;
14
+ }) => Promise<TPropConsumeOptions>;
15
+ /**
16
+ * Exposes metadata to enable creation of client objects.
17
+ */
18
+ exposeMeta: (instanceOptions: TInstanceExposeOptions, props: ExposedProp<TPropConsumeOptions>[]) => Promise<void>;
19
+ };
20
+ /**
21
+ * Exposes api services on the transport of choice.
22
+ */
23
+ export declare class ApiExposer<TInstanceExposeOptions = any, TPropExposeOptions = any, TPropConsumptionOptions = any> {
24
+ private strategy;
25
+ /**
26
+ * @param strategy The expose strategy to use to expose instances.
27
+ */
28
+ constructor(strategy: ExposeStrategy<TInstanceExposeOptions, TPropExposeOptions, TPropConsumptionOptions>);
29
+ /**
30
+ * Exposes an instance of a given api on
31
+ * @param instance Instance of a class which has been decorated to indicate which functions can be exposed.
32
+ * @param instanceOptions Transport strategy specific options to use when exposing.
33
+ */
34
+ exposeInstance: (instance: Record<any, any>, instanceOptions: TInstanceExposeOptions) => Promise<void>;
35
+ }
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ApiExposer = void 0;
4
+ const decorators_1 = require("./decorators");
5
+ /**
6
+ * Exposes api services on the transport of choice.
7
+ */
8
+ class ApiExposer {
9
+ /**
10
+ * @param strategy The expose strategy to use to expose instances.
11
+ */
12
+ // eslint-disable-next-line
13
+ constructor(strategy) {
14
+ this.strategy = strategy;
15
+ /**
16
+ * Exposes an instance of a given api on
17
+ * @param instance Instance of a class which has been decorated to indicate which functions can be exposed.
18
+ * @param instanceOptions Transport strategy specific options to use when exposing.
19
+ */
20
+ this.exposeInstance = async (instance, instanceOptions) => {
21
+ const exposableProps = (0, decorators_1.getExposedProperties)(instance);
22
+ const exposedProps = await Promise.all(exposableProps.map(async ({ key, options }) => {
23
+ const customConsumptionOptions = await this.strategy.exposeFunction(instance[key].bind(instance), {
24
+ key,
25
+ options,
26
+ meta: instanceOptions
27
+ });
28
+ return {
29
+ key,
30
+ options: customConsumptionOptions
31
+ };
32
+ }));
33
+ await this.strategy.exposeMeta(instanceOptions, exposedProps);
34
+ };
35
+ }
36
+ ;
37
+ }
38
+ exports.ApiExposer = ApiExposer;
@@ -0,0 +1,10 @@
1
+ export type ExposedProp<T> = {
2
+ key: string;
3
+ options: T;
4
+ };
5
+ export declare const getExposedProperties: <T>(target: Record<any, any>) => ExposedProp<T>[];
6
+ /**
7
+ * Indicates that a class member function can be exposed using {@link ApiExposer}.
8
+ * @param options Options specific to the strategy used in {@link ApiExposer}
9
+ */
10
+ export declare const expose: <T = undefined>(options?: T) => any;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.expose = exports.getExposedProperties = void 0;
4
+ const exposedProperties = Symbol('exposedProperties');
5
+ const getExposedProperties = (target) => {
6
+ return target[exposedProperties] || target.prototype[exposedProperties] || [];
7
+ };
8
+ exports.getExposedProperties = getExposedProperties;
9
+ /**
10
+ * Indicates that a class member function can be exposed using {@link ApiExposer}.
11
+ * @param options Options specific to the strategy used in {@link ApiExposer}
12
+ */
13
+ // Returns any as decorator typing is weird.
14
+ const expose = (options) => (target, key, descriptor) => {
15
+ target[exposedProperties] = target[exposedProperties] || [];
16
+ target[exposedProperties].push({ key, descriptor, options });
17
+ };
18
+ exports.expose = expose;
@@ -0,0 +1,4 @@
1
+ export * from './api-consumer';
2
+ export * from './api-exposer';
3
+ export * from './strategies';
4
+ export * from './decorators';
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./api-consumer"), exports);
18
+ __exportStar(require("./api-exposer"), exports);
19
+ __exportStar(require("./strategies"), exports);
20
+ __exportStar(require("./decorators"), exports);
@@ -0,0 +1 @@
1
+ export * from './openfin-channels';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./openfin-channels"), exports);
@@ -0,0 +1,14 @@
1
+ import { ConsumeStrategy } from "../../api-consumer";
2
+ import { ExposedProp } from "../../decorators";
3
+ export type ChannelConsumeOptions = {
4
+ id: string;
5
+ };
6
+ export type ChannelsPropConfig = {
7
+ action: string;
8
+ };
9
+ export declare class ChannelsConsumer implements ConsumeStrategy<ChannelConsumeOptions, ChannelsPropConfig> {
10
+ private channel;
11
+ constructor(channel: any);
12
+ getExposedFunctions: (options: ChannelConsumeOptions) => Promise<ExposedProp<ChannelsPropConfig>[]>;
13
+ createFunction: (prop: ExposedProp<ChannelsPropConfig>) => Function;
14
+ }
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ChannelsConsumer = void 0;
4
+ class ChannelsConsumer {
5
+ // eslint-disable-next-line
6
+ constructor(channel) {
7
+ this.channel = channel;
8
+ this.getExposedFunctions = async (options) => {
9
+ const { id } = options;
10
+ const { props } = await this.channel.dispatch(`api-meta:${id}`);
11
+ return props;
12
+ };
13
+ this.createFunction = (prop) => (...args) => {
14
+ const { action } = prop.options;
15
+ return this.channel.dispatch(action, { args });
16
+ };
17
+ }
18
+ ;
19
+ }
20
+ exports.ChannelsConsumer = ChannelsConsumer;
@@ -0,0 +1,20 @@
1
+ import { ExposeStrategy } from '../../api-exposer';
2
+ import { ExposedProp } from '../../decorators';
3
+ import { ChannelsPropConfig } from './channels-consumer';
4
+ type ChannelInstanceExposeOptions = {
5
+ id: string;
6
+ };
7
+ export type ChannelsPropOptions = {
8
+ action?: string;
9
+ } | undefined;
10
+ export declare class ChannelsExposer implements ExposeStrategy<ChannelInstanceExposeOptions, ChannelsPropOptions, ChannelsPropConfig> {
11
+ private channelProviderOrClient;
12
+ constructor(channelProviderOrClient: any);
13
+ exposeFunction: (target: Function, config: {
14
+ key: string;
15
+ options: ChannelsPropOptions;
16
+ meta: ChannelInstanceExposeOptions;
17
+ }) => Promise<ChannelsPropConfig>;
18
+ exposeMeta: ({ id }: ChannelInstanceExposeOptions, props: ExposedProp<ChannelsPropOptions>[]) => Promise<void>;
19
+ }
20
+ export {};
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ChannelsExposer = void 0;
4
+ class ChannelsExposer {
5
+ // eslint-disable-next-line
6
+ constructor(channelProviderOrClient) {
7
+ this.channelProviderOrClient = channelProviderOrClient;
8
+ this.exposeFunction = async (target, config) => {
9
+ const { key, options, meta } = config;
10
+ const { id } = meta;
11
+ const action = `${id}.${(options === null || options === void 0 ? void 0 : options.action) || key}`;
12
+ await this.channelProviderOrClient.register(action, async ({ args }) => {
13
+ return target(...args);
14
+ });
15
+ return { action };
16
+ };
17
+ this.exposeMeta = async ({ id }, props) => {
18
+ const action = `api-meta:${id}`;
19
+ await this.channelProviderOrClient.register(action, () => ({ props }));
20
+ };
21
+ }
22
+ }
23
+ exports.ChannelsExposer = ChannelsExposer;
@@ -0,0 +1,2 @@
1
+ export * from './channels-consumer';
2
+ export * from './channels-exposer';
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./channels-consumer"), exports);
18
+ __exportStar(require("./channels-exposer"), exports);
@@ -203,8 +203,7 @@ class ApplicationModule extends base_1.Base {
203
203
  // we do not want to expose this error, just continue if this analytics-only call fails
204
204
  });
205
205
  const app = await this._createFromManifest(manifestUrl);
206
- // eslint-disable-next-line @typescript-eslint/ban-ts-comment
207
- // @ts-ignore using private method without warning.
206
+ // @ts-expect-error using private method without warning.
208
207
  await app._run(opts); // eslint-disable-line no-underscore-dangle
209
208
  return app;
210
209
  }
package/src/api/base.d.ts CHANGED
@@ -4,8 +4,8 @@ import { Transport } from '../transport/transport';
4
4
  import type * as OpenFin from '../OpenFin';
5
5
  import Fin from './fin';
6
6
  import { BaseEvent, EventHandler } from './events/base';
7
- declare type ApplicationIdentity = OpenFin.ApplicationIdentity;
8
- declare type Identity = OpenFin.Identity;
7
+ type ApplicationIdentity = OpenFin.ApplicationIdentity;
8
+ type Identity = OpenFin.Identity;
9
9
  export declare class Base {
10
10
  wire: Transport;
11
11
  constructor(wire: Transport);
@@ -2,7 +2,7 @@ import type * as OpenFin from '../../OpenFin';
2
2
  import { IdentityEvent, NamedEvent, PropagatedEvent } from './base';
3
3
  import { PropagatedWindowEvent } from './window';
4
4
  import { PropagatedViewEvent } from './view';
5
- export declare type CrashedEvent = NamedEvent & {
5
+ export type CrashedEvent = NamedEvent & {
6
6
  type: 'crashed';
7
7
  reason: 'normal-termination' | 'abnormal-termination' | 'killed' | 'crashed' | 'still-running' | 'launch-failed' | 'out-of-memory' | 'integrity-failure';
8
8
  exitCode: number;
@@ -11,12 +11,12 @@ export declare type CrashedEvent = NamedEvent & {
11
11
  exitCode: number;
12
12
  };
13
13
  };
14
- export declare type RunRequestedEvent = IdentityEvent & {
14
+ export type RunRequestedEvent = IdentityEvent & {
15
15
  type: 'run-requested';
16
16
  userAppConfigArgs: Record<string, any>;
17
17
  manifest: OpenFin.ManifestInfo;
18
18
  };
19
- export declare type TrayIconClickedEvent = IdentityEvent & {
19
+ export type TrayIconClickedEvent = IdentityEvent & {
20
20
  type: 'tray-icon-clicked';
21
21
  button: 0 | 1 | 2;
22
22
  bounds: OpenFin.Rectangle;
@@ -24,56 +24,56 @@ export declare type TrayIconClickedEvent = IdentityEvent & {
24
24
  y: number;
25
25
  monitorInfo: any;
26
26
  };
27
- export declare type WindowAlertRequestedEvent = NamedEvent & {
27
+ export type WindowAlertRequestedEvent = NamedEvent & {
28
28
  type: 'window-alert-requested';
29
29
  };
30
- export declare type WindowCreatedEvent = NamedEvent & {
30
+ export type WindowCreatedEvent = NamedEvent & {
31
31
  type: 'window-created';
32
32
  };
33
- export declare type WindowEndLoadEvent = NamedEvent & {
33
+ export type WindowEndLoadEvent = NamedEvent & {
34
34
  type: 'window-end-load';
35
35
  };
36
- export declare type WindowNotRespondingEvent = NamedEvent & {
36
+ export type WindowNotRespondingEvent = NamedEvent & {
37
37
  type: 'window-not-responding';
38
38
  };
39
- export declare type WindowRespondingEvent = NamedEvent & {
39
+ export type WindowRespondingEvent = NamedEvent & {
40
40
  type: 'window-responding';
41
41
  };
42
- export declare type WindowStartLoadEvent = NamedEvent & {
42
+ export type WindowStartLoadEvent = NamedEvent & {
43
43
  type: 'window-start-load';
44
44
  };
45
45
  /**
46
46
  * A Window event that is natively published at the Application level (not Window).
47
47
  */
48
- export declare type ApplicationWindowEvent = WindowAlertRequestedEvent | WindowCreatedEvent | WindowEndLoadEvent | WindowNotRespondingEvent | WindowRespondingEvent | WindowStartLoadEvent;
49
- export declare type ClosedEvent = IdentityEvent & {
48
+ export type ApplicationWindowEvent = WindowAlertRequestedEvent | WindowCreatedEvent | WindowEndLoadEvent | WindowNotRespondingEvent | WindowRespondingEvent | WindowStartLoadEvent;
49
+ export type ClosedEvent = IdentityEvent & {
50
50
  type: 'closed';
51
51
  };
52
- export declare type ApplicationConnectedEvent = IdentityEvent & {
52
+ export type ApplicationConnectedEvent = IdentityEvent & {
53
53
  type: 'connected';
54
54
  };
55
- export declare type InitializedEvent = IdentityEvent & {
55
+ export type InitializedEvent = IdentityEvent & {
56
56
  type: 'initialized';
57
57
  };
58
- export declare type ManifestChangedEvent = IdentityEvent & {
58
+ export type ManifestChangedEvent = IdentityEvent & {
59
59
  type: 'manifest-changed';
60
60
  };
61
- export declare type NotRespondingEvent = IdentityEvent & {
61
+ export type NotRespondingEvent = IdentityEvent & {
62
62
  type: 'not-responding';
63
63
  };
64
- export declare type RespondingEvent = IdentityEvent & {
64
+ export type RespondingEvent = IdentityEvent & {
65
65
  type: 'responding';
66
66
  };
67
- export declare type StartedEvent = IdentityEvent & {
67
+ export type StartedEvent = IdentityEvent & {
68
68
  type: 'started';
69
69
  };
70
70
  /**
71
71
  * An Application event that does propagate to (republish on) parent topics.
72
72
  */
73
- export declare type WillPropagateApplicationEvent = ClosedEvent | ApplicationConnectedEvent | CrashedEvent | InitializedEvent | ManifestChangedEvent | NotRespondingEvent | RespondingEvent | RunRequestedEvent | StartedEvent | TrayIconClickedEvent;
74
- export declare type ApplicationEvent = {
73
+ export type WillPropagateApplicationEvent = ClosedEvent | ApplicationConnectedEvent | CrashedEvent | InitializedEvent | ManifestChangedEvent | NotRespondingEvent | RespondingEvent | RunRequestedEvent | StartedEvent | TrayIconClickedEvent;
74
+ export type ApplicationEvent = {
75
75
  topic: 'application';
76
76
  } & (PropagatedViewEvent | PropagatedWindowEvent | ApplicationWindowEvent | WillPropagateApplicationEvent);
77
- export declare type ApplicationEventType = ApplicationEvent['type'];
78
- export declare type PropagatedApplicationEvent = PropagatedEvent<'application', WillPropagateApplicationEvent> | ApplicationWindowEvent;
79
- export declare type PropagatedApplicationEventType = PropagatedApplicationEvent['type'];
77
+ export type ApplicationEventType = ApplicationEvent['type'];
78
+ export type PropagatedApplicationEvent = PropagatedEvent<'application', WillPropagateApplicationEvent> | ApplicationWindowEvent;
79
+ export type PropagatedApplicationEventType = PropagatedApplicationEvent['type'];
@@ -1,35 +1,32 @@
1
- import type * as OpenFin from '../../OpenFin';
2
1
  /**
3
2
  * Modifies an event key to reflect propagation by prefixing with the topic.
4
3
  */
5
- export declare type PropagatedEventType<Topic extends string, Type extends string> = `${Topic}-${Type}`;
4
+ export type PropagatedEventType<Topic extends string, Type extends string> = `${Topic}-${Type}`;
6
5
  /**
7
6
  * Modifies an event shape to reflect propagation to a parent topic. The 'type' field
8
7
  * is prefixed with the original topic, and a new property is added with the original topic's identity.
9
8
  */
10
- export declare type PropagatedEvent<Topic extends string, Event extends {
9
+ export type PropagatedEvent<Topic extends string, Event extends {
11
10
  type: string;
12
11
  }> = Event extends infer E extends {
13
12
  type: string;
14
13
  } ? Omit<E, 'type'> & {
15
14
  type: PropagatedEventType<Topic, E['type']>;
16
- } & {
17
- [topic in `${Topic}Identity`]: OpenFin.Identity;
18
15
  } : never;
19
16
  /**
20
17
  * Handler for an event on an EventEmitter; selects the correct type for the event
21
18
  * payload from the provided union based on the provided string literal type.
22
19
  */
23
- export declare type EventHandler<EmitterEvent extends BaseEvent, EventType extends string> = (payload: Extract<EmitterEvent, {
20
+ export type EventHandler<EmitterEvent extends BaseEvent, EventType extends string> = (payload: Extract<EmitterEvent, {
24
21
  type: EventType;
25
22
  }>, ...args: any[]) => void;
26
- export declare type BaseEvent = {
23
+ export type BaseEvent = {
27
24
  topic: string;
28
25
  type: string;
29
26
  };
30
- export declare type IdentityEvent = BaseEvent & {
27
+ export type IdentityEvent = BaseEvent & {
31
28
  uuid: string;
32
29
  };
33
- export declare type NamedEvent = IdentityEvent & {
30
+ export type NamedEvent = IdentityEvent & {
34
31
  name: string;
35
32
  };
@@ -1,15 +1,15 @@
1
1
  import { NamedEvent } from './base';
2
- export declare type BaseChannelEvent = NamedEvent & {
2
+ export type BaseChannelEvent = NamedEvent & {
3
3
  channelName: string;
4
4
  channelId: string;
5
5
  };
6
- export declare type ChannelConnectedEvent = BaseChannelEvent & {
6
+ export type ChannelConnectedEvent = BaseChannelEvent & {
7
7
  type: 'connected';
8
8
  };
9
- export declare type ChannelDisconnectedEvent = BaseChannelEvent & {
9
+ export type ChannelDisconnectedEvent = BaseChannelEvent & {
10
10
  type: 'disconnected';
11
11
  };
12
- export declare type ChannelEvent = {
12
+ export type ChannelEvent = {
13
13
  topic: 'channel';
14
14
  } & (ChannelConnectedEvent | ChannelDisconnectedEvent);
15
- export declare type ChannelEventType = ChannelEvent['type'];
15
+ export type ChannelEventType = ChannelEvent['type'];
@@ -8,4 +8,4 @@ export declare class EmitterMap {
8
8
  has(keys: EmitterAccessor): boolean;
9
9
  delete(keys: EmitterAccessor): boolean;
10
10
  }
11
- export declare type EmitterAccessor = string[];
11
+ export type EmitterAccessor = string[];
@@ -1,10 +1,10 @@
1
1
  import { BaseEvent } from './base';
2
- export declare type ExternalApplicationConnectedEvent = BaseEvent & {
2
+ export type ExternalApplicationConnectedEvent = BaseEvent & {
3
3
  type: 'connected';
4
4
  };
5
- export declare type ExternalApplicationDisconnectedEvent = BaseEvent & {
5
+ export type ExternalApplicationDisconnectedEvent = BaseEvent & {
6
6
  type: 'disconnected';
7
7
  };
8
- export declare type ExternalApplicationEvent = {
8
+ export type ExternalApplicationEvent = {
9
9
  topic: 'externalapplication';
10
10
  } & (ExternalApplicationConnectedEvent | ExternalApplicationDisconnectedEvent);
@@ -1,15 +1,15 @@
1
1
  import { NamedEvent } from './base';
2
- export declare type BaseFrameEvent = NamedEvent & {
2
+ export type BaseFrameEvent = NamedEvent & {
3
3
  entityType: 'iframe';
4
4
  frameName: string;
5
5
  };
6
- export declare type FrameConnectedEvent = BaseFrameEvent & {
6
+ export type FrameConnectedEvent = BaseFrameEvent & {
7
7
  type: 'connected';
8
8
  };
9
- export declare type FrameDisconnectedEvent = BaseFrameEvent & {
9
+ export type FrameDisconnectedEvent = BaseFrameEvent & {
10
10
  type: 'disconnected';
11
11
  };
12
- export declare type FrameEvent = {
12
+ export type FrameEvent = {
13
13
  topic: 'frame';
14
14
  } & (FrameConnectedEvent | FrameDisconnectedEvent);
15
- export declare type FrameEventType = FrameEvent['type'];
15
+ export type FrameEventType = FrameEvent['type'];
@@ -1,11 +1,11 @@
1
1
  import { BaseEvent } from './base';
2
- export declare type RegisteredEvent = BaseEvent & {
2
+ export type RegisteredEvent = BaseEvent & {
3
3
  type: 'registered';
4
4
  };
5
- export declare type UnregisteredEvent = BaseEvent & {
5
+ export type UnregisteredEvent = BaseEvent & {
6
6
  type: 'unregistered';
7
7
  };
8
- export declare type GlobalHotkeyEvent = {
8
+ export type GlobalHotkeyEvent = {
9
9
  topic: 'global-hotkey';
10
10
  hotkey: 'string';
11
11
  } & (RegisteredEvent | UnregisteredEvent);
@@ -1,11 +1,11 @@
1
1
  import { ApplicationEvent } from './application';
2
2
  import { BaseEvent } from './base';
3
- export declare type PlatformApiReadyEvent = BaseEvent & {
3
+ export type PlatformApiReadyEvent = BaseEvent & {
4
4
  topic: 'application';
5
5
  type: 'platform-api-ready';
6
6
  };
7
- export declare type PlatformSnapshotAppliedEvent = BaseEvent & {
7
+ export type PlatformSnapshotAppliedEvent = BaseEvent & {
8
8
  topic: 'application';
9
9
  type: 'platform-snapshot-applied';
10
10
  };
11
- export declare type PlatformEvent = ApplicationEvent | PlatformApiReadyEvent | PlatformSnapshotAppliedEvent;
11
+ export type PlatformEvent = ApplicationEvent | PlatformApiReadyEvent | PlatformSnapshotAppliedEvent;