@openfin/workspace 20.3.0 → 20.3.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.
- package/client-api-platform/src/api/app-directory.d.ts +1 -1
- package/common/src/api/overrides.d.ts +6 -0
- package/common/src/utils/env.d.ts +1 -1
- package/common/src/utils/route.d.ts +4 -4
- package/home.js +1 -1
- package/home.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/notifications.js +1 -1
- package/notifications.js.map +1 -1
- package/package.json +1 -1
- package/store.js +1 -1
- package/store.js.map +1 -1
|
@@ -6,7 +6,7 @@ import type { LaunchAppRequest, SearchSitesRequest, SearchSitesResponse, Site }
|
|
|
6
6
|
* @param app the app directory entry.
|
|
7
7
|
* @param opts launch options.
|
|
8
8
|
*/
|
|
9
|
-
export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.
|
|
9
|
+
export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.Identity | OpenFin.Platform | OpenFin.View | OpenFin.Application>;
|
|
10
10
|
export declare const enterpriseAppDirectoryChannelClient: () => Promise<OpenFin.ChannelClient>;
|
|
11
11
|
export declare function getResults(payload: {
|
|
12
12
|
req: SearchSitesRequest;
|
|
@@ -16,6 +16,12 @@ export interface Overrides {
|
|
|
16
16
|
disableOpenFinAnalytics: boolean;
|
|
17
17
|
analyticsEndpoint: string;
|
|
18
18
|
translationOverridesUrl: string;
|
|
19
|
+
/**
|
|
20
|
+
* WRK-4846
|
|
21
|
+
* This property is internal but is being temporarily exposed for Wells Fargo.
|
|
22
|
+
* It will be removed once Workspace adopts the fix in Runtime version 38.
|
|
23
|
+
*/
|
|
24
|
+
displayViewTabDefaultIcon: boolean;
|
|
19
25
|
}
|
|
20
26
|
export declare function getManifestOverrides(): Promise<Partial<Overrides>>;
|
|
21
27
|
export declare function getOverrides(): Promise<Partial<Overrides>>;
|
|
@@ -11,7 +11,7 @@ export declare const isDocumentDefined: boolean;
|
|
|
11
11
|
export declare const isWindowDefinedWithIndexDB: boolean;
|
|
12
12
|
export declare const finUUID: string;
|
|
13
13
|
export declare const finName: string;
|
|
14
|
-
export declare const finEntityType: "" | "
|
|
14
|
+
export declare const finEntityType: "" | "view" | "window";
|
|
15
15
|
export declare const isEnvLocal: boolean;
|
|
16
16
|
export declare const isEnvDev: boolean;
|
|
17
17
|
export declare const isEnvStaging: boolean;
|
|
@@ -25,10 +25,10 @@ declare enum BrowserRoute {
|
|
|
25
25
|
ResponseModal = "/popup-menu/response-modal/",
|
|
26
26
|
CloseConfirmationModal = "/popup-menu/close-confirmation-modal/",
|
|
27
27
|
EnterpriseBrowser = "/enterprise/",
|
|
28
|
-
EnterpriseContextMenu = "/
|
|
29
|
-
EnterpriseBookmarkDialog = "/
|
|
30
|
-
DropdownMenu = "/
|
|
31
|
-
EnterpriseDock = "/
|
|
28
|
+
EnterpriseContextMenu = "/context-menu/",
|
|
29
|
+
EnterpriseBookmarkDialog = "/bookmark-dialog/",
|
|
30
|
+
DropdownMenu = "/dropdown-menu/",
|
|
31
|
+
EnterpriseDock = "/dock/"
|
|
32
32
|
}
|
|
33
33
|
declare const PageRoute: {
|
|
34
34
|
Browser: BrowserRoute.Browser;
|