@omnia/workplace 7.8.5-preview → 7.8.5
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/apis/SearchResultSourceApi.d.ts +20 -0
- package/internal-do-not-import-from-here/apis/index.d.ts +1 -0
- package/internal-do-not-import-from-here/core/utils/Utils.d.ts +2 -0
- package/internal-do-not-import-from-here/manifests/omnia.workplace.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/models/Constants.d.ts +12 -0
- package/internal-do-not-import-from-here/models/Constants.js +13 -1
- package/internal-do-not-import-from-here/models/Enums.d.ts +9 -1
- package/internal-do-not-import-from-here/models/Enums.js +9 -0
- package/internal-do-not-import-from-here/models/ManifestIds.d.ts +9 -3
- package/internal-do-not-import-from-here/models/ManifestIds.js +9 -3
- package/internal-do-not-import-from-here/models/Search.d.ts +8 -1
- package/internal-do-not-import-from-here/models/SearchCategory.d.ts +15 -1
- package/internal-do-not-import-from-here/models/SearchProvider.d.ts +2 -0
- package/internal-do-not-import-from-here/models/SearchResultSource.d.ts +20 -0
- package/internal-do-not-import-from-here/models/SearchResultSource.js +6 -0
- package/internal-do-not-import-from-here/models/TaxonomyNavigation.d.ts +9 -2
- package/internal-do-not-import-from-here/models/analytics/analyticsSettingsRequest.d.ts +4 -0
- package/internal-do-not-import-from-here/models/analytics/analyticsSettingsRequest.js +2 -0
- package/internal-do-not-import-from-here/models/analytics/analyticsdimensionmappings.d.ts +2 -0
- package/internal-do-not-import-from-here/models/analytics/analyticsdimensionmappings.js +1 -0
- package/internal-do-not-import-from-here/models/analytics/analyticssettings.d.ts +3 -1
- package/internal-do-not-import-from-here/models/analytics/businessProfileAnalyticsSettings.d.ts +1 -0
- package/internal-do-not-import-from-here/models/analytics/businessProfileAnalyticsSettings.js +1 -0
- package/internal-do-not-import-from-here/models/analytics/index.d.ts +3 -1
- package/internal-do-not-import-from-here/models/analytics/index.js +3 -1
- package/internal-do-not-import-from-here/models/analytics/matomositeinfo.d.ts +7 -0
- package/internal-do-not-import-from-here/models/analytics/matomositeinfo.js +2 -0
- package/internal-do-not-import-from-here/models/apps/Enums.d.ts +2 -1
- package/internal-do-not-import-from-here/models/apps/Enums.js +1 -0
- package/internal-do-not-import-from-here/models/components/TeamNewsBlockStyles.d.ts +2 -0
- package/internal-do-not-import-from-here/models/forms/FormType.d.ts +2 -1
- package/internal-do-not-import-from-here/models/index.d.ts +3 -0
- package/internal-do-not-import-from-here/models/index.js +3 -0
- package/internal-do-not-import-from-here/models/omniasearch/OmniaSearch.d.ts +53 -0
- package/internal-do-not-import-from-here/models/omniasearch/OmniaSearch.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/internal-do-not-import-from-here/models/semanticsearch/SemanticSearchFilterValue.d.ts +4 -0
- package/internal-do-not-import-from-here/models/semanticsearch/SemanticSearchFilterValue.js +2 -0
- package/internal-do-not-import-from-here/models/semanticsearch/SemanticSearchProvider.d.ts +10 -3
- package/internal-do-not-import-from-here/models/semanticsearch/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/semanticsearch/index.js +1 -0
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestProvider.d.ts +1 -0
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestTemplate.d.ts +1 -0
- package/internal-do-not-import-from-here/models/styles/MyLinkStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/models/styles/NotificationPanelHeaderStyles.d.ts +3 -0
- package/internal-do-not-import-from-here/models/styles/SearchStyles.d.ts +2 -0
- package/internal-do-not-import-from-here/models/usermanagement/UserManagementConstants.d.ts +12 -0
- package/internal-do-not-import-from-here/models/usermanagement/UserManagementConstants.js +15 -0
- package/internal-do-not-import-from-here/models/usermanagement/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/usermanagement/index.js +4 -0
- package/internal-do-not-import-from-here/services/AnalyticsService.d.ts +13 -5
- package/internal-do-not-import-from-here/services/AnalyticsStoreService.d.ts +6 -3
- package/internal-do-not-import-from-here/stores/AnalyticsStore.d.ts +5 -2
- package/internal-do-not-import-from-here/stores/LinkStore.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ApiPath } from "@omnia/fx/models";
|
|
2
|
+
import { SearchResultSource } from "../models";
|
|
3
|
+
export interface IInternalRegistrationSearchResultSource extends ISearchResultSourceRegistrationApi {
|
|
4
|
+
getAllSearchResultSources: () => SearchResultSource[];
|
|
5
|
+
}
|
|
6
|
+
export interface ISearchResultSourceRegistrationApi {
|
|
7
|
+
registerResultSources: (resultSources: SearchResultSource | SearchResultSource[]) => void;
|
|
8
|
+
}
|
|
9
|
+
declare module "../models/WorkplaceApi" {
|
|
10
|
+
interface IWorkplaceApi {
|
|
11
|
+
searchresultsource: {
|
|
12
|
+
registration: Promise<ISearchResultSourceRegistrationApi>;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
interface IWorkplaceExtendApiManifest {
|
|
16
|
+
searchresultsource: {
|
|
17
|
+
registration: ApiPath;
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"omniaWebpackJsonp['39df27aa-95f1-4a23-b3f6-8b231afcda82']['491a5b75-e3d6-472a-8958-216be85b092a']","content":{"./client/admin/settings/blades/tenantheader/loc/localize.js":{"id":"./client/admin/settings/blades/tenantheader/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TenantHeaderLocalization"]},"./node_modules/@omnia/workplace/core/loc/formLocalize.js":{"id":"./node_modules/@omnia/workplace/core/loc/formlocalize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["FormsLocalization"]},"./node_modules/@omnia/workplace/core/loc/localize.js":{"id":"./node_modules/@omnia/workplace/core/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TeamCoreLocalization"]},"./node_modules/@omnia/workplace/core/loc/powerappLocalize.js":{"id":"./node_modules/@omnia/workplace/core/loc/powerapplocalize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["PowerAppLocalization"]},"./node_modules/@omnia/workplace/core/messaging/InternalWorkplaceTopics.js":{"id":"./node_modules/@omnia/workplace/core/messaging/internalworkplacetopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalWorkplaceTopics"]},"./node_modules/@omnia/workplace/services/index.js":{"id":"./node_modules/@omnia/workplace/services/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AnalyticsFilterService","AnalyticsService","AppAuthenticationOptionsService","FormService","FormTemplateService","FormTypeService","HomeService","MyLinksService","NotificationPanelHistoryService","PromotedSearchResultService","RecentLinksService","SearchCategoryService","SearchFeedbackService","SharedLinksService","SignOffRequestService","TeamCollaborationService"]},"./node_modules/@omnia/workplace/index.js":{"id":"8bf93338-8e70-4104-a75d-ae11485eec04","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminNamespace","AnalyticsFilterService","AnalyticsFilterStore","AnalyticsService","AnalyticsStore","AppAuthenticationOptionsService","AppRendererBootstrapper","CurrentFormStore","DialogHelper","EditingThemeStore","FilterValueProvider","FormService","FormStore","FormTemplateService","FormTemplateStore","FormTypeService","FormTypeStore","GovernanceDashboardStore","HomeService","LinkHandlerDialogStore","LinkStore","MyLinksService","NotificationPanelHistoryService","NotificationPanelStore","NotificationPanelStorePluginProvider","PromotedSearchResultService","PromotedSearchResultStore","RecentLinksService","SearchCategoryService","SearchCategoryStore","SearchFeedbackService","SearchTokenStore","SharedLinksService","SignOffRequestService","SignOffRequestStore","SignOffRequestUtils","Styles","TeamCollaborationService","TeamCollaborationStore","TeamworkContext","TeamworkTopics","Topics","WorkPlaceUtils","dialogStyle","settingsTabContainer"]},"./node_modules/@omnia/workplace/models/index.js":{"id":"c778308f-5fbb-4a3d-8691-ad7408ffbd56","buildMeta":{"exportsType":"namespace"},"expo.js":["ActionMenuStyles","AdvancedSearchSettingsStyles","AdvancedSearchStyles","AnalyticsDimensionScopes","AnnouncementCommentLikeStyle","AnnouncementJourneyStyle","AnnouncementStyles","AppEnums","AppIconSearchTemplateStyles","AppIconStyles","AppInstanceDescriptionProperties","AppLaunchStyles","AppLaunchViewStyles","AppProvisioningSteps","BuiltInActionButtonHandlers","BusinessProfileAnalyticsSettings","BusinessProfileAppProvisioning","BusinessProfileDallEPromptDefaultSettings","CentralImageLocationsStyles","ChangeTypes","ChartColor","CompactHeaderStyles","Constants","CreateTeamworkSettingsStyles","DallESettingsPrompts","DefaultSearchTemplateStyles","DocumentDirectionSettingsStyles","EditModes","EnterpriseGlossaryAdminProvider","EnterpriseGlossaryInformationSettingsProvider","EnterpriseGlossaryInformationSourceSettingsProvider","EnterpriseGlossaryTaxonomyNavigationDisplayProvider","EnterpriseGlossaryTaxonomyNavigationSettingsProvider","EnterprisePropertyCategoriesDefaultBladeStyles","Enums","FeedType","FilterValue","FollowedsitesUpdatedAtUserPropertyBag","FooterPositions","FooterSettingStyles","FormDialogStyles","FormDisplayStatus","FormGenericSetting","FormLayoutProvider","FormQueryScopes","FormRollupBlockGeneralTabStyles","FormRollupConstants","FormRollupFilterEngineContextPropertyTypes","FormRollupMainRendererStyles","FormScopeTypes","FormStatus","FormTypes","GovernanceDashboard","GovernanceDashboardSettingsStyles","GovernanceDashboardStyles","GroupManifests","GroupMembershipMappingBladeStyles","HeaderSettingsMode","HeaderStyles","HighPriorityAnnouncementStyle","HomeLayoutDefinition","HorizontalActionMenuStyles","HorizontalMegaMenuStyles","ItemQueryResult","JumpToContentStyles","LegendAlignment","LegendPosition","LinkHandlerSettingsStyles","LinkUrlTypeOption","LinkViewMode","LocalizationAdminStyles","LocalizationInputStyles","LogoStyles","MSTeamChannelFeedSorting","MSTeamTemplateStep","MediaPickerStorageProviderWorkplaceFaviconContext","MediaPickerStorageProviderWorkplaceFormContext","MediaPickerStorageProviderWorkplaceLogoContext","MediaPickerStorageProviderWorkplacePromotedSearchResultContext","MediaPickerStorageProviderWorkplaceSearchFeedbackContext","MediaPickerStorageProviderWorkplaceTutorialContext","MegaMenuLayoutDefinition","MembersStep","MobileMegaMenuStyles","MyLinksStyles","MySitesEnums","MySitesStyles","MyTeamCollaborationCategoryStyles","MyTeamCollaborationStyles","NewTeamworksTimeType","NotificationConstants","NotificationPanelDisplayModes","NotificationPanelHeaderStyles","NotificationPanelIconPosition","NotificationPanelSettingsStyles","NotificationPanelStyles","NotificationPanelTabAligments","NotificationTypes","OmniaSystemLanguageSettingsStyles","OptionTypes","PeopleRollupFilterEngineContextPropertyTypes","PostsFeedScopeOption","PostsFeedSortMode","PromotedSearchResultStatus","QRCodeStyles","QuestionTypes","QuickSearchStyles","ReCaptChaSecretFormNames","RecurringRequestProgressStatus","ResourceManifests","ScopeCurrentId","SearchAdminStyles","SearchBlockStyles","SearchHeaderStyles","SearchProvider","SearchStatistics","SearchStatisticsMetricScopeFilterValue","SearchTokenProvider","SemanticSearchReferenceProvider","ServiceDefinition","SettingsKeys","SetupWizard","SetupWizardScope","SetupWizardTemplateFeatureHandler","SetupWizardTemplateProvider","SharedLinkSortByTypes","ShowMoreStyles","SignOffRequestEnums","SignOffRequestInfoPersistentDialogId","SignOffRequestProvider","SignOffRequestResourceProvider","SignOffRequestRollupConstants","SignOffRequestScopedQueryTypes","SignOffResource","SimpleListStyles","SimpleListingSearchTemplateStyles","SlideRendererStyles","SortedByType","StatisticViewMode","StatusCodeDisplay","StatusCodeStorageProviderWorkplaceContext","TabCustomUrlType","TableNames","TargetingPropertyStyles","TaxonomyNavigationDisplayProviderBase","TaxonomyNavigationStyles","TeamCollaborationAppDefinitionInfo","TeamCollaborationAppEnterpriseProperties","TeamCollaborationConstants","TeamCollaborationRollupBlockListViewSettingsStyles","TeamCollaborationRollupBlockListViewStyles","TeamCollaborationRollupBlockSettingsStyles","TeamCollaborationRollupBlockStyles","TeamCollaborationRollupEnums","TeamCollaborationRollupLinkBehavior","TeamCollaborationRollupScopeTypes","TeamCollabrationApp","TeamCollabrationAppResource","TeamCollabrationQuery","TeamCollabrationTypes","TeamNewsBlockStyles","TeamNewsRollupSettingElementName","TeamSiteEditPropertiesStyles","TeamWorkInfo","TeamworkAppLayoutDefinition","TeamworkNavigationActionHandlerSettingStyles","TeamworkNavigationSettingStyles","TeamworkNavigationStyles","TeamworkTemplateFilterValue","TenantRegionalStyles","TenantReusableContentManifests","TermNodeStyles","UserAccessibilitySettingsStyles","UserMenuStyles","VerticalActionMenuStyles","VerticalMegaMenuStyles","WPRoleDefinition","WebComponentElements","WebComponentManifests","WizardSetupConstant","WorkplaceAppRoutePrefix","WorkplaceHomeStyles","WorkplaceSharedStyles","WorkspaceActionMenuMapping","WorkspaceActionMenuSettings","WorkspaceApp","WorkspaceFactory","WorkspaceHomeMapping","WorkspaceHomeSettings","WorkspaceInfo","WorkspaceMegaMenuItemTypes","WorkspaceMegaMenuMapping","WorkspaceMegaMenuSettings","WorkspaceVerticalNavWidth","WowrkplaceHeadingStyles","formDialogFooterHeight","formDialogHeaderHeight","notificationPanelLayoutProvider","reCaptchaSecretKey"]}}}
|
|
1
|
+
{"name":"omniaWebpackJsonp['39df27aa-95f1-4a23-b3f6-8b231afcda82']['491a5b75-e3d6-472a-8958-216be85b092a']","content":{"./client/admin/settings/blades/tenantheader/loc/localize.js":{"id":"./client/admin/settings/blades/tenantheader/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TenantHeaderLocalization"]},"./node_modules/@omnia/workplace/core/loc/formLocalize.js":{"id":"./node_modules/@omnia/workplace/core/loc/formlocalize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["FormsLocalization"]},"./node_modules/@omnia/workplace/core/loc/localize.js":{"id":"./node_modules/@omnia/workplace/core/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TeamCoreLocalization"]},"./node_modules/@omnia/workplace/core/loc/powerappLocalize.js":{"id":"./node_modules/@omnia/workplace/core/loc/powerapplocalize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["PowerAppLocalization"]},"./node_modules/@omnia/workplace/core/messaging/InternalWorkplaceTopics.js":{"id":"./node_modules/@omnia/workplace/core/messaging/internalworkplacetopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalWorkplaceTopics"]},"./node_modules/@omnia/workplace/services/index.js":{"id":"./node_modules/@omnia/workplace/services/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AnalyticsFilterService","AnalyticsService","AppAuthenticationOptionsService","FormService","FormTemplateService","FormTypeService","HomeService","MyLinksService","NotificationPanelHistoryService","PromotedSearchResultService","RecentLinksService","SearchCategoryService","SearchFeedbackService","SharedLinksService","SignOffRequestService","TeamCollaborationService"]},"./node_modules/@omnia/workplace/index.js":{"id":"8bf93338-8e70-4104-a75d-ae11485eec04","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminNamespace","AnalyticsFilterService","AnalyticsFilterStore","AnalyticsService","AnalyticsStore","AppAuthenticationOptionsService","AppRendererBootstrapper","CurrentFormStore","DialogHelper","EditingThemeStore","FilterValueProvider","FormService","FormStore","FormTemplateService","FormTemplateStore","FormTypeService","FormTypeStore","GovernanceDashboardStore","HomeService","LinkHandlerDialogStore","LinkStore","MyLinksService","NotificationPanelHistoryService","NotificationPanelStore","NotificationPanelStorePluginProvider","PromotedSearchResultService","PromotedSearchResultStore","RecentLinksService","SearchCategoryService","SearchCategoryStore","SearchFeedbackService","SearchTokenStore","SharedLinksService","SignOffRequestService","SignOffRequestStore","SignOffRequestUtils","Styles","TeamCollaborationService","TeamCollaborationStore","TeamworkContext","TeamworkTopics","Topics","WorkPlaceUtils","dialogStyle","settingsTabContainer"]},"./node_modules/@omnia/workplace/models/index.js":{"id":"c778308f-5fbb-4a3d-8691-ad7408ffbd56","buildMeta":{"exportsType":"namespace"},"expo.js":["AIEngine","ActionMenuStyles","AdvancedSearchSettingsStyles","AdvancedSearchStyles","AnalyticsDimensionScopes","AnnouncementCommentLikeStyle","AnnouncementJourneyStyle","AnnouncementStyles","AppEnums","AppIconSearchTemplateStyles","AppIconStyles","AppInstanceDescriptionProperties","AppLaunchStyles","AppLaunchViewStyles","AppProvisioningSteps","BuiltInActionButtonHandlers","BusinessProfileAnalyticsSettings","BusinessProfileAppProvisioning","BusinessProfileDallEPromptDefaultSettings","CentralImageLocationsStyles","ChangeTypes","ChartColor","CompactHeaderStyles","Constants","CreateTeamworkSettingsStyles","DallESettingsPrompts","DefaultSearchProperties","DefaultSearchTemplateStyles","DocumentDirectionSettingsStyles","EditModes","EnterpriseGlossaryAdminProvider","EnterpriseGlossaryInformationSettingsProvider","EnterpriseGlossaryInformationSourceSettingsProvider","EnterpriseGlossaryTaxonomyNavigationDisplayProvider","EnterpriseGlossaryTaxonomyNavigationSettingsProvider","EnterprisePropertyCategoriesDefaultBladeStyles","Enums","FeedType","FilterValue","FollowedsitesUpdatedAtUserPropertyBag","FooterPositions","FooterSettingStyles","FormDialogStyles","FormDisplayStatus","FormGenericSetting","FormLayoutProvider","FormQueryScopes","FormRollupBlockGeneralTabStyles","FormRollupConstants","FormRollupFilterEngineContextPropertyTypes","FormRollupMainRendererStyles","FormScopeTypes","FormStatus","FormTypes","GovernanceDashboard","GovernanceDashboardSettingsStyles","GovernanceDashboardStyles","GroupManifests","GroupMembershipMappingBladeStyles","HeaderSettingsMode","HeaderStyles","HighPriorityAnnouncementStyle","HomeLayoutDefinition","HorizontalActionMenuStyles","HorizontalMegaMenuStyles","ItemQueryResult","JumpToContentStyles","LegendAlignment","LegendPosition","LinkHandlerSettingsStyles","LinkUrlTypeOption","LinkViewMode","LocalizationAdminStyles","LocalizationInputStyles","LogoStyles","MSTeamChannelFeedSorting","MSTeamTemplateStep","MediaPickerStorageProviderWorkplaceFaviconContext","MediaPickerStorageProviderWorkplaceFormContext","MediaPickerStorageProviderWorkplaceLogoContext","MediaPickerStorageProviderWorkplacePromotedSearchResultContext","MediaPickerStorageProviderWorkplaceSearchFeedbackContext","MediaPickerStorageProviderWorkplaceTutorialContext","MegaMenuLayoutDefinition","MembersStep","MobileMegaMenuStyles","MyLinksStyles","MySitesEnums","MySitesStyles","MyTeamCollaborationCategoryStyles","MyTeamCollaborationStyles","NewTeamworksTimeType","NotificationConstants","NotificationPanelDisplayModes","NotificationPanelHeaderStyles","NotificationPanelIconPosition","NotificationPanelSettingsStyles","NotificationPanelStyles","NotificationPanelTabAligments","NotificationTypes","OmniaSearchProviderId","OmniaSystemLanguageSettingsStyles","OptionTypes","PeopleRollupFilterEngineContextPropertyTypes","PostsFeedScopeOption","PostsFeedSortMode","PromotedSearchResultStatus","QRCodeStyles","QuestionTypes","QuickSearchStyles","ReCaptChaSecretFormNames","RecurringRequestProgressStatus","ResourceManifests","ScopeCurrentId","SearchAdminStyles","SearchBlockStyles","SearchHeaderStyles","SearchProvider","SearchResultSource","SearchStatistics","SearchStatisticsMetricScopeFilterValue","SearchTokenProvider","SemanticSearchReferenceProvider","SemanticSearchSettingsKey","ServiceDefinition","SettingsKeys","SetupWizard","SetupWizardScope","SetupWizardTemplateFeatureHandler","SetupWizardTemplateProvider","SharedLinkSortByTypes","ShowMoreStyles","SignOffRequestEnums","SignOffRequestInfoPersistentDialogId","SignOffRequestProvider","SignOffRequestResourceProvider","SignOffRequestRollupConstants","SignOffRequestScopedQueryTypes","SignOffResource","SimpleListStyles","SimpleListingSearchTemplateStyles","SlideRendererStyles","SortedByType","StatisticViewMode","StatusCodeDisplay","StatusCodeStorageProviderWorkplaceContext","TabCustomUrlType","TableNames","TargetingPropertyStyles","TaxonomyNavigationDisplayProviderBase","TaxonomyNavigationStyles","TeamCollaborationAppDefinitionInfo","TeamCollaborationAppEnterpriseProperties","TeamCollaborationConstants","TeamCollaborationRollupBlockListViewSettingsStyles","TeamCollaborationRollupBlockListViewStyles","TeamCollaborationRollupBlockSettingsStyles","TeamCollaborationRollupBlockStyles","TeamCollaborationRollupEnums","TeamCollaborationRollupLinkBehavior","TeamCollaborationRollupScopeTypes","TeamCollabrationApp","TeamCollabrationAppResource","TeamCollabrationQuery","TeamCollabrationTypes","TeamNewsBlockStyles","TeamNewsRollupSettingElementName","TeamSiteEditPropertiesStyles","TeamWorkInfo","TeamworkAppLayoutDefinition","TeamworkNavigationActionHandlerSettingStyles","TeamworkNavigationSettingStyles","TeamworkNavigationStyles","TeamworkTemplateFilterValue","TenantRegionalStyles","TenantReusableContentManifests","TermNodeStyles","UserAccessibilitySettingsStyles","UserManagementConstants","UserMenuStyles","UserResultSourceId","VerticalActionMenuStyles","VerticalMegaMenuStyles","WPRoleDefinition","WebComponentElements","WebComponentManifests","WizardSetupConstant","WorkplaceAppRoutePrefix","WorkplaceHomeStyles","WorkplaceSharedStyles","WorkspaceActionMenuMapping","WorkspaceActionMenuSettings","WorkspaceApp","WorkspaceFactory","WorkspaceHomeMapping","WorkspaceHomeSettings","WorkspaceInfo","WorkspaceMegaMenuItemTypes","WorkspaceMegaMenuMapping","WorkspaceMegaMenuSettings","WorkspaceVerticalNavWidth","WowrkplaceHeadingStyles","formDialogFooterHeight","formDialogHeaderHeight","notificationPanelLayoutProvider","reCaptchaSecretKey"]}}}
|
|
@@ -27,6 +27,7 @@ export declare const Constants: {
|
|
|
27
27
|
msTeamsPushNotification: string;
|
|
28
28
|
teamworkProperties: string;
|
|
29
29
|
signOffRequest: string;
|
|
30
|
+
showFooter: string;
|
|
30
31
|
};
|
|
31
32
|
themingNavigationNodeKey: string;
|
|
32
33
|
themeIds: {
|
|
@@ -259,6 +260,11 @@ export declare const TableNames: {
|
|
|
259
260
|
};
|
|
260
261
|
export declare const SignOffRequestInfoPersistentDialogId = "omnia-workplace-signoffrequest-info-persistentdialog";
|
|
261
262
|
export declare const reCaptchaSecretKey = "omnia-recaptcha-secret";
|
|
263
|
+
export declare const SemanticSearchSettingsKey = "omnia.aiengine.semanticsearch.settings";
|
|
264
|
+
export declare const AIEngine: {
|
|
265
|
+
AISearchSecretKey: string;
|
|
266
|
+
OpenAIApiSecretKey: string;
|
|
267
|
+
};
|
|
262
268
|
export declare const ReCaptChaSecretFormNames: {
|
|
263
269
|
readonly enabled: "enabled";
|
|
264
270
|
readonly sitekey: "sitekey";
|
|
@@ -276,3 +282,9 @@ export declare const FormRollupFilterEngineContextPropertyTypes: {
|
|
|
276
282
|
endDate: Guid;
|
|
277
283
|
status: Guid;
|
|
278
284
|
};
|
|
285
|
+
export declare const OmniaSearchProviderId = "fb0ebfe7-5b93-422f-9224-a95ff709597a";
|
|
286
|
+
export declare const UserResultSourceId = "da6a2523-2043-4a3a-8617-190e24867db4";
|
|
287
|
+
export declare const DefaultSearchProperties: {
|
|
288
|
+
title: string;
|
|
289
|
+
name: string;
|
|
290
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FormRollupFilterEngineContextPropertyTypes = exports.PeopleRollupFilterEngineContextPropertyTypes = exports.ReCaptChaSecretFormNames = exports.reCaptchaSecretKey = exports.SignOffRequestInfoPersistentDialogId = exports.TableNames = exports.SetupWizard = exports.NotificationConstants = exports.AppProvisioningSteps = exports.SettingsKeys = exports.HeaderSettingsMode = exports.MSTeamTemplateStep = exports.MembersStep = exports.TeamWorkInfo = exports.StatusCodeDisplay = exports.GovernanceDashboard = exports.WorkspaceApp = exports.WorkplaceAppRoutePrefix = exports.TeamCollaborationAppDefinitionInfo = exports.TeamCollaborationAppEnterpriseProperties = exports.AppInstanceDescriptionProperties = exports.BuiltInActionButtonHandlers = exports.Constants = void 0;
|
|
3
|
+
exports.DefaultSearchProperties = exports.UserResultSourceId = exports.OmniaSearchProviderId = exports.FormRollupFilterEngineContextPropertyTypes = exports.PeopleRollupFilterEngineContextPropertyTypes = exports.ReCaptChaSecretFormNames = exports.AIEngine = exports.SemanticSearchSettingsKey = exports.reCaptchaSecretKey = exports.SignOffRequestInfoPersistentDialogId = exports.TableNames = exports.SetupWizard = exports.NotificationConstants = exports.AppProvisioningSteps = exports.SettingsKeys = exports.HeaderSettingsMode = exports.MSTeamTemplateStep = exports.MembersStep = exports.TeamWorkInfo = exports.StatusCodeDisplay = exports.GovernanceDashboard = exports.WorkspaceApp = exports.WorkplaceAppRoutePrefix = exports.TeamCollaborationAppDefinitionInfo = exports.TeamCollaborationAppEnterpriseProperties = exports.AppInstanceDescriptionProperties = exports.BuiltInActionButtonHandlers = exports.Constants = void 0;
|
|
4
4
|
const fx_models_1 = require("@omnia/fx-models");
|
|
5
5
|
const ManifestIds_1 = require("./ManifestIds");
|
|
6
6
|
exports.Constants = {
|
|
@@ -31,6 +31,7 @@ exports.Constants = {
|
|
|
31
31
|
msTeamsPushNotification: "d2542bf4-942f-4732-b9fc-0bfc6472180b",
|
|
32
32
|
teamworkProperties: "af763ba5-c028-48ff-abf2-c272920170d8",
|
|
33
33
|
signOffRequest: "51318721-4c03-43c6-950f-ccad11dbc9e0",
|
|
34
|
+
showFooter: "9c451cac-6fdd-4cd3-abd8-f2f10d1ac824"
|
|
34
35
|
},
|
|
35
36
|
themingNavigationNodeKey: "50c83e32-8a25-4c48-8f94-ef250236f755",
|
|
36
37
|
themeIds: {
|
|
@@ -282,6 +283,11 @@ exports.TableNames = {
|
|
|
282
283
|
};
|
|
283
284
|
exports.SignOffRequestInfoPersistentDialogId = "omnia-workplace-signoffrequest-info-persistentdialog";
|
|
284
285
|
exports.reCaptchaSecretKey = "omnia-recaptcha-secret";
|
|
286
|
+
exports.SemanticSearchSettingsKey = "omnia.aiengine.semanticsearch.settings";
|
|
287
|
+
exports.AIEngine = {
|
|
288
|
+
AISearchSecretKey: "omnia-aiengine-aisearch-configuration-secret",
|
|
289
|
+
OpenAIApiSecretKey: "omnia-openai-configuration-secret",
|
|
290
|
+
};
|
|
285
291
|
exports.ReCaptChaSecretFormNames = {
|
|
286
292
|
enabled: "enabled",
|
|
287
293
|
sitekey: "sitekey",
|
|
@@ -299,3 +305,9 @@ exports.FormRollupFilterEngineContextPropertyTypes = {
|
|
|
299
305
|
endDate: new fx_models_1.Guid("0d757e39-478c-4eeb-830b-7edb970b92d9"),
|
|
300
306
|
status: new fx_models_1.Guid("2740dbe0-cd74-4d73-b2bb-0c6ad20fc0a8")
|
|
301
307
|
};
|
|
308
|
+
exports.OmniaSearchProviderId = "fb0ebfe7-5b93-422f-9224-a95ff709597a";
|
|
309
|
+
exports.UserResultSourceId = "da6a2523-2043-4a3a-8617-190e24867db4";
|
|
310
|
+
exports.DefaultSearchProperties = {
|
|
311
|
+
title: "Title",
|
|
312
|
+
name: "Name"
|
|
313
|
+
};
|
|
@@ -35,7 +35,9 @@ export declare module Enums {
|
|
|
35
35
|
enum SearchResultItemTypes {
|
|
36
36
|
SharePoint = 0,
|
|
37
37
|
MicrosoftSearch = 1,
|
|
38
|
-
SharedLink = 2
|
|
38
|
+
SharedLink = 2,
|
|
39
|
+
SemanticSearch = 3,
|
|
40
|
+
OmniaSearch = 4
|
|
39
41
|
}
|
|
40
42
|
module UserProfileCompletionEnums {
|
|
41
43
|
enum PropertySourceEnum {
|
|
@@ -118,6 +120,12 @@ export declare module Enums {
|
|
|
118
120
|
Today = 1,
|
|
119
121
|
OneMonthFromToday = 2
|
|
120
122
|
}
|
|
123
|
+
enum QueryConfigurationType {
|
|
124
|
+
QueryBuilder = 0,
|
|
125
|
+
PickUsers = 1
|
|
126
|
+
}
|
|
127
|
+
const ManualSortPropertyBinding = "8cc52977-7581-4bf9-88d6-14a1281be8d2";
|
|
128
|
+
const RelevanceSortPropertyBinding = "97e42a00-1d21-4131-8b44-b11eed2a719b";
|
|
121
129
|
}
|
|
122
130
|
enum ChromeMode {
|
|
123
131
|
Full = 0,
|
|
@@ -47,6 +47,8 @@ var Enums;
|
|
|
47
47
|
SearchResultItemTypes[SearchResultItemTypes["SharePoint"] = 0] = "SharePoint";
|
|
48
48
|
SearchResultItemTypes[SearchResultItemTypes["MicrosoftSearch"] = 1] = "MicrosoftSearch";
|
|
49
49
|
SearchResultItemTypes[SearchResultItemTypes["SharedLink"] = 2] = "SharedLink";
|
|
50
|
+
SearchResultItemTypes[SearchResultItemTypes["SemanticSearch"] = 3] = "SemanticSearch";
|
|
51
|
+
SearchResultItemTypes[SearchResultItemTypes["OmniaSearch"] = 4] = "OmniaSearch";
|
|
50
52
|
})(SearchResultItemTypes = Enums.SearchResultItemTypes || (Enums.SearchResultItemTypes = {}));
|
|
51
53
|
let UserProfileCompletionEnums;
|
|
52
54
|
(function (UserProfileCompletionEnums) {
|
|
@@ -146,6 +148,13 @@ var Enums;
|
|
|
146
148
|
BirthdayPeriod[BirthdayPeriod["Today"] = 1] = "Today";
|
|
147
149
|
BirthdayPeriod[BirthdayPeriod["OneMonthFromToday"] = 2] = "OneMonthFromToday";
|
|
148
150
|
})(BirthdayPeriod = PeopleRollupEnums.BirthdayPeriod || (PeopleRollupEnums.BirthdayPeriod = {}));
|
|
151
|
+
let QueryConfigurationType;
|
|
152
|
+
(function (QueryConfigurationType) {
|
|
153
|
+
QueryConfigurationType[QueryConfigurationType["QueryBuilder"] = 0] = "QueryBuilder";
|
|
154
|
+
QueryConfigurationType[QueryConfigurationType["PickUsers"] = 1] = "PickUsers";
|
|
155
|
+
})(QueryConfigurationType = PeopleRollupEnums.QueryConfigurationType || (PeopleRollupEnums.QueryConfigurationType = {}));
|
|
156
|
+
PeopleRollupEnums.ManualSortPropertyBinding = "8cc52977-7581-4bf9-88d6-14a1281be8d2";
|
|
157
|
+
PeopleRollupEnums.RelevanceSortPropertyBinding = "97e42a00-1d21-4131-8b44-b11eed2a719b";
|
|
149
158
|
})(PeopleRollupEnums = Enums.PeopleRollupEnums || (Enums.PeopleRollupEnums = {}));
|
|
150
159
|
let ChromeMode;
|
|
151
160
|
(function (ChromeMode) {
|
|
@@ -153,6 +153,7 @@ export declare class ResourceManifests {
|
|
|
153
153
|
static get PeopleRollupOwnerFilterEngineRegistrationApi(): Guid;
|
|
154
154
|
static get PeopleRollupUserTypeFilterEngineRegistrationApi(): Guid;
|
|
155
155
|
static get PeopleRollupFilterEngineCore(): Guid;
|
|
156
|
+
static get SearchResultSourceApi(): Guid;
|
|
156
157
|
}
|
|
157
158
|
export declare class WebComponentManifests {
|
|
158
159
|
static get FaviconSettings(): Guid;
|
|
@@ -167,7 +168,6 @@ export declare class WebComponentManifests {
|
|
|
167
168
|
static get SearchStatisticsJourney(): Guid;
|
|
168
169
|
static get QuickSearchConfig(): Guid;
|
|
169
170
|
static get QuickSearchCategoriesConfig(): Guid;
|
|
170
|
-
static get SemanticSearchConfig(): Guid;
|
|
171
171
|
static get AdvenceSearchConfig(): Guid;
|
|
172
172
|
static get AdvancedSearchCategoriesConfig(): Guid;
|
|
173
173
|
static get DateTimeRefinerComponent(): Guid;
|
|
@@ -221,16 +221,16 @@ export declare class WebComponentManifests {
|
|
|
221
221
|
static get SearchBlock(): Guid;
|
|
222
222
|
static get SearchBlockSettings(): Guid;
|
|
223
223
|
static get QuickSearch(): Guid;
|
|
224
|
-
static get SemanticSearch(): Guid;
|
|
225
|
-
static get QuickSearchRenderer(): Guid;
|
|
226
224
|
static get AdvancedSearch(): Guid;
|
|
227
225
|
static get SearchAdmin(): Guid;
|
|
228
226
|
static get SearchAdminRegistration(): Guid;
|
|
229
227
|
static get SharePointSearchProviderSettings(): Guid;
|
|
230
228
|
static get MicrosoftSearchProviderSettings(): Guid;
|
|
231
229
|
static get SharedLinksSearchProviderSettings(): Guid;
|
|
230
|
+
static get SemanticSearchProviderSettings(): Guid;
|
|
232
231
|
static get QuickSearchActionHandlerSettings(): Guid;
|
|
233
232
|
static get SearchSettings(): Guid;
|
|
233
|
+
static get OmniaSearchProviderSettings(): Guid;
|
|
234
234
|
static get SearchStatisticsMetricIndicator(): Guid;
|
|
235
235
|
static get SearchStatisticsNoOfQueryMetricIndicator(): Guid;
|
|
236
236
|
static get SearchStatisticsAbandonedQueryMetricIndicator(): Guid;
|
|
@@ -441,6 +441,7 @@ export declare class WebComponentManifests {
|
|
|
441
441
|
static get SharePointTermUISettingsBlade(): Guid;
|
|
442
442
|
static get TaxonomyNavigation(): Guid;
|
|
443
443
|
static get TaxonomyNavigationSettings(): Guid;
|
|
444
|
+
static get TaxonomyNavigationRenderer(): Guid;
|
|
444
445
|
static get SignOffRequestJourney(): Guid;
|
|
445
446
|
static get SignOffRequestHeaderRequestedByMeList(): Guid;
|
|
446
447
|
static get SignOffRequestHeaderCreateNewRequest(): Guid;
|
|
@@ -456,6 +457,7 @@ export declare class WebComponentManifests {
|
|
|
456
457
|
static get SignOffRequestResourceList(): Guid;
|
|
457
458
|
static get SignOffRequestResourceProvider(): Guid;
|
|
458
459
|
static get SignOffRequestInfoPersistentDialog(): Guid;
|
|
460
|
+
static get SignOffRequestInfoDialog(): Guid;
|
|
459
461
|
static get SignOffRequestUpdateStatusDialog(): Guid;
|
|
460
462
|
static get SignOffRequestQueryableProperties(): Guid;
|
|
461
463
|
static get SignOffRequestCreationDialog(): Guid;
|
|
@@ -617,6 +619,10 @@ export declare class WebComponentManifests {
|
|
|
617
619
|
static get FormStatusFilterEngineSettings(): Guid;
|
|
618
620
|
static get FormStatusFilterEngineSelectionsArea(): Guid;
|
|
619
621
|
static get FormStatusFilterEngineDefaultValueInput(): Guid;
|
|
622
|
+
static get SemanticSearchQueryableProperties(): Guid;
|
|
623
|
+
static get ListingPickedUsers(): Guid;
|
|
624
|
+
static get UserSearchResultSource(): Guid;
|
|
625
|
+
static get OmniaUserQueryFiltersComponent(): Guid;
|
|
620
626
|
}
|
|
621
627
|
export declare class WebComponentElements {
|
|
622
628
|
static get AppProvisioningStepMember(): string;
|
|
@@ -161,6 +161,7 @@ class ResourceManifests {
|
|
|
161
161
|
static get PeopleRollupOwnerFilterEngineRegistrationApi() { return new fx_models_1.Guid("59f67a21-d0e5-4999-8d6e-260029173c7b"); }
|
|
162
162
|
static get PeopleRollupUserTypeFilterEngineRegistrationApi() { return new fx_models_1.Guid("09574fb3-e56d-4dc9-ada3-c2018e42c540"); }
|
|
163
163
|
static get PeopleRollupFilterEngineCore() { return new fx_models_1.Guid("3c70a618-1268-4eb7-aad4-38dff37fd8fe"); }
|
|
164
|
+
static get SearchResultSourceApi() { return new fx_models_1.Guid("388eb0a2-88d8-4384-88f2-f3e5ec68699a"); }
|
|
164
165
|
}
|
|
165
166
|
exports.ResourceManifests = ResourceManifests;
|
|
166
167
|
class WebComponentManifests {
|
|
@@ -176,7 +177,6 @@ class WebComponentManifests {
|
|
|
176
177
|
static get SearchStatisticsJourney() { return new fx_models_1.Guid("6b0a110e-478a-4c3d-875b-d89da7296c43"); }
|
|
177
178
|
static get QuickSearchConfig() { return new fx_models_1.Guid("f537b6a0-79ec-4019-9da6-62a51e3c5ff3"); }
|
|
178
179
|
static get QuickSearchCategoriesConfig() { return new fx_models_1.Guid("4190870d-6df6-4f35-9ea8-7cae2105b7e9"); }
|
|
179
|
-
static get SemanticSearchConfig() { return new fx_models_1.Guid("e93c6ef1-0f70-4c66-9bc1-4fa0b7c46fd8"); }
|
|
180
180
|
static get AdvenceSearchConfig() { return new fx_models_1.Guid("e5da6df9-7c88-4413-9f75-b8635429cc16"); }
|
|
181
181
|
static get AdvancedSearchCategoriesConfig() { return new fx_models_1.Guid("10303262-f456-4f79-be31-71bd32a32dab"); }
|
|
182
182
|
static get DateTimeRefinerComponent() { return new fx_models_1.Guid("0d3db85a-72f7-4f60-a404-8648101ab0b3"); }
|
|
@@ -230,16 +230,16 @@ class WebComponentManifests {
|
|
|
230
230
|
static get SearchBlock() { return new fx_models_1.Guid("103755a1-c49e-4e34-85b4-c94f541894a7"); }
|
|
231
231
|
static get SearchBlockSettings() { return new fx_models_1.Guid("1c6045e8-ac28-4005-88eb-5d81857060bb"); }
|
|
232
232
|
static get QuickSearch() { return new fx_models_1.Guid("24c33a66-12d8-4d62-8142-fd0486dcd9ed"); }
|
|
233
|
-
static get SemanticSearch() { return new fx_models_1.Guid("6ff41c98-63fd-47a7-a391-83015ba2c6cb"); }
|
|
234
|
-
static get QuickSearchRenderer() { return new fx_models_1.Guid("1fcaf18a-b3d7-4ea0-97f0-361fb3b7b9da"); }
|
|
235
233
|
static get AdvancedSearch() { return new fx_models_1.Guid("6f8e12f7-3379-4722-854d-1f8e83b722b2"); }
|
|
236
234
|
static get SearchAdmin() { return new fx_models_1.Guid("7843b606-9207-4563-80da-c8fb07e6b927"); }
|
|
237
235
|
static get SearchAdminRegistration() { return new fx_models_1.Guid("8c97d118-f0d9-44fe-9ef5-ed107e6401d2"); }
|
|
238
236
|
static get SharePointSearchProviderSettings() { return new fx_models_1.Guid("d9a4ee6a-4030-47ff-9f8d-438d71aad39c"); }
|
|
239
237
|
static get MicrosoftSearchProviderSettings() { return new fx_models_1.Guid("b94f27fb-cf98-4d4d-9ebb-dc0cdf6f3893"); }
|
|
240
238
|
static get SharedLinksSearchProviderSettings() { return new fx_models_1.Guid("531dde74-4a66-4990-b0c1-b0fb979371e4"); }
|
|
239
|
+
static get SemanticSearchProviderSettings() { return new fx_models_1.Guid("f8d86027-3ca8-4d48-b585-04a67a0b6632"); }
|
|
241
240
|
static get QuickSearchActionHandlerSettings() { return new fx_models_1.Guid("b8a22e34-3162-443e-9260-1e4fc8eb0310"); }
|
|
242
241
|
static get SearchSettings() { return new fx_models_1.Guid("60d18833-efb0-456d-8359-fea6c82701b7"); }
|
|
242
|
+
static get OmniaSearchProviderSettings() { return new fx_models_1.Guid("21719ca4-88a0-4d5c-9af7-e6056e79ce1b"); }
|
|
243
243
|
static get SearchStatisticsMetricIndicator() { return new fx_models_1.Guid("f3c88c39-9d56-4f4a-9841-2272bd275428"); }
|
|
244
244
|
static get SearchStatisticsNoOfQueryMetricIndicator() { return new fx_models_1.Guid("7fb2948c-286e-4de9-b25a-7594bd472c65"); }
|
|
245
245
|
static get SearchStatisticsAbandonedQueryMetricIndicator() { return new fx_models_1.Guid("1588c9e5-835c-4258-990f-26ade94a385a"); }
|
|
@@ -450,6 +450,7 @@ class WebComponentManifests {
|
|
|
450
450
|
static get SharePointTermUISettingsBlade() { return new fx_models_1.Guid("e5424a19-67bf-4599-bfde-ebc101b3f5ea"); }
|
|
451
451
|
static get TaxonomyNavigation() { return new fx_models_1.Guid("0ed328bd-5d9e-4613-85d7-fb51abb490a1"); }
|
|
452
452
|
static get TaxonomyNavigationSettings() { return new fx_models_1.Guid("aada204b-9c67-40e3-892e-0bb05e003f57"); }
|
|
453
|
+
static get TaxonomyNavigationRenderer() { return new fx_models_1.Guid("d20ca8cb-57f2-4411-9feb-5f3c3f518153"); }
|
|
453
454
|
static get SignOffRequestJourney() { return new fx_models_1.Guid("9c4dbbe9-8bdd-4017-b1d8-3e477e179010"); }
|
|
454
455
|
static get SignOffRequestHeaderRequestedByMeList() { return new fx_models_1.Guid("a152b5cf-cf71-4d52-bfe1-d61ef1c34cb4"); }
|
|
455
456
|
static get SignOffRequestHeaderCreateNewRequest() { return new fx_models_1.Guid("2ea29d82-fbce-4de4-93c1-126f7f4c2493"); }
|
|
@@ -465,6 +466,7 @@ class WebComponentManifests {
|
|
|
465
466
|
static get SignOffRequestResourceList() { return new fx_models_1.Guid("b22753ef-4801-454d-997a-30a89d0ae943"); }
|
|
466
467
|
static get SignOffRequestResourceProvider() { return new fx_models_1.Guid("416779e6-b2e9-4c2d-b372-fd7623b0c22a"); }
|
|
467
468
|
static get SignOffRequestInfoPersistentDialog() { return new fx_models_1.Guid("51d1ef63-4219-4a6c-86d4-4653f2ac783d"); }
|
|
469
|
+
static get SignOffRequestInfoDialog() { return new fx_models_1.Guid("2c79e0a3-8ced-48d1-bd7b-0ec21d55b714"); }
|
|
468
470
|
static get SignOffRequestUpdateStatusDialog() { return new fx_models_1.Guid("e21e1edc-4610-43e4-9791-a5694f03554e"); }
|
|
469
471
|
static get SignOffRequestQueryableProperties() { return new fx_models_1.Guid("5fb83ba2-a122-4324-925f-aa7dad59a22d"); }
|
|
470
472
|
static get SignOffRequestCreationDialog() { return new fx_models_1.Guid("831b98b6-9b4d-4e30-93cf-543b853cbe15"); }
|
|
@@ -626,6 +628,10 @@ class WebComponentManifests {
|
|
|
626
628
|
static get FormStatusFilterEngineSettings() { return new fx_models_1.Guid("fea6b108-c9cc-4ffd-9044-89e9e632ba42"); }
|
|
627
629
|
static get FormStatusFilterEngineSelectionsArea() { return new fx_models_1.Guid("77c771b4-5cce-4db4-8229-38ce362b9a64"); }
|
|
628
630
|
static get FormStatusFilterEngineDefaultValueInput() { return new fx_models_1.Guid("0f92d659-4323-4e68-9315-0416a26baa04"); }
|
|
631
|
+
static get SemanticSearchQueryableProperties() { return new fx_models_1.Guid("506ff200-d795-4fb8-9177-d9940c4feb65"); }
|
|
632
|
+
static get ListingPickedUsers() { return new fx_models_1.Guid("41f2d65c-c061-49cf-8c3c-e0a08bbfb882"); }
|
|
633
|
+
static get UserSearchResultSource() { return new fx_models_1.Guid("2521c36d-0e1f-4e9c-80a1-bbee3a762784"); }
|
|
634
|
+
static get OmniaUserQueryFiltersComponent() { return new fx_models_1.Guid("c1b21e46-3528-4f5a-95e9-ee8818a2993f"); }
|
|
629
635
|
}
|
|
630
636
|
exports.WebComponentManifests = WebComponentManifests;
|
|
631
637
|
class WebComponentElements {
|
|
@@ -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,13 @@ export interface CategorySearchResult {
|
|
|
14
14
|
totalRows: number;
|
|
15
15
|
items: Array<SearchResultItem>;
|
|
16
16
|
}
|
|
17
|
+
export interface SemanticSearchCategorySearchResult extends CategorySearchResult {
|
|
18
|
+
semanticSearchResult: SemanticSearchResult;
|
|
19
|
+
error?: string;
|
|
20
|
+
}
|
|
21
|
+
export interface SemanticSearchResultItem extends SearchResultItem {
|
|
22
|
+
reference: SemanticSearchReference;
|
|
23
|
+
}
|
|
17
24
|
export interface SharePointCategorySearchResult extends CategorySearchResult {
|
|
18
25
|
refiners: Array<Refiner>;
|
|
19
26
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropertyMapping, Enums } from ".";
|
|
2
2
|
import { TargetingFilterProperty } from "@omnia/fx-sp-models";
|
|
3
|
-
import { MultilingualString, GuidValue } from "@omnia/fx-models";
|
|
3
|
+
import { MultilingualString, GuidValue, FilterComponent } from "@omnia/fx-models";
|
|
4
4
|
export interface SearchCategoryBase {
|
|
5
5
|
id: GuidValue;
|
|
6
6
|
providerId: GuidValue;
|
|
@@ -11,6 +11,7 @@ export interface SearchCategoryBase {
|
|
|
11
11
|
businessProfileId: GuidValue;
|
|
12
12
|
providerComponentId: GuidValue;
|
|
13
13
|
query?: string;
|
|
14
|
+
providerSettings?: ProviderSettings;
|
|
14
15
|
}
|
|
15
16
|
export interface SharePointSearchCategory extends SearchCategoryBase {
|
|
16
17
|
resultSource: string;
|
|
@@ -33,6 +34,19 @@ export interface MicrosoftSearchCategory extends SearchCategoryBase {
|
|
|
33
34
|
export interface SharedLinkSearchCategory extends SearchCategoryBase {
|
|
34
35
|
sortBy: string;
|
|
35
36
|
}
|
|
37
|
+
export interface ProviderSettings {
|
|
38
|
+
}
|
|
39
|
+
export interface SemanticSearchCategory extends SearchCategoryBase {
|
|
40
|
+
providerSettings: SemanticSearchSettings;
|
|
41
|
+
}
|
|
42
|
+
export interface SemanticSearchSettings extends ProviderSettings {
|
|
43
|
+
propertiesFilter?: FilterComponent[];
|
|
44
|
+
includeSemanticSummaryEnabled: boolean;
|
|
45
|
+
showReferencesEnabled: boolean;
|
|
46
|
+
includeParagraphsEnabled: boolean;
|
|
47
|
+
customNoResultMessageEnabled?: boolean;
|
|
48
|
+
customNoResultMessage?: MultilingualString;
|
|
49
|
+
}
|
|
36
50
|
export interface DictionaryPropertiesMapping {
|
|
37
51
|
[customProperty: string]: ContentPropertyMapping;
|
|
38
52
|
}
|
|
@@ -5,5 +5,7 @@ export declare abstract class SearchProvider implements SearchProviderBase {
|
|
|
5
5
|
abstract readonly omniaServiceId: GuidValue;
|
|
6
6
|
abstract readonly providerId: GuidValue;
|
|
7
7
|
abstract providerDisplayRenderManifestId: GuidValue;
|
|
8
|
+
hideSearchTemplates?: boolean;
|
|
8
9
|
getSearchCategoryResult: (searchRequest: SearchRequest) => Promise<CategorySearchResult[]>;
|
|
10
|
+
shouldHideSearchProvider?: () => Promise<boolean>;
|
|
9
11
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EnterprisePropertyDefinition, GuidValue } from "@omnia/fx-models";
|
|
2
|
+
import { CategorySearchResult } from ".";
|
|
3
|
+
import { SearchRequest } from "../../search/models";
|
|
4
|
+
export declare abstract class SearchResultSource implements SearchResultSourceBase {
|
|
5
|
+
abstract readonly id: string;
|
|
6
|
+
abstract readonly title: string;
|
|
7
|
+
abstract readonly providerId: GuidValue;
|
|
8
|
+
abstract readonly providerDisplayRenderManifestId: GuidValue;
|
|
9
|
+
abstract readonly weight: number;
|
|
10
|
+
getCategorySearchResult: (searchRequest: SearchRequest) => Promise<Array<CategorySearchResult>>;
|
|
11
|
+
ensureAvailableSearchProperties: () => Promise<void>;
|
|
12
|
+
getAvailableSearchProperties: () => Array<EnterprisePropertyDefinition>;
|
|
13
|
+
}
|
|
14
|
+
export interface SearchResultSourceBase {
|
|
15
|
+
id: string;
|
|
16
|
+
title: string;
|
|
17
|
+
providerId: GuidValue;
|
|
18
|
+
providerDisplayRenderManifestId: GuidValue;
|
|
19
|
+
weight: number;
|
|
20
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ApiPath, BlockSettings, EnterpriseGlossaryInformationProviderId, EnterpriseGlossaryInformationSourceSettings, GuidValue, IBlockInstance, MultilingualString, SpacingSettings, ThemeDefinition } from "@omnia/fx/models";
|
|
2
|
-
import { VueComponentBase } from "@omnia/fx/ux";
|
|
2
|
+
import { ScopedSlots, VueComponentBase } from "@omnia/fx/ux";
|
|
3
3
|
export interface TaxonomyNavigationQuerySettings {
|
|
4
4
|
enterpriseGlossaryInstanceId: number;
|
|
5
5
|
}
|
|
@@ -45,7 +45,9 @@ export interface ITaxonomyNavigationSettingsProvider<TQuery extends TaxonomyNavi
|
|
|
45
45
|
}
|
|
46
46
|
export declare abstract class TaxonomyNavigationDisplayProviderBase<TQuery extends TaxonomyNavigationQuerySettings = TaxonomyNavigationQuerySettings, TView extends TaxonomyNavigationViewSettings = TaxonomyNavigationViewSettings> {
|
|
47
47
|
provider: EnterpriseGlossaryTaxonomyNavigationDisplayProvider;
|
|
48
|
-
abstract triggered(settings: TaxonomyNavigationBlockSettings<TQuery, TView>, blockInstance: IBlockInstance<TaxonomyNavigationBlockSettings<TQuery, TView>>, componentRef: VueComponentBase,
|
|
48
|
+
abstract triggered(settings: TaxonomyNavigationBlockSettings<TQuery, TView>, blockInstance: IBlockInstance<TaxonomyNavigationBlockSettings<TQuery, TView>>, componentRef: VueComponentBase,
|
|
49
|
+
/** @deprecated element parameter does not reactive correctly and will be removed in future major version, use scopedSlots parameter instead. */
|
|
50
|
+
renderingCallBack: (element: TaxonomyNavigationDisplayProviderRenderResult, scopedSlots: ScopedSlots<TaxonomyNavigationDisplayProviderScopedSlots>) => void, setCurrentState: (value: boolean) => void, setChildrenState: (value: number) => void): void;
|
|
49
51
|
abstract dispose(): void;
|
|
50
52
|
}
|
|
51
53
|
export type TaxonomyNavigationDisplayProviderRenderResult = {
|
|
@@ -53,6 +55,11 @@ export type TaxonomyNavigationDisplayProviderRenderResult = {
|
|
|
53
55
|
parents: JSX.Element[];
|
|
54
56
|
childrens: JSX.Element[];
|
|
55
57
|
};
|
|
58
|
+
export interface TaxonomyNavigationDisplayProviderScopedSlots {
|
|
59
|
+
current: void;
|
|
60
|
+
parents: void;
|
|
61
|
+
childrens: void;
|
|
62
|
+
}
|
|
56
63
|
declare module "./WorkplaceApi" {
|
|
57
64
|
interface IWorkplaceApi {
|
|
58
65
|
taxonomyNavigation: {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IDataSourcePropertySelection } from "@omnia/fx/ux";
|
|
2
|
+
/** @deprecated */
|
|
2
3
|
export interface AnalyticsDimensionMapping {
|
|
3
4
|
dimensionId: number;
|
|
4
5
|
mappedProperty: IDataSourcePropertySelection;
|
|
@@ -23,6 +24,7 @@ export interface AnalyticsColumn {
|
|
|
23
24
|
name: string;
|
|
24
25
|
dataType: string;
|
|
25
26
|
}
|
|
27
|
+
/** @deprecated */
|
|
26
28
|
export declare enum AnalyticsDimensionScopes {
|
|
27
29
|
visit = 0,
|
|
28
30
|
action = 1
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.AnalyticsDimensionScopes = void 0;
|
|
4
|
+
/** @deprecated */
|
|
4
5
|
var AnalyticsDimensionScopes;
|
|
5
6
|
(function (AnalyticsDimensionScopes) {
|
|
6
7
|
AnalyticsDimensionScopes[AnalyticsDimensionScopes["visit"] = 0] = "visit";
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import { AnalyticsDimensionMapping } from "
|
|
1
|
+
import { AnalyticsDimensionMapping, GuidValue } from "@omnia/fx-models";
|
|
2
2
|
export interface AnalyticsSettings {
|
|
3
3
|
enabled: boolean;
|
|
4
4
|
idSite: number;
|
|
5
5
|
mappings: AnalyticsDimensionMapping[];
|
|
6
|
+
shared: boolean;
|
|
7
|
+
connectedBusinessProfileId?: GuidValue;
|
|
6
8
|
}
|
|
7
9
|
export interface AnalyticsToken {
|
|
8
10
|
token: string;
|
package/internal-do-not-import-from-here/models/analytics/businessProfileAnalyticsSettings.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BusinessProfileProperty } from "@omnia/fx-models";
|
|
2
2
|
import { AnalyticsDimensionMapping } from "./analyticsdimensionmappings";
|
|
3
|
+
/** @deprecated */
|
|
3
4
|
export declare class BusinessProfileAnalyticsSettings extends BusinessProfileProperty {
|
|
4
5
|
enabled: boolean;
|
|
5
6
|
idSite: number;
|
package/internal-do-not-import-from-here/models/analytics/businessProfileAnalyticsSettings.js
CHANGED
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.BusinessProfileAnalyticsSettings = void 0;
|
|
4
4
|
const fx_models_1 = require("@omnia/fx-models");
|
|
5
5
|
const ManifestIds_1 = require("../ManifestIds");
|
|
6
|
+
/** @deprecated */
|
|
6
7
|
class BusinessProfileAnalyticsSettings extends fx_models_1.BusinessProfileProperty {
|
|
7
8
|
constructor() {
|
|
8
9
|
super(ManifestIds_1.ServiceDefinition.Id, "bpanalyticssettings");
|
|
@@ -2,6 +2,8 @@ export * from "./analyticsdimensionmappings";
|
|
|
2
2
|
export * from "./analyticssettings";
|
|
3
3
|
export * from "./widgetmetadata";
|
|
4
4
|
export * from "./analyticsfiltersettings";
|
|
5
|
-
export * from "./businessProfileAnalyticsSettings";
|
|
6
5
|
export * from "./matomosite";
|
|
7
6
|
export * from "./segmentinfo";
|
|
7
|
+
export * from "./analyticsSettingsRequest";
|
|
8
|
+
export * from "./businessProfileAnalyticsSettings";
|
|
9
|
+
export * from "./matomositeinfo";
|
|
@@ -5,6 +5,8 @@ tslib_1.__exportStar(require("./analyticsdimensionmappings"), exports);
|
|
|
5
5
|
tslib_1.__exportStar(require("./analyticssettings"), exports);
|
|
6
6
|
tslib_1.__exportStar(require("./widgetmetadata"), exports);
|
|
7
7
|
tslib_1.__exportStar(require("./analyticsfiltersettings"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./businessProfileAnalyticsSettings"), exports);
|
|
9
8
|
tslib_1.__exportStar(require("./matomosite"), exports);
|
|
10
9
|
tslib_1.__exportStar(require("./segmentinfo"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./analyticsSettingsRequest"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./businessProfileAnalyticsSettings"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./matomositeinfo"), exports);
|
|
@@ -4,7 +4,8 @@ export declare module AppEnums {
|
|
|
4
4
|
M365Group = "071484a2-6727-454a-9e7c-e103f5da0c84",
|
|
5
5
|
YammerGroup = "298429f6-8e39-4bb6-9e25-129896709d1f",
|
|
6
6
|
FacebookWorkplaceGroup = "76b4cae2-a213-4f9d-a7e0-e20b05eb2de8",
|
|
7
|
-
MicrosoftTeam = "026f8912-2c6f-4f19-81b8-fcbaca4864a2"
|
|
7
|
+
MicrosoftTeam = "026f8912-2c6f-4f19-81b8-fcbaca4864a2",
|
|
8
|
+
SPCommunicationSite = "7d5fc541-c02e-41f9-a7f7-86d91bc41df8"
|
|
8
9
|
}
|
|
9
10
|
enum TeamPrivacyOptions {
|
|
10
11
|
Public = "Public",
|
|
@@ -18,6 +18,7 @@ var AppEnums;
|
|
|
18
18
|
TeamworkResourceTypeIds["YammerGroup"] = "298429f6-8e39-4bb6-9e25-129896709d1f";
|
|
19
19
|
TeamworkResourceTypeIds["FacebookWorkplaceGroup"] = "76b4cae2-a213-4f9d-a7e0-e20b05eb2de8";
|
|
20
20
|
TeamworkResourceTypeIds["MicrosoftTeam"] = "026f8912-2c6f-4f19-81b8-fcbaca4864a2";
|
|
21
|
+
TeamworkResourceTypeIds["SPCommunicationSite"] = "7d5fc541-c02e-41f9-a7f7-86d91bc41df8";
|
|
21
22
|
})(TeamworkResourceTypeIds = AppEnums.TeamworkResourceTypeIds || (AppEnums.TeamworkResourceTypeIds = {}));
|
|
22
23
|
let TeamPrivacyOptions;
|
|
23
24
|
(function (TeamPrivacyOptions) {
|
|
@@ -11,4 +11,6 @@ export declare const TeamNewsBlockStyles: {
|
|
|
11
11
|
title?: types.NestedCSSProperties;
|
|
12
12
|
socialWrapper?: types.NestedCSSProperties;
|
|
13
13
|
groupViewWrapper?: types.NestedCSSProperties;
|
|
14
|
+
userWrapper: types.NestedCSSProperties;
|
|
15
|
+
imageContainer?: types.NestedCSSProperties;
|
|
14
16
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GuidValue, Identity, MultilingualString } from "@omnia/fx-models";
|
|
1
|
+
import { AnalyticsSettings, GuidValue, Identity, MultilingualString } from "@omnia/fx-models";
|
|
2
2
|
import { FormTypes } from "./Form";
|
|
3
3
|
export interface FormTypeRequest {
|
|
4
4
|
baseType: FormTypes;
|
|
@@ -10,6 +10,7 @@ export interface FormTypeRequest {
|
|
|
10
10
|
export interface FormTypeSettings {
|
|
11
11
|
showFormTemplateSettings: boolean;
|
|
12
12
|
allowMultipleQuestions: boolean;
|
|
13
|
+
analyticsSettings?: AnalyticsSettings;
|
|
13
14
|
}
|
|
14
15
|
export interface FormType extends FormTypeRequest {
|
|
15
16
|
id: number;
|
|
@@ -74,3 +74,6 @@ tslib_1.__exportStar(require("./texttranslator"), exports);
|
|
|
74
74
|
tslib_1.__exportStar(require("./qrcode"), exports);
|
|
75
75
|
tslib_1.__exportStar(require("./DallESettingsPrompts"), exports);
|
|
76
76
|
tslib_1.__exportStar(require("./analytics"), exports);
|
|
77
|
+
tslib_1.__exportStar(require("./usermanagement"), exports);
|
|
78
|
+
tslib_1.__exportStar(require("./SearchResultSource"), exports);
|
|
79
|
+
tslib_1.__exportStar(require("./omniasearch"), exports);
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { GuidValue, OmniaSearchPropertyFilter, ResolvedUserIdentity, ScopeTypes } from "@omnia/fx-models";
|
|
2
|
+
import { SearchCategoryRefiner } from "../../../search/models";
|
|
3
|
+
import { Enums } from "../Enums";
|
|
4
|
+
import { CategorySearchResult, Refiner, SearchCategoryOption, SearchResultItem } from "../Search";
|
|
5
|
+
import { SearchCategoryBase, DictionaryPropertiesMapping, ProviderSettings } from "../SearchCategory";
|
|
6
|
+
import { OmniaUserSearchPropertyFilter } from "./SearchPropertyFilter";
|
|
7
|
+
export interface OmniaCategorySearchResult extends CategorySearchResult {
|
|
8
|
+
refiners: Array<Refiner>;
|
|
9
|
+
}
|
|
10
|
+
export interface OmniaSearchResultItem extends SearchResultItem {
|
|
11
|
+
customPropertiesResult: {
|
|
12
|
+
[key: string]: string;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
export interface OmniaSearchCategoryOption extends SearchCategoryOption {
|
|
16
|
+
searchCategory: OmniaSearchCategory;
|
|
17
|
+
refiners?: Array<SearchCategoryRefiner>;
|
|
18
|
+
refinerFilter?: Array<OmniaSearchPropertyFilter>;
|
|
19
|
+
}
|
|
20
|
+
export interface OmniaSearchCategory extends SearchCategoryBase {
|
|
21
|
+
resultSource: string;
|
|
22
|
+
sortBy?: string;
|
|
23
|
+
sortDirection?: Enums.SortDirection;
|
|
24
|
+
providerSettings: OmniaSearchSettings;
|
|
25
|
+
listTemplatePropertiesMapping?: {
|
|
26
|
+
[templateId: string]: DictionaryPropertiesMapping;
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
export interface OmniaSearchSettings extends ProviderSettings {
|
|
30
|
+
}
|
|
31
|
+
export interface SearchResultSourceSettingProps<T extends SearchCategoryBase> {
|
|
32
|
+
searchCategory: T;
|
|
33
|
+
onChanged: (value: T) => void;
|
|
34
|
+
}
|
|
35
|
+
export interface UserOmniaSearchQueryCategory extends OmniaSearchCategory {
|
|
36
|
+
providerSettings: UserOmniaSearchSettings;
|
|
37
|
+
}
|
|
38
|
+
export interface UserOmniaSearchSettings extends ProviderSettings {
|
|
39
|
+
userTypeIds?: Array<GuidValue>;
|
|
40
|
+
scopes?: Array<GuidValue>;
|
|
41
|
+
scopeType?: ScopeTypes;
|
|
42
|
+
filters?: Array<OmniaUserSearchPropertyFilter>;
|
|
43
|
+
}
|
|
44
|
+
export interface OmniaUserQueryFiltersComponentSettingProps {
|
|
45
|
+
userTypeIds?: Array<GuidValue>;
|
|
46
|
+
scopes?: Array<GuidValue>;
|
|
47
|
+
scopeType?: ScopeTypes;
|
|
48
|
+
filters?: Array<OmniaUserSearchPropertyFilter>;
|
|
49
|
+
onChanged: (filters: Array<OmniaUserSearchPropertyFilter>, userTypeIds: Array<GuidValue>, scopes: Array<GuidValue>, scopeType: ScopeTypes) => void;
|
|
50
|
+
}
|
|
51
|
+
export interface OmniaUserSearchResultItem extends OmniaSearchResultItem {
|
|
52
|
+
resolvedUser: ResolvedUserIdentity;
|
|
53
|
+
}
|
|
@@ -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
|
+
}
|
|
@@ -1,7 +1,14 @@
|
|
|
1
|
-
import { GuidValue, SemanticSearchReference } from "@omnia/fx-models";
|
|
1
|
+
import { GuidValue, SemanticSearchPropertyDefinition, SemanticSearchReference } from "@omnia/fx-models";
|
|
2
|
+
import { SemanticSearchFilterValue } from "./SemanticSearchFilterValue";
|
|
2
3
|
export declare abstract class SemanticSearchReferenceProvider {
|
|
4
|
+
providerId: GuidValue;
|
|
3
5
|
typeId: GuidValue;
|
|
6
|
+
title: string;
|
|
4
7
|
ensureReferencesLoaded: (references: string[]) => Promise<void>;
|
|
5
|
-
renderReference: (item: SemanticSearchReference) => JSX.Element;
|
|
6
|
-
renderReferenceIcon: (item: SemanticSearchReference) => JSX.Element;
|
|
8
|
+
renderReference: (item: SemanticSearchReference, openInNewTab?: boolean) => JSX.Element;
|
|
9
|
+
renderReferenceIcon: (item: SemanticSearchReference, openInNewTab?: boolean) => JSX.Element;
|
|
10
|
+
getCustomProperties?: () => SemanticSearchPropertyDefinition[];
|
|
11
|
+
renderPropertyFilterValueSelection?: (filterValue: SemanticSearchFilterValue) => JSX.Element;
|
|
12
|
+
onSelectFilterValue?: (filterValue: SemanticSearchFilterValue) => void;
|
|
13
|
+
renderPropertyValue?: (filterValue: SemanticSearchFilterValue) => JSX.Element;
|
|
7
14
|
}
|
|
@@ -3,3 +3,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
tslib_1.__exportStar(require("./SemanticSearchProvider"), exports);
|
|
5
5
|
tslib_1.__exportStar(require("./SemanticSearchApi"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./SemanticSearchFilterValue"), exports);
|
|
@@ -7,6 +7,7 @@ export declare abstract class SignOffRequestProvider<T extends SignOffResource =
|
|
|
7
7
|
abstract settingRenderer?: () => JSX.Element;
|
|
8
8
|
actionButtonHandler: ActionType;
|
|
9
9
|
defaultMessage: string;
|
|
10
|
+
providerOrder: number;
|
|
10
11
|
resolveResourceData: (itemId: string) => Promise<SignOffRequestResourceDetail>;
|
|
11
12
|
resolveToken: (tokenField: string, itemId: string) => string;
|
|
12
13
|
ensureItemsLoaded: (itemIds: string[]) => Promise<void>;
|
|
@@ -30,6 +30,7 @@ export interface SignOffRequestTemplateMultilingualStringDataSettings extends IS
|
|
|
30
30
|
}
|
|
31
31
|
export interface SignOffRequestTemplateIdentityListDataSettings extends ISignOffRequestTemplateDataSettings {
|
|
32
32
|
value: Array<Identity>;
|
|
33
|
+
includeCurrentGroup?: boolean;
|
|
33
34
|
}
|
|
34
35
|
export interface SignOffRequestTemplateSignOffResourceListDataSettings extends ISignOffRequestTemplateDataSettings {
|
|
35
36
|
value: Array<ISignOffRequestResourceDataSettings>;
|
|
@@ -15,6 +15,7 @@ export declare const MyLinksStyles: {
|
|
|
15
15
|
headerCheckbox?: types.NestedCSSProperties;
|
|
16
16
|
dialogFooter?: types.NestedCSSProperties;
|
|
17
17
|
iconPreview?: types.NestedCSSProperties;
|
|
18
|
+
visuallyHidden?: types.NestedCSSProperties;
|
|
18
19
|
};
|
|
19
20
|
export declare const SimpleListStyles: {
|
|
20
21
|
componentWrapper: (spacing: SpacingSettings) => types.NestedCSSProperties;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { HorizontalAlignments } from "@omnia/fx-models";
|
|
1
2
|
import { types } from "typestyle";
|
|
2
3
|
export declare const NotificationPanelHeaderStyles: {
|
|
3
4
|
body?: types.NestedCSSProperties;
|
|
@@ -10,4 +11,6 @@ export declare const NotificationPanelHeaderStyles: {
|
|
|
10
11
|
invisibleDialog?: types.NestedCSSProperties;
|
|
11
12
|
centerText?: types.NestedCSSProperties;
|
|
12
13
|
notificationNumberColor?: (numberColor: string) => types.NestedCSSProperties;
|
|
14
|
+
buttonUppercase?: (isUppercaseEnabled: boolean) => types.NestedCSSProperties;
|
|
15
|
+
buttonAlignment?: (alignment: HorizontalAlignments) => types.NestedCSSProperties;
|
|
13
16
|
};
|
|
@@ -5,6 +5,7 @@ import { SearchBoxStyling } from "../SearchBoxStyling";
|
|
|
5
5
|
type SearchRule = {
|
|
6
6
|
container?: (showInHeader: boolean, compactChrome: boolean) => types.NestedCSSProperties;
|
|
7
7
|
searchCategory?: types.NestedCSSProperties;
|
|
8
|
+
searchCategoryHeaderText?: (theme: OmniaTheming) => types.NestedCSSProperties;
|
|
8
9
|
searchCategoryHeader?: (theme: OmniaTheming) => types.NestedCSSProperties;
|
|
9
10
|
searchCategoryContent?: (paddingBottom: boolean) => types.NestedCSSProperties;
|
|
10
11
|
resultRow?: (theme: OmniaTheming) => types.NestedCSSProperties;
|
|
@@ -19,6 +20,7 @@ type SearchRule = {
|
|
|
19
20
|
noResult?: types.NestedCSSProperties;
|
|
20
21
|
contentTop?: (showOnHeader: boolean, dropdownResultMode: boolean) => types.NestedCSSProperties;
|
|
21
22
|
searchBox?: (styling: SearchBoxStyling, theming: ITheming) => types.NestedCSSProperties;
|
|
23
|
+
searchBoxDialog?: types.NestedCSSProperties;
|
|
22
24
|
dropdownResult?: (height: number, showOnHeader: boolean) => types.NestedCSSProperties;
|
|
23
25
|
dropdownOverride?: types.NestedCSSProperties;
|
|
24
26
|
spellingSuggestionLink?: types.NestedCSSProperties;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const UserManagementConstants: {
|
|
2
|
+
TenantUserManagementNodeKey: string;
|
|
3
|
+
BusinessProfileUserManagementNodeKey: string;
|
|
4
|
+
UserDataSynchronizationProvider: {
|
|
5
|
+
UserAndGroupMembership: string;
|
|
6
|
+
UserDetails: string;
|
|
7
|
+
};
|
|
8
|
+
SynchronizationProvider: {
|
|
9
|
+
MicrosoftGraph: string;
|
|
10
|
+
SharepointUserProfiles: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UserManagementConstants = void 0;
|
|
4
|
+
exports.UserManagementConstants = {
|
|
5
|
+
TenantUserManagementNodeKey: "86666f48-6846-4a56-be81-80ea748d1e6d",
|
|
6
|
+
BusinessProfileUserManagementNodeKey: "ae0d1675-efc4-4a5a-bfdc-1a05f3fe9c66",
|
|
7
|
+
UserDataSynchronizationProvider: {
|
|
8
|
+
UserAndGroupMembership: "1a786c8f-85a6-49f1-920b-4ea4196eb174",
|
|
9
|
+
UserDetails: "1c0d1214-0991-4a56-81d5-46f54fbdb77b"
|
|
10
|
+
},
|
|
11
|
+
SynchronizationProvider: {
|
|
12
|
+
MicrosoftGraph: "4e6777a2-2acb-4ae2-b0a1-f19a62e8b123",
|
|
13
|
+
SharepointUserProfiles: "62eea4b2-21aa-4fd1-a51c-13435b94770a"
|
|
14
|
+
}
|
|
15
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./UserManagementConstants";
|
|
@@ -1,19 +1,27 @@
|
|
|
1
1
|
import { OmniaContext } from "@omnia/fx";
|
|
2
|
-
import {
|
|
2
|
+
import { BusinessProfileAnalyticsSettings } from "@omnia/fx-models";
|
|
3
3
|
import { DataSourcePropertiesService } from "@omnia/fx/services";
|
|
4
|
-
import {
|
|
4
|
+
import { MultilingualStore, UserTypeStore } from "@omnia/fx/stores";
|
|
5
|
+
import { AnalyticsSettings } from "../models/analytics/analyticssettings";
|
|
6
|
+
import { AnalyticsStore } from "../stores/AnalyticsStore";
|
|
5
7
|
export declare class AnalyticsService {
|
|
6
8
|
userTypeStore: UserTypeStore;
|
|
7
9
|
dataSourcePropertiesService: DataSourcePropertiesService;
|
|
8
10
|
multilingualStore: MultilingualStore;
|
|
9
11
|
omniaContext: OmniaContext;
|
|
12
|
+
analyticsStore: AnalyticsStore;
|
|
10
13
|
readonly dsSourcesAllowed: string[];
|
|
11
14
|
tracker: any;
|
|
15
|
+
private static currentIdSite;
|
|
16
|
+
private activatedFeatureIds;
|
|
12
17
|
settings: BusinessProfileAnalyticsSettings;
|
|
18
|
+
connectedAnalyticsSettings: AnalyticsSettings;
|
|
13
19
|
constructor();
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
private
|
|
20
|
+
private ensureIdSite;
|
|
21
|
+
private getMappings;
|
|
22
|
+
private normalizeUrl;
|
|
23
|
+
registerPageVisit(resetDimensions?: boolean, url?: string, title?: string): Promise<void>;
|
|
24
|
+
registerAction(category: string, action: string, name: string, value?: number, url?: string): Promise<void>;
|
|
17
25
|
private getDataSources;
|
|
18
26
|
private getActiveProperties;
|
|
19
27
|
private getPropertyValueAndConverterFromSelection;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { GuidValue, Identity } from "@omnia/fx/models";
|
|
2
|
-
import {
|
|
1
|
+
import { AnalyticsDimensionMapping, AnalyticsDimensionScopes, GuidValue, Identity } from "@omnia/fx/models";
|
|
2
|
+
import { AnalyticsDimensions, AnalyticsScopeInfo, AnalyticsSettings, AnalyticsToken, WidgetCategoryInfo, MatomoSite, AnalyticsColumn, SegmentInfo, AnalyticsSettingsRequest, MatomoSiteInfo } from "../models/analytics";
|
|
3
3
|
export declare class AnalyticsStoreService {
|
|
4
4
|
private httpClient;
|
|
5
5
|
constructor();
|
|
@@ -7,7 +7,7 @@ export declare class AnalyticsStoreService {
|
|
|
7
7
|
getToken: (businessProfileId?: GuidValue) => Promise<AnalyticsToken>;
|
|
8
8
|
getDimensions: (businessProfileId?: GuidValue) => Promise<AnalyticsDimensions>;
|
|
9
9
|
getScopesInfo: (businessProfileId?: GuidValue) => Promise<AnalyticsScopeInfo[]>;
|
|
10
|
-
getWidgetInformation: () => Promise<WidgetCategoryInfo[]>;
|
|
10
|
+
getWidgetInformation: (businessProfileId?: GuidValue) => Promise<WidgetCategoryInfo[]>;
|
|
11
11
|
getAnalyticColumns: (idSite: number) => Promise<AnalyticsColumn[]>;
|
|
12
12
|
getReportStructure: () => Promise<Record<string, string[]>>;
|
|
13
13
|
addDimension: (name: string, scope: AnalyticsDimensionScopes) => Promise<number>;
|
|
@@ -17,5 +17,8 @@ export declare class AnalyticsStoreService {
|
|
|
17
17
|
setTenantAdmins: (roleId: GuidValue, identities: Identity[]) => Promise<void>;
|
|
18
18
|
setMappings: (mappings: AnalyticsDimensionMapping[]) => Promise<void>;
|
|
19
19
|
ensureSitesWithAtLeastViewAccess: () => Promise<MatomoSite[]>;
|
|
20
|
+
ensureSiteInfosWithAtLeastViewAccess: () => Promise<MatomoSiteInfo[]>;
|
|
20
21
|
getSegments: (businessProfileId?: GuidValue) => Promise<SegmentInfo>;
|
|
22
|
+
setConnectedBusinessProfile: (request: AnalyticsSettingsRequest) => Promise<void>;
|
|
23
|
+
setSharedAnalytics: (isShared: boolean) => Promise<boolean>;
|
|
21
24
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Store } from "@omnia/fx/stores";
|
|
2
2
|
import { OmniaContext } from "@omnia/fx";
|
|
3
3
|
import { GuidValue } from "@omnia/fx-models";
|
|
4
|
-
import { AnalyticsColumn, AnalyticsDimensions, AnalyticsScopeInfo, AnalyticsSettings, MatomoSite, SegmentInfo } from "../models/analytics";
|
|
4
|
+
import { AnalyticsColumn, AnalyticsDimensions, AnalyticsScopeInfo, AnalyticsSettings, MatomoSite, SegmentInfo, MatomoSiteInfo } from "../models/analytics";
|
|
5
5
|
import { AnalyticsStoreService } from "../services/AnalyticsStoreService";
|
|
6
6
|
import { WidgetCategoryInfo } from "../models";
|
|
7
7
|
export declare class AnalyticsStore extends Store {
|
|
@@ -30,6 +30,8 @@ export declare class AnalyticsStore extends Store {
|
|
|
30
30
|
private segmentInfos;
|
|
31
31
|
private ensuredLoadSegmentPromise;
|
|
32
32
|
private isInstalled;
|
|
33
|
+
private ensuredLoadSiteInfosWithAtLeastViewAccessPromise;
|
|
34
|
+
private siteInfosWithAtLeastViewAccess;
|
|
33
35
|
onActivated(): void;
|
|
34
36
|
onDisposing(): void;
|
|
35
37
|
/**
|
|
@@ -39,7 +41,7 @@ export declare class AnalyticsStore extends Store {
|
|
|
39
41
|
dimensions: (businessProfileId?: GuidValue) => AnalyticsDimensions;
|
|
40
42
|
settings: (businessProfileId?: GuidValue) => AnalyticsSettings;
|
|
41
43
|
scopeInfos: (businessProfileId?: GuidValue) => AnalyticsScopeInfo[];
|
|
42
|
-
widgetCategoryInfo: () => WidgetCategoryInfo[];
|
|
44
|
+
widgetCategoryInfo: (businessProfileId?: GuidValue) => WidgetCategoryInfo[];
|
|
43
45
|
tokens: (businessProfileId?: GuidValue) => string;
|
|
44
46
|
analyticsUrl: () => string;
|
|
45
47
|
sitesWithAtLeastViewAccess: () => MatomoSite[];
|
|
@@ -47,6 +49,7 @@ export declare class AnalyticsStore extends Store {
|
|
|
47
49
|
analyticsColumns: () => AnalyticsColumn[];
|
|
48
50
|
reportStructure: () => Record<string, string[]>;
|
|
49
51
|
segments: (businessProfileId?: GuidValue) => SegmentInfo[];
|
|
52
|
+
siteInfosWithAtLeastViewAccess: () => MatomoSiteInfo[];
|
|
50
53
|
};
|
|
51
54
|
actions: any;
|
|
52
55
|
}
|
|
@@ -38,7 +38,7 @@ export declare class LinkStore extends Store {
|
|
|
38
38
|
searchAllLinks: (searchText: string, useTargeting?: boolean) => Array<QuickLink>;
|
|
39
39
|
getQuickLinks: (includePersonalLink?: boolean, useTargeting?: boolean, includeNonMandatory?: boolean, includeMandatory?: boolean, includeFollowingLinks?: boolean) => Array<QuickLink>;
|
|
40
40
|
getMyLinks: (includePersonalLink?: boolean, useTargeting?: boolean) => Array<QuickLink>;
|
|
41
|
-
getRecentLinks: (
|
|
41
|
+
getRecentLinks: () => Array<QuickLink>;
|
|
42
42
|
getSharedLinks: (tenantScope: boolean) => QuickLink[];
|
|
43
43
|
isMyLink: (link: QuickLink) => boolean;
|
|
44
44
|
};
|