@omnia/workplace 6.7.6-dev → 6.7.7-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.
|
@@ -381,6 +381,7 @@ export declare class WebComponentManifests {
|
|
|
381
381
|
static get WorkspaceSettings(): Guid;
|
|
382
382
|
static get WorkspaceHome(): Guid;
|
|
383
383
|
static get WorkspaceHomeChrome(): Guid;
|
|
384
|
+
static get WorkspaceHomeStatistic(): Guid;
|
|
384
385
|
static get WorkspaceJourney(): Guid;
|
|
385
386
|
static get AdminSystemJourney(): Guid;
|
|
386
387
|
static get PropertiesBlockGroup(): Guid;
|
|
@@ -1899,6 +1899,11 @@ var WebComponentManifests = /** @class */ (function () {
|
|
|
1899
1899
|
enumerable: false,
|
|
1900
1900
|
configurable: true
|
|
1901
1901
|
});
|
|
1902
|
+
Object.defineProperty(WebComponentManifests, "WorkspaceHomeStatistic", {
|
|
1903
|
+
get: function () { return new Guid("c2bfdf01-6dcb-461b-82ac-678550b6abb7"); },
|
|
1904
|
+
enumerable: false,
|
|
1905
|
+
configurable: true
|
|
1906
|
+
});
|
|
1902
1907
|
Object.defineProperty(WebComponentManifests, "WorkspaceJourney", {
|
|
1903
1908
|
get: function () { return new Guid("4f54f8c5-ab26-4bff-8b9f-eb27b4f08221"); },
|
|
1904
1909
|
enumerable: false,
|
|
@@ -2,6 +2,7 @@ import { GuidValue } from "@omnia/fx/models";
|
|
|
2
2
|
import { CategorySearchResult, SearchProviderBase, SearchRequest } from ".";
|
|
3
3
|
export declare abstract class SearchProvider implements SearchProviderBase {
|
|
4
4
|
abstract readonly title: string;
|
|
5
|
+
abstract readonly omniaServiceId: GuidValue;
|
|
5
6
|
abstract readonly providerId: GuidValue;
|
|
6
7
|
abstract providerDisplayRenderManifestId: GuidValue;
|
|
7
8
|
getSearchCategoryResult: (searchRequest: SearchRequest) => Promise<CategorySearchResult[]>;
|