@omnia/wcm 7.10.0-preview.8 → 7.10.0-preview.9
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.
|
@@ -899,16 +899,23 @@ export declare module EditorLocalization {
|
|
|
899
899
|
Save: string;
|
|
900
900
|
Add: string;
|
|
901
901
|
Cancel: string;
|
|
902
|
-
|
|
902
|
+
TestEmailDialog: {
|
|
903
903
|
Title: string;
|
|
904
|
-
|
|
904
|
+
Instruction: string;
|
|
905
|
+
InfoText: string;
|
|
905
906
|
Buttons: {
|
|
906
907
|
SendEmail: string;
|
|
907
908
|
};
|
|
909
|
+
NoPagesFoundMessage: string;
|
|
908
910
|
};
|
|
909
911
|
EditRuleBtn: string;
|
|
910
912
|
DeleteRuleBtn: string;
|
|
911
|
-
|
|
913
|
+
TestEmailBtn: string;
|
|
914
|
+
Placeholders: {
|
|
915
|
+
Title: string;
|
|
916
|
+
Description: string;
|
|
917
|
+
};
|
|
918
|
+
EmailTemplate: string;
|
|
912
919
|
};
|
|
913
920
|
RemovePageReviewRuleSettings: {
|
|
914
921
|
Title: string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { AnalyticsSettings, EnterprisePropertyDefinition, EnterprisePropertyItemSettings, GuidValue, IconPickerModel, Identity, MultilingualString, TimePeriodSettings, DateOperator } from "@omnia/fx-models";
|
|
1
|
+
import { AnalyticsSettings, EnterprisePropertyDefinition, EnterprisePropertyItemSettings, GuidValue, IconPickerModel, Identity, MultilingualString, TimePeriodSettings, DateOperator, UserIdentity } from "@omnia/fx-models";
|
|
2
2
|
import { RichTextEditorExtension } from "@omnia/fx/ux/richtexteditor";
|
|
3
3
|
import { SharepointSyncPageSettings } from "../../../sp";
|
|
4
|
+
import { PageId } from "./Page";
|
|
4
5
|
import { PageData } from "./PageData";
|
|
5
6
|
/**
|
|
6
7
|
* We should update to use nheritance interfaces pattern
|
|
@@ -91,8 +92,9 @@ export interface PageReviewRuleEvaluationResult {
|
|
|
91
92
|
isSuspended: boolean;
|
|
92
93
|
sendEmail: boolean;
|
|
93
94
|
}
|
|
94
|
-
export interface
|
|
95
|
+
export interface PageReviewRuleTestMailTemplateRequest {
|
|
95
96
|
ruleId: number;
|
|
96
97
|
pageTypeId: number;
|
|
97
|
-
|
|
98
|
+
identities: UserIdentity[];
|
|
99
|
+
pageIds: PageId[];
|
|
98
100
|
}
|