@openfin/workspace-platform 22.2.9 → 22.2.10

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.
@@ -1,7 +1,7 @@
1
1
  import type OpenFin from '@openfin/core';
2
2
  import { IconProps, IconType, Languages } from '@openfin/ui-library';
3
- import type { AnalyticsEvent, AnalyticsEventInternal } from '../../common/src/utils/usage-register';
4
- import { BaseCustomDropdownItem, CustomActionSpecifier, CustomButtonConfig } from '../../common/src/api/action';
3
+ import type { AnalyticsEvent } from '../../common/src/utils/usage-register';
4
+ import { CustomActionSpecifier, CustomButtonConfig } from '../../common/src/api/action';
5
5
  import { AddDefaultPagePayload, AttachedPage, BookmarkNode, CopyPagePayload, HandlePagesAndWindowClosePayload, HandlePagesAndWindowCloseResult, HandleSaveModalOnPageClosePayload, Page, PageLayoutsWithSelectedViews, PageWithUpdatableRuntimeAttribs, SaveModalOnPageCloseResult, ShouldPageClosePayload, ShouldPageCloseResult, ViewsPreventingUnloadPayload } from '../../common/src/api/pages/shapes';
6
6
  import { SetActivePageForWindowPayload } from '../../common/src/api/pages/shapes';
7
7
  import { NotificationsCustomManifestOptions } from '../../common/src/api/shapes/notifications';
@@ -1557,52 +1557,6 @@ export interface WorkspacePlatformModule extends OpenFin.Platform {
1557
1557
  * Implementation for getting the notifications workspace platform configuration.
1558
1558
  */
1559
1559
  getNotificationsConfig(): Promise<NotificationsCustomManifestOptions | undefined>;
1560
- _raiseAnalytics(events: AnalyticsEventInternal[]): Promise<void>;
1561
- /**
1562
- * Launches a bookmark in the browser window.
1563
- * @param payload
1564
- */
1565
- _launchBookmarkInternal: (payload: LaunchBookmarkPayload) => Promise<void>;
1566
- /**
1567
- * Updates companion dock favorites list.
1568
- * @param favorites
1569
- */
1570
- _updateDockFavoritesInternal: (favorites: DockEntry[]) => Promise<void>;
1571
- /**
1572
- * Updates companion dock content menu.
1573
- * @param contentMenu
1574
- */
1575
- _updateContentMenuInternal: (contentMenu: ContentMenuEntry[]) => Promise<void>;
1576
- /**
1577
- * Launches companion dock content menu item.
1578
- * @param id
1579
- */
1580
- _launchDockEntryInternal: (payload: LaunchDockEntryPayload) => Promise<void>;
1581
- _setDockFavoritesInternal: (favorites: DockEntry[]) => Promise<void>;
1582
- _setDefaultDockButtonsOrderInternal: (favorites: DockCompanionButton[]) => Promise<void>;
1583
- _removeDockFavoriteInternal: (entry: DockEntry) => Promise<void>;
1584
- _addDockFavoriteInternal: (entry: DockEntry) => Promise<void>;
1585
- /**
1586
- * Navigates companion dock content menu to a specified folder.
1587
- * @param id
1588
- */
1589
- _navigateContentMenuInternal(id: string): Promise<void>;
1590
- /**
1591
- * Retrieves companion dock workspaces dropdown context menu.
1592
- */
1593
- _openDockWorkspacesContextMenuInternal(): Promise<BaseCustomDropdownItem[]>;
1594
- /**
1595
- * Handles companion dock workspaces dropdown context menu response.
1596
- * @param payload
1597
- */
1598
- _handleDockWorkspacesMenuResponseInternal(payload: any): Promise<void>;
1599
- /**
1600
- *
1601
- * Finds a browser window with only a single tab on the landing page, brings it forward, and
1602
- * focuses and expands its search menu. If such a browser window doesn't exist, it will create one.
1603
- * @param payload
1604
- */
1605
- _focusAndExpandSearchInternal(): Promise<void>;
1606
1560
  /**
1607
1561
  * The browser window factory for the Workspace Platform.
1608
1562
  */