@openfin/workspace-platform 23.0.8 → 23.0.9

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.View | OpenFin.Platform | OpenFin.Application>;
10
+ export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.Identity | OpenFin.Application | OpenFin.View | OpenFin.Platform>;
11
11
  export declare const enterpriseAppDirectoryChannelClient: () => Promise<OpenFin.ChannelClient>;
12
12
  export declare function getResults(payload: {
13
13
  req: SearchSitesRequest;
@@ -156,6 +156,7 @@ export declare function getModalWindows(): Promise<OpenFin.Window[]>;
156
156
  * Returns true if the OpenFin window for the provided identity is running.
157
157
  * */
158
158
  export declare const isWindowRunning: (identity: WindowIdentity) => Promise<boolean>;
159
+ export declare const isApplicationRunning: (uuid: string) => Promise<boolean>;
159
160
  /**
160
161
  * Check if Storefront window is running.
161
162
  * @returns true if the Storefront window is running.
@@ -163,7 +164,7 @@ export declare const isWindowRunning: (identity: WindowIdentity) => Promise<bool
163
164
  export declare const isStorefrontWindowRunning: () => Promise<boolean>;
164
165
  export declare const isDockWindowRunning: () => Promise<boolean>;
165
166
  export declare const isHomeWindowRunning: () => Promise<boolean>;
166
- export declare const isNotificationCenterWindowRunning: () => Promise<boolean>;
167
+ export declare const isNotificationCenterRunning: () => Promise<boolean>;
167
168
  export declare const showAndFocusStorefront: () => Promise<void>;
168
169
  export declare const showAndFocusDock: () => Promise<void>;
169
170
  export declare const getDisableMultiplePagesOption: (identity: WindowIdentity) => Promise<any>;