@openfin/workspace 24.0.0 → 24.0.1
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/client-api-platform/src/init/override-callback/dialogs.d.ts +1 -0
- package/client-api-platform/src/shapes.d.ts +5 -0
- package/common/src/api/protocol/workspace-platform.d.ts +1 -0
- package/common/src/utils/env.d.ts +1 -1
- package/common/src/utils/window.d.ts +1 -0
- package/common/src/utils/workspace-modals.d.ts +1 -0
- package/externals.report.json +16 -16
- 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
|
@@ -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.
|
|
10
|
+
export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.Identity | OpenFin.Platform | OpenFin.View | OpenFin.Application>;
|
|
11
11
|
export declare const enterpriseAppDirectoryChannelClient: () => Promise<OpenFin.ChannelClient>;
|
|
12
12
|
export declare function getResults(payload: {
|
|
13
13
|
req: SearchSitesRequest;
|
|
@@ -2,4 +2,5 @@ import type OpenFin from '@openfin/core';
|
|
|
2
2
|
import { IntentResolverResponse, ShowIntentsResolverModalRequest, ShowQuitPlatformDialogRequest, ShowUpdateVersionModalRequest } from '../../../../client-api-platform/src/shapes';
|
|
3
3
|
export declare const showQuitPlatformDialogInternal: (req: ShowQuitPlatformDialogRequest, identity: OpenFin.ProviderIdentity | OpenFin.ClientIdentity) => Promise<void>;
|
|
4
4
|
export declare const showUpdateVersionModalInternal: (req: ShowUpdateVersionModalRequest, identity: OpenFin.ProviderIdentity | OpenFin.ClientIdentity) => Promise<void>;
|
|
5
|
+
export declare const showApplyAndPublishModalInternal: (_identity: OpenFin.ProviderIdentity | OpenFin.ClientIdentity) => Promise<boolean>;
|
|
5
6
|
export declare const showIntentsResolverModalInternal: (req: ShowIntentsResolverModalRequest) => Promise<IntentResolverResponse>;
|
|
@@ -1891,6 +1891,11 @@ export interface WorkspacePlatformModule extends OpenFin.Platform {
|
|
|
1891
1891
|
* @internal
|
|
1892
1892
|
*/
|
|
1893
1893
|
_showUpdateVersionModal(req: ShowUpdateVersionModalRequest): Promise<void>;
|
|
1894
|
+
/**
|
|
1895
|
+
* Shows the Apply and Publish modal (unsaved Supertab changes).
|
|
1896
|
+
* @internal
|
|
1897
|
+
*/
|
|
1898
|
+
_showApplyAndPublishModal(): Promise<boolean>;
|
|
1894
1899
|
/**
|
|
1895
1900
|
* Launch an application.
|
|
1896
1901
|
*
|
|
@@ -96,6 +96,7 @@ export declare enum WorkspacePlatformChannelAction {
|
|
|
96
96
|
FocusAndExpandSearchInternal = "focusAndExpandSearchInternal",// Enterprise
|
|
97
97
|
SendUpdateVersionModalResponseInternal = "sendUpdateVersionModalResponseInternal",// Enterprise
|
|
98
98
|
ShowUpdateVersionModalInternal = "showUpdateVersionModalInternal",// Enterprise
|
|
99
|
+
ShowApplyAndPublishModalInternal = "showApplyAndPublishModalInternal",// Enterprise
|
|
99
100
|
GetNotificationIndicatorColorsInternal = "getNotificationIndicatorColorsInternal"
|
|
100
101
|
}
|
|
101
102
|
export type PlatFormSupportedFeatures = boolean | {
|
|
@@ -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;
|
|
@@ -22,6 +22,7 @@ export declare enum WindowName {
|
|
|
22
22
|
EnterpriseBookmarkDialogWindow = "openfin-enterprise-bookmark-dialog",
|
|
23
23
|
ZoomControlsDialog = "here-zoom-controls-dialog",
|
|
24
24
|
UpdateVersionModal = "here-update-version-modal",
|
|
25
|
+
ApplyAndPublishModal = "here-apply-and-publish-modal",
|
|
25
26
|
DesktopSignalsModal = "here-desktop-signals-modal",
|
|
26
27
|
IntentsResolverModal = "here-intents-resolver-modal"
|
|
27
28
|
}
|
|
@@ -34,6 +34,7 @@ export declare const showUpdateVersionModal: ({ identity, title, description }:
|
|
|
34
34
|
title: string;
|
|
35
35
|
description: string;
|
|
36
36
|
}) => Promise<ModalResponseEvent["data"]>;
|
|
37
|
+
export declare const showApplyAndPublishModal: (identity: OpenFin.Identity) => Promise<boolean>;
|
|
37
38
|
/**
|
|
38
39
|
* Shows the intents resolver modal and returns the user's selection
|
|
39
40
|
* @param request - The request containing modal configuration
|
package/externals.report.json
CHANGED
|
@@ -7,6 +7,14 @@
|
|
|
7
7
|
"issuer": "client-api/src/notifications.ts"
|
|
8
8
|
}
|
|
9
9
|
],
|
|
10
|
+
"@openfin/microsoft365": [
|
|
11
|
+
{
|
|
12
|
+
"type": "explicit",
|
|
13
|
+
"version": "^1.1.0",
|
|
14
|
+
"packageName": "client-api/package.json",
|
|
15
|
+
"issuer": "client-api/src/integrations/microsoft.ts"
|
|
16
|
+
}
|
|
17
|
+
],
|
|
10
18
|
"title-case": [
|
|
11
19
|
{
|
|
12
20
|
"type": "explicit",
|
|
@@ -21,14 +29,6 @@
|
|
|
21
29
|
"issuer": "common/src/utils/color-linking.ts"
|
|
22
30
|
}
|
|
23
31
|
],
|
|
24
|
-
"@openfin/microsoft365": [
|
|
25
|
-
{
|
|
26
|
-
"type": "explicit",
|
|
27
|
-
"version": "^1.1.0",
|
|
28
|
-
"packageName": "client-api/package.json",
|
|
29
|
-
"issuer": "client-api/src/integrations/microsoft.ts"
|
|
30
|
-
}
|
|
31
|
-
],
|
|
32
32
|
"lodash.debounce": [
|
|
33
33
|
{
|
|
34
34
|
"type": "explicit",
|
|
@@ -59,6 +59,14 @@
|
|
|
59
59
|
"issuer": "common/src/api/i18next.ts"
|
|
60
60
|
}
|
|
61
61
|
],
|
|
62
|
+
"lodash.clonedeep": [
|
|
63
|
+
{
|
|
64
|
+
"type": "explicit",
|
|
65
|
+
"version": "4.5.0",
|
|
66
|
+
"packageName": "common/package.json",
|
|
67
|
+
"issuer": "common/src/utils/layout.ts"
|
|
68
|
+
}
|
|
69
|
+
],
|
|
62
70
|
"dexie": [
|
|
63
71
|
{
|
|
64
72
|
"type": "root-implicit",
|
|
@@ -84,13 +92,5 @@
|
|
|
84
92
|
"packageName": "common/package.json",
|
|
85
93
|
"issuer": "common/src/utils/create-and-migrate-ibd-store.ts"
|
|
86
94
|
}
|
|
87
|
-
],
|
|
88
|
-
"lodash.clonedeep": [
|
|
89
|
-
{
|
|
90
|
-
"type": "explicit",
|
|
91
|
-
"version": "4.5.0",
|
|
92
|
-
"packageName": "common/package.json",
|
|
93
|
-
"issuer": "common/src/utils/layout.ts"
|
|
94
|
-
}
|
|
95
95
|
]
|
|
96
96
|
}
|