@omnia/wcm 7.10.0-preview.27 → 7.10.0-preview.29

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.
@@ -11,6 +11,7 @@ export declare module ItemQueryHelper {
11
11
  function generateTextEqualFilter(property: string, text: string, logicalOperator: FilterLogicalOperator): QueryFilter;
12
12
  function generateTextFilter(property: string, text: string, logicalOperator: FilterLogicalOperator, enableWildcardSearch: boolean): QueryFilter;
13
13
  function generateTextRefinerFilter(property: string, text: string, logicalOperator: FilterLogicalOperator): QueryFilter;
14
+ function generateTextMultipleRefinerFilter(property: string, values: string[], logicalOperator: FilterLogicalOperator): QueryFilter;
14
15
  function generateProcessFilterValue(property: string, text: string, logicalOperator: FilterLogicalOperator, enableWildcardSearch: boolean): QueryFilter;
15
16
  function generateProcessFilter(property: string, processIdsArray: Array<string>, logicalOperator: FilterLogicalOperator, enableWildcardSearch: boolean): QueryFilter;
16
17
  function generateEmptyArrayFilter(property: string, logicalOperator: FilterLogicalOperator): QueryFilter;
@@ -23,6 +23,7 @@ export declare class PageRollupStore extends Store {
23
23
  private wcmRouter;
24
24
  private pagesStore;
25
25
  private pageService;
26
+ private enterprisePropertyService;
26
27
  private appsLoc;
27
28
  /**
28
29
  * State
@@ -96,6 +97,7 @@ export declare class PageRollupStore extends Store {
96
97
  }) => void, (batchQueryResult: {
97
98
  [queryId: string]: BatchedPagesResult;
98
99
  }) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
100
+ clearPageRefiners: import("@omnia/fx/stores").StoreMutation<(queryId: string) => void, (queryId: string) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
99
101
  addOrUpdateIndexedDBPages: import("@omnia/fx/stores").StoreMutation<(uniqueKey: string, pages: Array<PageDetailQueryResult>) => void, (uniqueKey: string, pages: PageDetailQueryResult[]) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
100
102
  updatePageTypes: import("@omnia/fx/stores").StoreMutation<(uniqueKey: string, pageTypes: Array<PageTypeTitle>) => void, (uniqueKey: string, pageTypes: PageTypeTitle[]) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
101
103
  updatePublishingChannelSettings: import("@omnia/fx/stores").StoreMutation<(uniqueKey: string, channelsId: Array<string>) => void, (uniqueKey: string, channelsId: string[]) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/wcm",
3
3
  "license": "MIT",
4
- "version": "7.10.0-preview.27",
4
+ "version": "7.10.0-preview.29",
5
5
  "description": "Omnia Web Content Management.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"