@omnia/wcm 7.1.91-preview → 8.0.0-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 (72) hide show
  1. package/index.d.ts +2 -1
  2. package/internal-do-not-import-from-here/core/Constants.d.ts +2 -0
  3. package/internal-do-not-import-from-here/core/loc/CoreLocalization.d.ts +4 -0
  4. package/internal-do-not-import-from-here/core/loc/EditorLocalization.d.ts +0 -1
  5. package/internal-do-not-import-from-here/core/loc/PublishingAppLocalization.d.ts +9 -0
  6. package/internal-do-not-import-from-here/core/ux/EnterprisePropertyRenderer.d.ts +1 -1
  7. package/internal-do-not-import-from-here/core/ux/FilterTargetingPropertyValueInput.d.ts +5 -5
  8. package/internal-do-not-import-from-here/fx/helpers/ItemQueryHelper.d.ts +2 -0
  9. package/internal-do-not-import-from-here/fx/internal/models/OmniaSearch.d.ts +31 -0
  10. package/internal-do-not-import-from-here/fx/internal/models/index.d.ts +1 -0
  11. package/internal-do-not-import-from-here/fx/internal/stores/OmniaSearchPageStore.d.ts +27 -0
  12. package/internal-do-not-import-from-here/fx/internal/stores/index.d.ts +1 -0
  13. package/internal-do-not-import-from-here/fx/models/Constants.d.ts +42 -0
  14. package/internal-do-not-import-from-here/fx/models/Constants.js +107 -3
  15. package/internal-do-not-import-from-here/fx/models/ManifestIds.d.ts +6 -2
  16. package/internal-do-not-import-from-here/fx/models/ManifestIds.js +7 -3
  17. package/internal-do-not-import-from-here/fx/models/index.d.ts +3 -0
  18. package/internal-do-not-import-from-here/fx/models/index.js +3 -0
  19. package/internal-do-not-import-from-here/fx/models/linkpicker/ILinkPickerProvider.d.ts +2 -2
  20. package/internal-do-not-import-from-here/fx/models/navigation/NavigationData.js +2 -2
  21. package/internal-do-not-import-from-here/fx/models/pagenavigation/AnchorNavigationLink.d.ts +7 -0
  22. package/internal-do-not-import-from-here/fx/models/pagenavigation/AnchorNavigationLink.js +2 -0
  23. package/internal-do-not-import-from-here/fx/models/pagenavigation/PageNavigationSettings.d.ts +17 -0
  24. package/internal-do-not-import-from-here/fx/models/pagenavigation/PageNavigationSettings.js +9 -0
  25. package/internal-do-not-import-from-here/fx/models/pagenavigation/index.d.ts +2 -0
  26. package/internal-do-not-import-from-here/fx/models/pagenavigation/index.js +5 -0
  27. package/internal-do-not-import-from-here/fx/models/pagequery/PageRollupQuery.d.ts +15 -7
  28. package/internal-do-not-import-from-here/fx/models/pages/PageData.js +1 -1
  29. package/internal-do-not-import-from-here/fx/models/properties/definitions/PageCollectionPropertyDefinition.d.ts +13 -0
  30. package/internal-do-not-import-from-here/fx/models/properties/definitions/PageCollectionPropertyDefinition.js +16 -0
  31. package/internal-do-not-import-from-here/fx/models/properties/definitions/PageTypePropertyDefinition.d.ts +13 -0
  32. package/internal-do-not-import-from-here/fx/models/properties/definitions/PageTypePropertyDefinition.js +16 -0
  33. package/internal-do-not-import-from-here/fx/models/properties/definitions/PublishingAppPropertyDefinition.d.ts +13 -0
  34. package/internal-do-not-import-from-here/fx/models/properties/definitions/PublishingAppPropertyDefinition.js +16 -0
  35. package/internal-do-not-import-from-here/fx/models/properties/definitions/index.d.ts +3 -0
  36. package/internal-do-not-import-from-here/fx/models/properties/definitions/index.js +6 -0
  37. package/internal-do-not-import-from-here/fx/models/properties/index.d.ts +2 -0
  38. package/internal-do-not-import-from-here/fx/models/properties/index.js +5 -0
  39. package/internal-do-not-import-from-here/fx/models/properties/values/PageCollectionPropertyValue.d.ts +5 -0
  40. package/internal-do-not-import-from-here/fx/models/properties/values/PageCollectionPropertyValue.js +11 -0
  41. package/internal-do-not-import-from-here/fx/models/properties/values/PageTypePropertyValue.d.ts +5 -0
  42. package/internal-do-not-import-from-here/fx/models/properties/values/PageTypePropertyValue.js +11 -0
  43. package/internal-do-not-import-from-here/fx/models/properties/values/PublishAppPropertyValue.d.ts +5 -0
  44. package/internal-do-not-import-from-here/fx/models/properties/values/PublishAppPropertyValue.js +11 -0
  45. package/internal-do-not-import-from-here/fx/models/properties/values/index.d.ts +3 -0
  46. package/internal-do-not-import-from-here/fx/models/properties/values/index.js +6 -0
  47. package/internal-do-not-import-from-here/fx/models/search/PageDocument.d.ts +32 -0
  48. package/internal-do-not-import-from-here/fx/models/search/PageDocument.js +2 -0
  49. package/internal-do-not-import-from-here/fx/models/search/index.d.ts +1 -0
  50. package/internal-do-not-import-from-here/fx/models/search/index.js +4 -0
  51. package/internal-do-not-import-from-here/fx/services/OmniaSearchPageService.d.ts +18 -0
  52. package/internal-do-not-import-from-here/fx/services/PageQueryService.d.ts +2 -0
  53. package/internal-do-not-import-from-here/fx/services/index.d.ts +1 -0
  54. package/internal-do-not-import-from-here/fx/shared/OmniaSearchQueryHelper.d.ts +32 -0
  55. package/internal-do-not-import-from-here/fx/{stores → shared}/PageRollupStoreHelper.d.ts +2 -1
  56. package/internal-do-not-import-from-here/fx/shared/PageSearchHelper.d.ts +23 -0
  57. package/internal-do-not-import-from-here/fx/shared/index.d.ts +3 -0
  58. package/internal-do-not-import-from-here/fx/stores/BreakpointStore.d.ts +3 -3
  59. package/internal-do-not-import-from-here/fx/stores/PageRollupStore.d.ts +4 -2
  60. package/internal-do-not-import-from-here/fx/ux/richtexteditorextensions/LinkPicker/LinkPickerMenu.d.ts +2 -2
  61. package/internal-do-not-import-from-here/fx/ux/richtexteditorextensions/LinkPicker/LinkPickerNode.d.ts +3 -11
  62. package/internal-do-not-import-from-here/fx/ux/richtexteditorextensions/LinkPicker/LinkPickerToolbar.d.ts +2 -2
  63. package/internal-do-not-import-from-here/manifests/omnia.wcm.fx.core.manifest.json +1 -1
  64. package/internal-do-not-import-from-here/manifests/omnia.wcm.fx.manifest.json +1 -1
  65. package/internal-do-not-import-from-here/models/TypedNamedProperties.js +1 -1
  66. package/internal-do-not-import-from-here/models/publishingapp/editor/IActionButton.d.ts +1 -2
  67. package/internal-do-not-import-from-here/tooling.output.json +1 -0
  68. package/internal-do-not-import-from-here/wctypings.d.ts +1 -0
  69. package/package.json +1 -1
  70. package/task.js +3 -3
  71. package/task.ts +4 -4
  72. package/internal-do-not-import-from-here/wcdefinitions.json +0 -1
