@omnia/wcm 8.0.15-dev → 8.0.16-dev

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.
Files changed (49) hide show
  1. package/internal-do-not-import-from-here/core/loc/CoreLocalization.d.ts +6 -0
  2. package/internal-do-not-import-from-here/core/loc/EditorLocalization.d.ts +5 -2
  3. package/internal-do-not-import-from-here/core/loc/PageRollupLocalization.d.ts +7 -0
  4. package/internal-do-not-import-from-here/core/loc/PublishingAppLocalization.d.ts +26 -1
  5. package/internal-do-not-import-from-here/core/ux/EnterprisePropertyRenderer.d.ts +1 -0
  6. package/internal-do-not-import-from-here/fx/apis/PageRenderer.d.ts +1 -1
  7. package/internal-do-not-import-from-here/fx/models/Constants.d.ts +1 -0
  8. package/internal-do-not-import-from-here/fx/models/Constants.js +2 -1
  9. package/internal-do-not-import-from-here/fx/models/Enums.tooling.d.ts +1 -1
  10. package/internal-do-not-import-from-here/fx/models/Enums.tooling.js +1 -1
  11. package/internal-do-not-import-from-here/fx/models/channels/PublishingChannel.d.ts +4 -1
  12. package/internal-do-not-import-from-here/fx/models/channels/UserFeedFilterTypes.d.ts +4 -0
  13. package/internal-do-not-import-from-here/fx/models/channels/UserFeedFilterTypes.js +8 -0
  14. package/internal-do-not-import-from-here/fx/models/channels/UserFeedPropertyFilter.d.ts +20 -0
  15. package/internal-do-not-import-from-here/fx/models/channels/UserFeedPropertyFilter.js +2 -0
  16. package/internal-do-not-import-from-here/fx/models/channels/UserFeedSettings.d.ts +6 -0
  17. package/internal-do-not-import-from-here/fx/models/channels/UserFeedSettings.js +2 -0
  18. package/internal-do-not-import-from-here/fx/models/channels/index.d.ts +3 -0
  19. package/internal-do-not-import-from-here/fx/models/channels/index.js +3 -0
  20. package/internal-do-not-import-from-here/fx/models/components/BannerBlock.d.ts +2 -2
  21. package/internal-do-not-import-from-here/fx/models/components/BreadcrumbBlock.d.ts +9 -0
  22. package/internal-do-not-import-from-here/fx/models/components/BreadcrumbBlock.js +10 -0
  23. package/internal-do-not-import-from-here/fx/models/components/CalendarRollupBlock.d.ts +3 -1
  24. package/internal-do-not-import-from-here/fx/models/components/ContentBlock.d.ts +5 -0
  25. package/internal-do-not-import-from-here/fx/models/components/ContentBlock.js +6 -1
  26. package/internal-do-not-import-from-here/fx/models/components/CurrentNavigationBlock.d.ts +2 -1
  27. package/internal-do-not-import-from-here/fx/models/components/LinkPicker.d.ts +2 -2
  28. package/internal-do-not-import-from-here/fx/models/components/PageRollupBlock.d.ts +2 -1
  29. package/internal-do-not-import-from-here/fx/models/pagequery/PageRollupEnums.d.ts +1 -0
  30. package/internal-do-not-import-from-here/fx/models/pagequery/PageRollupEnums.js +1 -0
  31. package/internal-do-not-import-from-here/fx/models/pages/PageCollectionData.d.ts +2 -1
  32. package/internal-do-not-import-from-here/fx/models/query/ItemQueryEnums.d.ts +21 -0
  33. package/internal-do-not-import-from-here/fx/models/query/ItemQueryEnums.js +27 -0
  34. package/internal-do-not-import-from-here/fx/models/query/index.d.ts +1 -0
  35. package/internal-do-not-import-from-here/fx/models/query/index.js +1 -0
  36. package/internal-do-not-import-from-here/fx/models/variations/Variation.d.ts +10 -0
  37. package/internal-do-not-import-from-here/fx/models/variations/VariationCreationRequest.d.ts +8 -4
  38. package/internal-do-not-import-from-here/fx/models/welcomeblock/WelcomeBlockSettings.d.ts +4 -4
  39. package/internal-do-not-import-from-here/fx/models/welcomeblock/message/IWelcomeMessage.d.ts +3 -3
  40. package/internal-do-not-import-from-here/fx/services/ChannelManagementService.d.ts +2 -2
  41. package/internal-do-not-import-from-here/fx/services/NavigationService.d.ts +1 -1
  42. package/internal-do-not-import-from-here/fx/shared/PageSearchHelper.d.ts +4 -3
  43. package/internal-do-not-import-from-here/fx/stores/ChannelManagementStore.d.ts +5 -4
  44. package/internal-do-not-import-from-here/fx/stores/VariationStore.d.ts +1 -0
  45. package/internal-do-not-import-from-here/manifests/omnia.wcm.fx.core.manifest.json +1 -1
  46. package/internal-do-not-import-from-here/models/publishingapp/editor/CheckoutSettings.d.ts +4 -0
  47. package/internal-do-not-import-from-here/tooling.output.json +1 -1
  48. package/internal-do-not-import-from-here/wctypings.d.ts +38 -35
  49. package/package.json +1 -1
