@omnia/workplace 7.8.39-preview → 7.8.40-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.
@@ -624,6 +624,7 @@ export declare class WebComponentManifests {
624
624
  static get SemanticSearchQueryableProperties(): Guid;
625
625
  static get ListingPickedUsers(): Guid;
626
626
  static get UserSearchResultSource(): Guid;
627
+ static get OmniaUserQueryFiltersComponent(): Guid;
627
628
  }
628
629
  export declare class WebComponentElements {
629
630
  static get AppProvisioningStepMember(): string;
@@ -633,6 +633,7 @@ class WebComponentManifests {
633
633
  static get SemanticSearchQueryableProperties() { return new fx_models_1.Guid("506ff200-d795-4fb8-9177-d9940c4feb65"); }
634
634
  static get ListingPickedUsers() { return new fx_models_1.Guid("41f2d65c-c061-49cf-8c3c-e0a08bbfb882"); }
635
635
  static get UserSearchResultSource() { return new fx_models_1.Guid("2521c36d-0e1f-4e9c-80a1-bbee3a762784"); }
636
+ static get OmniaUserQueryFiltersComponent() { return new fx_models_1.Guid("c1b21e46-3528-4f5a-95e9-ee8818a2993f"); }
636
637
  }
637
638
  exports.WebComponentManifests = WebComponentManifests;
638
639
  class WebComponentElements {
@@ -59,18 +59,3 @@ export declare enum SharedLinkSortByTypes {
59
59
  AlphabeticByTitle = 1,
60
60
  LastVisited = 2
61
61
  }
62
- export interface OmniaSearchCategory extends SearchCategoryBase {
63
- resultSource: string;
64
- sortBy?: string;
65
- sortDirection?: Enums.SortDirection;
66
- providerSettings: OmniaSearchSettings;
67
- listTemplatePropertiesMapping?: {
68
- [templateId: string]: DictionaryPropertiesMapping;
69
- };
70
- }
71
- export interface OmniaSearchSettings extends ProviderSettings {
72
- }
73
- export interface SearchResultSourceSettingProps<T extends SearchCategoryBase> {
74
- searchCategory: T;
75
- onChanged: (value: T) => void;
76
- }
@@ -72,3 +72,4 @@ export * from "./DallESettingsPrompts";
72
72
  export * from "./analytics";
73
73
  export * from "./usermanagement";
74
74
  export * from "./SearchResultSource";
75
+ export * from "./omniasearch";
@@ -76,3 +76,4 @@ tslib_1.__exportStar(require("./DallESettingsPrompts"), exports);
76
76
  tslib_1.__exportStar(require("./analytics"), exports);
77
77
  tslib_1.__exportStar(require("./usermanagement"), exports);
78
78
  tslib_1.__exportStar(require("./SearchResultSource"), exports);
79
+ tslib_1.__exportStar(require("./omniasearch"), exports);
@@ -0,0 +1,35 @@
1
+ import { GuidValue, ScopeTypes } from "@omnia/fx-models";
2
+ import { Enums } from "../Enums";
3
+ import { SearchCategoryBase, DictionaryPropertiesMapping, ProviderSettings } from "../SearchCategory";
4
+ import { OmniaUserSearchPropertyFilter } from "./SearchPropertyFilter";
5
+ export interface OmniaSearchCategory extends SearchCategoryBase {
6
+ resultSource: string;
7
+ sortBy?: string;
8
+ sortDirection?: Enums.SortDirection;
9
+ providerSettings: OmniaSearchSettings;
10
+ listTemplatePropertiesMapping?: {
11
+ [templateId: string]: DictionaryPropertiesMapping;
12
+ };
13
+ }
14
+ export interface OmniaSearchSettings extends ProviderSettings {
15
+ }
16
+ export interface SearchResultSourceSettingProps<T extends SearchCategoryBase> {
17
+ searchCategory: T;
18
+ onChanged: (value: T) => void;
19
+ }
20
+ export interface UserOmniaSearchQueryCategory extends OmniaSearchCategory {
21
+ providerSettings: UserOmniaSearchSettings;
22
+ }
23
+ export interface UserOmniaSearchSettings extends ProviderSettings {
24
+ userTypeIds?: Array<GuidValue>;
25
+ scopes?: Array<GuidValue>;
26
+ scopeType?: ScopeTypes;
27
+ filters?: Array<OmniaUserSearchPropertyFilter>;
28
+ }
29
+ export interface OmniaUserQueryFiltersComponentSettingProps {
30
+ userTypeIds?: Array<GuidValue>;
31
+ scopes?: Array<GuidValue>;
32
+ scopeType?: ScopeTypes;
33
+ filters?: Array<OmniaUserSearchPropertyFilter>;
34
+ onChanged: (filters: Array<OmniaUserSearchPropertyFilter>, userTypeIds: Array<GuidValue>, scopes: Array<GuidValue>, scopeType: ScopeTypes) => void;
35
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ import { OmniaSearchPropertyFilter, OmniaSearchPropertyFilterValue, PropertyValue } from "@omnia/fx-models";
2
+ export interface OmniaUserSearchPropertyFilter extends OmniaSearchPropertyFilter {
3
+ valueObj: OmniaSearchPropertyFilterValue;
4
+ }
5
+ export interface OmniaUserSearchPropertyFilterValue extends OmniaSearchPropertyFilterValue {
6
+ propertyValue: PropertyValue;
7
+ value: string;
8
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ export * from "./SearchPropertyFilter";
2
+ export * from "./OmniaSearchCategory";
@@ -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("./SearchPropertyFilter"), exports);
5
+ tslib_1.__exportStar(require("./OmniaSearchCategory"), exports);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/workplace",
3
3
  "license": "MIT",
4
- "version": "7.8.39-preview",
4
+ "version": "7.8.40-preview",
5
5
  "description": "Omnia Workplace.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"