@omnia/workplace 7.8.38-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.
- package/internal-do-not-import-from-here/models/ManifestIds.d.ts +1 -0
- package/internal-do-not-import-from-here/models/ManifestIds.js +1 -0
- package/internal-do-not-import-from-here/models/SearchCategory.d.ts +0 -15
- package/internal-do-not-import-from-here/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/index.js +1 -0
- package/internal-do-not-import-from-here/models/omniasearch/OmniaSearchCategory.d.ts +35 -0
- package/internal-do-not-import-from-here/models/omniasearch/OmniaSearchCategory.js +2 -0
- package/internal-do-not-import-from-here/models/omniasearch/SearchPropertyFilter.d.ts +8 -0
- package/internal-do-not-import-from-here/models/omniasearch/SearchPropertyFilter.js +2 -0
- package/internal-do-not-import-from-here/models/omniasearch/index.d.ts +2 -0
- package/internal-do-not-import-from-here/models/omniasearch/index.js +5 -0
- package/package.json +1 -1
|
@@ -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
|
-
}
|
|
@@ -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,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
|
+
}
|