@omnia/wcm 7.10.0-preview.12 → 7.10.0-preview.13
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.
- package/internal-do-not-import-from-here/core/loc/EditorLocalization.d.ts +2 -1
- package/internal-do-not-import-from-here/fx/filterengine/pagerollup/PageRollupFilterEngineContext.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/pages/PageTypeData.d.ts +4 -3
- package/internal-do-not-import-from-here/fx/shared/PageRollupStoreHelper.d.ts +2 -0
- package/package.json +1 -1
|
@@ -739,6 +739,7 @@ export declare module EditorLocalization {
|
|
|
739
739
|
DuplicateWarningMessage: string;
|
|
740
740
|
MoveAsChild: string;
|
|
741
741
|
MoveAsSibling: string;
|
|
742
|
+
DuplicateWarningMessageWhenMovingAsSibling: string;
|
|
742
743
|
};
|
|
743
744
|
SendAppprovalRequest: {
|
|
744
745
|
Title: string;
|
|
@@ -913,7 +914,7 @@ export declare module EditorLocalization {
|
|
|
913
914
|
TestEmailBtn: string;
|
|
914
915
|
Placeholders: {
|
|
915
916
|
Title: string;
|
|
916
|
-
|
|
917
|
+
PlaceholderContent: string;
|
|
917
918
|
Property: string;
|
|
918
919
|
};
|
|
919
920
|
EmailTemplate: string;
|
|
@@ -4,4 +4,5 @@ export declare class PageRollupFilterEngineContext extends DbQueryFilterEngineCo
|
|
|
4
4
|
uniqueId: string;
|
|
5
5
|
constructor(componentId: string);
|
|
6
6
|
getAvailableProperties(): import("@omnia/fx-models").EnterprisePropertyDefinition[];
|
|
7
|
+
getAZFilterableProperties(): import("@omnia/fx-models").EnterprisePropertyColumnMapping[];
|
|
7
8
|
}
|
|
@@ -72,8 +72,9 @@ export interface SuspendedSettings {
|
|
|
72
72
|
changePageType: ChangePageTypeSettings;
|
|
73
73
|
removeFromSearchEnabled: boolean;
|
|
74
74
|
}
|
|
75
|
-
export interface
|
|
75
|
+
export interface PageReviewRuleVersion {
|
|
76
76
|
id: number;
|
|
77
|
+
ruleId: GuidValue;
|
|
77
78
|
pageId: number;
|
|
78
79
|
originalPageVersionId: number;
|
|
79
80
|
title: MultilingualString;
|
|
@@ -86,14 +87,14 @@ export interface PageReviewRule {
|
|
|
86
87
|
suspendedSettings: SuspendedSettings;
|
|
87
88
|
}
|
|
88
89
|
export interface PageReviewRuleEvaluationResult {
|
|
89
|
-
pageReviewRule:
|
|
90
|
+
pageReviewRule: PageReviewRuleVersion;
|
|
90
91
|
reviewDate: Date;
|
|
91
92
|
showMessageBar: boolean;
|
|
92
93
|
isSuspended: boolean;
|
|
93
94
|
sendEmail: boolean;
|
|
94
95
|
}
|
|
95
96
|
export interface PageReviewRuleTestMailTemplateRequest {
|
|
96
|
-
|
|
97
|
+
ruleVersionId: number;
|
|
97
98
|
pageTypeId: number;
|
|
98
99
|
identities: UserIdentity[];
|
|
99
100
|
pageIds: PageId[];
|
|
@@ -40,6 +40,7 @@ declare class InternalPageRollupStoreHelper {
|
|
|
40
40
|
private userIdentityStore;
|
|
41
41
|
private navigationStore;
|
|
42
42
|
private pickedPageHelper;
|
|
43
|
+
private enterprisePropertyService;
|
|
43
44
|
private resolvablePageRollupInNP;
|
|
44
45
|
private pageRollupInstancesInNP;
|
|
45
46
|
private pageRollupInstances;
|
|
@@ -146,6 +147,7 @@ declare class InternalPageRollupStoreHelper {
|
|
|
146
147
|
private ensureLoadPageTypesOfInstance;
|
|
147
148
|
private ensureLoadPageTypes;
|
|
148
149
|
private ensureLanguageSettings;
|
|
150
|
+
isAZFilteringProperty(internalName: string): boolean;
|
|
149
151
|
}
|
|
150
152
|
export declare class PageRollupStoreHelper {
|
|
151
153
|
private internal;
|