@omnia/workplace 7.8.31-preview → 7.8.32-preview

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.
@@ -122,6 +122,7 @@ export declare module Enums {
122
122
  QueryBuilder = 0,
123
123
  PickUsers = 1
124
124
  }
125
+ const ManualSortPropertyBinding = "8cc52977-7581-4bf9-88d6-14a1281be8d2";
125
126
  }
126
127
  enum ChromeMode {
127
128
  Full = 0,
@@ -151,6 +151,7 @@ var Enums;
151
151
  QueryConfigurationType[QueryConfigurationType["QueryBuilder"] = 0] = "QueryBuilder";
152
152
  QueryConfigurationType[QueryConfigurationType["PickUsers"] = 1] = "PickUsers";
153
153
  })(QueryConfigurationType = PeopleRollupEnums.QueryConfigurationType || (PeopleRollupEnums.QueryConfigurationType = {}));
154
+ PeopleRollupEnums.ManualSortPropertyBinding = "8cc52977-7581-4bf9-88d6-14a1281be8d2";
154
155
  })(PeopleRollupEnums = Enums.PeopleRollupEnums || (Enums.PeopleRollupEnums = {}));
155
156
  let ChromeMode;
156
157
  (function (ChromeMode) {
@@ -1,4 +1,4 @@
1
- import { GuidValue } from "@omnia/fx/models";
1
+ import { GuidValue, SemanticSearchReference, SemanticSearchResult } from "@omnia/fx/models";
2
2
  import { Enums } from "./Enums";
3
3
  import { SearchCategoryBase } from "./SearchCategory";
4
4
  export interface SearchResultItem {
@@ -14,6 +14,12 @@ export interface CategorySearchResult {
14
14
  totalRows: number;
15
15
  items: Array<SearchResultItem>;
16
16
  }
17
+ export interface SemanticSearchCategorySearchResult extends CategorySearchResult {
18
+ semanticSearchResult: SemanticSearchResult;
19
+ }
20
+ export interface SemanticSearchResultItem extends SearchResultItem {
21
+ reference: SemanticSearchReference;
22
+ }
17
23
  export interface SharePointCategorySearchResult extends CategorySearchResult {
18
24
  refiners: Array<Refiner>;
19
25
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/workplace",
3
3
  "license": "MIT",
4
- "version": "7.8.31-preview",
4
+ "version": "7.8.32-preview",
5
5
  "description": "Omnia Workplace.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"