@openfin/workspace-platform 17.2.1 → 17.2.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.
@@ -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 | OpenFin.Application | OpenFin.Identity | OpenFin.View | OpenFin.Platform>;
8
+ export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.View | OpenFin.Identity | OpenFin.Platform | OpenFin.Application>;
@@ -1541,7 +1541,11 @@ export interface WorkspacePlatformProvider extends OpenFin.PlatformProvider {
1541
1541
  */
1542
1542
  setActivePage(payload: SetActivePageForWindowPayload): Promise<void>;
1543
1543
  /**
1544
- * Implementation for creating a copy of a page. Called when a page is Saved-As or Duplicated.
1544
+ * Implementation for creating a copy of a page. Called when a page is Saved-As or Duplicated.
1545
+ *
1546
+ * Note: The `page.layout` and `page.panels` property cannot be overridden for 'Save As' operations,
1547
+ * the `page.layout` and `page.panels` property provided in the return value will be ignored, and the layout and panels of
1548
+ * the original page will remain after 'Save As' is performed.
1545
1549
  */
1546
1550
  copyPage(payload: CopyPagePayload): Promise<Page>;
1547
1551
  }