package/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from "./internal-do-not-import-from-here/tooling";
2
- export * from "./internal-do-not-import-from-here/fx/index";
2
+ export * from "./internal-do-not-import-from-here/fx/index";
3
+ import "./internal-do-not-import-from-here/wctypings";
@@ -17,4 +17,6 @@ export declare class WcmCoreConstants {
17
17
  static get DocumentDataTypeProviderId(): string;
18
18
  static get BackupDataLibraryUrl(): string;
19
19
  static get WCMDocumentsLibraryUrl(): string;
20
+ static get PageDocumentIndexId(): string;
21
+ static get OmniaSearchMigrationId(): string;
20
22
  }
@@ -241,6 +241,10 @@ export declare module WCMCoreLocalization {
241
241
  Description: string;
242
242
  Title: string;
243
243
  };
244
+ ProvisionOmniaSearchData: {
245
+ Title: string;
246
+ Description: string;
247
+ };
244
248
  };
245
249
  ImageScalingBlockSettings: {
246
250
  ForceDefaultScaling: string;
@@ -103,7 +103,6 @@ export declare module EditorLocalization {
103
103
  ContentAnalysisSetting: string;
104
104
  CreateAnalysis: string;
105
105
  Warning: string;
106
- RunAnalysis: string;
107
106
  };
108
107
  PageArchive: {
109
108
  Archive: string;
@@ -101,6 +101,15 @@ export declare module PublishingAppLocalization {
101
101
  DeleteDialogTitle: string;
102
102
  DeleteConfirmMessage: string;
103
103
  };
104
+ OmniaSearch: {
105
+ Title: string;
106
+ OmniaSearchLogs: string;
107
+ ReindexContent: string;
108
+ Logging: string;
109
+ ReindexContentMessageProgress: string;
110
+ ReindexContentMessage: string;
111
+ ConfirmReindexContentOmniaSearchMessage: string;
112
+ };
104
113
  };
105
114
  AppDefinition: {
106
115
  AppDefinitionName: string;
@@ -11,5 +11,5 @@ export declare class EnterprisePropertyRenderer extends VueComponentBase<IEnterp
11
11
  private propertyStore;
12
12
  private propertiesDefinition;
13
13
  created(): void;
14
- render(): VueTsxSupport.JSX.Element;
14
+ render(): JSX.Element;
15
15
  }
@@ -32,9 +32,9 @@ export declare class FilterTargetingPropertyValueInput extends VueComponentBase<
32
32
  created(): void;
33
33
  private getSelectionTargetingProperties;
34
34
  private onTargetPropertyCheckboxChange;
35
- renderFilterTypePicker(): VueTsxSupport.JSX.Element;
36
- renderFixedValuePicker(): VueTsxSupport.JSX.Element;
37
- renderUserTypePicker(): VueTsxSupport.JSX.Element[];
38
- renderIncludeEmptyCheckbox(): VueTsxSupport.JSX.Element;
39
- render(): VueTsxSupport.JSX.Element;
35
+ renderFilterTypePicker(): JSX.Element;
36
+ renderFixedValuePicker(): JSX.Element;
37
+ renderUserTypePicker(): JSX.Element[];
38
+ renderIncludeEmptyCheckbox(): JSX.Element;
39
+ render(): JSX.Element;
40
40
  }
