@omnia/workplace 7.0.26-dev → 7.0.29-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.
- package/internal-do-not-import-from-here/apis/SearchTokenProviderApi.d.ts +18 -0
- package/internal-do-not-import-from-here/apis/TranslatorProviderApi.d.ts +17 -0
- package/internal-do-not-import-from-here/apis/index.d.ts +1 -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 +19 -0
- package/internal-do-not-import-from-here/models/Constants.js +21 -2
- package/internal-do-not-import-from-here/models/ManifestIds.d.ts +15 -9
- package/internal-do-not-import-from-here/models/ManifestIds.js +15 -9
- package/internal-do-not-import-from-here/models/SearchCategory.d.ts +1 -2
- package/internal-do-not-import-from-here/models/apps/SharePointSiteInfo.d.ts +2 -1
- package/internal-do-not-import-from-here/models/index.d.ts +3 -1
- package/internal-do-not-import-from-here/models/index.js +3 -1
- package/internal-do-not-import-from-here/models/searchtoken/SearchTokenProvider.d.ts +10 -0
- package/internal-do-not-import-from-here/models/searchtoken/SearchTokenProvider.js +6 -0
- package/internal-do-not-import-from-here/models/searchtoken/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/searchtoken/index.js +4 -0
- package/internal-do-not-import-from-here/models/setupwizard/SetupWizardProviderApi.d.ts +27 -0
- package/internal-do-not-import-from-here/models/{quicksetup/QuickSetupStepProviderApi.js → setupwizard/SetupWizardProviderApi.js} +0 -0
- package/internal-do-not-import-from-here/models/setupwizard/SetupWizardSettings.d.ts +41 -0
- package/internal-do-not-import-from-here/models/setupwizard/SetupWizardSettings.js +8 -0
- package/internal-do-not-import-from-here/models/setupwizard/SetupWizardTemplateProvider.d.ts +14 -0
- package/internal-do-not-import-from-here/models/setupwizard/SetupWizardTemplateProvider.js +6 -0
- package/internal-do-not-import-from-here/models/setupwizard/index.d.ts +3 -0
- package/internal-do-not-import-from-here/models/setupwizard/index.js +6 -0
- package/internal-do-not-import-from-here/models/styles/MyLinkStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/models/teamcollaborationrollup/TeamCollaborationRollupBlock.d.ts +1 -0
- package/internal-do-not-import-from-here/models/teamnewsrollup/TeamNewsRollupSettings.d.ts +1 -0
- package/internal-do-not-import-from-here/models/texttranslator/AzureCognitiveTranslatorProvider.d.ts +5 -0
- package/internal-do-not-import-from-here/models/texttranslator/AzureCognitiveTranslatorProvider.js +2 -0
- package/internal-do-not-import-from-here/models/texttranslator/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/texttranslator/index.js +4 -0
- package/internal-do-not-import-from-here/stores/SearchCategoryStore.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/SignOffRequestStore.d.ts +4 -2
- package/package.json +1 -1
- package/internal-do-not-import-from-here/models/quicksetup/QuickSetupSettings.d.ts +0 -28
- package/internal-do-not-import-from-here/models/quicksetup/QuickSetupSettings.js +0 -8
- package/internal-do-not-import-from-here/models/quicksetup/QuickSetupStepProviderApi.d.ts +0 -25
- package/internal-do-not-import-from-here/models/quicksetup/StepProvider.d.ts +0 -7
- package/internal-do-not-import-from-here/models/quicksetup/StepProvider.js +0 -6
- package/internal-do-not-import-from-here/models/quicksetup/index.d.ts +0 -3
- package/internal-do-not-import-from-here/models/quicksetup/index.js +0 -6
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ApiPath } from "@omnia/fx/models";
|
|
2
|
+
import { SearchTokenProvider } from "../models";
|
|
3
|
+
export interface ISearchTokenProviderRegistrationApi {
|
|
4
|
+
registerSearchTokenProvider: (providers: SearchTokenProvider | SearchTokenProvider[]) => void;
|
|
5
|
+
getAllSearchTokenProviders: () => SearchTokenProvider[];
|
|
6
|
+
}
|
|
7
|
+
declare module "../models/WorkplaceApi" {
|
|
8
|
+
interface IWorkplaceApi {
|
|
9
|
+
searchtokenprovider: {
|
|
10
|
+
registration: Promise<ISearchTokenProviderRegistrationApi>;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
interface IWorkplaceExtendApiManifest {
|
|
14
|
+
searchtokenprovider: {
|
|
15
|
+
registration: ApiPath;
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ApiPath, TranslatorProviderSettings } from "@omnia/fx/models";
|
|
2
|
+
export interface ITranslatorProviderRegistrationApi {
|
|
3
|
+
registerTranslatorProvider: (providers: TranslatorProviderSettings | TranslatorProviderSettings[]) => void;
|
|
4
|
+
getAllTranslatorProviders: () => TranslatorProviderSettings[];
|
|
5
|
+
}
|
|
6
|
+
declare module "../models/WorkplaceApi" {
|
|
7
|
+
interface IWorkplaceApi {
|
|
8
|
+
translatorprovider: {
|
|
9
|
+
registration: Promise<ITranslatorProviderRegistrationApi>;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
interface IWorkplaceExtendApiManifest {
|
|
13
|
+
translatorprovider: {
|
|
14
|
+
registration: ApiPath;
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"omniaWebpackJsonp['39df27aa-95f1-4a23-b3f6-8b231afcda82']['491a5b75-e3d6-472a-8958-216be85b092a']","content":{"./client/admin/permissions/loc/localize.js":{"id":"./client/admin/permissions/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["PermissionLocalization"]},"./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":["AppAuthenticationOptionsService","FormService","HomeService","NotificationPanelHistoryService","PromotedSearchResultService","SearchCategoryService","SearchFeedbackService","SignOffRequestService","TeamCollaborationService"]},"./node_modules/@omnia/workplace/index.js":{"id":"8bf93338-8e70-4104-a75d-ae11485eec04","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminNamespace","AppAuthenticationOptionsService","AppRendererBootstrapper","CurrentFormStore","DialogHelper","EditingThemeStore","FilterValueProvider","FormService","FormStore","GovernanceDashboardStore","HomeService","NotificationPanelHistoryService","NotificationPanelStore","NotificationPanelStorePluginProvider","PromotedSearchResultService","PromotedSearchResultStore","SearchCategoryService","SearchCategoryStore","SearchFeedbackService","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","AnnouncementCommentLikeStyle","AnnouncementJourneyStyle","AnnouncementStyles","AppEnums","AppIconSearchTemplateStyles","AppIconStyles","AppInstanceDescriptionProperties","AppLaunchStyles","AppLaunchViewStyles","AppProvisioningSteps","BuiltInActionButtonHandlers","BusinessProfileAppProvisioning","CentralImageLocationsStyles","ChartColor","CompactHeaderStyles","Constants","CreateTeamworkSettingsStyles","DefaultSearchTemplateStyles","DocumentDirectionSettingsStyles","EditModes","EnterpriseGlossaryAdminProvider","EnterpriseGlossaryInformationSettingsProvider","EnterpriseGlossaryInformationSourceSettingsProvider","EnterpriseGlossaryTaxonomyNavigationDisplayProvider","EnterpriseGlossaryTaxonomyNavigationSettingsProvider","EnterprisePropertyCategoriesDefaultBladeStyles","Enums","FeedType","FilterValue","FollowedsitesUpdatedAtUserPropertyBag","FooterPositions","FooterSettingStyles","FormGenericSetting","FormLayoutProvider","FormTypes","GovernanceDashboard","GovernanceDashboardSettingsStyles","GovernanceDashboardStyles","GroupManifests","GroupMembershipMappingBladeStyles","HeaderSettingsMode","HeaderStyles","HighPriorityAnnouncementStyle","HomeLayoutDefinition","HorizontalActionMenuStyles","HorizontalMegaMenuStyles","ItemQueryResult","JumpToContentStyles","LegendAlignment","LegendPosition","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","PostsFeedScopeOption","PostsFeedSortMode","PromotedSearchResultStatus","QuestionTypes","QuickSearchStyles","
|
|
1
|
+
{"name":"omniaWebpackJsonp['39df27aa-95f1-4a23-b3f6-8b231afcda82']['491a5b75-e3d6-472a-8958-216be85b092a']","content":{"./client/admin/permissions/loc/localize.js":{"id":"./client/admin/permissions/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["PermissionLocalization"]},"./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":["AppAuthenticationOptionsService","FormService","HomeService","NotificationPanelHistoryService","PromotedSearchResultService","SearchCategoryService","SearchFeedbackService","SignOffRequestService","TeamCollaborationService"]},"./node_modules/@omnia/workplace/index.js":{"id":"8bf93338-8e70-4104-a75d-ae11485eec04","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminNamespace","AppAuthenticationOptionsService","AppRendererBootstrapper","CurrentFormStore","DialogHelper","EditingThemeStore","FilterValueProvider","FormService","FormStore","GovernanceDashboardStore","HomeService","NotificationPanelHistoryService","NotificationPanelStore","NotificationPanelStorePluginProvider","PromotedSearchResultService","PromotedSearchResultStore","SearchCategoryService","SearchCategoryStore","SearchFeedbackService","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","AnnouncementCommentLikeStyle","AnnouncementJourneyStyle","AnnouncementStyles","AppEnums","AppIconSearchTemplateStyles","AppIconStyles","AppInstanceDescriptionProperties","AppLaunchStyles","AppLaunchViewStyles","AppProvisioningSteps","BuiltInActionButtonHandlers","BusinessProfileAppProvisioning","CentralImageLocationsStyles","ChartColor","CompactHeaderStyles","Constants","CreateTeamworkSettingsStyles","DefaultSearchTemplateStyles","DocumentDirectionSettingsStyles","EditModes","EnterpriseGlossaryAdminProvider","EnterpriseGlossaryInformationSettingsProvider","EnterpriseGlossaryInformationSourceSettingsProvider","EnterpriseGlossaryTaxonomyNavigationDisplayProvider","EnterpriseGlossaryTaxonomyNavigationSettingsProvider","EnterprisePropertyCategoriesDefaultBladeStyles","Enums","FeedType","FilterValue","FollowedsitesUpdatedAtUserPropertyBag","FooterPositions","FooterSettingStyles","FormGenericSetting","FormLayoutProvider","FormTypes","GovernanceDashboard","GovernanceDashboardSettingsStyles","GovernanceDashboardStyles","GroupManifests","GroupMembershipMappingBladeStyles","HeaderSettingsMode","HeaderStyles","HighPriorityAnnouncementStyle","HomeLayoutDefinition","HorizontalActionMenuStyles","HorizontalMegaMenuStyles","ItemQueryResult","JumpToContentStyles","LegendAlignment","LegendPosition","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","PostsFeedScopeOption","PostsFeedSortMode","PromotedSearchResultStatus","QuestionTypes","QuickSearchStyles","ResourceManifests","SearchAdminStyles","SearchBlockStyles","SearchHeaderStyles","SearchProvider","SearchStatistics","SearchStatisticsMetricScopeFilterValue","SearchTokenProvider","ServiceDefinition","SettingsKeys","SetupWizard","SetupWizardScope","SetupWizardTemplateProvider","SharedLinkSortByTypes","ShowMoreStyles","SignOffRequestEnums","SignOffRequestProvider","SignOffRequestResourceProvider","SignOffResource","SimpleListStyles","SimpleListingSearchTemplateStyles","SlideRendererStyles","StatisticViewMode","TabCustomUrlType","TargetingPropertyStyles","TaxonomyNavigationDisplayProviderBase","TaxonomyNavigationStyles","TeamCollaborationAppDefinitionInfo","TeamCollaborationAppEnterpriseProperties","TeamCollaborationConstants","TeamCollaborationRollupBlockListViewSettingsStyles","TeamCollaborationRollupBlockListViewStyles","TeamCollaborationRollupBlockSettingsStyles","TeamCollaborationRollupBlockStyles","TeamCollaborationRollupEnums","TeamCollaborationRollupScopeTypes","TeamCollabrationApp","TeamCollabrationAppResource","TeamCollabrationQuery","TeamCollabrationTypes","TeamNewsBlockStyles","TeamNewsRollupSettingElementName","TeamSiteEditPropertiesStyles","TeamWorkInfo","TeamworkAppLayoutDefinition","TeamworkNavigationActionHandlerSettingStyles","TeamworkNavigationSettingStyles","TeamworkNavigationStyles","TeamworkTemplateFilterValue","TenantRegionalStyles","TermNodeStyles","UserAccessibilitySettingsStyles","UserMenuStyles","VerticalActionMenuStyles","VerticalMegaMenuStyles","WPRoleDefinition","WebComponentElements","WebComponentManifests","WorkplaceAppRoutePrefix","WorkplaceHomeStyles","WorkplaceSharedStyles","WorkspaceActionMenuMapping","WorkspaceActionMenuSettings","WorkspaceApp","WorkspaceFactory","WorkspaceHomeMapping","WorkspaceHomeSettings","WorkspaceInfo","WorkspaceMegaMenuItemTypes","WorkspaceMegaMenuMapping","WorkspaceMegaMenuSettings","WorkspaceVerticalNavWidth","WowrkplaceHeadingStyles","notificationPanelLayoutProvider"]}}}
|
|
@@ -4,6 +4,7 @@ export declare const Constants: {
|
|
|
4
4
|
ShowBusinessProfileHeader: string;
|
|
5
5
|
showNavigationBar: string;
|
|
6
6
|
mobilelogin: string;
|
|
7
|
+
rulesLinkHandler: string;
|
|
7
8
|
teamworkCore: string;
|
|
8
9
|
teamworkAutomaticGovernance: string;
|
|
9
10
|
teamsSingleSignOn: string;
|
|
@@ -111,6 +112,13 @@ export declare const GovernanceDashboard: {
|
|
|
111
112
|
Total: Guid;
|
|
112
113
|
ActiveLastActivity: Guid;
|
|
113
114
|
InactiveLastActivity: Guid;
|
|
115
|
+
ReachId: Guid;
|
|
116
|
+
UnderuserdId: Guid;
|
|
117
|
+
ActiveUserReader: Guid;
|
|
118
|
+
ActiveUserContributor: Guid;
|
|
119
|
+
NoOfQuery: Guid;
|
|
120
|
+
AbandonedQuery: Guid;
|
|
121
|
+
NoResultQuery: Guid;
|
|
114
122
|
};
|
|
115
123
|
DashboardLayoutSettingsKey: string;
|
|
116
124
|
ActionButtonIds: {
|
|
@@ -189,3 +197,14 @@ export declare const NotificationConstants: {
|
|
|
189
197
|
NewItem: string;
|
|
190
198
|
NewChipIcon: string;
|
|
191
199
|
};
|
|
200
|
+
export declare const SetupWizard: {
|
|
201
|
+
SettingsKey: string;
|
|
202
|
+
BasicIntranetTemplateId: string;
|
|
203
|
+
IntranetEssentialsTemplateId: string;
|
|
204
|
+
TenantIntranetEssentialsTemplateId: string;
|
|
205
|
+
TenantBasicIntranetTemplateId: string;
|
|
206
|
+
GeneralSettingsKey: string;
|
|
207
|
+
BrandingSettingsKey: string;
|
|
208
|
+
SharedLinkSettingsKey: string;
|
|
209
|
+
ContentSettingsKey: string;
|
|
210
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.NotificationConstants = exports.AppProvisioningSteps = exports.SettingsKeys = exports.HeaderSettingsMode = exports.MSTeamTemplateStep = exports.MembersStep = exports.TeamWorkInfo = exports.GovernanceDashboard = exports.WorkspaceApp = exports.WorkplaceAppRoutePrefix = exports.TeamCollaborationAppDefinitionInfo = exports.TeamCollaborationAppEnterpriseProperties = exports.AppInstanceDescriptionProperties = exports.BuiltInActionButtonHandlers = exports.Constants = void 0;
|
|
3
|
+
exports.SetupWizard = exports.NotificationConstants = exports.AppProvisioningSteps = exports.SettingsKeys = exports.HeaderSettingsMode = exports.MSTeamTemplateStep = exports.MembersStep = exports.TeamWorkInfo = 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 = {
|
|
@@ -8,6 +8,7 @@ exports.Constants = {
|
|
|
8
8
|
ShowBusinessProfileHeader: "fd86ca16-e6fd-42ed-b11e-5e8267cda628",
|
|
9
9
|
showNavigationBar: "fd86ca16-e6fd-42ed-b11e-5e8267cda628",
|
|
10
10
|
mobilelogin: "36a8ce49-a2a4-4905-88cd-694cc8e0bfad",
|
|
11
|
+
rulesLinkHandler: "ddca589b-9478-4267-b5bf-d557b4494dae",
|
|
11
12
|
teamworkCore: "0d16845b-5497-4616-afeb-edc50a09f6a2",
|
|
12
13
|
teamworkAutomaticGovernance: "eb392913-bfe9-435b-874b-47d8d15f157c",
|
|
13
14
|
teamsSingleSignOn: "4e0c0908-f60f-4a48-b3ac-ea092e31786c",
|
|
@@ -129,7 +130,14 @@ exports.GovernanceDashboard = {
|
|
|
129
130
|
NewTeamworks: new fx_models_1.Guid("47370cca-5518-44c2-91da-a083e78ec36a"),
|
|
130
131
|
Total: new fx_models_1.Guid("e259e6da-2e8b-49e1-afd1-061d6582246e"),
|
|
131
132
|
ActiveLastActivity: new fx_models_1.Guid("c42a3947-de82-4470-b5fd-9183872e181a"),
|
|
132
|
-
InactiveLastActivity: new fx_models_1.Guid("2f2ce11d-f013-4a9d-b701-21469147187e")
|
|
133
|
+
InactiveLastActivity: new fx_models_1.Guid("2f2ce11d-f013-4a9d-b701-21469147187e"),
|
|
134
|
+
ReachId: new fx_models_1.Guid("7e7f0c21-f1e9-4b24-b1d6-77d75132fe8c"),
|
|
135
|
+
UnderuserdId: new fx_models_1.Guid("f6b384b6-c764-420a-b8b3-192bcbe160de"),
|
|
136
|
+
ActiveUserReader: new fx_models_1.Guid("ba54386a-c448-4556-a001-f8e71150616b"),
|
|
137
|
+
ActiveUserContributor: new fx_models_1.Guid("994cce95-dd68-431b-9119-7afff8c68465"),
|
|
138
|
+
NoOfQuery: new fx_models_1.Guid("c0b18c12-d3b5-4b29-8105-222d20d5522f"),
|
|
139
|
+
AbandonedQuery: new fx_models_1.Guid("aa3d3355-e2a9-4c4c-a44a-5fb01493e7ae"),
|
|
140
|
+
NoResultQuery: new fx_models_1.Guid("13786d92-6d16-402f-a961-d99ea4341601")
|
|
133
141
|
},
|
|
134
142
|
DashboardLayoutSettingsKey: "omnia.workplace.governancedashboard.layout",
|
|
135
143
|
ActionButtonIds: {
|
|
@@ -212,3 +220,14 @@ exports.NotificationConstants = {
|
|
|
212
220
|
NewItem: "wp-notificationNewItem",
|
|
213
221
|
NewChipIcon: "wp-notificationNewChipIcon"
|
|
214
222
|
};
|
|
223
|
+
exports.SetupWizard = {
|
|
224
|
+
SettingsKey: "owp_setupwizard_",
|
|
225
|
+
BasicIntranetTemplateId: "23D17EFE-E4AE-439D-A97D-CE184F7BC574",
|
|
226
|
+
IntranetEssentialsTemplateId: "B8C0608F-61F7-4C2A-9001-C26A7A0CB268",
|
|
227
|
+
TenantIntranetEssentialsTemplateId: "5470C05D-7115-4F86-BF6D-70FC51F3A1AD",
|
|
228
|
+
TenantBasicIntranetTemplateId: "87D71902-22F0-4DC3-9346-314CC5700C84",
|
|
229
|
+
GeneralSettingsKey: "SetupWizardGeneralSettings",
|
|
230
|
+
BrandingSettingsKey: "SetupWizardBrandingSettings",
|
|
231
|
+
SharedLinkSettingsKey: "SetupWizardSharedLinksSettings",
|
|
232
|
+
ContentSettingsKey: "SetupWizardContentSettings"
|
|
233
|
+
};
|
|
@@ -40,8 +40,7 @@ export declare class ResourceManifests {
|
|
|
40
40
|
static get AnnoucementNotificationPanelRegistration(): Guid;
|
|
41
41
|
static get NotificationPanelRegistration(): Guid;
|
|
42
42
|
static get NotificationPanelRegistrationApi(): Guid;
|
|
43
|
-
static get
|
|
44
|
-
static get QuickSetupStepRegistrationApi(): Guid;
|
|
43
|
+
static get SetupWizardRegistrationApi(): Guid;
|
|
45
44
|
static get NotificationPanelCore(): Guid;
|
|
46
45
|
static get AdminShortcutRegistration(): Guid;
|
|
47
46
|
static get ActionMenuCore(): Guid;
|
|
@@ -54,6 +53,8 @@ export declare class ResourceManifests {
|
|
|
54
53
|
static get SearchTemplateApi(): Guid;
|
|
55
54
|
static get ScopedPermissionApi(): Guid;
|
|
56
55
|
static get SearchCategoryProviderApi(): Guid;
|
|
56
|
+
static get SearchTokenProviderApi(): Guid;
|
|
57
|
+
static get DefaultSearchTokenProviderRegistration(): Guid;
|
|
57
58
|
static get EnableMSTeamsDeepLinkExecution(): Guid;
|
|
58
59
|
static get TenantPeopleInfoJourney(): Guid;
|
|
59
60
|
static get Favicon(): Guid;
|
|
@@ -102,7 +103,7 @@ export declare class ResourceManifests {
|
|
|
102
103
|
static get UserProfileCardEditingHandlerRegistration(): Guid;
|
|
103
104
|
static get ActionButtonSignOffRequestHandler(): Guid;
|
|
104
105
|
static get ActionButtonSignOffRequestHandlerRegistration(): Guid;
|
|
105
|
-
static get
|
|
106
|
+
static get SetupWizardCommon(): Guid;
|
|
106
107
|
static get TeamworkAppTemplateWizardStore(): Guid;
|
|
107
108
|
static get SearchConfigStore(): Guid;
|
|
108
109
|
static get OmniaLanguagesComponentStore(): Guid;
|
|
@@ -114,6 +115,8 @@ export declare class ResourceManifests {
|
|
|
114
115
|
static get PostsFeedBlockCore(): Guid;
|
|
115
116
|
static get SearchStatisticsMetricShared(): Guid;
|
|
116
117
|
static get SearchStatisticsMetricGroup(): Guid;
|
|
118
|
+
static get LinkHandlerSettingsRegistration(): Guid;
|
|
119
|
+
static get TranslatorProviderRegistration(): Guid;
|
|
117
120
|
}
|
|
118
121
|
export declare class WebComponentManifests {
|
|
119
122
|
static get FaviconSettings(): Guid;
|
|
@@ -419,12 +422,13 @@ export declare class WebComponentManifests {
|
|
|
419
422
|
static get PostsFeedSettings(): Guid;
|
|
420
423
|
static get UserManagementJourney(): Guid;
|
|
421
424
|
static get UserManagementCore(): Guid;
|
|
422
|
-
static get
|
|
423
|
-
static get
|
|
424
|
-
static get
|
|
425
|
-
static get
|
|
426
|
-
static get
|
|
427
|
-
static get
|
|
425
|
+
static get SetupWizardViewCore(): Guid;
|
|
426
|
+
static get SetupWizardGeneralStep(): Guid;
|
|
427
|
+
static get SetupWizardBrandingStep(): Guid;
|
|
428
|
+
static get SetupWizardSharelinksStep(): Guid;
|
|
429
|
+
static get SetupWizardContentStep(): Guid;
|
|
430
|
+
static get SetupWizardReviewStep(): Guid;
|
|
431
|
+
static get SetupWizardDashboard(): Guid;
|
|
428
432
|
static get AttachSiteButton(): Guid;
|
|
429
433
|
static get SyncLastActivityButton(): Guid;
|
|
430
434
|
static get AppEditing(): Guid;
|
|
@@ -435,6 +439,8 @@ export declare class WebComponentManifests {
|
|
|
435
439
|
static get TeamworkActiveLastActivityMetricDetail(): Guid;
|
|
436
440
|
static get TeamworkInactiveLastActivityMetricIndicator(): Guid;
|
|
437
441
|
static get TeamworkInactiveLastActivityMetricDetail(): Guid;
|
|
442
|
+
static get LinkHandlerJourney(): Guid;
|
|
443
|
+
static get AzureCognitiveProviderComponent(): Guid;
|
|
438
444
|
}
|
|
439
445
|
export declare class WebComponentElements {
|
|
440
446
|
static get AppProvisioningStepMember(): string;
|
|
@@ -47,8 +47,7 @@ class ResourceManifests {
|
|
|
47
47
|
static get AnnoucementNotificationPanelRegistration() { return new fx_models_1.Guid("562bc298-070e-4653-8cc9-81d2c34baba4"); }
|
|
48
48
|
static get NotificationPanelRegistration() { return new fx_models_1.Guid("fba0c5fa-b0e3-4348-9351-ad90ff3162a4"); }
|
|
49
49
|
static get NotificationPanelRegistrationApi() { return new fx_models_1.Guid("f9c191c2-1c39-44f7-a23e-2be0c324e880"); }
|
|
50
|
-
static get
|
|
51
|
-
static get QuickSetupStepRegistrationApi() { return new fx_models_1.Guid("92ed9817-196c-4b89-9a61-e12e7c14b74f"); }
|
|
50
|
+
static get SetupWizardRegistrationApi() { return new fx_models_1.Guid("547bd43c-c628-47b2-b6aa-fddacbb0d25e"); }
|
|
52
51
|
static get NotificationPanelCore() { return new fx_models_1.Guid("00cc0c0d-8487-4d05-bb4f-6cc5d9b1a8ba"); }
|
|
53
52
|
static get AdminShortcutRegistration() { return new fx_models_1.Guid("c69c7ea3-afbb-4fe8-a5fe-20dcd49306d9"); }
|
|
54
53
|
static get ActionMenuCore() { return new fx_models_1.Guid("6a26b189-f58e-433b-9ac6-2dedc734292a"); }
|
|
@@ -61,6 +60,8 @@ class ResourceManifests {
|
|
|
61
60
|
static get SearchTemplateApi() { return new fx_models_1.Guid("a319f3f1-f05b-4952-a5d4-19749e42a4bf"); }
|
|
62
61
|
static get ScopedPermissionApi() { return new fx_models_1.Guid("bea1c95e-baa8-412a-9caf-6288997e7ee3"); }
|
|
63
62
|
static get SearchCategoryProviderApi() { return new fx_models_1.Guid("da66bae7-498d-42f5-b300-eaf179a03f0a"); }
|
|
63
|
+
static get SearchTokenProviderApi() { return new fx_models_1.Guid("142f62fe-a32d-4a38-a3d3-e049589dfa5d"); }
|
|
64
|
+
static get DefaultSearchTokenProviderRegistration() { return new fx_models_1.Guid("7ae13d0f-5dbd-4da3-a631-95b86a6bcae2"); }
|
|
64
65
|
static get EnableMSTeamsDeepLinkExecution() { return new fx_models_1.Guid("67384113-6d0b-41cd-9029-c9941b489504"); }
|
|
65
66
|
static get TenantPeopleInfoJourney() { return new fx_models_1.Guid("2949577e-1902-4e2e-a58a-23dc0c0a22a5"); }
|
|
66
67
|
static get Favicon() { return new fx_models_1.Guid("a976468f-4aeb-47e6-afdd-18fc42f9a7c6"); }
|
|
@@ -109,7 +110,7 @@ class ResourceManifests {
|
|
|
109
110
|
static get UserProfileCardEditingHandlerRegistration() { return new fx_models_1.Guid("2411590a-62da-4203-af50-9f514089c126"); }
|
|
110
111
|
static get ActionButtonSignOffRequestHandler() { return new fx_models_1.Guid("2675e44e-dd92-4784-a5bc-2b4c8d060589"); }
|
|
111
112
|
static get ActionButtonSignOffRequestHandlerRegistration() { return new fx_models_1.Guid("735da897-1665-42e6-9b30-60e978198ef8"); }
|
|
112
|
-
static get
|
|
113
|
+
static get SetupWizardCommon() { return new fx_models_1.Guid("a491ba6f-29e7-4ef8-9cc7-c8ca5915f3af"); }
|
|
113
114
|
static get TeamworkAppTemplateWizardStore() { return new fx_models_1.Guid("1f1b347e-2057-4435-97c6-e802f9680221"); }
|
|
114
115
|
static get SearchConfigStore() { return new fx_models_1.Guid("161b21f8-f942-41e1-b05e-09f1dcde4047"); }
|
|
115
116
|
static get OmniaLanguagesComponentStore() { return new fx_models_1.Guid("7be65e8d-34b7-4a61-bd8e-ea46577aef72"); }
|
|
@@ -121,6 +122,8 @@ class ResourceManifests {
|
|
|
121
122
|
static get PostsFeedBlockCore() { return new fx_models_1.Guid("9d5d0be1-208d-488f-9005-b181b7d47839"); }
|
|
122
123
|
static get SearchStatisticsMetricShared() { return new fx_models_1.Guid("1533f4b6-1484-4ecf-864a-8a446a5966cf"); }
|
|
123
124
|
static get SearchStatisticsMetricGroup() { return new fx_models_1.Guid("b9ee20a8-eee5-4355-8501-e15cb496a046"); }
|
|
125
|
+
static get LinkHandlerSettingsRegistration() { return new fx_models_1.Guid("a913821b-d91b-48f0-b356-97c0e7828afa"); }
|
|
126
|
+
static get TranslatorProviderRegistration() { return new fx_models_1.Guid("94352c19-675f-4aa9-9a59-b216808bd9c5"); }
|
|
124
127
|
}
|
|
125
128
|
exports.ResourceManifests = ResourceManifests;
|
|
126
129
|
class WebComponentManifests {
|
|
@@ -427,12 +430,13 @@ class WebComponentManifests {
|
|
|
427
430
|
static get PostsFeedSettings() { return new fx_models_1.Guid("7f049298-9bb4-4f32-a2d4-2e8b8ffa6c1b"); }
|
|
428
431
|
static get UserManagementJourney() { return new fx_models_1.Guid("1d19aeb7-22e4-4b9e-9d26-17035854dd2a"); }
|
|
429
432
|
static get UserManagementCore() { return new fx_models_1.Guid("2b3fc3f2-bc60-44a0-8688-764f3b2d62c8"); }
|
|
430
|
-
static get
|
|
431
|
-
static get
|
|
432
|
-
static get
|
|
433
|
-
static get
|
|
434
|
-
static get
|
|
435
|
-
static get
|
|
433
|
+
static get SetupWizardViewCore() { return new fx_models_1.Guid("758d200f-91f3-4446-8662-07592f89eeba"); }
|
|
434
|
+
static get SetupWizardGeneralStep() { return new fx_models_1.Guid("c5f83b2f-a21f-4210-b4f4-13ffda4ac129"); }
|
|
435
|
+
static get SetupWizardBrandingStep() { return new fx_models_1.Guid("084f1e3e-f0f5-4f2b-a75d-67f629308bf8"); }
|
|
436
|
+
static get SetupWizardSharelinksStep() { return new fx_models_1.Guid("4e6730e5-25f1-4d99-81d1-7368f7e72f35"); }
|
|
437
|
+
static get SetupWizardContentStep() { return new fx_models_1.Guid("c6633522-ba83-4077-99b1-a4e9cde070c6"); }
|
|
438
|
+
static get SetupWizardReviewStep() { return new fx_models_1.Guid("911b4198-52b7-4b80-9ed4-b96269dcf8f1"); }
|
|
439
|
+
static get SetupWizardDashboard() { return new fx_models_1.Guid("b2e0e63d-2cd9-49b4-840a-001d4a91dabb"); }
|
|
436
440
|
static get AttachSiteButton() { return new fx_models_1.Guid("2cff741d-3f85-46e3-b36f-143020d9a547"); }
|
|
437
441
|
static get SyncLastActivityButton() { return new fx_models_1.Guid("31470e4c-6f9d-4176-9d35-d31d1f8446fc"); }
|
|
438
442
|
static get AppEditing() { return new fx_models_1.Guid("c6d42107-01a5-4825-910e-4232aeac8b75"); }
|
|
@@ -443,6 +447,8 @@ class WebComponentManifests {
|
|
|
443
447
|
static get TeamworkActiveLastActivityMetricDetail() { return new fx_models_1.Guid("80debee9-33f7-4b66-97fc-4c6e7dbb2a7c"); }
|
|
444
448
|
static get TeamworkInactiveLastActivityMetricIndicator() { return new fx_models_1.Guid("bac2d261-df94-425b-847e-976496694295"); }
|
|
445
449
|
static get TeamworkInactiveLastActivityMetricDetail() { return new fx_models_1.Guid("8d04aaa8-e87c-45ce-84dc-6fdf81eac22f"); }
|
|
450
|
+
static get LinkHandlerJourney() { return new fx_models_1.Guid("cc822f80-37e0-43ac-b37c-8d8963c7076c"); }
|
|
451
|
+
static get AzureCognitiveProviderComponent() { return new fx_models_1.Guid("c32e69d5-bb4c-4b0e-9bb9-03af4dafcbca"); }
|
|
446
452
|
}
|
|
447
453
|
exports.WebComponentManifests = WebComponentManifests;
|
|
448
454
|
class WebComponentElements {
|
|
@@ -10,11 +10,11 @@ export interface SearchCategoryBase {
|
|
|
10
10
|
targetingFilter?: TargetingFilterProperty;
|
|
11
11
|
businessProfileId: GuidValue;
|
|
12
12
|
providerComponentId: GuidValue;
|
|
13
|
+
query?: string;
|
|
13
14
|
}
|
|
14
15
|
export interface SharePointSearchCategory extends SearchCategoryBase {
|
|
15
16
|
resultSource: string;
|
|
16
17
|
enableQueryRules: boolean;
|
|
17
|
-
query: string;
|
|
18
18
|
sortBy?: string;
|
|
19
19
|
sortDirection?: Enums.SortDirection;
|
|
20
20
|
listTemplatePropertiesMapping?: {
|
|
@@ -24,7 +24,6 @@ export interface SharePointSearchCategory extends SearchCategoryBase {
|
|
|
24
24
|
export interface MicrosoftSearchCategory extends SearchCategoryBase {
|
|
25
25
|
resultSource: string;
|
|
26
26
|
contentSources?: Array<string>;
|
|
27
|
-
query: string;
|
|
28
27
|
sortBy?: string;
|
|
29
28
|
sortDirection?: Enums.SortDirection;
|
|
30
29
|
listTemplatePropertiesMapping?: {
|
|
@@ -61,5 +61,7 @@ export * from "./IAdminComponent";
|
|
|
61
61
|
export * from "./promotedsearchresults";
|
|
62
62
|
export * from "./searchfeedbacks";
|
|
63
63
|
export * from "./ScopedPermissionRegistraion";
|
|
64
|
-
export * from "./
|
|
64
|
+
export * from "./setupwizard";
|
|
65
65
|
export * from "./searchstatistics";
|
|
66
|
+
export * from "./searchtoken";
|
|
67
|
+
export * from "./texttranslator";
|
|
@@ -65,5 +65,7 @@ tslib_1.__exportStar(require("./IAdminComponent"), exports);
|
|
|
65
65
|
tslib_1.__exportStar(require("./promotedsearchresults"), exports);
|
|
66
66
|
tslib_1.__exportStar(require("./searchfeedbacks"), exports);
|
|
67
67
|
tslib_1.__exportStar(require("./ScopedPermissionRegistraion"), exports);
|
|
68
|
-
tslib_1.__exportStar(require("./
|
|
68
|
+
tslib_1.__exportStar(require("./setupwizard"), exports);
|
|
69
69
|
tslib_1.__exportStar(require("./searchstatistics"), exports);
|
|
70
|
+
tslib_1.__exportStar(require("./searchtoken"), exports);
|
|
71
|
+
tslib_1.__exportStar(require("./texttranslator"), exports);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { GuidValue } from "@omnia/fx/models";
|
|
2
|
+
export interface SearchTokensReplacement {
|
|
3
|
+
[tokenKey: string]: string;
|
|
4
|
+
}
|
|
5
|
+
export declare abstract class SearchTokenProvider {
|
|
6
|
+
abstract readonly title: string;
|
|
7
|
+
abstract readonly providerId: GuidValue;
|
|
8
|
+
abstract readonly tokens: string[];
|
|
9
|
+
resolveSearchTokens: (tokensToResolve: Array<string>) => Promise<SearchTokensReplacement>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./SearchTokenProvider";
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ApiPath, GuidValue } from "@omnia/fx-models";
|
|
2
|
+
import { SetupWizardTemplateExtendData } from ".";
|
|
3
|
+
import { SetupWizardView } from "../../../models/setupwizard/setupwizard/SetupWizardView";
|
|
4
|
+
import { SetupWizardTemplateProvider } from "./SetupWizardTemplateProvider";
|
|
5
|
+
export interface ISetupWizardRegistrationApi {
|
|
6
|
+
registerViews: (providers: SetupWizardView | SetupWizardView[]) => void;
|
|
7
|
+
getAllViews: () => SetupWizardView[];
|
|
8
|
+
}
|
|
9
|
+
export interface ISetupWizardTemplateProviderRegistrationApi {
|
|
10
|
+
registerSetupWizardTemplateProvider: (providers: SetupWizardTemplateProvider | SetupWizardTemplateProvider[]) => void;
|
|
11
|
+
extendSetupWizardTemplate: (templateId: GuidValue, templateExtendData: SetupWizardTemplateExtendData, omniaServiceId: GuidValue) => void;
|
|
12
|
+
getAllSetupWizardTemplateProviders: () => SetupWizardTemplateProvider[];
|
|
13
|
+
}
|
|
14
|
+
declare module "../WorkplaceApi" {
|
|
15
|
+
interface IWorkplaceApi {
|
|
16
|
+
setupwizard: {
|
|
17
|
+
registration: Promise<ISetupWizardRegistrationApi>;
|
|
18
|
+
templateproviders: Promise<ISetupWizardTemplateProviderRegistrationApi>;
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
interface IWorkplaceExtendApiManifest {
|
|
22
|
+
setupwizard: {
|
|
23
|
+
registration: ApiPath;
|
|
24
|
+
templateproviders: ApiPath;
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { GuidValue, TargetResolverTypes } from "@omnia/fx-models";
|
|
2
|
+
export declare enum SetupWizardScope {
|
|
3
|
+
Tenant = 1,
|
|
4
|
+
BusinessProfile = 2
|
|
5
|
+
}
|
|
6
|
+
export interface SetupWizardContent {
|
|
7
|
+
id: GuidValue;
|
|
8
|
+
title: string;
|
|
9
|
+
description: string;
|
|
10
|
+
order?: number;
|
|
11
|
+
scopes: SetupWizardScope[];
|
|
12
|
+
uncheckedByDefault?: boolean;
|
|
13
|
+
omniaServiceId: GuidValue;
|
|
14
|
+
onCheckedChange?: (checked: boolean) => void;
|
|
15
|
+
}
|
|
16
|
+
export interface SetupWizardFeature {
|
|
17
|
+
title: string;
|
|
18
|
+
feature: {
|
|
19
|
+
id: GuidValue;
|
|
20
|
+
scope: TargetResolverTypes;
|
|
21
|
+
};
|
|
22
|
+
order?: number;
|
|
23
|
+
scopes: SetupWizardRender[];
|
|
24
|
+
stopOnFailed?: boolean;
|
|
25
|
+
omniaServiceId: GuidValue;
|
|
26
|
+
}
|
|
27
|
+
export interface SetupWizardRender {
|
|
28
|
+
scope: SetupWizardScope;
|
|
29
|
+
hidden: boolean;
|
|
30
|
+
}
|
|
31
|
+
export interface SetupWizardTemplateExtendData {
|
|
32
|
+
features: SetupWizardFeature[];
|
|
33
|
+
contents: SetupWizardContent[];
|
|
34
|
+
}
|
|
35
|
+
export interface SetupWizardStep {
|
|
36
|
+
order: number;
|
|
37
|
+
title: string;
|
|
38
|
+
componentManifestId?: GuidValue;
|
|
39
|
+
settingsId: string;
|
|
40
|
+
onValidate?: () => boolean;
|
|
41
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SetupWizardScope = void 0;
|
|
4
|
+
var SetupWizardScope;
|
|
5
|
+
(function (SetupWizardScope) {
|
|
6
|
+
SetupWizardScope[SetupWizardScope["Tenant"] = 1] = "Tenant";
|
|
7
|
+
SetupWizardScope[SetupWizardScope["BusinessProfile"] = 2] = "BusinessProfile";
|
|
8
|
+
})(SetupWizardScope = exports.SetupWizardScope || (exports.SetupWizardScope = {}));
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { GuidValue, IIcon } from "@omnia/fx/models";
|
|
2
|
+
import { SetupWizardContent, SetupWizardFeature, SetupWizardScope, SetupWizardStep } from "./SetupWizardSettings";
|
|
3
|
+
export declare abstract class SetupWizardTemplateProvider {
|
|
4
|
+
abstract readonly omniaServiceId: GuidValue;
|
|
5
|
+
abstract readonly id: GuidValue;
|
|
6
|
+
abstract title: string;
|
|
7
|
+
abstract icon: IIcon;
|
|
8
|
+
abstract description: string;
|
|
9
|
+
abstract externalLink?: string;
|
|
10
|
+
abstract steps: SetupWizardStep[];
|
|
11
|
+
abstract scopes: SetupWizardScope[];
|
|
12
|
+
abstract contents: SetupWizardContent[];
|
|
13
|
+
abstract features: SetupWizardFeature[];
|
|
14
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./SetupWizardProviderApi"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./SetupWizardSettings"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./SetupWizardTemplateProvider"), exports);
|
|
@@ -71,6 +71,7 @@ export declare const SimpleListingSearchTemplateStyles: {
|
|
|
71
71
|
itemWrapper?: types.NestedCSSProperties;
|
|
72
72
|
linkAvatar?: types.NestedCSSProperties;
|
|
73
73
|
noneBgIconContainer?: (iconSize: string) => types.NestedCSSProperties;
|
|
74
|
+
title?: types.NestedCSSProperties;
|
|
74
75
|
};
|
|
75
76
|
export declare const AppIconSearchTemplateStyles: {
|
|
76
77
|
itemWrapper?: types.NestedCSSProperties;
|
|
@@ -106,6 +106,7 @@ export interface TeamCollaborationRollupBlockSettings extends TeamCollaborationR
|
|
|
106
106
|
excludePersonalSite?: boolean;
|
|
107
107
|
dialogMode?: boolean;
|
|
108
108
|
tabMode?: boolean;
|
|
109
|
+
noResultText?: MultilingualString;
|
|
109
110
|
}
|
|
110
111
|
export declare module TeamCollaborationRollupEnums {
|
|
111
112
|
enum PagingType {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./AzureCognitiveTranslatorProvider";
|
|
@@ -29,5 +29,6 @@ export declare class SearchCategoryStore extends Store {
|
|
|
29
29
|
actions: {
|
|
30
30
|
ensureSearchCategories: import("@omnia/fx/stores").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
|
|
31
31
|
ensureTargetedSearchCategories: import("@omnia/fx/stores").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
|
|
32
|
+
ensureTokenReplacement: import("@omnia/fx/stores").StoreAction<unknown, (searchCategories: SearchCategoryBase[]) => void, (result: SearchCategoryBase[], searchCategories: SearchCategoryBase[]) => void, (failureReason: any, searchCategories: SearchCategoryBase[]) => void, (searchCategories: SearchCategoryBase[]) => Promise<SearchCategoryBase[]>>;
|
|
32
33
|
};
|
|
33
34
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import { OmniaContext } from "@omnia/fx";
|
|
1
2
|
import { GuidValue, Identity } from "@omnia/fx-models";
|
|
2
|
-
import { Store } from "@omnia/fx/stores";
|
|
3
|
+
import { Store, UserIdentityStore } from "@omnia/fx/stores";
|
|
3
4
|
import { ISignOffRequestUpdatableProperties, ItemQueryResult, SignOffRequest, SignOffRequestCreateModel, SignOffRequestQuery, SignOffRequestSettings, SignOffRequestResource, UserSignOffRequests, SignOffRequestDetails, SignOffRequestResourceDetail } from "../../fx/models";
|
|
4
5
|
export declare class SignOffRequestStore extends Store {
|
|
5
6
|
private signOffRequestService;
|
|
6
|
-
|
|
7
|
+
userIdentityStore: UserIdentityStore;
|
|
8
|
+
omniaContext: OmniaContext;
|
|
7
9
|
private settingsService;
|
|
8
10
|
private ensuredSignOffRequestDetailsPromises;
|
|
9
11
|
private ensuredSignOffRequestedByPromises;
|
package/package.json
CHANGED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { GuidValue, TargetResolverTypes } from "@omnia/fx-models";
|
|
2
|
-
export declare enum QuickSetupScope {
|
|
3
|
-
Tenant = 1,
|
|
4
|
-
BusinessProfile = 2
|
|
5
|
-
}
|
|
6
|
-
export interface QuickSetupContent {
|
|
7
|
-
id: GuidValue;
|
|
8
|
-
title: string;
|
|
9
|
-
description: string;
|
|
10
|
-
order?: number;
|
|
11
|
-
scopes: QuickSetupScope[];
|
|
12
|
-
uncheckedByDefault?: boolean;
|
|
13
|
-
onCheckedChange?: (checked: boolean) => void;
|
|
14
|
-
}
|
|
15
|
-
export interface QuickSetupStep {
|
|
16
|
-
title: string;
|
|
17
|
-
feature: {
|
|
18
|
-
id: GuidValue;
|
|
19
|
-
scope: TargetResolverTypes;
|
|
20
|
-
};
|
|
21
|
-
order?: number;
|
|
22
|
-
scopes: QuickSetupRender[];
|
|
23
|
-
stopOnFailed?: boolean;
|
|
24
|
-
}
|
|
25
|
-
export interface QuickSetupRender {
|
|
26
|
-
scope: QuickSetupScope;
|
|
27
|
-
hidden: boolean;
|
|
28
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.QuickSetupScope = void 0;
|
|
4
|
-
var QuickSetupScope;
|
|
5
|
-
(function (QuickSetupScope) {
|
|
6
|
-
QuickSetupScope[QuickSetupScope["Tenant"] = 1] = "Tenant";
|
|
7
|
-
QuickSetupScope[QuickSetupScope["BusinessProfile"] = 2] = "BusinessProfile";
|
|
8
|
-
})(QuickSetupScope = exports.QuickSetupScope || (exports.QuickSetupScope = {}));
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { ApiPath } from "@omnia/fx-models";
|
|
2
|
-
import { StepProvider } from ".";
|
|
3
|
-
import { QuickSetupWizardView } from "../../../models";
|
|
4
|
-
export interface IQuickSetupWizardRegistrationApi {
|
|
5
|
-
registerViews: (providers: QuickSetupWizardView | QuickSetupWizardView[]) => void;
|
|
6
|
-
getAllViews: () => QuickSetupWizardView[];
|
|
7
|
-
}
|
|
8
|
-
export interface IStepProviderRegistrationApi {
|
|
9
|
-
registerStepProvider: (providers: StepProvider | StepProvider[]) => void;
|
|
10
|
-
getAllStepProviders: () => StepProvider[];
|
|
11
|
-
}
|
|
12
|
-
declare module "../WorkplaceApi" {
|
|
13
|
-
interface IWorkplaceApi {
|
|
14
|
-
wizard: {
|
|
15
|
-
registration: Promise<IQuickSetupWizardRegistrationApi>;
|
|
16
|
-
stepproviders: Promise<IStepProviderRegistrationApi>;
|
|
17
|
-
};
|
|
18
|
-
}
|
|
19
|
-
interface IWorkplaceExtendApiManifest {
|
|
20
|
-
wizard: {
|
|
21
|
-
registration: ApiPath;
|
|
22
|
-
stepproviders: ApiPath;
|
|
23
|
-
};
|
|
24
|
-
}
|
|
25
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { GuidValue } from "@omnia/fx/models";
|
|
2
|
-
import { QuickSetupContent, QuickSetupStep } from "./QuickSetupSettings";
|
|
3
|
-
export declare abstract class StepProvider {
|
|
4
|
-
abstract readonly omniaServiceId: GuidValue;
|
|
5
|
-
abstract steps: QuickSetupStep[];
|
|
6
|
-
abstract contents: QuickSetupContent[];
|
|
7
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./QuickSetupStepProviderApi"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./StepProvider"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./QuickSetupSettings"), exports);
|