@omnia/wcm 7.9.36-preview → 7.9.36
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/LICENSE.txt +14 -0
- package/README.md +1 -1
- package/internal-do-not-import-from-here/core/Constants.d.ts +3 -0
- package/internal-do-not-import-from-here/core/loc/CoreLocalization.d.ts +1 -1
- package/internal-do-not-import-from-here/core/loc/EditorLocalization.d.ts +17 -2
- package/internal-do-not-import-from-here/core/loc/PageRollupLocalization.d.ts +4 -0
- package/internal-do-not-import-from-here/core/loc/PublishingAppLocalization.d.ts +24 -0
- package/internal-do-not-import-from-here/core/messaging/WcmPublicTopics.d.ts +1 -2
- package/internal-do-not-import-from-here/fx/constants.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/Enums.d.ts +6 -0
- package/internal-do-not-import-from-here/fx/models/Enums.js +8 -1
- package/internal-do-not-import-from-here/fx/models/automaticpagecreationrequest/AutomaticPageCreationRequest.d.ts +5 -1
- package/internal-do-not-import-from-here/fx/models/automaticpagecreationrequest/AutomaticPageCreationRequest.js +1 -0
- package/internal-do-not-import-from-here/fx/models/components/CalendarRollupBlockStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/components/CurrentNavigationBlockStyles.d.ts +1 -1
- package/internal-do-not-import-from-here/fx/models/components/PagePropertiesBlockStyles.d.ts +2 -3
- package/internal-do-not-import-from-here/fx/models/components/RssReaderBlockData.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/exportToFile/ExportFileInQueueResult.d.ts +4 -0
- package/internal-do-not-import-from-here/fx/models/exportToFile/ExportFileInQueueResult.js +2 -0
- package/internal-do-not-import-from-here/fx/models/exportToFile/index.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/exportToFile/index.js +4 -0
- package/internal-do-not-import-from-here/fx/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/index.js +1 -0
- package/internal-do-not-import-from-here/fx/models/pagequery/NewsletterViewSettings.d.ts +4 -1
- package/internal-do-not-import-from-here/fx/models/pagequery/PageRollupEnums.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/pagequery/PageRollupEnums.js +1 -0
- package/internal-do-not-import-from-here/fx/models/pagequery/PageRollupQuery.d.ts +3 -0
- package/internal-do-not-import-from-here/fx/models/pages/PageCollectionDistributionChannel.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/pages/PageTypeData.d.ts +9 -6
- package/internal-do-not-import-from-here/fx/models/query/ItemQueryEnums.d.ts +21 -0
- package/internal-do-not-import-from-here/fx/models/query/ItemQueryEnums.js +27 -0
- package/internal-do-not-import-from-here/fx/models/query/index.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/query/index.js +1 -0
- package/internal-do-not-import-from-here/fx/models/variations/Variation.d.ts +5 -1
- package/internal-do-not-import-from-here/fx/models/variations/VariationCreationRequest.d.ts +3 -3
- package/internal-do-not-import-from-here/fx/routing/WcmRouter.d.ts +1 -1
- package/internal-do-not-import-from-here/fx/services/NavigationService.d.ts +1 -1
- package/internal-do-not-import-from-here/fx/services/PageQueryService.d.ts +2 -2
- package/internal-do-not-import-from-here/fx/services/PageService.d.ts +1 -2
- package/internal-do-not-import-from-here/fx/shared/EnterpriseGlossaryHelper.d.ts +10 -0
- package/internal-do-not-import-from-here/fx/shared/OmniaSearchCategoryQueryHelper.d.ts +5 -0
- package/internal-do-not-import-from-here/fx/shared/index.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/stores/CurrentPageStore.d.ts +2 -2
- package/internal-do-not-import-from-here/fx/stores/PageRollupStore.d.ts +2 -2
- package/internal-do-not-import-from-here/fx/stores/PagesStore.d.ts +6 -0
- package/internal-do-not-import-from-here/manifests/omnia.wcm.fx.core.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.wcm.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/models/publishingapp/editor/Messages.d.ts +0 -3
- package/internal-do-not-import-from-here/models/security/Security.js +3 -0
- package/package.json +3 -4
package/LICENSE.txt
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Omnia License
|
|
2
|
+
Copyright (c) 2026 Omnia Digital Workplace AB
|
|
3
|
+
All rights reserved.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted to any person or entity that has a valid license for the Omnia product (the "Licensee") to use this
|
|
6
|
+
software and associated documentation files (the "Software") solely in connection with a licensed Omnia installation.
|
|
7
|
+
|
|
8
|
+
The Software may not be modified, merged, adapted, copied (except for backup purposes), redistributed, sublicensed, sold, or
|
|
9
|
+
otherwise made available to any third party. The Software may not be used independently of a properly licensed Omnia product.
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all copies of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, EXCEPT AS EXPRESSLY STATED IN A SEPARATE COMMERCIAL AGREEMENT, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
14
|
+
IN NO EVENT SHALL OMNIA DIGITAL WORKPLACE AB BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Omnia Web Content Management
|
|
2
2
|
|
|
3
|
-
Omnia Web Content Management is a product from
|
|
3
|
+
Omnia Web Content Management is a product from Omnia Digital Workplace AB. In order to use Omnia Web Content Management you need a product license for one of the following products:
|
|
4
4
|
|
|
5
5
|
* Omnia Foundation (stand-alone)
|
|
6
6
|
* Omnia Intranet
|
|
@@ -22,6 +22,9 @@ export declare class WcmCoreConstants {
|
|
|
22
22
|
static get OmniaSearchMigrationId(): string;
|
|
23
23
|
static get Newsletter(): {
|
|
24
24
|
SuffixDoneElement: string;
|
|
25
|
+
SuffixStartRenderingElement: string;
|
|
26
|
+
SuffixDoneRenderingElement: string;
|
|
27
|
+
PageRollupNewsletterView: string;
|
|
25
28
|
};
|
|
26
29
|
static get SemanticSearchReferenceType(): {
|
|
27
30
|
providerId: Guid;
|
|
@@ -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;
|
|
@@ -505,6 +506,7 @@ export declare module EditorLocalization {
|
|
|
505
506
|
RuleNotFound: string;
|
|
506
507
|
MissingDefaultVariationPage: string;
|
|
507
508
|
NotHavePermission: string;
|
|
509
|
+
PageHasBeenDeleted: string;
|
|
508
510
|
};
|
|
509
511
|
};
|
|
510
512
|
ReusableContent: {
|
|
@@ -738,6 +740,7 @@ export declare module EditorLocalization {
|
|
|
738
740
|
DuplicateWarningMessage: string;
|
|
739
741
|
MoveAsChild: string;
|
|
740
742
|
MoveAsSibling: string;
|
|
743
|
+
DuplicateWarningMessageWhenMovingAsSibling: string;
|
|
741
744
|
};
|
|
742
745
|
SendAppprovalRequest: {
|
|
743
746
|
Title: string;
|
|
@@ -831,6 +834,7 @@ export declare module EditorLocalization {
|
|
|
831
834
|
Summary: string;
|
|
832
835
|
};
|
|
833
836
|
PropertyMapping: string;
|
|
837
|
+
AutomaticallyMentionChannelInPost: string;
|
|
834
838
|
};
|
|
835
839
|
InviteAuthors: {
|
|
836
840
|
Title: string;
|
|
@@ -898,13 +902,24 @@ export declare module EditorLocalization {
|
|
|
898
902
|
Save: string;
|
|
899
903
|
Add: string;
|
|
900
904
|
Cancel: string;
|
|
901
|
-
|
|
905
|
+
TestEmailDialog: {
|
|
902
906
|
Title: string;
|
|
903
|
-
|
|
907
|
+
Instruction: string;
|
|
908
|
+
InfoText: string;
|
|
904
909
|
Buttons: {
|
|
905
910
|
SendEmail: string;
|
|
906
911
|
};
|
|
912
|
+
NoPagesFoundMessage: string;
|
|
913
|
+
};
|
|
914
|
+
EditRuleBtn: string;
|
|
915
|
+
DeleteRuleBtn: string;
|
|
916
|
+
TestEmailBtn: string;
|
|
917
|
+
Placeholders: {
|
|
918
|
+
Title: string;
|
|
919
|
+
PlaceholderContent: string;
|
|
920
|
+
Property: string;
|
|
907
921
|
};
|
|
922
|
+
EmailTemplate: string;
|
|
908
923
|
};
|
|
909
924
|
RemovePageReviewRuleSettings: {
|
|
910
925
|
Title: string;
|
|
@@ -142,6 +142,10 @@ export declare module PageRollupLocalization {
|
|
|
142
142
|
};
|
|
143
143
|
DateType: string;
|
|
144
144
|
DateFormat: string;
|
|
145
|
+
GoToPage: string;
|
|
146
|
+
GoToPageText: string;
|
|
147
|
+
GoToPageColor: string;
|
|
148
|
+
GoToPageBackgroundColor: string;
|
|
145
149
|
};
|
|
146
150
|
PagePicker: {
|
|
147
151
|
AddPage: string;
|
|
@@ -264,6 +264,22 @@ export declare module PublishingAppLocalization {
|
|
|
264
264
|
VariationAuthor: string;
|
|
265
265
|
Content: string;
|
|
266
266
|
};
|
|
267
|
+
VariationNotification: {
|
|
268
|
+
VariationAuthor: {
|
|
269
|
+
NewPage: {
|
|
270
|
+
Subject: string;
|
|
271
|
+
Content: string;
|
|
272
|
+
};
|
|
273
|
+
NewVersion: {
|
|
274
|
+
Subject: string;
|
|
275
|
+
Content: string;
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
PageProperty: {
|
|
279
|
+
Subject: string;
|
|
280
|
+
Template: string;
|
|
281
|
+
};
|
|
282
|
+
};
|
|
267
283
|
InvitationOfCoAuthors: {
|
|
268
284
|
Subject: string;
|
|
269
285
|
Body: string;
|
|
@@ -315,6 +331,14 @@ export declare module PublishingAppLocalization {
|
|
|
315
331
|
Message: string;
|
|
316
332
|
};
|
|
317
333
|
EnableEditNotifications: string;
|
|
334
|
+
NotifyForEdit: {
|
|
335
|
+
SectionLabel: string;
|
|
336
|
+
NoteTitle: string;
|
|
337
|
+
Note: string;
|
|
338
|
+
VariationAuthor: string;
|
|
339
|
+
PagePropertyUsers: string;
|
|
340
|
+
UserPropertyPickerLabel: string;
|
|
341
|
+
};
|
|
318
342
|
};
|
|
319
343
|
StatisticProvider: {
|
|
320
344
|
SiteScript: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MessageBusTopicMediator } from "@omnia/fx";
|
|
2
|
-
import { CreateLayoutItemSettingsMessage, PageApprovalMessage, PageScheduleMessage, ShowApprovalDialogMessage
|
|
2
|
+
import { CreateLayoutItemSettingsMessage, PageApprovalMessage, PageScheduleMessage, ShowApprovalDialogMessage } from "../../models";
|
|
3
3
|
import { NavigationData, NavigationNode, LinkItem, PageTypeProperty, LinkPickerRegistration } from "@omnia/wcm/models";
|
|
4
4
|
import { LinkItemTemplateMsg } from "../../models/relatedlinks";
|
|
5
5
|
export declare const WcmBlockNamespace = "omnia.wcm.block";
|
|
@@ -20,5 +20,4 @@ export declare class PublishingAppTopics {
|
|
|
20
20
|
static get showPrePublishContentAnalysisDialogTopic(): MessageBusTopicMediator<ShowApprovalDialogMessage>;
|
|
21
21
|
static get showPageSendEmailDialogTopic(): MessageBusTopicMediator<void>;
|
|
22
22
|
static get showInviteCoAuthorsDialogTopic(): MessageBusTopicMediator<void>;
|
|
23
|
-
static get showPageReviewValidateFailedDialogTopic(): MessageBusTopicMediator<ShowPageReviewValidateFailedDialogMessage>;
|
|
24
23
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { RoleDefinitions as OmniaRoleDefinitions } from "@omnia/fx-models";
|
|
1
2
|
export declare enum Parameters {
|
|
2
3
|
PageId = "PageId",
|
|
3
4
|
SecurityResourceId = "SecurityResourceId",
|
|
@@ -85,3 +86,8 @@ export declare enum WcmAppDefaultResourceUrl {
|
|
|
85
86
|
YammerGroup = 0,
|
|
86
87
|
SharePoint = 1
|
|
87
88
|
}
|
|
89
|
+
export declare class GetRoleDefinitions {
|
|
90
|
+
static get AdminRoleDefinitions(): (RoleDefinitions | OmniaRoleDefinitions)[];
|
|
91
|
+
static get EditorRoleDefinitions(): RoleDefinitions[];
|
|
92
|
+
static get AuthorRoleDefinitions(): RoleDefinitions[];
|
|
93
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.WcmAppDefaultResourceUrl = exports.StatisticsPerPageDataSourcesEnum = exports.SortByProperties = exports.ReportTypesEnum = exports.VideoType = exports.PagingTypes = exports.DocumentTypes = exports.VersionUpdationMode = exports.WcmPropertyDefaultBooleanValues = exports.WcmPropertyDefaultValues = exports.RoleDefinitions = exports.ResourceEvaluators = exports.Parameters = void 0;
|
|
3
|
+
exports.GetRoleDefinitions = exports.WcmAppDefaultResourceUrl = exports.StatisticsPerPageDataSourcesEnum = exports.SortByProperties = exports.ReportTypesEnum = exports.VideoType = exports.PagingTypes = exports.DocumentTypes = exports.VersionUpdationMode = exports.WcmPropertyDefaultBooleanValues = exports.WcmPropertyDefaultValues = exports.RoleDefinitions = exports.ResourceEvaluators = exports.Parameters = void 0;
|
|
4
|
+
const fx_models_1 = require("@omnia/fx-models");
|
|
4
5
|
var Parameters;
|
|
5
6
|
(function (Parameters) {
|
|
6
7
|
Parameters["PageId"] = "PageId";
|
|
@@ -102,3 +103,9 @@ var WcmAppDefaultResourceUrl;
|
|
|
102
103
|
WcmAppDefaultResourceUrl[WcmAppDefaultResourceUrl["YammerGroup"] = 0] = "YammerGroup";
|
|
103
104
|
WcmAppDefaultResourceUrl[WcmAppDefaultResourceUrl["SharePoint"] = 1] = "SharePoint";
|
|
104
105
|
})(WcmAppDefaultResourceUrl = exports.WcmAppDefaultResourceUrl || (exports.WcmAppDefaultResourceUrl = {}));
|
|
106
|
+
class GetRoleDefinitions {
|
|
107
|
+
static get AdminRoleDefinitions() { return [fx_models_1.RoleDefinitions.AppInstanceAdmin, RoleDefinitions.PageCollectionAdmin]; }
|
|
108
|
+
static get EditorRoleDefinitions() { return [RoleDefinitions.Editor, RoleDefinitions.VariationEditor]; }
|
|
109
|
+
static get AuthorRoleDefinitions() { return [RoleDefinitions.Author, RoleDefinitions.VariationAuthor, RoleDefinitions.Approver]; }
|
|
110
|
+
}
|
|
111
|
+
exports.GetRoleDefinitions = GetRoleDefinitions;
|
|
@@ -18,7 +18,8 @@ export declare enum AutomaticPageCreationStatusType {
|
|
|
18
18
|
Pending = 1,
|
|
19
19
|
Success = 2,
|
|
20
20
|
Failed = 3,
|
|
21
|
-
InProgress = 4
|
|
21
|
+
InProgress = 4,
|
|
22
|
+
Skipped = 5
|
|
22
23
|
}
|
|
23
24
|
export interface AutomaticPageCreationStatus {
|
|
24
25
|
type: AutomaticPageCreationStatusType;
|
|
@@ -36,3 +37,6 @@ export interface FailedAutomaticPageCreationStatus {
|
|
|
36
37
|
export interface InProgressAutomaticPageCreationStatus {
|
|
37
38
|
type: AutomaticPageCreationStatusType.InProgress;
|
|
38
39
|
}
|
|
40
|
+
export interface SkippedAutomaticPageCreationStatus {
|
|
41
|
+
type: AutomaticPageCreationStatusType.Skipped;
|
|
42
|
+
}
|
|
@@ -7,4 +7,5 @@ var AutomaticPageCreationStatusType;
|
|
|
7
7
|
AutomaticPageCreationStatusType[AutomaticPageCreationStatusType["Success"] = 2] = "Success";
|
|
8
8
|
AutomaticPageCreationStatusType[AutomaticPageCreationStatusType["Failed"] = 3] = "Failed";
|
|
9
9
|
AutomaticPageCreationStatusType[AutomaticPageCreationStatusType["InProgress"] = 4] = "InProgress";
|
|
10
|
+
AutomaticPageCreationStatusType[AutomaticPageCreationStatusType["Skipped"] = 5] = "Skipped";
|
|
10
11
|
})(AutomaticPageCreationStatusType = exports.AutomaticPageCreationStatusType || (exports.AutomaticPageCreationStatusType = {}));
|
package/internal-do-not-import-from-here/fx/models/components/CalendarRollupBlockStyles.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export declare const CalendarRollupBlockListViewSettingsStyles: {
|
|
|
18
18
|
dateContent: types.NestedCSSProperties;
|
|
19
19
|
setGroupItemBorder: (color: string) => types.NestedCSSProperties;
|
|
20
20
|
textColor?: types.NestedCSSProperties;
|
|
21
|
+
detailContent?: types.NestedCSSProperties;
|
|
21
22
|
};
|
|
22
23
|
export declare const CalendarRollupBlockSettingsStyles: {
|
|
23
24
|
calenderRemoveButtonPositioner: types.NestedCSSProperties;
|
package/internal-do-not-import-from-here/fx/models/components/CurrentNavigationBlockStyles.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { types } from "typestyle";
|
|
|
2
2
|
import { SpacingSettings, Theming } from "@omnia/fx-models";
|
|
3
3
|
export declare const CurrentNavigationBlockStyles: {
|
|
4
4
|
wrapper: types.NestedCSSProperties;
|
|
5
|
-
headerWrapper: (level: number, indentation: number, isRoutePath: boolean, theming: Theming, padding: SpacingSettings, rtl: boolean) => types.NestedCSSProperties;
|
|
5
|
+
headerWrapper: (level: number, indentation: number, isRoutePath: boolean, theming: Theming, padding: SpacingSettings, rtl: boolean, textColor: string) => types.NestedCSSProperties;
|
|
6
6
|
rightIcon: types.NestedCSSProperties;
|
|
7
7
|
arrowBtnCollapsedDefault: types.NestedCSSProperties;
|
|
8
8
|
arrowBtnExpanded: types.NestedCSSProperties;
|
package/internal-do-not-import-from-here/fx/models/components/PagePropertiesBlockStyles.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { SpacingSettings } from "@omnia/fx-models";
|
|
|
3
3
|
import { ITheming } from "@omnia/fx/ux";
|
|
4
4
|
import { PagePropertiesBlockSettings } from ".";
|
|
5
5
|
export declare const PagePropertiesBlockAdvancedStyles: {
|
|
6
|
-
propertyWrapper?: (isFlexBox: boolean) => types.NestedCSSProperties;
|
|
6
|
+
propertyWrapper?: (settings: PagePropertiesBlockSettings, isFlexBox: boolean) => types.NestedCSSProperties;
|
|
7
7
|
propertyContentWrapper?: (settings: PagePropertiesBlockSettings, isFlexBox: boolean) => types.NestedCSSProperties;
|
|
8
8
|
icon?: types.NestedCSSProperties;
|
|
9
9
|
propertyLabelWrapper?: (fullWidth: boolean, textColor: string) => types.NestedCSSProperties;
|
|
@@ -25,6 +25,5 @@ export declare const PagePropertiesBlockStyles: {
|
|
|
25
25
|
horizontalHeaderAlign?: types.NestedCSSProperties;
|
|
26
26
|
horizontalHeaderAlignNoAvatarInOnePersonField?: types.NestedCSSProperties;
|
|
27
27
|
horizontalHeaderAlignNoAvatarInLine?: types.NestedCSSProperties;
|
|
28
|
-
|
|
29
|
-
horizontalTaxonomyNoAvatarInLine?: types.NestedCSSProperties;
|
|
28
|
+
horizontalPropertyWrapperInPersonField?: (hideAvatar: boolean) => types.NestedCSSProperties;
|
|
30
29
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./ExportFileInQueueResult";
|
|
@@ -50,3 +50,4 @@ tslib_1.__exportStar(require("./mediarollup"), exports);
|
|
|
50
50
|
tslib_1.__exportStar(require("./analytics"), exports);
|
|
51
51
|
tslib_1.__exportStar(require("./welcomeblock"), exports);
|
|
52
52
|
tslib_1.__exportStar(require("./searchresultsource"), exports);
|
|
53
|
+
tslib_1.__exportStar(require("./exportToFile"), exports);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PageRollupDateSettings, PageRollupViewSettings } from "..";
|
|
2
|
-
import { GuidValue } from "@omnia/fx-models";
|
|
2
|
+
import { GuidValue, MultilingualString } from "@omnia/fx-models";
|
|
3
3
|
export interface NewsletterViewSettings extends PageRollupViewSettings, PageRollupDateSettings {
|
|
4
4
|
imageProp: string;
|
|
5
5
|
summaryProp: string;
|
|
@@ -8,4 +8,7 @@ export interface NewsletterViewSettings extends PageRollupViewSettings, PageRoll
|
|
|
8
8
|
pageContentCharacterLimit: number;
|
|
9
9
|
pageSummaryCharacterLimit: number;
|
|
10
10
|
imagePropRatioUniqueId?: GuidValue;
|
|
11
|
+
goToPageText: MultilingualString;
|
|
12
|
+
goToPageColor: string;
|
|
13
|
+
goToPageBgColor: string;
|
|
11
14
|
}
|
|
@@ -5,6 +5,7 @@ var PageRollupEnums;
|
|
|
5
5
|
(function (PageRollupEnums) {
|
|
6
6
|
let DatePeriods;
|
|
7
7
|
(function (DatePeriods) {
|
|
8
|
+
DatePeriods[DatePeriods["NoLimit"] = 0] = "NoLimit";
|
|
8
9
|
DatePeriods[DatePeriods["OneWeekFromToday"] = 1] = "OneWeekFromToday";
|
|
9
10
|
DatePeriods[DatePeriods["TwoWeeksFromToday"] = 2] = "TwoWeeksFromToday";
|
|
10
11
|
DatePeriods[DatePeriods["OneMonthFromToday"] = 3] = "OneMonthFromToday";
|
|
@@ -42,6 +42,9 @@ export interface ExportQueryPagesRequest extends BatchQueryPages {
|
|
|
42
42
|
[internalName: string]: string;
|
|
43
43
|
};
|
|
44
44
|
}
|
|
45
|
+
/**
|
|
46
|
+
@deprecated Removed in 7.10. Use ExportFileInQueueResult instead.
|
|
47
|
+
*/
|
|
45
48
|
export interface ExportQueryPagesResult {
|
|
46
49
|
fileToken: string;
|
|
47
50
|
queueMessageId: string;
|
package/internal-do-not-import-from-here/fx/models/pages/PageCollectionDistributionChannel.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export interface MsTeamsDistributionChannelInfo extends DistributionChannelInfo
|
|
|
23
23
|
groupId: string;
|
|
24
24
|
channelId: string;
|
|
25
25
|
propertiesMapping: MsTeamChannelDistributePropertyMapping;
|
|
26
|
+
includeChannelMention: boolean;
|
|
26
27
|
}
|
|
27
28
|
export interface YammerDistributePropertyMapping extends ChannelDistributePropertyMapping {
|
|
28
29
|
}
|
|
@@ -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
|
|
@@ -71,8 +72,9 @@ export interface SuspendedSettings {
|
|
|
71
72
|
changePageType: ChangePageTypeSettings;
|
|
72
73
|
removeFromSearchEnabled: boolean;
|
|
73
74
|
}
|
|
74
|
-
export interface
|
|
75
|
+
export interface PageReviewRuleVersion {
|
|
75
76
|
id: number;
|
|
77
|
+
ruleId: GuidValue;
|
|
76
78
|
pageId: number;
|
|
77
79
|
originalPageVersionId: number;
|
|
78
80
|
title: MultilingualString;
|
|
@@ -85,14 +87,15 @@ export interface PageReviewRule {
|
|
|
85
87
|
suspendedSettings: SuspendedSettings;
|
|
86
88
|
}
|
|
87
89
|
export interface PageReviewRuleEvaluationResult {
|
|
88
|
-
pageReviewRule:
|
|
90
|
+
pageReviewRule: PageReviewRuleVersion;
|
|
89
91
|
reviewDate: Date;
|
|
90
92
|
showMessageBar: boolean;
|
|
91
93
|
isSuspended: boolean;
|
|
92
94
|
sendEmail: boolean;
|
|
93
95
|
}
|
|
94
|
-
export interface
|
|
95
|
-
|
|
96
|
+
export interface PageReviewRuleTestMailTemplateRequest {
|
|
97
|
+
ruleVersionId: number;
|
|
96
98
|
pageTypeId: number;
|
|
97
|
-
|
|
99
|
+
identities: UserIdentity[];
|
|
100
|
+
pageIds: PageId[];
|
|
98
101
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated Removed in 8.0. Use Omnia Enums instead.
|
|
3
|
+
*/
|
|
4
|
+
export declare module ItemQueryEnums {
|
|
5
|
+
enum FilterLogicalOperator {
|
|
6
|
+
And = 1,
|
|
7
|
+
Or = 2
|
|
8
|
+
}
|
|
9
|
+
enum FilterOperator {
|
|
10
|
+
Eq = 1,
|
|
11
|
+
Ne = 2,
|
|
12
|
+
Lt = 3,
|
|
13
|
+
Gt = 4,
|
|
14
|
+
Le = 5,
|
|
15
|
+
Ge = 6,
|
|
16
|
+
In = 7,
|
|
17
|
+
Like = 8,
|
|
18
|
+
NotLike = 9,
|
|
19
|
+
Ba = 10
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated Removed in 8.0. Use Omnia Enums instead.
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ItemQueryEnums = void 0;
|
|
7
|
+
var ItemQueryEnums;
|
|
8
|
+
(function (ItemQueryEnums) {
|
|
9
|
+
let FilterLogicalOperator;
|
|
10
|
+
(function (FilterLogicalOperator) {
|
|
11
|
+
FilterLogicalOperator[FilterLogicalOperator["And"] = 1] = "And";
|
|
12
|
+
FilterLogicalOperator[FilterLogicalOperator["Or"] = 2] = "Or";
|
|
13
|
+
})(FilterLogicalOperator = ItemQueryEnums.FilterLogicalOperator || (ItemQueryEnums.FilterLogicalOperator = {}));
|
|
14
|
+
let FilterOperator;
|
|
15
|
+
(function (FilterOperator) {
|
|
16
|
+
FilterOperator[FilterOperator["Eq"] = 1] = "Eq";
|
|
17
|
+
FilterOperator[FilterOperator["Ne"] = 2] = "Ne";
|
|
18
|
+
FilterOperator[FilterOperator["Lt"] = 3] = "Lt";
|
|
19
|
+
FilterOperator[FilterOperator["Gt"] = 4] = "Gt";
|
|
20
|
+
FilterOperator[FilterOperator["Le"] = 5] = "Le";
|
|
21
|
+
FilterOperator[FilterOperator["Ge"] = 6] = "Ge";
|
|
22
|
+
FilterOperator[FilterOperator["In"] = 7] = "In";
|
|
23
|
+
FilterOperator[FilterOperator["Like"] = 8] = "Like";
|
|
24
|
+
FilterOperator[FilterOperator["NotLike"] = 9] = "NotLike";
|
|
25
|
+
FilterOperator[FilterOperator["Ba"] = 10] = "Ba";
|
|
26
|
+
})(FilterOperator = ItemQueryEnums.FilterOperator || (ItemQueryEnums.FilterOperator = {}));
|
|
27
|
+
})(ItemQueryEnums = exports.ItemQueryEnums || (exports.ItemQueryEnums = {}));
|
|
@@ -3,4 +3,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
tslib_1.__exportStar(require("./ItemQuery"), exports);
|
|
5
5
|
tslib_1.__exportStar(require("./PageQuery"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./ItemQueryEnums"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./VariationQuery"), exports);
|
|
@@ -22,6 +22,10 @@ export interface Variation {
|
|
|
22
22
|
automaticMachineTranslation?: boolean;
|
|
23
23
|
allowEditMachineTranslation?: boolean;
|
|
24
24
|
activeRightToLeft?: boolean;
|
|
25
|
-
|
|
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
|
|
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
|
-
|
|
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;
|
|
@@ -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]: PageNavigationNode<PageNavigationData>[];
|
|
57
57
|
}>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { MultilingualStore } from "@omnia/fx/stores";
|
|
2
2
|
import { WcmContext } from "../contexts";
|
|
3
|
-
import { BatchQueryPages, BatchQueryPagesResult,
|
|
3
|
+
import { BatchQueryPages, BatchQueryPagesResult, ExportFileInQueueResult, ExportQueryPagesRequest, PageCollectionSelection, PageContentsQueryResult, PageId, PendingApprovalPage, ResolveReusablePageResult, SimplePageQuery } from "../models";
|
|
4
4
|
export declare class PageQueryService {
|
|
5
5
|
private httpClient;
|
|
6
6
|
private omniaHttpClient;
|
|
@@ -16,7 +16,7 @@ export declare class PageQueryService {
|
|
|
16
16
|
queryBatchPages: (queries: BatchQueryPages[], cancelRequest?: (cancelToken: any) => void) => Promise<BatchQueryPagesResult>;
|
|
17
17
|
getPagesContents: (queryDetails: SimplePageQuery) => Promise<PageContentsQueryResult[]>;
|
|
18
18
|
getDefaultPageImageSrc: () => string;
|
|
19
|
-
exportToExcel: (query: ExportQueryPagesRequest, exportingBlockId: string) => Promise<
|
|
19
|
+
exportToExcel: (query: ExportQueryPagesRequest, exportingBlockId: string) => Promise<ExportFileInQueueResult>;
|
|
20
20
|
getExportedFile: (exportingFileName: string, exportingFileToken: string) => Promise<void>;
|
|
21
21
|
checkMigrationOmniaSearchStatus: (migrationId: string) => Promise<boolean>;
|
|
22
22
|
private processPagesDetailData;
|
|
@@ -4,7 +4,6 @@ import { ApiResponse, GuidValue } from "@omnia/fx-models";
|
|
|
4
4
|
import { VersionReference } from "../models";
|
|
5
5
|
import { NavigationPosition } from "../models/navigation/NavigationPosition";
|
|
6
6
|
import { CreatedPageWithNavigationInfo, CreatedPageInfo } from "../models";
|
|
7
|
-
import { PagePermissionInfo } from "../models";
|
|
8
7
|
import { EnterprisePropertyStore } from "@omnia/fx/stores";
|
|
9
8
|
import { InvitationOfAuthor } from "../../models";
|
|
10
9
|
export declare class PageService {
|
|
@@ -16,7 +15,7 @@ export declare class PageService {
|
|
|
16
15
|
private readonly baseUrl;
|
|
17
16
|
private readonly reusablePageBaseUrl;
|
|
18
17
|
createVariationPage: <T extends PageData>(pageData: T, originalPageId: PageId, variationId: VariationId) => Promise<CreatedPageInfo<T>>;
|
|
19
|
-
updatePagePermissions: (pageId: PageId,
|
|
18
|
+
updatePagePermissions: (pageId: PageId, variationId?: VariationId) => Promise<void>;
|
|
20
19
|
createWithNavigation: <T extends PageData>(creationRequest: PageWithNavigationCreationRequest, targetPublishingAppId?: GuidValue, targetVariationId?: string) => Promise<CreatedPageWithNavigationInfo<T>>;
|
|
21
20
|
move: <T extends NavigationNode<NavigationData>>(nodeToMove: T, newPosition: NavigationPosition) => Promise<MovePagesResult>;
|
|
22
21
|
movePageTypeToTenant: (page: Page) => Promise<PageNavigationNode<PageNavigationData>>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { OmniaContext } from "@omnia/fx";
|
|
2
|
+
import { GuidValue, TermUISettings } from "@omnia/fx-models";
|
|
3
|
+
import { EnterpriseGlossaryStore } from "@omnia/fx/stores";
|
|
4
|
+
import { WCMGlossary, WCMGlossaryType } from "../models";
|
|
5
|
+
export declare class EnterpriseGlossaryHelper {
|
|
6
|
+
enterpriseGlossaryStore: EnterpriseGlossaryStore;
|
|
7
|
+
omniaCtx: OmniaContext;
|
|
8
|
+
ensureLoadTermGlossary(glossaryType: GuidValue, glossaryDataType: WCMGlossaryType): Promise<WCMGlossary>;
|
|
9
|
+
getItemStyle(mappedId: number, wcmGlossaryData: WCMGlossary): TermUISettings;
|
|
10
|
+
}
|
|
@@ -2,6 +2,7 @@ import { EnterprisePropertyStore, TargetingPropertyStore } from "@omnia/fx/store
|
|
|
2
2
|
import { OmniaCategorySearchResult, SearchCategoryOption } from "@omnia/workplace/models";
|
|
3
3
|
import { AppInfoStore, ChannelManagementStore, CurrentNavigationStore, PageRollupStore } from "../stores";
|
|
4
4
|
import { OmniaSearchService } from "@omnia/fx/services";
|
|
5
|
+
import { TermStore } from "@omnia/fx/sp";
|
|
5
6
|
export declare class OmniaSearchCategoryQueryHelper {
|
|
6
7
|
enterprisePropertyStore: EnterprisePropertyStore;
|
|
7
8
|
appInfoStore: AppInfoStore;
|
|
@@ -14,6 +15,7 @@ export declare class OmniaSearchCategoryQueryHelper {
|
|
|
14
15
|
private targetingStore;
|
|
15
16
|
private pagesStore;
|
|
16
17
|
omniaSearchService: OmniaSearchService;
|
|
18
|
+
termStore: TermStore;
|
|
17
19
|
private enterpriseProperties;
|
|
18
20
|
private querableProperties;
|
|
19
21
|
private appInfos;
|
|
@@ -26,6 +28,9 @@ export declare class OmniaSearchCategoryQueryHelper {
|
|
|
26
28
|
private getFilters;
|
|
27
29
|
private getDictionaryPropertiesMapping;
|
|
28
30
|
private mappingSearchResutItems;
|
|
31
|
+
private resolveTermData;
|
|
32
|
+
private processTermPropertyData;
|
|
33
|
+
private isArrayString;
|
|
29
34
|
private ensureBuiltInPropertyValue;
|
|
30
35
|
private mappingRefinerResult;
|
|
31
36
|
private generateScopeFilterBuilders;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Store } from "@omnia/fx/stores";
|
|
2
|
-
import { Page, VersionedPageData, PageData, VersionReference, PageId, VersionId, IPageVersion } from "../models";
|
|
3
1
|
import { Layout } from "@omnia/fx-models";
|
|
2
|
+
import { Store } from "@omnia/fx/stores";
|
|
3
|
+
import { IPageVersion, Page, PageData, PageId, VersionedPageData, VersionId, VersionReference } from "../models";
|
|
4
4
|
export interface ICurrentPageState {
|
|
5
5
|
/**
|
|
6
6
|
* Reference to the current page
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Store } from "@omnia/fx/stores";
|
|
2
|
-
import {
|
|
2
|
+
import { ExportFileInQueueResult, ExportQueryPagesRequest, PageDetailQueryResult, PageDialogData, PageDialogPropertiesMapping, PageNavigationData, PageNavigationNode, PageRollupQuery, PageTypeTitle } from "@omnia/wcm/models";
|
|
3
3
|
export interface PageRollupQueryResult extends PageRollupQuery {
|
|
4
4
|
selectProperties: Array<string>;
|
|
5
5
|
disableDistinct: boolean;
|
|
@@ -113,7 +113,7 @@ export declare class PageRollupStore extends Store {
|
|
|
113
113
|
id: string;
|
|
114
114
|
title: string;
|
|
115
115
|
}>>>;
|
|
116
|
-
exportToExcel: import("@omnia/fx/stores").StoreAction<unknown, (query: ExportQueryPagesRequest, exportingBlockId: string) => void, (result:
|
|
116
|
+
exportToExcel: import("@omnia/fx/stores").StoreAction<unknown, (query: ExportQueryPagesRequest, exportingBlockId: string) => void, (result: ExportFileInQueueResult, query: ExportQueryPagesRequest, exportingBlockId: string) => void, (failureReason: any, query: ExportQueryPagesRequest, exportingBlockId: string) => void, (query: ExportQueryPagesRequest, exportingBlockId: string) => Promise<ExportFileInQueueResult>>;
|
|
117
117
|
getExportedFile: import("@omnia/fx/stores").StoreAction<unknown, (exportingFileName: string, exportingFileToken: string) => void, (result: void, exportingFileName: string, exportingFileToken: string) => void, (failureReason: any, exportingFileName: string, exportingFileToken: string) => void, (exportingFileName: string, exportingFileToken: string) => Promise<void>>;
|
|
118
118
|
ensureOmniaSearchMigrationStatus: import("@omnia/fx/stores").StoreAction<unknown, () => void, (result: boolean) => void, (failureReason: any) => void, () => Promise<boolean>>;
|
|
119
119
|
};
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
import { Store } from "@omnia/fx/stores";
|
|
2
2
|
import { NavigationNode, WCMPageTypes, Page, VersionedPageData, PageData, VersionReference, PageId, NavigationPosition, PageNavigationNode, PageNavigationData, MergedPageVersionLayout, NavigationData, VersionId, VariationPage, Variation, PageCollectionSelection, CheckedOutVersionPageData, MovePagesResult, ArchivePageResult, PageWithNavigationCreationRequest, ReadNews, ApprovalMetaData } from "../models";
|
|
3
3
|
import { GuidValue, Guid, IMessageBusSubscriptionHandler, IOmniaContext } from "@omnia/fx-models";
|
|
4
|
+
import { VariationStore } from "./VariationStore";
|
|
5
|
+
import { PermissionService } from "@omnia/fx/services";
|
|
4
6
|
export declare class PagesStore extends Store {
|
|
5
7
|
private pageService;
|
|
6
8
|
private navigationStore;
|
|
7
9
|
private wcmContext;
|
|
8
10
|
private versionedLayoutStore;
|
|
9
11
|
protected omniaContext: IOmniaContext;
|
|
12
|
+
protected variationStore: VariationStore;
|
|
13
|
+
protected permissionService: PermissionService;
|
|
10
14
|
private pages;
|
|
11
15
|
private versionData;
|
|
12
16
|
private versionLoadPromise;
|
|
@@ -65,6 +69,7 @@ export declare class PagesStore extends Store {
|
|
|
65
69
|
visitedpage: import("@omnia/fx/stores").StoreAction<unknown, (pageId: PageId) => void, (result: ReadNews, pageId: PageId) => void, (failureReason: any, pageId: PageId) => void, (pageId: PageId) => Promise<ReadNews>>;
|
|
66
70
|
getSitePagesFolderFullUrl: import("@omnia/fx/stores").StoreAction<unknown, (pageId: PageId) => void, (result: string, pageId: PageId) => void, (failureReason: any, pageId: PageId) => void, (pageId: PageId) => Promise<string>>;
|
|
67
71
|
getPageVersionMetaData: import("@omnia/fx/stores").StoreAction<unknown, (versionId: VersionId) => void, (result: ApprovalMetaData, versionId: VersionId) => void, (failureReason: any, versionId: VersionId) => void, (versionId: VersionId) => Promise<ApprovalMetaData>>;
|
|
72
|
+
checkPermission: import("@omnia/fx/stores").StoreAction<unknown, (page: Page) => void, (result: boolean, page: Page) => void, (failureReason: any, page: Page) => void, (page: Page) => Promise<boolean>>;
|
|
68
73
|
};
|
|
69
74
|
private updatePageCollectionSelectionsPromise;
|
|
70
75
|
private handleNewPageAndNode;
|
|
@@ -74,4 +79,5 @@ export declare class PagesStore extends Store {
|
|
|
74
79
|
private updatePageHiddenAndSoftDeleted;
|
|
75
80
|
private updateMovePageTrackingIdForPages;
|
|
76
81
|
private onMergeLayoutCompleted;
|
|
82
|
+
private getPermissionContextParams;
|
|
77
83
|
}
|
|
@@ -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","AnalyticsReportColumnConstants","AnyoneApprovalData","AnyoneApprovalStep","ApplySettingsChangedStatus","ApprovalData","ApprovalMetaData","ApprovalStep","ApprovalType","AutomaticPageCreationStatusType","AvatarPosition","AvatarSize","BannerBlockStyles","BannerLayout","BreadcrumbBlockStyles","BuildInContentBlockTextStyleFormatting","ButtonGroupings","CalendarRollupBlockListViewSettingsStyles","CalendarRollupBlockSettingsStyles","CalendarRollupBlockStyles","CalendarRollupEnums","CalendarType","CardTypes","ChannelCardViewStyles","ChannelRollupBlockAdministrationViewStyles","ChannelRollupBlockSettingsFilterTabStyles","ChannelRollupBlockSettingsGeneralTabStyles","ChannelRollupBlockStyles","ChildStructureType","ColleagueDialogContentStyles","CommentSorting","CommunityAppLayoutDefinition","CommunityPageActivityStyles","CommunityStyles","Constants","ContentBlockModes","ContentBlockStyles","CurrentNavigationBlockSettingsStyles","CurrentNavigationBlockStyles","CurrentNavigationStatus","CurrentPageStatus","DailyRecurrenceTypeEnums","DatePeriods","DeletedPageDialogStyles","DigitalSignageConstants","DigitalSignageManifests","DigitalSignageQuerySettingsType","DigitalSigningScreenType","Directions","DistributionChannelType","DocumentTypes","DynamicRollerSizes","DynamicRollerTypes","EnterpriseGlossaryPageInformationProviderStyles","EnterprisePropertiesBlockDateTimeModes","EnterprisePropertiesRichTextSettings","EnterprisePropertyDataTypeProvider","EnterprisePropertyDocumentProviderProperty","EventAttedeeType","EventCloneDialogContentStyles","EventParticipantCounterBlockStyles","EventParticipantListEnums","EventParticipantListStyles","EventParticipantListViewStyles","FileUploaderWCMPageContext","FilterKey","HtmlScriptBlockStyle","InfoScreenConstants","InfoScreenManifests","InfoScreenViewIdConstants","LabelPositions","LimitedUserApprovalData","LimitedUserApprovalStep","LinkPickerStyle","ListView","MediaBlockStyles","MediaPickerStorageProviderPageContext","MediaPickerStorageProviderPageCreationContext","MediaPickerStorageProviderPageReadContext","MediaPickerStorageProviderWCMChannelAdminContext","MediaRollupConstants","MediaRollupStyles","MediaRollupThumbnailSize","MediaRollupType","MegaMenuStyles","MessageType","MicrosoftSearch","MobileNavigationNodeStyles","MobileNavigationStyles","MonthlyRecurrenceTypeEnums","MoveNavigationNodeType","MovePageCollectionDialogStyles","MovePageStatus","MsSearchFieldsConstants","MultiApprovalData","NavigationDataType","NavigationNodeQuery","NavigationNodeStyles","NavigationNodeType","NavigationRenders","NodeId","OmniaSearchConstants","OpenDocumentOptions","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","PhotowallView","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","SharePointLibrary","SharepointPageTemplateStyles","SignOffRequestBlockStyles","SignOffRequestConstants","SortByProperties","SpsSearch","StatisticsPerPageDataSourcesEnum","TableView","TagTopic","TaxonomyFilterType","TaxonomyNavigationStyles","TaxonomyTopic","TermDrivenApprovalData","TermDrivenApprovalStep","TimePeriod","TopicInformationType","TopicType","UserTopic","ValidationArchivePageResult","VariationId","VariationInputStyles","VariationsRouteProperty","VersionComparisonType","VersionId","VersionMetaData","VersionType","VersionUpdationMode","VideoType","WCMEnterpriseProperties","WCMFxLocalization","WCMGlossary","WCMGlossaryType","WCMGlossaryVariation","WCMNavigationDataTypes","WCMPageIdCustomPropertyName","WCMPageTypes","WCMReaderContext","WcmAppDefaultResourceUrl","WcmEditorDynamicNavigationRouteProperty","WcmExtension","WcmGroupManifests","WcmLayoutProvider","WcmPropertyDefaultBooleanValues","WcmPropertyDefaultValues","WcmResourceManifests","WcmService","WcmWebComponentManifests","WebBrowserDigitalSigningScreenStepType","WebsiteQueryType","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","AnalyticsReportColumnConstants","AnyoneApprovalData","AnyoneApprovalStep","ApplySettingsChangedStatus","ApprovalData","ApprovalMetaData","ApprovalStep","ApprovalType","AutomaticPageCreationStatusType","AvatarPosition","AvatarSize","BannerBlockStyles","BannerLayout","BreadcrumbBlockStyles","BuildInContentBlockTextStyleFormatting","ButtonGroupings","CalendarRollupBlockListViewSettingsStyles","CalendarRollupBlockSettingsStyles","CalendarRollupBlockStyles","CalendarRollupEnums","CalendarType","CardTypes","ChannelCardViewStyles","ChannelRollupBlockAdministrationViewStyles","ChannelRollupBlockSettingsFilterTabStyles","ChannelRollupBlockSettingsGeneralTabStyles","ChannelRollupBlockStyles","ChildStructureType","ColleagueDialogContentStyles","CommentSorting","CommunityAppLayoutDefinition","CommunityPageActivityStyles","CommunityStyles","Constants","ContentBlockModes","ContentBlockStyles","CurrentNavigationBlockSettingsStyles","CurrentNavigationBlockStyles","CurrentNavigationStatus","CurrentPageStatus","DailyRecurrenceTypeEnums","DatePeriods","DeletedPageDialogStyles","DigitalSignageConstants","DigitalSignageManifests","DigitalSignageQuerySettingsType","DigitalSigningScreenType","Directions","DistributionChannelType","DocumentTypes","DynamicRollerSizes","DynamicRollerTypes","EnterpriseGlossaryPageInformationProviderStyles","EnterprisePropertiesBlockDateTimeModes","EnterprisePropertiesRichTextSettings","EnterprisePropertyDataTypeProvider","EnterprisePropertyDocumentProviderProperty","EventAttedeeType","EventCloneDialogContentStyles","EventParticipantCounterBlockStyles","EventParticipantListEnums","EventParticipantListStyles","EventParticipantListViewStyles","FileUploaderWCMPageContext","FilterKey","GetRoleDefinitions","HtmlScriptBlockStyle","InfoScreenConstants","InfoScreenManifests","InfoScreenViewIdConstants","ItemQueryEnums","LabelPositions","LimitedUserApprovalData","LimitedUserApprovalStep","LinkPickerStyle","ListView","MediaBlockStyles","MediaPickerStorageProviderPageContext","MediaPickerStorageProviderPageCreationContext","MediaPickerStorageProviderPageReadContext","MediaPickerStorageProviderWCMChannelAdminContext","MediaRollupConstants","MediaRollupStyles","MediaRollupThumbnailSize","MediaRollupType","MegaMenuStyles","MessageType","MicrosoftSearch","MobileNavigationNodeStyles","MobileNavigationStyles","MonthlyRecurrenceTypeEnums","MoveNavigationNodeType","MovePageCollectionDialogStyles","MovePageStatus","MsSearchFieldsConstants","MultiApprovalData","NavigationDataType","NavigationNodeQuery","NavigationNodeStyles","NavigationNodeType","NavigationRenders","NodeId","OmniaSearchConstants","OpenDocumentOptions","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","PhotowallView","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","SharePointLibrary","SharepointPageTemplateStyles","SignOffRequestBlockStyles","SignOffRequestConstants","SortByProperties","SpsSearch","StatisticsPerPageDataSourcesEnum","TableView","TagTopic","TaxonomyFilterType","TaxonomyNavigationStyles","TaxonomyTopic","TermDrivenApprovalData","TermDrivenApprovalStep","TimePeriod","TopicInformationType","TopicType","UserTopic","ValidationArchivePageResult","VariationId","VariationInputStyles","VariationsRouteProperty","VersionComparisonType","VersionId","VersionMetaData","VersionType","VersionUpdationMode","VideoType","WCMEnterpriseProperties","WCMFxLocalization","WCMGlossary","WCMGlossaryType","WCMGlossaryVariation","WCMNavigationDataTypes","WCMPageIdCustomPropertyName","WCMPageTypes","WCMReaderContext","WcmAppDefaultResourceUrl","WcmEditorDynamicNavigationRouteProperty","WcmExtension","WcmGroupManifests","WcmLayoutProvider","WcmPropertyDefaultBooleanValues","WcmPropertyDefaultValues","WcmResourceManifests","WcmService","WcmWebComponentManifests","WebBrowserDigitalSigningScreenStepType","WebsiteQueryType","WeekOfMonthEnums","WelcomeBlockStyles","WorkplaceService","YammerProperties","layoutItemAction"]}}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"omniaWebpackJsonp['d60fa82a-129a-41a9-93ce-d784dcb217b0']['a41d1723-10ca-4597-9c40-fd4f511ae2ae']","content":{"./node_modules/@omnia/wcm/internal/index.js":{"id":"./node_modules/@omnia/wcm/internal/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ActiveUserDashboardQueryTypes","BreadcrumNodeTypes","NavigationTitleHelperService","OmniaPageSearch","OmniaSearchPageStore","PageDashboardDetail","PageTypesFilterValue","PagesDashboardDetailResult","PagesDashboardMetricQuery","PagesDashboardQueryTypes","PagesDetailDashboardQuery","PublishingAppsFilterValue","ReindexContentOmniaSearchStatus","SyncOmniaSearchType","UserPropertiesFilterValue","YammerIntegrationStore"]},"./node_modules/@omnia/wcm/messaging/InternalWcmTopics.js":{"id":"./node_modules/@omnia/wcm/messaging/internalwcmtopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalWcmTopics"]},"./node_modules/@omnia/wcm/shared/index.js":{"id":"./node_modules/@omnia/wcm/shared/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BatchQueryRegistration","EnsureMigrateBlockData","FilterManager","OmniaSearchCategoryQueryHelper","OmniaSearchQueryHelper","OmniaSearchQueryUtils","PageRollupConfigurationFactory","PageRollupStoreHelper","PageSearchHelper","PickedPageHelper"]},"./node_modules/@omnia/wcm/index.js":{"id":"dd7f30f1-7b1b-47a5-acfb-c173d2fcb1f3","buildMeta":{"exportsType":"namespace"},"expo.js":["ActivityActionFactory","AiContentPageReportService","AppInfoStore","AutomaticPageCreationService","BASE_URL","BackgroundImageHelper","BreadcrumbStore","BreakpointStore","BuiltInActionButtonHandlers","CURRENT_DATE","CalendarConstants","CalendarService","ChannelCategoriesStore","ChannelManagementService","ChannelManagementStore","CommunityRules","CreatePageFormStore","CurrentEventStore","CurrentNavigationStore","CurrentPageStore","DisplayBreakPointFactory","DocumentService","EditingDisplayRules","EmailSettingsKey","EnterprisePropertyInternalNames","EventParticipantListElementName","EventService","GovernanceDashboard","IconRules","ItemQueryHelper","LayoutDataParentPageId","LayoutHelper","LayoutItemsTranslator","LinkPickerProviderMsg","LinkPickerProviders","LinkPickerStore","MaxIntNumber","MediaRollupService","NavigationNodeHelper","NavigationService","NavigationStore","NewsletterService","OmniaSearchPageService","OmniaWCMPageBody","OpenAIPageCreationService","OutlookEvent","PageApprovalConstants","PageBlockPropertyStore","PageFactory","PageHiddenService","PageNavigationNodeHelper","PagePermissionService","PageQueryService","PageRedirectHelper","PageRollupFilterEngineContext","PageRollupIndexedDB","PageRollupListView","PageRollupStore","PageService","PageSocialService","PageStatisticsService","PageStatisticsStore","PageVariationHelper","PageVersion","PagesStore","ParticipantService","ParticipantsFields","PublishingAppDefaultScrollElementClass","PublishingAppInfoStore","PublishingAppUniqueModelName","PublishingChannelCategoriesService","PublishingRuleService","PublishingRuleStore","QueryableProperties","ReusablePageService","SocialService","TargetingStore","ThemingRules","TimeFormat","TopicActivityService","TopicPrefixConstants","Topics","TopicsActivityStore","VariationRules","VariationService","VariationStore","VersionEnterpriseProperties","VersionPropertyBag","VisitedPageKeyPrefix","WCMPageKeyPrefix","WCMPageVersionStateException","WcmContext","WcmRouter","YammerService"]}}}
|
|
1
|
+
{"name":"omniaWebpackJsonp['d60fa82a-129a-41a9-93ce-d784dcb217b0']['a41d1723-10ca-4597-9c40-fd4f511ae2ae']","content":{"./node_modules/@omnia/wcm/internal/index.js":{"id":"./node_modules/@omnia/wcm/internal/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ActiveUserDashboardQueryTypes","BreadcrumNodeTypes","NavigationTitleHelperService","OmniaPageSearch","OmniaSearchPageStore","PageDashboardDetail","PageTypesFilterValue","PagesDashboardDetailResult","PagesDashboardMetricQuery","PagesDashboardQueryTypes","PagesDetailDashboardQuery","PublishingAppsFilterValue","ReindexContentOmniaSearchStatus","SyncOmniaSearchType","UserPropertiesFilterValue","YammerIntegrationStore"]},"./node_modules/@omnia/wcm/messaging/InternalWcmTopics.js":{"id":"./node_modules/@omnia/wcm/messaging/internalwcmtopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalWcmTopics"]},"./node_modules/@omnia/wcm/shared/index.js":{"id":"./node_modules/@omnia/wcm/shared/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BatchQueryRegistration","EnsureMigrateBlockData","EnterpriseGlossaryHelper","FilterManager","OmniaSearchCategoryQueryHelper","OmniaSearchQueryHelper","OmniaSearchQueryUtils","PageRollupConfigurationFactory","PageRollupStoreHelper","PageSearchHelper","PickedPageHelper"]},"./node_modules/@omnia/wcm/index.js":{"id":"dd7f30f1-7b1b-47a5-acfb-c173d2fcb1f3","buildMeta":{"exportsType":"namespace"},"expo.js":["ActivityActionFactory","AiContentPageReportService","AppInfoStore","AutomaticPageCreationService","BASE_URL","BackgroundImageHelper","BreadcrumbStore","BreakpointStore","BuiltInActionButtonHandlers","CURRENT_DATE","CalendarConstants","CalendarService","ChannelCategoriesStore","ChannelManagementService","ChannelManagementStore","CommunityRules","CreatePageFormStore","CurrentEventStore","CurrentNavigationStore","CurrentPageStore","DisplayBreakPointFactory","DocumentService","EditingDisplayRules","EmailSettingsKey","EnterprisePropertyInternalNames","EventParticipantListElementName","EventService","GovernanceDashboard","IconRules","ItemQueryHelper","LayoutDataParentPageId","LayoutHelper","LayoutItemsTranslator","LinkPickerProviderMsg","LinkPickerProviders","LinkPickerStore","MaxIntNumber","MediaRollupService","NavigationNodeHelper","NavigationService","NavigationStore","NewsletterService","OmniaSearchPageService","OmniaWCMPageBody","OpenAIPageCreationService","OutlookEvent","PageApprovalConstants","PageBlockPropertyStore","PageFactory","PageHiddenService","PageNavigationNodeHelper","PagePermissionService","PageQueryService","PageRedirectHelper","PageRollupFilterEngineContext","PageRollupIndexedDB","PageRollupListView","PageRollupStore","PageService","PageSocialService","PageStatisticsService","PageStatisticsStore","PageVariationHelper","PageVersion","PagesStore","ParticipantService","ParticipantsFields","PublishingAppDefaultScrollElementClass","PublishingAppInfoStore","PublishingAppUniqueModelName","PublishingChannelCategoriesService","PublishingRuleService","PublishingRuleStore","QueryableProperties","ReusablePageService","SocialService","TargetingStore","ThemingRules","TimeFormat","TimeFormat12Hours","TopicActivityService","TopicPrefixConstants","Topics","TopicsActivityStore","VariationRules","VariationService","VariationStore","VersionEnterpriseProperties","VersionPropertyBag","VisitedPageKeyPrefix","WCMPageKeyPrefix","WCMPageVersionStateException","WcmContext","WcmRouter","YammerService"]}}}
|
|
@@ -103,6 +103,9 @@ class VariationSecurityResourceEvaluator {
|
|
|
103
103
|
if (pageId) {
|
|
104
104
|
yield this.pagesStore.actions.ensurePages.dispatch([pageId]);
|
|
105
105
|
const page = this.pagesStore.getters.getPage(pageId);
|
|
106
|
+
if (!page) {
|
|
107
|
+
return "";
|
|
108
|
+
}
|
|
106
109
|
return this.getResourceName(page.securityResourceId.toString(), variationId.toString());
|
|
107
110
|
}
|
|
108
111
|
return "";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/wcm",
|
|
3
|
-
"license": "
|
|
4
|
-
"version": "7.9.36
|
|
3
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
4
|
+
"version": "7.9.36",
|
|
5
5
|
"description": "Omnia Web Content Management.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -18,8 +18,7 @@
|
|
|
18
18
|
"sharepoint"
|
|
19
19
|
],
|
|
20
20
|
"author": "Omnia Digital Workplace AB",
|
|
21
|
-
"dependencies": {
|
|
22
|
-
},
|
|
21
|
+
"dependencies": {},
|
|
23
22
|
"typings": "./index.d.ts",
|
|
24
23
|
"bugs": {
|
|
25
24
|
"url": "https://github.com/omniaintranet/OmniaWebContentManagement/issues"
|