@openfin/workspace-platform 10.2.3 → 10.2.4
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/README.md +1 -1
- package/client-api/src/shapes/store.d.ts +2 -2
- package/client-api-platform/src/api/app-directory.d.ts +1 -1
- package/client-api-platform/src/api/pages/index.d.ts +1 -0
- package/client-api-platform/src/shapes.d.ts +4 -4
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ Run `npm i -E @openfin/workspace-platform`.
|
|
|
11
11
|
## Workspace Platform API documentation
|
|
12
12
|
|
|
13
13
|
- [Overview](https://developers.openfin.co/of-docs/docs/workspace-sdk)
|
|
14
|
-
- [API Reference](https://
|
|
14
|
+
- [API Reference](https://cdn.openfin.co/workspace/docs/platform/latest/index.html)
|
|
15
15
|
- [Example projects using Workspace Platform](https://github.com/built-on-openfin/workspace-starter)
|
|
16
16
|
|
|
17
17
|
## Code examples
|
|
@@ -380,7 +380,7 @@ export interface StorefrontAPI {
|
|
|
380
380
|
* const myStorefrontProvider: StorefrontProvider = {
|
|
381
381
|
* id: "my-storefront-id"
|
|
382
382
|
* title: "My StorefrontProvider"
|
|
383
|
-
* icon: "https://
|
|
383
|
+
* icon: "https://cdn.openfin.co/demos/notifications/generator/images/icon-blue.png",
|
|
384
384
|
* getApps: () => {...},
|
|
385
385
|
* getNavigation: () => {...},
|
|
386
386
|
* getLandingPage: () => {...},
|
|
@@ -406,7 +406,7 @@ export interface StorefrontAPI {
|
|
|
406
406
|
* const myStorefrontProvider: StorefrontProvider = {
|
|
407
407
|
* id: "my-storefront-id"
|
|
408
408
|
* title: "My StoreFrontProvider"
|
|
409
|
-
* icon: "https://
|
|
409
|
+
* icon: "https://cdn.openfin.co/demos/notifications/generator/images/icon-blue.png",
|
|
410
410
|
* getApps: () => {...},
|
|
411
411
|
* getNavigation: () => {...},
|
|
412
412
|
* getLandingPage: () => {...},
|
|
@@ -5,4 +5,4 @@ import type { LaunchAppRequest } from '../shapes';
|
|
|
5
5
|
* @param app the app directory entry.
|
|
6
6
|
* @param opts launch options.
|
|
7
7
|
*/
|
|
8
|
-
export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | import("@openfin/core/src/api/view").View | import("@openfin/core/src/api/application").Application | import("@openfin/core/src/api/platform").Platform
|
|
8
|
+
export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | import("@openfin/core/src/api/view").View | OpenFin.Identity | import("@openfin/core/src/api/application").Application | import("@openfin/core/src/api/platform").Platform>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="@openfin/core" />
|
|
1
2
|
import type { AttachedPage, AttachPagesToWindowPayload, DetachPagesFromWindowPayload, ReorderPagesForWindowPayload, SetActivePageForWindowPayload, UpdatePageForWindowPayload } from '../../../../common/src/api/pages/shapes';
|
|
2
3
|
import type { CreateSavedPageRequest, Page, UpdateSavedPageRequest } from '../../../../client-api-platform/src/shapes';
|
|
3
4
|
/**
|
|
@@ -1038,8 +1038,8 @@ export interface WorkspacePlatformModule extends OpenFin.Platform {
|
|
|
1038
1038
|
* manifestType: AppManifestType.Manifest,
|
|
1039
1039
|
* icons:[
|
|
1040
1040
|
* {
|
|
1041
|
-
* icon: "https://
|
|
1042
|
-
* src: "https://
|
|
1041
|
+
* icon: "https://cdn.openfin.co/demos/notifications/generator/images/icon-blue.png",
|
|
1042
|
+
* src: "https://cdn.openfin.co/demos/notifications/generator/images/icon-blue.png",
|
|
1043
1043
|
* type: "ico",
|
|
1044
1044
|
* },
|
|
1045
1045
|
* ]
|
|
@@ -1242,7 +1242,7 @@ export interface WorkspacePlatformInitConfig {
|
|
|
1242
1242
|
overrideCallback?: WorkspacePlatformOverrideCallback;
|
|
1243
1243
|
/**
|
|
1244
1244
|
* Override workspace platform interop behavior
|
|
1245
|
-
* https://
|
|
1245
|
+
* https://cdn.openfin.co/docs/javascript/stable/InteropBroker.html
|
|
1246
1246
|
*/
|
|
1247
1247
|
interopOverride?: OpenFin.OverrideCallback<OpenFin.InteropBroker, OpenFin.InteropBroker>;
|
|
1248
1248
|
}
|
|
@@ -1386,7 +1386,7 @@ export interface BrowserInitConfig {
|
|
|
1386
1386
|
/**
|
|
1387
1387
|
* @deprecated
|
|
1388
1388
|
* Override workspace platform interop behavior
|
|
1389
|
-
* https://
|
|
1389
|
+
* https://cdn.openfin.co/docs/javascript/stable/OpenFin.InteropBroker.html
|
|
1390
1390
|
*/
|
|
1391
1391
|
interopOverride?: OpenFin.OverrideCallback<OpenFin.InteropBroker, OpenFin.InteropBroker>;
|
|
1392
1392
|
}
|