@openfin/workspace-platform 22.3.1 → 22.3.3

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.
@@ -7,7 +7,7 @@ import type { LaunchAppRequest, SearchSitesRequest, SearchSitesResponse, Site }
7
7
  * @param app the app directory entry.
8
8
  * @param opts launch options.
9
9
  */
10
- export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.Identity | OpenFin.Application | OpenFin.View | OpenFin.Platform>;
10
+ export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.Identity | OpenFin.View | OpenFin.Platform | OpenFin.Application>;
11
11
  export declare const enterpriseAppDirectoryChannelClient: () => Promise<OpenFin.ChannelClient>;
12
12
  export declare function getResults(payload: {
13
13
  req: SearchSitesRequest;
@@ -1,4 +1,5 @@
1
1
  import type OpenFin from '@openfin/core';
2
- import { SendUpdateVersionModalResponsePayload } from '../../../client-api-platform/src/shapes';
2
+ import { AboutPageConfig, SendUpdateVersionModalResponsePayload } from '../../../client-api-platform/src/shapes';
3
3
  export declare const enterpriseModalChannelClient: () => Promise<OpenFin.ChannelClient>;
4
4
  export declare function sendUpdateVersionModalResponse(payload: SendUpdateVersionModalResponsePayload): Promise<void>;
5
+ export declare const showAboutPagePopup: (payload: AboutPageConfig) => Promise<OpenFin.Window>;
@@ -43,7 +43,7 @@ export interface ResponseModalOptions {
43
43
  content: ResponseModalContent;
44
44
  parameters?: URLSearchParams;
45
45
  }
46
- export declare function createMenuPosition(windowOptions: OptionalExceptFor<OpenFin.WindowOptions, 'x' | 'y' | 'defaultWidth'>): Promise<{
46
+ export declare function createMenuPosition(windowOptions: OptionalExceptFor<OpenFin.WindowOptions, 'x' | 'y'>): Promise<{
47
47
  top: number;
48
48
  left: number;
49
49
  }>;
@@ -28,6 +28,7 @@ declare enum BrowserRoute {
28
28
  EnterpriseLandingPage = "/enterprise/landing/",
29
29
  EnterpriseContextMenu = "/context-menu/",
30
30
  EnterpriseBookmarkDialog = "/bookmark-dialog/",
31
+ EnterpriseAboutPage = "/popup-menu/about/",
31
32
  DropdownMenu = "/dropdown-menu/",
32
33
  EnterpriseDock = "/dock/",
33
34
  ZoomControlsDialog = "/zoom-controls-dialog/"
@@ -46,6 +47,7 @@ declare const PageRoute: {
46
47
  EnterpriseLandingPage: BrowserRoute.EnterpriseLandingPage;
47
48
  EnterpriseContextMenu: BrowserRoute.EnterpriseContextMenu;
48
49
  EnterpriseBookmarkDialog: BrowserRoute.EnterpriseBookmarkDialog;
50
+ EnterpriseAboutPage: BrowserRoute.EnterpriseAboutPage;
49
51
  DropdownMenu: BrowserRoute.DropdownMenu;
50
52
  EnterpriseDock: BrowserRoute.EnterpriseDock;
51
53
  ZoomControlsDialog: BrowserRoute.ZoomControlsDialog;
@@ -17,7 +17,8 @@ export declare enum WindowName {
17
17
  DockCompanion = "openfin-dock-companion",
18
18
  AICompanionPrefix = "openfin-ai-companion-",
19
19
  UpdateVersionModal = "here-update-version-modal",
20
- ZoomControlsDialog = "here-zoom-controls-dialog"
20
+ ZoomControlsDialog = "here-zoom-controls-dialog",
21
+ AboutPageWindow = "here-about-page"
21
22
  }
22
23
  export interface WindowIdentity {
23
24
  uuid: ApplicationUUID | string;