@omnia/wcm 7.10.0-preview.6 → 7.10.0-preview.8

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.
@@ -110,7 +110,7 @@ export declare module WCMCoreLocalization {
110
110
  };
111
111
  Iframe: {
112
112
  Title: string;
113
- Summary: string;
113
+ BlockSummary: string;
114
114
  };
115
115
  ChannelRollup: {
116
116
  Title: string;
@@ -131,6 +131,7 @@ export declare module EditorLocalization {
131
131
  ArchivedAt: string;
132
132
  Comment: string;
133
133
  CreateCopy: string;
134
+ CreateCopyTooltip: string;
134
135
  Terminate: string;
135
136
  TerminateConfirmationMessage: string;
136
137
  RestoreConfirmationMessage: string;
@@ -905,6 +906,9 @@ export declare module EditorLocalization {
905
906
  SendEmail: string;
906
907
  };
907
908
  };
909
+ EditRuleBtn: string;
910
+ DeleteRuleBtn: string;
911
+ SendEmailBtn: string;
908
912
  };
909
913
  RemovePageReviewRuleSettings: {
910
914
  Title: string;
@@ -392,5 +392,8 @@ export declare module PageRollupLocalization {
392
392
  CheckedOutBy: string;
393
393
  };
394
394
  };
395
+ ExportResult: {
396
+ LoginName: string;
397
+ };
395
398
  }
396
399
  }
@@ -315,6 +315,13 @@ export declare module PublishingAppLocalization {
315
315
  Message: string;
316
316
  };
317
317
  EnableEditNotifications: string;
318
+ NotifyForEdit: {
319
+ SectionTitle: string;
320
+ NoteTitle: string;
321
+ NoteContent: string;
322
+ VariationAuthor: string;
323
+ PagePropertyUsers: string;
324
+ };
318
325
  };
319
326
  StatisticProvider: {
320
327
  SiteScript: string;
@@ -22,6 +22,10 @@ export interface Variation {
22
22
  automaticMachineTranslation?: boolean;
23
23
  allowEditMachineTranslation?: boolean;
24
24
  activeRightToLeft?: boolean;
25
- editNotificationEnabled?: boolean;
25
+ editNotificationSettings?: VariationEditNotificationSettings;
26
+ }
27
+ export interface VariationEditNotificationSettings {
28
+ notifyVariationAuthorOnEdit?: boolean;
29
+ notifyPagePropertyUsersOnEdit?: boolean;
26
30
  editNotificationsUserPropertyId?: GuidValue;
27
31
  }
@@ -1,5 +1,6 @@
1
- import { MultilingualString, IIcon, Identity, GuidValue } from "@omnia/fx-models";
1
+ import { MultilingualString, IIcon, Identity } from "@omnia/fx-models";
2
2
  import { TargetingFilterProperty } from "@omnia/fx-sp";
3
+ import { VariationEditNotificationSettings } from "./Variation";
3
4
  export interface VariationCreationRequest {
4
5
  displayNames: MultilingualString;
5
6
  targetingFilterData: TargetingFilterProperty;
@@ -10,6 +11,5 @@ export interface VariationCreationRequest {
10
11
  * */
11
12
  author?: Identity;
12
13
  authors?: Array<Identity>;
13
- editNotificationEnabled?: boolean;
14
- editNotificationsUserPropertyId?: GuidValue;
14
+ editNotificationSettings: VariationEditNotificationSettings;
15
15
  }
@@ -22,7 +22,7 @@ export declare class WcmRouter {
22
22
  private loadTreeForPath;
23
23
  navigate<T extends NavigationNode<NavigationData>>(to: T, targetVariationId?: any, forceToNewNavigationState?: boolean): Promise<T>;
24
24
  navigateWithVariationTargeting<T extends NavigationNode<NavigationData>>(to: T): Promise<T>;
25
- navigateFromExternalApp<T extends NavigationNode<NavigationData>>(to: T, targetVariationId?: any): void;
25
+ navigateFromExternalApp<T extends NavigationNode<NavigationData>>(to: T, targetVariationId?: any, openEditor?: boolean): void;
26
26
  private buildRelativePath;
27
27
  private getTargetingVariation;
28
28
  onDisposing(): void;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/wcm",
3
3
  "license": "MIT",
4
- "version": "7.10.0-preview.6",
4
+ "version": "7.10.0-preview.8",
5
5
  "description": "Omnia Web Content Management.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"