@@ -1,6 +1,8 @@
1
1
  import { EnterprisePropertyDefinition, GuidValue, Tag, Identity } from "@omnia/fx-models";
2
2
  import { ItemQueryEnums, QueryFilter, PageId, VariationId } from "../models";
3
3
  export declare module ItemQueryHelper {
4
+ const PageId = "PId";
5
+ const ConditionExpressionFilter = "ConditionExpressionFilter";
4
6
  const VariationId = "VariationId";
5
7
  function generateExcludePageId(logicalOperator: ItemQueryEnums.FilterLogicalOperator, pageId: PageId, filters?: Array<QueryFilter>): QueryFilter;
6
8
  function generateFalseFilter(logicalOperator: ItemQueryEnums.FilterLogicalOperator, filters?: Array<QueryFilter>): QueryFilter;
@@ -0,0 +1,31 @@
1
+ import { Identity } from "@omnia/fx-models";
2
+ export declare enum ReindexContentOmniaSearchStatus {
3
+ Unassigned = 0,
4
+ Assigned = 1,
5
+ Success = 2,
6
+ Exception = 3
7
+ }
8
+ export interface ReindexContentOmniaSearchProgress {
9
+ total: number;
10
+ failed: number;
11
+ description: string;
12
+ succeed: number;
13
+ appsProgress: {
14
+ [publishingAppId: string]: ReindexContentOmniaSearchAppProgress;
15
+ };
16
+ }
17
+ export interface ReindexContentOmniaSearchAppProgress {
18
+ failed: number;
19
+ succeed: number;
20
+ }
21
+ export interface ReindexContentOmniaSearch {
22
+ id: number;
23
+ status: ReindexContentOmniaSearchStatus;
24
+ createdAt: string;
25
+ createdBy: Identity;
26
+ modifiedAt: string;
27
+ modifiedBy: Identity;
28
+ error?: string;
29
+ resourceId?: string;
30
+ progress?: ReindexContentOmniaSearchProgress;
31
+ }
@@ -5,3 +5,4 @@ export * from "./PagesDashboardMetric";
5
5
  export * from "./PagesDashboard";
6
6
  export * from "./UserActivityDashboard";
7
7
  export * from "./SharepointSynchronizedEvent";
8
+ export * from "./OmniaSearch";
@@ -0,0 +1,27 @@
1
+ import { Store } from "@omnia/fx/stores";
2
+ import { ReindexContentOmniaSearch } from "../models";
3
+ export declare class OmniaSearchPageStore extends Store {
4
+ private omniaSearchPageService;
5
+ onActivated(): void;
6
+ onDisposing(): void;
7
+ getters: {};
8
+ /**
9
+ * Implementation of mutations
10
+ */
11
+ mutations: {};
12
+ /**
13
+ * Implementation of actions
14
+ */
15
+ actions: {
16
+ triggerReindexContentOmniaSearchPublishingApp: import("@omnia/fx/stores").StoreAction<unknown, () => void, (result: string) => void, (failureReason: any) => void, () => Promise<string>>;
17
+ triggerReindexOmniaSearchTenant: import("@omnia/fx/stores").StoreAction<unknown, () => void, (result: string) => void, (failureReason: any) => void, () => Promise<string>>;
18
+ pollingReindexContentOmniaSearchStatus: import("@omnia/fx/stores").StoreAction<unknown, (resourceId: string) => void, (result: ReindexContentOmniaSearch, resourceId: string) => void, (failureReason: any, resourceId: string) => void, (resourceId: string) => Promise<ReindexContentOmniaSearch>>;
19
+ getReindexContentLogs: import("@omnia/fx/stores").StoreAction<unknown, (resourceId: string, pageNr?: number, pageSize?: number, sortColumn?: string, sortDesc?: boolean) => void, (result: {
20
+ total: number;
21
+ value: ReindexContentOmniaSearch[];
22
+ }, resourceId: string, pageNr?: number, pageSize?: number, sortColumn?: string, sortDesc?: boolean) => void, (failureReason: any, resourceId: string, pageNr?: number, pageSize?: number, sortColumn?: string, sortDesc?: boolean) => void, (resourceId: string, pageNr?: number, pageSize?: number, sortColumn?: string, sortDesc?: boolean) => Promise<{
23
+ total: number;
24
+ value: ReindexContentOmniaSearch[];
25
+ }>>;
26
+ };
27
+ }
@@ -1,2 +1,3 @@
1
1
  export * from "./SharepointPageStore";
2
2
  export * from "./YammerIntegrationStore";
3
+ export * from "./OmniaSearchPageStore";
@@ -22,6 +22,8 @@ export declare const PageRollupConstants: {
22
22
  readonly navigationDepthLevelInternalName: string;
23
23
  readonly navigationStartNodeInternalName: string;
24
24
  readonly navigationSortInternalName: string;
25
+ readonly pCreatedAt: string;
26
+ readonly pCreatedBy: string;
25
27
  readonly PageSizeMax: number;
26
28
  readonly DefaultPageSize: number;
27
29
  readonly channelIdInternalName: string;
@@ -53,6 +55,7 @@ export declare const Constants: {
53
55
  communityPropertiesAndPageTypes: string;
54
56
  publishingAppInfrastructure: string;
55
57
  eventPageType: string;
58
+ omniasearch: string;
56
59
  };
57
60
  communityAppDefinitionInfo: {
58
61
  id: Guid;
@@ -78,6 +81,11 @@ export declare const Constants: {
78
81
  documentDataTypeProvider: {
79
82
  id: string;
80
83
  };
84
+ properties: {
85
+ registrations: {
86
+ pagePropertyBindingProviderId: Guid;
87
+ };
88
+ };
81
89
  pageProvider: {
82
90
  id: string;
83
91
  };
@@ -87,6 +95,9 @@ export declare const Constants: {
87
95
  prefixTokens: {
88
96
  publishingApp: string;
89
97
  };
98
+ reindexContent: {
99
+ tenantResourceId: string;
100
+ };
90
101
  };
91
102
  export declare class WCMEnterpriseProperties {
92
103
  static Recipients: {
@@ -135,3 +146,34 @@ export declare const PageRollupFilterEngineContextPropertyTypes: {
135
146
  publishingChannel: Guid;
136
147
  checkedOutBy: Guid;
137
148
  };
149
+ export declare const OmniaSearchConstants: {
150
+ timestamp(str: string): string;
151
+ readonly title: string;
152
+ readonly type: string;
153
+ readonly pageCollectionId: string;
154
+ readonly publishingAppId: string;
155
+ readonly pUrlSegment: string;
156
+ readonly pageId: string;
157
+ readonly channels: string;
158
+ readonly defaultChannel: string;
159
+ readonly layoutDataParentPageId: string;
160
+ readonly commentsAndLikesSettings: string;
161
+ readonly commentCount: string;
162
+ readonly reactionCount: string;
163
+ readonly commentCountLastWeek: string;
164
+ readonly reactionCountLastWeek: string;
165
+ readonly commentCountLastMonth: string;
166
+ readonly reactionCountLastMonth: string;
167
+ readonly pageHitsTotal: string;
168
+ readonly uniqueVisitorsTotal: string;
169
+ readonly pageHitsLastWeek: string;
170
+ readonly uniqueVisitorsLastWeek: string;
171
+ readonly pageHitsLastMonth: string;
172
+ readonly uniqueVisitorsLastMonth: string;
173
+ readonly variationId: string;
174
+ readonly variationOfPageId: string;
175
+ readonly notCreatedVariationIds: string;
176
+ readonly isDefaultPageVariation: string;
177
+ readonly hiddenByPageId: string;
178
+ readonly deletedAt: string;
179
+ };
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PageRollupFilterEngineContextPropertyTypes = exports.PageBuiltInColumnConstants = exports.SignOffRequestConstants = exports.DigitalSignageConstants = exports.InfoScreenViewIdConstants = exports.InfoScreenConstants = exports.WCMEnterpriseProperties = exports.Constants = exports.PageRollupConstants = void 0;
3
+ exports.OmniaSearchConstants = exports.PageRollupFilterEngineContextPropertyTypes = exports.PageBuiltInColumnConstants = exports.SignOffRequestConstants = exports.DigitalSignageConstants = exports.InfoScreenViewIdConstants = exports.InfoScreenConstants = exports.WCMEnterpriseProperties = exports.Constants = exports.PageRollupConstants = void 0;
4
4
  const fx_models_1 = require("@omnia/fx-models");
5
5
  exports.PageRollupConstants = {
6
6
  get pageTitleAndLink() {
@@ -71,6 +71,12 @@ exports.PageRollupConstants = {
71
71
  get navigationSortInternalName() {
72
72
  return "009d5f06-f0ab-47ee-990c-e263f9495f15";
73
73
  },
74
+ get pCreatedAt() {
75
+ return "PCreatedAt";
76
+ },
77
+ get pCreatedBy() {
78
+ return "PCreatedBy";
79
+ },
74
80
  get PageSizeMax() {
75
81
  return 500;
76
82
  },
@@ -129,7 +135,8 @@ exports.Constants = {
129
135
  calendarRollupCore: "07ab2c12-6f73-45b5-bf6f-864114a66415",
130
136
  communityPropertiesAndPageTypes: "e7f6a798-6ea4-4012-8c3c-f9e00bcd510b",
131
137
  publishingAppInfrastructure: "4c880576-5645-4f13-b328-784f4a0fb8a9",
132
- eventPageType: "f3a94830-a373-4e92-ad94-48b57f9783ee"
138
+ eventPageType: "f3a94830-a373-4e92-ad94-48b57f9783ee",
139
+ omniasearch: "5765b73b-0c92-48dd-bd2b-604dfdf0f9a5"
133
140
  },
134
141
  communityAppDefinitionInfo: {
135
142
  id: new fx_models_1.Guid("3b0e3cd4-911e-49cf-a401-b6c904526b85"),
@@ -156,6 +163,11 @@ exports.Constants = {
156
163
  documentDataTypeProvider: {
157
164
  id: "1bbedca1-baf3-4b90-86f6-2619d1d14431"
158
165
  },
166
+ properties: {
167
+ registrations: {
168
+ pagePropertyBindingProviderId: new fx_models_1.Guid("8731b89c-f671-497c-ba6e-902fdc60221b"),
169
+ }
170
+ },
159
171
  pageProvider: {
160
172
  id: "6639cddb-db09-43f8-b5dc-48d2d8e00812"
161
173
  },
@@ -165,10 +177,12 @@ exports.Constants = {
165
177
  prefixTokens: {
166
178
  publishingApp: "PublishingApp"
167
179
  },
180
+ reindexContent: {
181
+ tenantResourceId: "tenant"
182
+ }
168
183
  };
169
184
  class WCMEnterpriseProperties {
170
185
  }
171
- exports.WCMEnterpriseProperties = WCMEnterpriseProperties;
172
186
  WCMEnterpriseProperties.Recipients = {
173
187
  id: new fx_models_1.Guid("fbe57b9b-b330-41c6-bb49-67ea4cf76af5"),
174
188
  internalName: "owcmrecipients"
@@ -177,6 +191,7 @@ WCMEnterpriseProperties.ScheduledStartDate = {
177
191
  id: new fx_models_1.Guid("1d5a4c79-8a8c-4e6a-b6a4-9ed1856c4360"),
178
192
  internalName: "owcmscheduledstartdate"
179
193
  };
194
+ exports.WCMEnterpriseProperties = WCMEnterpriseProperties;
180
195
  exports.InfoScreenConstants = {
181
196
  get suffixInfoScreenSettingsKey() {
182
197
  return "omx.infoscreendatakey_";
@@ -218,3 +233,92 @@ exports.PageRollupFilterEngineContextPropertyTypes = {
218
233
  publishingChannel: new fx_models_1.Guid("0feb169b-0d7a-49e5-aa4c-e6bec46ede30"),
219
234
  checkedOutBy: new fx_models_1.Guid("49055adf-2723-4f50-93b1-dd8c6a3221dc")
220
235
  };
236
+ exports.OmniaSearchConstants = {
237
+ timestamp(str) {
238
+ return `${str}Timestamp`;
239
+ },
240
+ get title() {
241
+ return "title";
242
+ },
243
+ get type() {
244
+ return "type";
245
+ },
246
+ get pageCollectionId() {
247
+ return "pageCollectionId";
248
+ },
249
+ get publishingAppId() {
250
+ return "publishingAppId";
251
+ },
252
+ get pUrlSegment() {
253
+ return "pUrlSegment";
254
+ },
255
+ get pageId() {
256
+ return "pageId";
257
+ },
258
+ get channels() {
259
+ return "channels";
260
+ },
261
+ get defaultChannel() {
262
+ return "defaultChannel";
263
+ },
264
+ get layoutDataParentPageId() {
265
+ return "layoutDataParentPageId";
266
+ },
267
+ get commentsAndLikesSettings() {
268
+ return "commentsAndLikesSettings";
269
+ },
270
+ get commentCount() {
271
+ return "commentCount";
272
+ },
273
+ get reactionCount() {
274
+ return "reactionCount";
275
+ },
276
+ get commentCountLastWeek() {
277
+ return "commentCountLastWeek";
278
+ },
279
+ get reactionCountLastWeek() {
280
+ return "reactionCountLastWeek";
281
+ },
282
+ get commentCountLastMonth() {
283
+ return "commentCountLastMonth";
284
+ },
285
+ get reactionCountLastMonth() {
286
+ return "reactionCountLastMonth";
287
+ },
288
+ get pageHitsTotal() {
289
+ return "pageHitsTotal";
290
+ },
291
+ get uniqueVisitorsTotal() {
292
+ return "uniqueVisitorsTotal";
293
+ },
294
+ get pageHitsLastWeek() {
295
+ return "pageHitsLastWeek";
296
+ },
297
+ get uniqueVisitorsLastWeek() {
298
+ return "uniqueVisitorsLastWeek";
299
+ },
300
+ get pageHitsLastMonth() {
301
+ return "pageHitsLastMonth";
302
+ },
303
+ get uniqueVisitorsLastMonth() {
304
+ return "uniqueVisitorsLastMonth";
305
+ },
306
+ get variationId() {
307
+ return "variationId";
308
+ },
309
+ get variationOfPageId() {
310
+ return "variationOfPageId";
311
+ },
312
+ get notCreatedVariationIds() {
313
+ return "notCreatedVariationIds";
314
+ },
315
+ get isDefaultPageVariation() {
316
+ return "isDefaultPageVariation";
317
+ },
318
+ get hiddenByPageId() {
319
+ return "hiddenByPageId";
320
+ },
321
+ get deletedAt() {
322
+ return "deletedAt";
323
+ }
324
+ };
@@ -87,8 +87,9 @@ export declare class WcmResourceManifests {
87
87
  static get SignOffRequestPageProvider(): Guid;
88
88
  static get SignOffRequestBanner(): Guid;
89
89
  static get PublishingAppToken(): Guid;
90
- static get PagePropertiesPropvider(): Guid;
91
- static get PagePropertiesPropviderCore(): Guid;
90
+ static get PagePropertiesProvider(): Guid;
91
+ static get PagePropertiesProviderCore(): Guid;
92
+ static get PagePropertyBindingProvider(): Guid;
92
93
  static get RTFExtensions(): Guid;
93
94
  static get MySubscriptionProvider(): Guid;
94
95
  static get ChannelRollupCore(): Guid;
@@ -325,6 +326,7 @@ export declare class WcmWebComponentManifests {
325
326
  static get AppSettingsArchiveComponent(): Guid;
326
327
  static get CalendarRollupEventDialog(): Guid;
327
328
  static get ChannelManagementBlade(): Guid;
329
+ static get WcmAdminOmniaSearchBlade(): Guid;
328
330
  static Blocks: {
329
331
  new (): {};
330
332
  readonly Banner: Guid;
@@ -371,6 +373,8 @@ export declare class WcmWebComponentManifests {
371
373
  static get ApprovalHistory(): Guid;
372
374
  static get AttachSiteButton(): Guid;
373
375
  static get AppEditing(): Guid;
376
+ static get OmniaSearchLoggingCore(): Guid;
377
+ static get OmniaSearchLogging(): Guid;
374
378
  }
375
379
  export declare class InfoScreenManifests {
376
380
  static get AdminRegistration(): Guid;
@@ -100,8 +100,9 @@ class WcmResourceManifests {
100
100
  static get SignOffRequestPageProvider() { return new fx_models_1.Guid("4852704d-f6cc-4465-94f2-35ce664b6b18"); }
101
101
  static get SignOffRequestBanner() { return new fx_models_1.Guid("aea1569f-94dc-498c-a0fc-3a525c851352"); }
102
102
  static get PublishingAppToken() { return new fx_models_1.Guid("3d0b5714-6e71-4ad6-a0f9-3a5a232cba6e"); }
103
- static get PagePropertiesPropvider() { return new fx_models_1.Guid("75e97f74-b5f6-4a17-9ed8-8dc2cff4e9b0"); }
104
- static get PagePropertiesPropviderCore() { return new fx_models_1.Guid("35ddf13a-319d-4245-a9d8-d321c8604447"); }
103
+ static get PagePropertiesProvider() { return new fx_models_1.Guid("75e97f74-b5f6-4a17-9ed8-8dc2cff4e9b0"); }
104
+ static get PagePropertiesProviderCore() { return new fx_models_1.Guid("35ddf13a-319d-4245-a9d8-d321c8604447"); }
105
+ static get PagePropertyBindingProvider() { return new fx_models_1.Guid("84dc7fa4-a70c-470d-90b5-3df966391626"); }
105
106
  static get RTFExtensions() { return new fx_models_1.Guid("cee422ab-d5bb-4f7c-b2b2-44b2169cd17b"); }
106
107
  static get MySubscriptionProvider() { return new fx_models_1.Guid("153b82dc-06a0-4b03-9192-801601c38b52"); }
107
108
  static get ChannelRollupCore() { return new fx_models_1.Guid("5c043b21-a4e4-4cac-908c-f35ad1b69b62"); }
@@ -342,6 +343,7 @@ class WcmWebComponentManifests {
342
343
  static get AppSettingsArchiveComponent() { return new fx_models_1.Guid("1f673aa8-ea52-4e64-96bd-ea837012674b"); }
343
344
  static get CalendarRollupEventDialog() { return new fx_models_1.Guid("07C3E30D-939D-487E-AD01-189557BE3877"); }
344
345
  static get ChannelManagementBlade() { return new fx_models_1.Guid("a8c1f0b5-ca39-46a6-9e0e-40e01d1744d3"); }
346
+ static get WcmAdminOmniaSearchBlade() { return new fx_models_1.Guid("0751f1aa-16a0-4c80-b3e2-b678e8c52435"); }
345
347
  static get NewsletterEmailSendingHandler() { return new fx_models_1.Guid("a47891d9-789a-454f-850d-bc4e129c4a39"); }
346
348
  static get ActionButtonInviteAuthorHandlerRegistration() { return new fx_models_1.Guid("3346b457-5f61-4406-9d67-60200e224243"); }
347
349
  static get ActionButtonInviteAuthorHandlerSubscription() { return new fx_models_1.Guid("39d4eab7-b146-4168-9059-9576c7a5e468"); }
@@ -385,14 +387,16 @@ class WcmWebComponentManifests {
385
387
  static get ApprovalHistory() { return new fx_models_1.Guid("567120e1-9549-448a-afde-6241df57fc96"); }
386
388
  static get AttachSiteButton() { return new fx_models_1.Guid("7b0e1546-ebb1-406e-b03f-8cbb1a879a83"); }
387
389
  static get AppEditing() { return new fx_models_1.Guid("3d7c043d-667b-475e-a579-4cc5baa658be"); }
390
+ static get OmniaSearchLoggingCore() { return new fx_models_1.Guid("2fe22ccb-1e6f-4585-8f98-118be55277b2"); }
391
+ static get OmniaSearchLogging() { return new fx_models_1.Guid("119607d0-27d0-46e5-a34c-ac5dadbadffb"); }
388
392
  }
389
- exports.WcmWebComponentManifests = WcmWebComponentManifests;
390
393
  WcmWebComponentManifests.Blocks = class {
391
394
  static get Banner() { return new fx_models_1.Guid("fb5c76d4-ab00-49f7-b9e2-f7228a39a7aa"); }
392
395
  static get BannerSettings() { return new fx_models_1.Guid("af494456-7ec1-4438-9b41-c15058e24bec"); }
393
396
  static get BannerComponent() { return new fx_models_1.Guid("4430685f-c1e2-468e-84b7-f0a397891d69"); }
394
397
  static get BannerEdit() { return new fx_models_1.Guid("af3408d0-3c8f-4877-b239-9e12bbf68f30"); }
395
398
  };
399
+ exports.WcmWebComponentManifests = WcmWebComponentManifests;
396
400
  class InfoScreenManifests {
397
401
  static get AdminRegistration() { return new fx_models_1.Guid("cbe5ed4b-09b0-4153-a172-1871cb6add69"); }
398
402
  static get InfoScreenCore() { return new fx_models_1.Guid("ac2df2e8-3b28-4543-a1f1-3cc6a5ca3287"); }
@@ -9,6 +9,7 @@ export * from "./query";
9
9
  export * from "./Enums";
10
10
  export * from "./loc";
11
11
  export * from "./Constants";
12
+ export * from "./pagenavigation";
12
13
  export * from "./ManifestIds";
13
14
  export * from "./notifications";
14
15
  export * from "./block";
@@ -38,3 +39,5 @@ export * from "./fileuploader";
38
39
  export * from "./appsettings";
39
40
  export * from "./enterpriseglossary";
40
41
  export * from "./aipagecontentreport";
42
+ export * from "./search";
43
+ export * from "./properties";
@@ -13,6 +13,7 @@ tslib_1.__exportStar(require("./query"), exports);
13
13
  tslib_1.__exportStar(require("./Enums"), exports);
14
14
  tslib_1.__exportStar(require("./loc"), exports);
15
15
  tslib_1.__exportStar(require("./Constants"), exports);
16
+ tslib_1.__exportStar(require("./pagenavigation"), exports);
16
17
  tslib_1.__exportStar(require("./ManifestIds"), exports);
17
18
  tslib_1.__exportStar(require("./notifications"), exports);
18
19
  tslib_1.__exportStar(require("./block"), exports);
@@ -42,3 +43,5 @@ tslib_1.__exportStar(require("./fileuploader"), exports);
42
43
  tslib_1.__exportStar(require("./appsettings"), exports);
43
44
  tslib_1.__exportStar(require("./enterpriseglossary"), exports);
44
45
  tslib_1.__exportStar(require("./aipagecontentreport"), exports);
46
+ tslib_1.__exportStar(require("./search"), exports);
47
+ tslib_1.__exportStar(require("./properties"), exports);
@@ -1,5 +1,5 @@
1
- import { LinkItem, LinkPickerPropertyData } from "@omnia/wcm/models";
1
+ import { LinkItem, CustomLinkPropertyData } from "@omnia/wcm/models";
2
2
  export interface ILinkPickerProvider {
3
3
  linkData?: LinkItem;
4
- propertyData?: LinkPickerPropertyData;
4
+ propertyData?: CustomLinkPropertyData;
5
5
  }
@@ -4,9 +4,9 @@ exports.WCMNavigationDataTypes = exports.NavigationDataType = exports.Navigation
4
4
  const fx_models_1 = require("@omnia/fx-models");
5
5
  class NavigationRenders {
6
6
  }
7
- exports.NavigationRenders = NavigationRenders;
8
7
  NavigationRenders.page = new fx_models_1.Guid("5f707a83-4594-4218-8569-30b26d67948e");
9
8
  NavigationRenders.link = new fx_models_1.Guid("2b416031-3750-4328-ae8e-41a0508939b1");
9
+ exports.NavigationRenders = NavigationRenders;
10
10
  /**
11
11
  * This is no enum, it's only used to get typying and compile errors.
12
12
  * */
@@ -18,7 +18,6 @@ var NavigationDataType;
18
18
  * */
19
19
  class WCMNavigationDataTypes {
20
20
  }
21
- exports.WCMNavigationDataTypes = WCMNavigationDataTypes;
22
21
  /// <summary>
23
22
  /// Use maskable values
24
23
  /// </summary>
@@ -28,3 +27,4 @@ WCMNavigationDataTypes.pageCollection = 4;
28
27
  WCMNavigationDataTypes.link = 8;
29
28
  //const int FutureReserved = 4096;
30
29
  WCMNavigationDataTypes.all = ~0;
30
+ exports.WCMNavigationDataTypes = WCMNavigationDataTypes;
@@ -0,0 +1,7 @@
1
+ import { MultilingualString } from "@omnia/fx-models";
2
+ export interface AnchorNavigationLink {
3
+ id: number;
4
+ title: MultilingualString;
5
+ anchorName: string;
6
+ selected: boolean;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,17 @@
1
+ import { MultilingualString, SpacingSettings } from "@omnia/fx-models";
2
+ import { AnchorNavigationLink } from "./AnchorNavigationLink";
3
+ export declare enum PageNavigationDirection {
4
+ vertical = 0,
5
+ horizontal = 1,
6
+ dropDown = 2
7
+ }
8
+ export interface PageNavigationBlockSettings {
9
+ title: MultilingualString;
10
+ navigationNodes: Array<AnchorNavigationLink>;
11
+ direction: PageNavigationDirection;
12
+ sticky: boolean;
13
+ transparentBackground: boolean;
14
+ spacing: SpacingSettings;
15
+ size: number;
16
+ border: boolean;
17
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PageNavigationDirection = void 0;
4
+ var PageNavigationDirection;
5
+ (function (PageNavigationDirection) {
6
+ PageNavigationDirection[PageNavigationDirection["vertical"] = 0] = "vertical";
7
+ PageNavigationDirection[PageNavigationDirection["horizontal"] = 1] = "horizontal";
8
+ PageNavigationDirection[PageNavigationDirection["dropDown"] = 2] = "dropDown";
9
+ })(PageNavigationDirection = exports.PageNavigationDirection || (exports.PageNavigationDirection = {}));
@@ -0,0 +1,2 @@
1
+ export * from "./AnchorNavigationLink";
2
+ export * from "./PageNavigationSettings";
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./AnchorNavigationLink"), exports);
5
+ tslib_1.__exportStar(require("./PageNavigationSettings"), exports);
@@ -1,4 +1,4 @@
1
- import { PageQuery, PageDetailQueryResult, PageId, QueryFilter } from "..";
1
+ import { PageQuery, PageDetailQueryResult, PageId, PageNavigationNode, PageNavigationData, QueryFilter } from "..";
2
2
  import { PageRollupEnums } from "./PageRollupEnums";
3
3
  export interface PageRollupQuery {
4
4
  uniqueKey: string;
@@ -46,14 +46,22 @@ export interface ExportQueryPagesResult {
46
46
  fileToken: string;
47
47
  queueMessageId: string;
48
48
  }
49
+ export interface BatchedPagesResult {
50
+ total: number;
51
+ pageIds: PageId[];
52
+ errorMessage: string;
53
+ hasError: boolean;
54
+ }
49
55
  export interface BatchQueryPagesResult {
50
56
  pagesDetail: PageDetailQueryResult[];
51
57
  batchQueryResult: {
52
- [queryId: string]: {
53
- total: number;
54
- pageIds: PageId[];
55
- errorMessage: string;
56
- hasError: boolean;
57
- };
58
+ [queryId: string]: BatchedPagesResult;
58
59
  };
59
60
  }
61
+ export interface ExtendedInformationPageQueryData {
62
+ pageNavigationNodes: Array<PageNavigationNode<PageNavigationData>>;
63
+ visitedPageIds: Array<PageId>;
64
+ }
65
+ export interface BatchQueryPagesError extends BatchQueryPages {
66
+ error: string;
67
+ }
@@ -12,7 +12,6 @@ var PageDataType;
12
12
  * */
13
13
  class WCMPageTypes {
14
14
  }
15
- exports.WCMPageTypes = WCMPageTypes;
16
15
  /// <summary>
17
16
  /// Use maskable values
18
17
  /// </summary>
@@ -21,3 +20,4 @@ WCMPageTypes.pageType = 2;
21
20
  WCMPageTypes.pageCollection = 4;
22
21
  //const int FutureReserved = 4096;
23
22
  WCMPageTypes.all = ~0;
23
+ exports.WCMPageTypes = WCMPageTypes;
@@ -0,0 +1,13 @@
1
+ import { Guid, PropertyDisplaySettingsBase, PropertyDefinition } from "@omnia/fx-models";
2
+ import { PageCollectionPropertyValue } from "../values";
3
+ export declare class PageCollectionDisplaySettings extends PropertyDisplaySettingsBase {
4
+ inline?: boolean;
5
+ }
6
+ export type PageCollectionEditorSettings = {
7
+ required?: boolean;
8
+ };
9
+ export declare const PageCollectionPropertyDefinitionId: Guid;
10
+ export declare class PageCollectionPropertyDefinition extends PropertyDefinition<PageCollectionPropertyValue, PageCollectionDisplaySettings, PageCollectionEditorSettings> {
11
+ id: Guid;
12
+ typeName: string;
13
+ }
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PageCollectionPropertyDefinition = exports.PageCollectionPropertyDefinitionId = exports.PageCollectionDisplaySettings = void 0;
4
+ const fx_models_1 = require("@omnia/fx-models");
5
+ class PageCollectionDisplaySettings extends fx_models_1.PropertyDisplaySettingsBase {
6
+ }
7
+ exports.PageCollectionDisplaySettings = PageCollectionDisplaySettings;
8
+ exports.PageCollectionPropertyDefinitionId = new fx_models_1.Guid("b61c100d-d498-4866-9775-056861cd1182");
9
+ class PageCollectionPropertyDefinition extends fx_models_1.PropertyDefinition {
10
+ constructor() {
11
+ super(...arguments);
12
+ this.id = exports.PageCollectionPropertyDefinitionId;
13
+ this.typeName = "$Localize:Omnia.Ux.Properties.Definitions.PageCollection;";
14
+ }
15
+ }
16
+ exports.PageCollectionPropertyDefinition = PageCollectionPropertyDefinition;