@@ -1,12 +1,12 @@
1
- import { MultilingualString, Spacing } from "@omnia/fx-models";
2
- import { AvatarPosition, AvatarSize, BaseMessage, MessageType } from "@omnia/wcm/models";
1
+ import { ColorValue, guid, MultilingualString, Spacing } from "@omnia/fx-models";
2
+ import { AvatarPosition, AvatarSize, BaseMessage } from "@omnia/wcm/models";
3
3
  export interface WelcomeBlockDisplaySettings {
4
4
  showAvatar: boolean;
5
5
  avatarPosition: AvatarPosition;
6
6
  size: AvatarSize;
7
7
  elevation: number;
8
8
  borderWidth: number;
9
- borderColor: string;
9
+ borderColor: ColorValue;
10
10
  }
11
11
  export type WelcomeBlockProperty<T extends BaseMessage> = {
12
12
  message: T;
@@ -17,5 +17,5 @@ export interface WelcomeBlockSettings {
17
17
  noResultText: MultilingualString;
18
18
  displaySetting: WelcomeBlockDisplaySettings;
19
19
  properties: Array<WelcomeBlockProperty<BaseMessage>>;
20
- sortOrder: Array<MessageType>;
20
+ sortOrder: Array<guid>;
21
21
  }
@@ -1,4 +1,4 @@
1
- import { MultilingualString, guid } from "@omnia/fx-models";
1
+ import { ColorValue, MultilingualString, TextStyleValue, guid } from "@omnia/fx-models";
2
2
  export interface TimeViewModel {
3
3
  year: number;
4
4
  month: number;
@@ -25,8 +25,8 @@ export type BaseMessage = {
25
25
  id: guid;
26
26
  template: MultilingualString;
27
27
  messageType: MessageType;
28
- fontSize?: number;
29
- color?: string;
28
+ textStyle?: TextStyleValue;
29
+ color?: ColorValue;
30
30
  format?: {
31
31
  bold?: boolean;
32
32
  italic?: boolean;
@@ -1,10 +1,10 @@
1
1
  import { TargetingFilterProperty } from "@omnia/fx-sp/models";
2
2
  import { guid, Identity, MediaPickerImage, MultilingualString } from "@omnia/fx/models";
3
- import { PublishingChannel, PageId, UserAuthorizedChannelResources, ChannelPage, PublishingStatus, PublishingChannelId, PublishingChannelPage, ChannelRollupQuery, PublisingChannelQueryResult, PublishChannelPageRequest } from "../models";
3
+ import { PublishingChannel, PageId, UserAuthorizedChannelResources, ChannelPage, PublishingStatus, PublishingChannelId, PublishingChannelPage, ChannelRollupQuery, PublisingChannelQueryResult, PublishChannelPageRequest, ChannelUserFeedSettings } from "../models";
4
4
  export declare class ChannelManagementService {
5
5
  private httpClient;
6
6
  constructor();
7
- createPublishingChannel: (title: MultilingualString, description: MultilingualString, publicUrl: string, owner: Array<Identity>, image: MediaPickerImage, administrator: Array<Identity>, publisher: Array<Identity>, targetingFilter: TargetingFilterProperty, publishingCategoryId?: guid) => Promise<PublishingChannel>;
7
+ createPublishingChannel: (title: MultilingualString, description: MultilingualString, publicUrl: string, owner: Array<Identity>, image: MediaPickerImage, administrator: Array<Identity>, publisher: Array<Identity>, targetingFilter: TargetingFilterProperty, publishingCategoryId?: guid, userFeedSettings?: ChannelUserFeedSettings) => Promise<PublishingChannel>;
8
8
  updatePublishingChannel: (updateData: PublishingChannel) => Promise<PublishingChannel>;
9
9
  getPublishingChannels: () => Promise<Array<PublishingChannel>>;
10
10
  getRecentlyUsedChannels: () => Promise<PublishingChannel[]>;
@@ -51,7 +51,7 @@ export declare class NavigationService {
51
51
  [nodeId: number]: NavigationNode<NavigationData>;
52
52
  }>;
53
53
  getNavigationByNode: (node: NavigationNode<NavigationData>, nodeTypes?: NavigationDataType) => Promise<NavigationResult>;
54
- getNavigationByPath: (path: string, nodeTypes?: NavigationDataType) => Promise<NavigationResult>;
54
+ getNavigationByPath: (path: string, nodeTypes?: NavigationDataType, appInstanceId?: string) => Promise<NavigationResult>;
55
55
  getNodesByPageIds: (...args: Array<PageId>) => Promise<{
56
56
  [pageId: number]: Array<PageNavigationNode<PageNavigationData>>;
57
57
  }>;
@@ -64,14 +64,15 @@ export declare class PageSearchHelper {
64
64
  ensureChannelPages: (pageId: PageId) => Promise<boolean>;
65
65
  ensurePublishedChannelsByPageId: (pageId: PageId) => Promise<boolean>;
66
66
  ensurePublishingChannel: (channelId: number) => Promise<import("../models").PublishingChannel>;
67
- createPublishingChannel: (title: import("@omnia/fx-models").MultilingualString, description: import("@omnia/fx-models").MultilingualString, publicUrl: string, owner: Array<Identity>, image: import("@omnia/fx-models").MediaPickerImage, administrator: Array<Identity>, publisher: Array<Identity>, targetingFilter: import("@omnia/fx-sp").TargetingFilterProperty, publishingCategoryId?: import("@omnia/fx-models").guid) => Promise<import("../models").PublishingChannel>;
67
+ createPublishingChannel: (title: import("@omnia/fx-models").MultilingualString, description: import("@omnia/fx-models").MultilingualString, publicUrl: string, owner: Array<Identity>, image: import("@omnia/fx-models").MediaPickerImage, administrator: Array<Identity>, publisher: Array<Identity>, targetingFilter: import("@omnia/fx-sp").TargetingFilterProperty, publishingCategoryId?: import("@omnia/fx-models").guid, userFeedSettings?: import("../models").ChannelUserFeedSettings) => Promise<import("../models").PublishingChannel>;
68
68
  updatePublishingChannel: (editRequest: import("../models").PublishingChannel) => Promise<import("../models").PublishingChannel>;
69
69
  deletePublishingChannel: (channelId: PublishingChannelId) => Promise<import("../models").PublishingChannel>;
70
70
  getPageApprovalList: () => Promise<Array<import("../models").ChannelPage>>;
71
71
  approvePublishPageToChannelRequest: (channel: import("../models").PublishingChannel, pageId: PageId, pageTitle: string, pageUrl: string) => Promise<import("../models").ChannelPage>;
72
72
  rejectPublishPageToChannelRequest: (channel: import("../models").PublishingChannel, pageId: PageId, comment: string, pageTitle: string, pageUrl: string) => Promise<import("../models").ChannelPage>;
73
- addPageToChannels: (pageId: number, defaultPublishingChannelId: PublishingChannelId) => Promise<Array<import("../models").ChannelPage>>;
74
- publishPageToChannels: (pageId: number) => Promise<Array<import("../models").ChannelPage>>;
73
+ addPageToSelectedChannels: (pageId: number, defaultPublishingChannelId?: PublishingChannelId) => Promise<Array<import("../models").ChannelPage>>;
74
+ addOrPublishToSingleChannel: (pageId: PageId, channelId: PublishingChannelId, publishToChannel: boolean) => Promise<void>;
75
+ publishPendingSelectedPageToChannels: (pageId: number) => Promise<Array<import("../models").ChannelPage>>;
75
76
  publishAddedPageToChannel: (pageId: number) => Promise<Array<import("../models").ChannelPage>>;
76
77
  ensureUserPublishingChannelSubscripton: () => Promise<boolean>;
77
78
  updateIsPublishingPageToChannels: (pageId: PageId, isPublishing: boolean) => void;
@@ -1,5 +1,5 @@
1
1
  import { guid, Identity, MediaPickerImage, MultilingualString, ResolvedUserIdentity } from "@omnia/fx-models";
2
- import { ChannelPage, PageId, PublishingChannel, PublishingChannelId, PublishingChannelPage, UserAuthorizedChannelResources } from "../models";
2
+ import { ChannelPage, ChannelUserFeedSettings, PageId, PublishingChannel, PublishingChannelId, PublishingChannelPage, UserAuthorizedChannelResources } from "../models";
3
3
  import { TargetingFilterProperty } from "@omnia/fx-sp";
4
4
  export declare const useChannelManagementStore: () => {
5
5
  get: {
@@ -58,14 +58,15 @@ export declare const useChannelManagementStore: () => {
58
58
  ensureChannelPages: (pageId: PageId) => Promise<boolean>;
59
59
  ensurePublishedChannelsByPageId: (pageId: PageId) => Promise<boolean>;
60
60
  ensurePublishingChannel: (channelId: number) => Promise<PublishingChannel>;
61
- createPublishingChannel: (title: MultilingualString, description: MultilingualString, publicUrl: string, owner: Array<Identity>, image: MediaPickerImage, administrator: Array<Identity>, publisher: Array<Identity>, targetingFilter: TargetingFilterProperty, publishingCategoryId?: guid) => Promise<PublishingChannel>;
61
+ createPublishingChannel: (title: MultilingualString, description: MultilingualString, publicUrl: string, owner: Array<Identity>, image: MediaPickerImage, administrator: Array<Identity>, publisher: Array<Identity>, targetingFilter: TargetingFilterProperty, publishingCategoryId?: guid, userFeedSettings?: ChannelUserFeedSettings) => Promise<PublishingChannel>;
62
62
  updatePublishingChannel: (editRequest: PublishingChannel) => Promise<PublishingChannel>;
63
63
  deletePublishingChannel: (channelId: PublishingChannelId) => Promise<PublishingChannel>;
64
64
  getPageApprovalList: () => Promise<Array<ChannelPage>>;
65
65
  approvePublishPageToChannelRequest: (channel: PublishingChannel, pageId: PageId, pageTitle: string, pageUrl: string) => Promise<ChannelPage>;
66
66
  rejectPublishPageToChannelRequest: (channel: PublishingChannel, pageId: PageId, comment: string, pageTitle: string, pageUrl: string) => Promise<ChannelPage>;
67
- addPageToChannels: (pageId: number, defaultPublishingChannelId: PublishingChannelId) => Promise<Array<ChannelPage>>;
68
- publishPageToChannels: (pageId: number) => Promise<Array<ChannelPage>>;
67
+ addPageToSelectedChannels: (pageId: number, defaultPublishingChannelId?: PublishingChannelId) => Promise<Array<ChannelPage>>;
68
+ addOrPublishToSingleChannel: (pageId: PageId, channelId: PublishingChannelId, publishToChannel: boolean) => Promise<void>;
69
+ publishPendingSelectedPageToChannels: (pageId: number) => Promise<Array<ChannelPage>>;
69
70
  publishAddedPageToChannel: (pageId: number) => Promise<Array<ChannelPage>>;
70
71
  ensureUserPublishingChannelSubscripton: () => Promise<boolean>;
71
72
  updateIsPublishingPageToChannels: (pageId: PageId, isPublishing: boolean) => void;
@@ -44,6 +44,7 @@ export declare class VariationStore extends Store {
44
44
  delete: import("@omnia/fx/stores").StoreAction<unknown, (variation: Variation) => void, (result: void, variation: Variation) => void, (failureReason: any, variation: Variation) => void, (variation: Variation) => Promise<void>>;
45
45
  switchVariation: import("@omnia/fx/stores").StoreAction<unknown, (variation: Variation) => void, (result: any, variation: Variation) => void, (failureReason: any, variation: Variation) => void, (variation: Variation) => Promise<any>>;
46
46
  };
47
+ private ensureDataForVariation;
47
48
  private compareTargeting;
48
49
  private getPublishingAppKey;
49
50
  private get publishingAppId();
@@ -1 +1 @@
1
- {"name":"omniaWebpackJsonp['d60fa82a-129a-41a9-93ce-d784dcb217b0']['73f0116c-212c-4912-b780-d8df4ea3d78b']","content":{"./node_modules/@omnia/wcm/models/index.js":{"id":"0044f6fa-6f28-4130-9b07-649c0ab06fca","buildMeta":{"exportsType":"namespace"},"expo.js":["AccordionBlockStyles","ActionButtonLinkHandlerTargets","ActionButtonType","ActivityActionTypes","ActivityFeedScopes","ActivityType","AiContentReportPageStatus","AiContentReportStatus","AnyoneApprovalData","AnyoneApprovalStep","ApplySettingsChangedStatus","ApprovalData","ApprovalMetaData","ApprovalStep","ApprovalType","AutomaticPageCreationStatusType","AvatarPosition","AvatarSize","BannerLayout","BreadcrumbBlockStyles","BuildInContentBlockTextStyleFormatting","BuiltInMetaTag","ButtonGroupings","CalendarRollupBlockListViewSettingsStyles","CalendarRollupBlockSettingsStyles","CalendarRollupBlockStyles","CalendarRollupEnums","CalendarType","CardTypes","CategoryType","ChannelCardViewStyles","ChannelRollupBlockAdministrationViewStyles","ChannelRollupBlockSettingsFilterTabStyles","ChannelRollupBlockSettingsGeneralTabStyles","ChannelRollupBlockStyles","ChildStructureType","ColleagueDialogContentStyles","CommentSorting","CommunityAppLayoutDefinition","CommunityPageActivityStyles","CommunityStyles","Constants","ContentBlockModes","ContentBlockStyles","CurrentNavigationBlockSettingsStyles","CurrentNavigationBlockStyles","CurrentNavigationStatus","CurrentPageStatus","DailyRecurrenceTypeEnums","DatePeriods","DeletedPageDialogStyles","DigitalSignageConstants","DigitalSignageQuerySettingsType","DigitalSigningScreenType","Directions","DistributionChannelType","DocumentTypes","DynamicRollerSizes","DynamicRollerTypes","EnterpriseGlossaryPageInformationProviderStyles","EnterprisePropertiesBlockDateTimeModes","EnterprisePropertiesRichTextSettings","EnterprisePropertyDataTypeProvider","EnterprisePropertyDocumentProviderProperty","EventAttedeeType","EventCloneDialogContentStyles","EventParticipantCounterBlockStyles","EventParticipantListEnums","EventParticipantListStyles","EventParticipantListViewStyles","FileUploaderWCMPageContext","HtmlScriptBlockStyle","InfoScreenConstants","InfoScreenViewIdConstants","LabelPositions","LimitedUserApprovalData","LimitedUserApprovalStep","LinkPickerStyle","MediaBlockStyles","MediaRollupConstants","MediaRollupStyles","MediaRollupThumbnailSize","MediaRollupType","MegaMenuStyles","MessageType","MetaTagRequirements","MobileNavigationNodeStyles","MobileNavigationStyles","MonthlyRecurrenceTypeEnums","MoveNavigationNodeType","MovePageCollectionDialogStyles","MovePageStatus","MsSearchFieldsConstants","MultiApprovalData","NavigationDataType","NavigationNodeQuery","NavigationNodeStyles","NavigationNodeType","NavigationRenders","NodeId","OmniaSearchConstants","Operator","OutlookCalendarType","PageBuiltInColumnConstants","PageCalendarViewMode","PageCollectionDisplaySettings","PageCollectionPropertyDefinition","PageCollectionPropertyDefinitionId","PageCollectionPropertyValue","PageCollectionTopic","PageDataType","PageFeedbackBlockStyles","PageFeedbackDialogStyles","PageFeedbacksStyles","PageFile","PageId","PageItemTemplateStyles","PageMoveTypes","PageNavigationDirection","PagePickerNodeStyles","PagePickerProviderStyles","PagePropertiesBlockAdvancedStyles","PagePropertiesBlockStyles","PageRollUpDialogViewStyles","PageRollupBlockCalendarViewSettingsStyles","PageRollupBlockCalendarViewStyles","PageRollupBlockCardViewSettingsStyles","PageRollupBlockListViewSettingsStyles","PageRollupBlockListViewViewStyles","PageRollupBlockListingWithImageViewViewStyles","PageRollupBlockRollerViewViewStyles","PageRollupBlockSettingsFilterTabStyles","PageRollupBlockSettingsGeneralTabStyles","PageRollupBlockStyles","PageRollupConstants","PageRollupEnums","PageRollupFilterEngineContextPropertyTypes","PageRollupListViewSettingsStyles","PageRollupListViewStyles","PageRollupListingPickedPagesStyles","PageRollupNavigationViewStyles","PageRollupNewsletterViewStyles","PageRollupPickedPagesDialogStyles","PageRollupUniqueUsersDetailsStyles","PageTopic","PageTypeDisplaySettings","PageTypePropertyDefinition","PageTypePropertyDefinitionId","PageTypePropertyValue","PagesDashboardSettingsStyles","PagingTypes","Parameters","ParticipantType","PendingFileStatus","PersonPropertyApprovalData","PersonPropertyApprovalStep","PublishingAppArchiveSettingsRouteProperty","PublishingAppBootRouteProperty","PublishingAppDisplaySettings","PublishingAppLayoutDefinition","PublishingAppPropertyDefinition","PublishingAppPropertyDefinitionId","PublishingAppPropertyValue","PublishingAppReuseContentSettingsRouteProperty","PublishingAppTopic","PublishingChannelId","PublishingChannelTopic","PublishingStatus","QrCodeStyles","QueryScope","QueryValueOptions","RecurrenceTypeEnums","RelatedLinkAddHeadingDialogStyles","RelatedLinkBlockStyles","RelatedLinkEditFormStyles","ReportTypesEnum","ResourceEvaluators","ReusablePageStatusType","ReuseContentMode","RoleDefinitions","RootService","RssReaderBlockLeftImageViewStyles","RssReaderBlockNoImageViewStyles","RssReaderBlockStyles","RuleStatus","RuleTypes","ScheduleEndTypeEnums","SearchTemplateOmniaPageStyles","SelectedPageItemStyles","SharepointPageTemplateStyles","SignOffRequestBlockStyles","SignOffRequestConstants","SortByProperties","SpecialEnterpriseProperty","StatisticsPerPageDataSourcesEnum","TagTopic","TaxonomyFilterType","TaxonomyNavigationStyles","TaxonomyTopic","TermDrivenApprovalData","TermDrivenApprovalStep","TimePeriod","TopicInformationType","TopicType","UserTopic","ValidationArchivePageResult","VariationId","VariationInputStyles","VariationsRouteProperty","VersionId","VersionMetaData","VersionType","VersionUpdationMode","VideoType","WCMEnterpriseProperties","WCMFxLocalization","WCMGlossary","WCMGlossaryType","WCMGlossaryVariation","WCMNavigationDataTypes","WCMPageIdCustomPropertyName","WCMPageTypes","WCMReaderContext","WcmAppDefaultResourceUrl","WcmEditorDynamicNavigationRouteProperty","WcmExtension","WcmLayoutProvider","WcmPropertyDefaultBooleanValues","WcmPropertyDefaultValues","WcmService","WebBrowserDigitalSigningScreenStepType","WeekOfMonthEnums","WelcomeBlockStyles","WorkplaceService","YammerProperties","layoutItemAction"]}}}
1
+ {"name":"omniaWebpackJsonp['d60fa82a-129a-41a9-93ce-d784dcb217b0']['73f0116c-212c-4912-b780-d8df4ea3d78b']","content":{"./node_modules/@omnia/wcm/models/index.js":{"id":"0044f6fa-6f28-4130-9b07-649c0ab06fca","buildMeta":{"exportsType":"namespace"},"expo.js":["AccordionBlockStyles","ActionButtonLinkHandlerTargets","ActionButtonType","ActivityActionTypes","ActivityFeedScopes","ActivityType","AiContentReportPageStatus","AiContentReportStatus","AnyoneApprovalData","AnyoneApprovalStep","ApplySettingsChangedStatus","ApprovalData","ApprovalMetaData","ApprovalStep","ApprovalType","AutomaticPageCreationStatusType","AvatarPosition","AvatarSize","BannerLayout","BreadcrumbBlockStyles","BuildInContentBlockTextStyleFormatting","BuiltInMetaTag","ButtonGroupings","CalendarRollupBlockListViewSettingsStyles","CalendarRollupBlockSettingsStyles","CalendarRollupBlockStyles","CalendarRollupEnums","CalendarType","CardTypes","CategoryType","ChannelCardViewStyles","ChannelRollupBlockAdministrationViewStyles","ChannelRollupBlockSettingsFilterTabStyles","ChannelRollupBlockSettingsGeneralTabStyles","ChannelRollupBlockStyles","ChildStructureType","ColleagueDialogContentStyles","CommentSorting","CommunityAppLayoutDefinition","CommunityPageActivityStyles","CommunityStyles","Constants","ContentBlockModes","ContentBlockStyles","CurrentNavigationBlockSettingsStyles","CurrentNavigationBlockStyles","CurrentNavigationStatus","CurrentPageStatus","DailyRecurrenceTypeEnums","DatePeriods","DeletedPageDialogStyles","DigitalSignageConstants","DigitalSignageQuerySettingsType","DigitalSigningScreenType","Directions","DistributionChannelType","DocumentTypes","DynamicRollerSizes","DynamicRollerTypes","EnterpriseGlossaryPageInformationProviderStyles","EnterprisePropertiesBlockDateTimeModes","EnterprisePropertiesRichTextSettings","EnterprisePropertyDataTypeProvider","EnterprisePropertyDocumentProviderProperty","EventAttedeeType","EventCloneDialogContentStyles","EventParticipantCounterBlockStyles","EventParticipantListEnums","EventParticipantListStyles","EventParticipantListViewStyles","FileUploaderWCMPageContext","HtmlScriptBlockStyle","InfoScreenConstants","InfoScreenViewIdConstants","ItemQueryEnums","LabelPositions","LimitedUserApprovalData","LimitedUserApprovalStep","LinkPickerStyle","MediaBlockStyles","MediaRollupConstants","MediaRollupStyles","MediaRollupThumbnailSize","MediaRollupType","MegaMenuStyles","MessageType","MetaTagRequirements","MobileNavigationNodeStyles","MobileNavigationStyles","MonthlyRecurrenceTypeEnums","MoveNavigationNodeType","MovePageCollectionDialogStyles","MovePageStatus","MsSearchFieldsConstants","MultiApprovalData","NavigationDataType","NavigationNodeQuery","NavigationNodeStyles","NavigationNodeType","NavigationRenders","NodeId","OmniaSearchConstants","Operator","OutlookCalendarType","PageBuiltInColumnConstants","PageCalendarViewMode","PageCollectionDisplaySettings","PageCollectionPropertyDefinition","PageCollectionPropertyDefinitionId","PageCollectionPropertyValue","PageCollectionTopic","PageDataType","PageFeedbackBlockStyles","PageFeedbackDialogStyles","PageFeedbacksStyles","PageFile","PageId","PageItemTemplateStyles","PageMoveTypes","PageNavigationDirection","PagePickerNodeStyles","PagePickerProviderStyles","PagePropertiesBlockAdvancedStyles","PagePropertiesBlockStyles","PageRollUpDialogViewStyles","PageRollupBlockCalendarViewSettingsStyles","PageRollupBlockCalendarViewStyles","PageRollupBlockCardViewSettingsStyles","PageRollupBlockListViewSettingsStyles","PageRollupBlockListViewViewStyles","PageRollupBlockListingWithImageViewViewStyles","PageRollupBlockRollerViewViewStyles","PageRollupBlockSettingsFilterTabStyles","PageRollupBlockSettingsGeneralTabStyles","PageRollupBlockStyles","PageRollupConstants","PageRollupEnums","PageRollupFilterEngineContextPropertyTypes","PageRollupListViewSettingsStyles","PageRollupListViewStyles","PageRollupListingPickedPagesStyles","PageRollupNavigationViewStyles","PageRollupNewsletterViewStyles","PageRollupPickedPagesDialogStyles","PageRollupUniqueUsersDetailsStyles","PageTopic","PageTypeDisplaySettings","PageTypePropertyDefinition","PageTypePropertyDefinitionId","PageTypePropertyValue","PagesDashboardSettingsStyles","PagingTypes","Parameters","ParticipantType","PendingFileStatus","PersonPropertyApprovalData","PersonPropertyApprovalStep","PublishingAppArchiveSettingsRouteProperty","PublishingAppBootRouteProperty","PublishingAppDisplaySettings","PublishingAppLayoutDefinition","PublishingAppPropertyDefinition","PublishingAppPropertyDefinitionId","PublishingAppPropertyValue","PublishingAppReuseContentSettingsRouteProperty","PublishingAppTopic","PublishingChannelId","PublishingChannelTopic","PublishingStatus","QrCodeStyles","QueryScope","QueryValueOptions","RecurrenceTypeEnums","RelatedLinkAddHeadingDialogStyles","RelatedLinkBlockStyles","RelatedLinkEditFormStyles","ReportTypesEnum","ResourceEvaluators","ReusablePageStatusType","ReuseContentMode","RoleDefinitions","RootService","RssReaderBlockLeftImageViewStyles","RssReaderBlockNoImageViewStyles","RssReaderBlockStyles","RuleStatus","RuleTypes","ScheduleEndTypeEnums","SearchTemplateOmniaPageStyles","SelectedPageItemStyles","Seperator","SharepointPageTemplateStyles","SignOffRequestBlockStyles","SignOffRequestConstants","SortByProperties","SpecialEnterpriseProperty","StatisticsPerPageDataSourcesEnum","TagTopic","TaxonomyFilterType","TaxonomyNavigationStyles","TaxonomyTopic","TermDrivenApprovalData","TermDrivenApprovalStep","TimePeriod","TopicInformationType","TopicType","UserFeedFilterTypes","UserTopic","ValidationArchivePageResult","VariationId","VariationInputStyles","VariationsRouteProperty","VersionComparisonType","VersionId","VersionMetaData","VersionType","VersionUpdationMode","VideoType","WCMEnterpriseProperties","WCMFxLocalization","WCMGlossary","WCMGlossaryType","WCMGlossaryVariation","WCMNavigationDataTypes","WCMPageIdCustomPropertyName","WCMPageTypes","WCMReaderContext","WcmAppDefaultResourceUrl","WcmEditorDynamicNavigationRouteProperty","WcmExtension","WcmLayoutProvider","WcmPropertyDefaultBooleanValues","WcmPropertyDefaultValues","WcmService","WebBrowserDigitalSigningScreenStepType","WeekOfMonthEnums","WelcomeBlockStyles","WorkplaceService","YammerProperties","layoutItemAction"]}}}
@@ -2,3 +2,7 @@ export interface CheckoutSettings {
2
2
  layoutDesigner?: boolean;
3
3
  showContentNavigation?: boolean;
4
4
  }
5
+ export interface LayoutEditorDisplaySettings {
6
+ mode?: "design" | "design-preview";
7
+ showContentNavigation?: boolean;
8
+ }