@omnia/workplace 7.5.1-dev → 7.5.1
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/Fx.d.ts +2 -1
- package/internal-do-not-import-from-here/apis/index.d.ts +0 -1
- package/internal-do-not-import-from-here/index.d.ts +0 -1
- 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 +15 -14
- package/internal-do-not-import-from-here/models/Constants.js +18 -17
- package/internal-do-not-import-from-here/models/Enums.d.ts +2 -1
- package/internal-do-not-import-from-here/models/Enums.js +1 -0
- package/internal-do-not-import-from-here/models/ManifestIds.d.ts +36 -5
- package/internal-do-not-import-from-here/models/ManifestIds.js +36 -5
- package/internal-do-not-import-from-here/models/Search.d.ts +3 -3
- package/internal-do-not-import-from-here/models/analytics/analyticsdimensionmappings.d.ts +24 -0
- package/internal-do-not-import-from-here/models/analytics/analyticsdimensionmappings.js +8 -0
- package/internal-do-not-import-from-here/models/analytics/analyticsfiltersettings.d.ts +10 -0
- package/internal-do-not-import-from-here/models/analytics/analyticssettings.d.ts +9 -0
- package/internal-do-not-import-from-here/models/analytics/analyticssettings.js +2 -0
- package/internal-do-not-import-from-here/models/analytics/businessProfileAnalyticsSettings.d.ts +8 -0
- package/internal-do-not-import-from-here/models/analytics/businessProfileAnalyticsSettings.js +14 -0
- package/internal-do-not-import-from-here/models/analytics/index.d.ts +6 -4
- package/internal-do-not-import-from-here/models/analytics/index.js +6 -4
- package/internal-do-not-import-from-here/models/analytics/matomosite.d.ts +6 -0
- package/internal-do-not-import-from-here/models/analytics/matomosite.js +2 -0
- package/internal-do-not-import-from-here/models/analytics/widgetmetadata.d.ts +19 -0
- package/internal-do-not-import-from-here/models/analytics/widgetmetadata.js +2 -0
- package/internal-do-not-import-from-here/models/apps/TeamCollaborationAppTemplateProperties.d.ts +4 -4
- package/internal-do-not-import-from-here/models/index.d.ts +1 -2
- package/internal-do-not-import-from-here/models/index.js +1 -2
- package/internal-do-not-import-from-here/models/styles/AnnouncementStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/models/styles/OmniaSystemLanguageSettingsStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/models/teamcollaborationrollup/TeamCollaborationRollupBlock.d.ts +4 -6
- package/internal-do-not-import-from-here/models/teamcollaborationrollup/TeamCollaborationRollupBlockStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/models/texttranslator/AzureCognitiveTranslatorProvider.d.ts +1 -0
- package/internal-do-not-import-from-here/services/AnalyticsService.d.ts +20 -0
- package/internal-do-not-import-from-here/services/AnalyticsStoreService.d.ts +18 -0
- package/internal-do-not-import-from-here/services/index.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/AnalyticsFilterStore.d.ts +11 -0
- package/internal-do-not-import-from-here/stores/AnalyticsStore.d.ts +41 -0
- package/internal-do-not-import-from-here/stores/index.d.ts +2 -0
- package/package.json +1 -1
- package/internal-do-not-import-from-here/analytics/AnalyticsService.d.ts +0 -26
- package/internal-do-not-import-from-here/apis/AnalyticsPropertyApi.d.ts +0 -29
- package/internal-do-not-import-from-here/models/analytics/AnalyticsDataSource.d.ts +0 -37
- package/internal-do-not-import-from-here/models/analytics/AnalyticsDataSource.js +0 -10
- package/internal-do-not-import-from-here/models/analytics/AnalyticsDataSourceProperty.d.ts +0 -19
- package/internal-do-not-import-from-here/models/analytics/AnalyticsDataSourceProperty.js +0 -25
- package/internal-do-not-import-from-here/models/analytics/AnalyticsDataSourcePropertyDefinitionHandler.d.ts +0 -36
- package/internal-do-not-import-from-here/models/analytics/AnalyticsDataSourcePropertyDefinitionHandler.js +0 -18
- package/internal-do-not-import-from-here/models/analytics/AnalyticsDataSourcePropertyProvider.d.ts +0 -37
- package/internal-do-not-import-from-here/models/analytics/AnalyticsDataSourcePropertyProvider.js +0 -6
- package/internal-do-not-import-from-here/models/statuscodelayout/StatusCodeDisplaySettings.d.ts +0 -14
- package/internal-do-not-import-from-here/models/statuscodelayout/StatusCodeLayoutProvider.d.ts +0 -8
- package/internal-do-not-import-from-here/models/statuscodelayout/StatusCodeLayoutProvider.js +0 -6
- package/internal-do-not-import-from-here/models/statuscodelayout/index.d.ts +0 -2
- package/internal-do-not-import-from-here/models/statuscodelayout/index.js +0 -5
- /package/internal-do-not-import-from-here/models/{statuscodelayout/StatusCodeDisplaySettings.js → analytics/analyticsfiltersettings.js} +0 -0
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as WorkplaceStore from "../stores";
|
|
2
2
|
import * as WorkplaceCore from "../core";
|
|
3
3
|
import * as WorkplaceModels from "../models";
|
|
4
|
-
|
|
4
|
+
import * as AnalyticsService from "../services/AnalyticsService";
|
|
5
|
+
type WorkplaceFxApi = typeof WorkplaceStore & typeof WorkplaceCore & typeof AnalyticsService;
|
|
5
6
|
declare module "../models/WorkplaceApi" {
|
|
6
7
|
interface IWorkplaceApi {
|
|
7
8
|
fx: Promise<WorkplaceFxApi>;
|
|
@@ -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":["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","
|
|
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":["AnalyticsService","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","AnalyticsFilterStore","AnalyticsService","AnalyticsStore","AppAuthenticationOptionsService","AppRendererBootstrapper","CurrentFormStore","DialogHelper","EditingThemeStore","FilterValueProvider","FormService","FormStore","GovernanceDashboardStore","HomeService","LinkHandlerDialogStore","NotificationPanelHistoryService","NotificationPanelStore","NotificationPanelStorePluginProvider","PromotedSearchResultService","PromotedSearchResultStore","SearchCategoryService","SearchCategoryStore","SearchFeedbackService","SearchTokenStore","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","ChartColor","CompactHeaderStyles","Constants","CreateTeamworkSettingsStyles","DallESettingsPrompts","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","LinkHandlerSettingsStyles","LinkUrlTypeOption","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","ResourceManifests","SearchAdminStyles","SearchBlockStyles","SearchHeaderStyles","SearchProvider","SearchStatistics","SearchStatisticsMetricScopeFilterValue","SearchTokenProvider","ServiceDefinition","SettingsKeys","SetupWizard","SetupWizardScope","SetupWizardTemplateFeatureHandler","SetupWizardTemplateProvider","SharedLinkSortByTypes","ShowMoreStyles","SignOffRequestEnums","SignOffRequestInfoPersistentDialogId","SignOffRequestProvider","SignOffRequestResourceProvider","SignOffRequestRollupConstants","SignOffRequestScopedQueryTypes","SignOffResource","SimpleListStyles","SimpleListingSearchTemplateStyles","SlideRendererStyles","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","notificationPanelLayoutProvider","reCaptchaSecretKey"]}}}
|
|
@@ -22,6 +22,10 @@ export declare const Constants: {
|
|
|
22
22
|
yammerIntegration: string;
|
|
23
23
|
facebookWorkplace: string;
|
|
24
24
|
sharepointUserProfilesSync: string;
|
|
25
|
+
analyticsCore: string;
|
|
26
|
+
analyticsBusinessProfile: string;
|
|
27
|
+
msTeamsPushNotification: string;
|
|
28
|
+
teamworkProperties: string;
|
|
25
29
|
};
|
|
26
30
|
themingNavigationNodeKey: string;
|
|
27
31
|
themeIds: {
|
|
@@ -57,24 +61,12 @@ export declare const Constants: {
|
|
|
57
61
|
};
|
|
58
62
|
peopleRollup: {
|
|
59
63
|
filterEngineContextUniqueId: string;
|
|
64
|
+
omniaSearchFilterEngineContextUniqueId: string;
|
|
60
65
|
};
|
|
61
66
|
teamworkRollup: {
|
|
62
67
|
filterEngineContextUniqueId: string;
|
|
63
68
|
};
|
|
64
69
|
};
|
|
65
|
-
analytics: {
|
|
66
|
-
properties: {
|
|
67
|
-
registrations: {
|
|
68
|
-
businessProfilePropertiesRegistrationId: Guid;
|
|
69
|
-
appPropertiesRegistrationId: Guid;
|
|
70
|
-
userPropertiesRegistrationId: Guid;
|
|
71
|
-
};
|
|
72
|
-
};
|
|
73
|
-
propertyCategories: {
|
|
74
|
-
externalPropertyCategoryId: Guid;
|
|
75
|
-
defaultCategoryId: Guid;
|
|
76
|
-
};
|
|
77
|
-
};
|
|
78
70
|
};
|
|
79
71
|
export declare const BuiltInActionButtonHandlers: {
|
|
80
72
|
AddFavoriteButton: ActionHandlerRegistrationId;
|
|
@@ -157,7 +149,6 @@ export declare const GovernanceDashboard: {
|
|
|
157
149
|
};
|
|
158
150
|
};
|
|
159
151
|
export declare const StatusCodeDisplay: {
|
|
160
|
-
DefaultSettingKey: string;
|
|
161
152
|
ActionButtonIds: {
|
|
162
153
|
edit: string;
|
|
163
154
|
save: string;
|
|
@@ -256,3 +247,13 @@ export declare const TableNames: {
|
|
|
256
247
|
SignOffRequests: string;
|
|
257
248
|
};
|
|
258
249
|
export declare const SignOffRequestInfoPersistentDialogId = "omnia-workplace-signoffrequest-info-persistentdialog";
|
|
250
|
+
export declare const reCaptchaSecretKey = "omnia-recaptcha-secret";
|
|
251
|
+
export declare const ReCaptChaSecretFormNames: {
|
|
252
|
+
readonly enabled: "enabled";
|
|
253
|
+
readonly sitekey: "sitekey";
|
|
254
|
+
readonly secretkey: "secretkey";
|
|
255
|
+
};
|
|
256
|
+
export declare const PeopleRollupFilterEngineContextPropertyTypes: {
|
|
257
|
+
owner: Guid;
|
|
258
|
+
userType: Guid;
|
|
259
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
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.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;
|
|
4
4
|
const fx_models_1 = require("@omnia/fx-models");
|
|
5
5
|
const ManifestIds_1 = require("./ManifestIds");
|
|
6
6
|
exports.Constants = {
|
|
@@ -25,7 +25,11 @@ exports.Constants = {
|
|
|
25
25
|
customEmail: "2091fad0-6b95-4724-bd35-f5c8de52b443",
|
|
26
26
|
yammerIntegration: "b8b09c2b-b7a4-447b-b6b9-fdd8a16bab0c",
|
|
27
27
|
facebookWorkplace: "8D243613-9966-4D10-AE7D-CD3938DA47AF",
|
|
28
|
-
sharepointUserProfilesSync: "cfd49770-2275-4f72-a164-355f51e5dcb4"
|
|
28
|
+
sharepointUserProfilesSync: "cfd49770-2275-4f72-a164-355f51e5dcb4",
|
|
29
|
+
analyticsCore: "29ce6dcb-da60-44d7-a6ec-5da9fb5bc658",
|
|
30
|
+
analyticsBusinessProfile: "9c76c51c-e3a7-44b3-9c10-c12914834b2c",
|
|
31
|
+
msTeamsPushNotification: "d2542bf4-942f-4732-b9fc-0bfc6472180b",
|
|
32
|
+
teamworkProperties: "af763ba5-c028-48ff-abf2-c272920170d8",
|
|
29
33
|
},
|
|
30
34
|
themingNavigationNodeKey: "50c83e32-8a25-4c48-8f94-ef250236f755",
|
|
31
35
|
themeIds: {
|
|
@@ -69,25 +73,13 @@ exports.Constants = {
|
|
|
69
73
|
filterEngineContextUniqueId: "a9171c0f-0e36-45ec-bd5e-a7f854f62664"
|
|
70
74
|
},
|
|
71
75
|
peopleRollup: {
|
|
72
|
-
filterEngineContextUniqueId: "9709e49c-e55e-494e-84ef-5def44dceb5d"
|
|
76
|
+
filterEngineContextUniqueId: "9709e49c-e55e-494e-84ef-5def44dceb5d",
|
|
77
|
+
omniaSearchFilterEngineContextUniqueId: "6c03f4d8-5c9b-44cf-93b6-16660bf4d87c"
|
|
73
78
|
},
|
|
74
79
|
teamworkRollup: {
|
|
75
80
|
filterEngineContextUniqueId: "3afa11c3-ed91-4da3-9afa-bf08489b28c0"
|
|
76
81
|
},
|
|
77
82
|
},
|
|
78
|
-
analytics: {
|
|
79
|
-
properties: {
|
|
80
|
-
registrations: {
|
|
81
|
-
businessProfilePropertiesRegistrationId: new fx_models_1.Guid("63b055c6-aee2-4c08-bb09-add19788b4f0"),
|
|
82
|
-
appPropertiesRegistrationId: new fx_models_1.Guid("3f17aaaa-ce07-4b57-9e26-bdd9f5a8e1a3"),
|
|
83
|
-
userPropertiesRegistrationId: new fx_models_1.Guid("1a818ef8-65b6-4018-9879-8bfbea05194d"),
|
|
84
|
-
},
|
|
85
|
-
},
|
|
86
|
-
propertyCategories: {
|
|
87
|
-
externalPropertyCategoryId: new fx_models_1.Guid("7d7a8a30-e9a3-486b-ac09-878f71e687d4"),
|
|
88
|
-
defaultCategoryId: new fx_models_1.Guid("d7af0482-3a90-463e-bf4b-fdebcf0565be"),
|
|
89
|
-
},
|
|
90
|
-
},
|
|
91
83
|
};
|
|
92
84
|
exports.BuiltInActionButtonHandlers = {
|
|
93
85
|
AddFavoriteButton: fx_models_1.ActionHandlerRegistrationId.create(new fx_models_1.Guid("ad1a3e19-4f08-4ebd-b05e-40a37e1ad4c3")),
|
|
@@ -176,7 +168,6 @@ exports.GovernanceDashboard = {
|
|
|
176
168
|
}
|
|
177
169
|
};
|
|
178
170
|
exports.StatusCodeDisplay = {
|
|
179
|
-
DefaultSettingKey: "omnia.workplace.httpstatuscode.layout",
|
|
180
171
|
ActionButtonIds: {
|
|
181
172
|
edit: "edithttpcodelayout",
|
|
182
173
|
save: "savehttpcodelayout",
|
|
@@ -279,3 +270,13 @@ exports.TableNames = {
|
|
|
279
270
|
SignOffRequests: "SignOffRequests"
|
|
280
271
|
};
|
|
281
272
|
exports.SignOffRequestInfoPersistentDialogId = "omnia-workplace-signoffrequest-info-persistentdialog";
|
|
273
|
+
exports.reCaptchaSecretKey = "omnia-recaptcha-secret";
|
|
274
|
+
exports.ReCaptChaSecretFormNames = {
|
|
275
|
+
enabled: "enabled",
|
|
276
|
+
sitekey: "sitekey",
|
|
277
|
+
secretkey: "secretkey",
|
|
278
|
+
};
|
|
279
|
+
exports.PeopleRollupFilterEngineContextPropertyTypes = {
|
|
280
|
+
owner: new fx_models_1.Guid("dd7c9c9d-c7fb-4c4a-871d-fa7d652f9389"),
|
|
281
|
+
userType: new fx_models_1.Guid("dffba819-f884-4c18-a212-bd6895224356")
|
|
282
|
+
};
|
|
@@ -132,6 +132,7 @@ var Enums;
|
|
|
132
132
|
QueryType[QueryType["ActivityQuery"] = 2] = "ActivityQuery";
|
|
133
133
|
QueryType[QueryType["UserFieldsOnPage"] = 3] = "UserFieldsOnPage";
|
|
134
134
|
QueryType[QueryType["Birthday"] = 4] = "Birthday";
|
|
135
|
+
QueryType[QueryType["Users"] = 5] = "Users";
|
|
135
136
|
})(QueryType = PeopleRollupEnums.QueryType || (PeopleRollupEnums.QueryType = {}));
|
|
136
137
|
let BirthdayPeriod;
|
|
137
138
|
(function (BirthdayPeriod) {
|
|
@@ -16,6 +16,7 @@ export declare class WPRoleDefinition {
|
|
|
16
16
|
static get AnnouncementsBPAdmin(): Guid;
|
|
17
17
|
static get SearchBPAdmin(): Guid;
|
|
18
18
|
static get GlobalSignOffRequestAdmin(): Guid;
|
|
19
|
+
static get AnalyticsBpReader(): Guid;
|
|
19
20
|
}
|
|
20
21
|
export declare class WizardSetupConstant {
|
|
21
22
|
static get LocationPropertyTaxonomy(): Guid;
|
|
@@ -134,10 +135,11 @@ export declare class ResourceManifests {
|
|
|
134
135
|
static get HttpCodeLayoutResource(): Guid;
|
|
135
136
|
static get HttpCodeLayoutBPRegistration(): Guid;
|
|
136
137
|
static get HttpCodeLayoutTenantRegistration(): Guid;
|
|
137
|
-
static get
|
|
138
|
-
static get
|
|
139
|
-
static get
|
|
140
|
-
static get
|
|
138
|
+
static get AuthenticationScreenResources(): Guid;
|
|
139
|
+
static get PeopleRollupFilterEngineContextPropertiesRegistration(): Guid;
|
|
140
|
+
static get PeopleRollupOwnerFilterEngineRegistrationApi(): Guid;
|
|
141
|
+
static get PeopleRollupUserTypeFilterEngineRegistrationApi(): Guid;
|
|
142
|
+
static get PeopleRollupFilterEngineCore(): Guid;
|
|
141
143
|
}
|
|
142
144
|
export declare class WebComponentManifests {
|
|
143
145
|
static get FaviconSettings(): Guid;
|
|
@@ -325,6 +327,8 @@ export declare class WebComponentManifests {
|
|
|
325
327
|
static get PeopleRollupCardViewSettings(): Guid;
|
|
326
328
|
static get PageRollupRollerViewSettings(): Guid;
|
|
327
329
|
static get PageRollupRollerView(): Guid;
|
|
330
|
+
static get PeopleRollupOmniaUserCardView(): Guid;
|
|
331
|
+
static get PeopleRollupOmniaUserCardViewSettings(): Guid;
|
|
328
332
|
static get PersonSearchTemplate(): Guid;
|
|
329
333
|
static get UserProfileCompletion(): Guid;
|
|
330
334
|
static get UserProfilePropertiesWizard(): Guid;
|
|
@@ -376,6 +380,8 @@ export declare class WebComponentManifests {
|
|
|
376
380
|
static get TeamCollaborationListViewSettings(): Guid;
|
|
377
381
|
static get TeamCollaborationNavigationView(): Guid;
|
|
378
382
|
static get TeamCollaborationNavigationViewSettings(): Guid;
|
|
383
|
+
static get TeamCollaborationRollupRenderer(): Guid;
|
|
384
|
+
static get TeamCollaborationRollupMetricDetailsDialog(): Guid;
|
|
379
385
|
static get CreateTeamworkBlock(): Guid;
|
|
380
386
|
static get CreateTeamworkComponent(): Guid;
|
|
381
387
|
static get CreateTeamworkBlockSettings(): Guid;
|
|
@@ -438,6 +444,11 @@ export declare class WebComponentManifests {
|
|
|
438
444
|
static get PropertiesBlockSettings(): Guid;
|
|
439
445
|
static get PropertiesBlockSettingConfiguration(): Guid;
|
|
440
446
|
static get PropertiesBlock(): Guid;
|
|
447
|
+
static get AnalyticsBlocksCore(): Guid;
|
|
448
|
+
static get AnalyticsWidgetBlockSettings(): Guid;
|
|
449
|
+
static get AnalyticsWidgetBlock(): Guid;
|
|
450
|
+
static get AnalyticsFilterBlockSettings(): Guid;
|
|
451
|
+
static get AnalyticsFilterBlock(): Guid;
|
|
441
452
|
static get PowerAppBlock(): Guid;
|
|
442
453
|
static get PowerAppBlockSettings(): Guid;
|
|
443
454
|
static get PowerAppSettingAdminJourney(): Guid;
|
|
@@ -457,6 +468,7 @@ export declare class WebComponentManifests {
|
|
|
457
468
|
static get UserManagementSyncProviderListingBlade(): Guid;
|
|
458
469
|
static get UserManagementSyncProviderSettingsBlade(): Guid;
|
|
459
470
|
static get UserManagementSyncProviderLogsBlade(): Guid;
|
|
471
|
+
static get UserManagementOmniaSearchUserLogsBlade(): Guid;
|
|
460
472
|
static get UserManagementUserListingBlade(): Guid;
|
|
461
473
|
static get UserManagementActiveUserListing(): Guid;
|
|
462
474
|
static get UserManagementDeletedUserListing(): Guid;
|
|
@@ -473,7 +485,17 @@ export declare class WebComponentManifests {
|
|
|
473
485
|
static get UserManagementUserPropertyDetailBlade(): Guid;
|
|
474
486
|
static get UserManagementUserDetailBladeAuthenticationTab(): Guid;
|
|
475
487
|
static get UserManagementUserDetailBladePropertiesTab(): Guid;
|
|
488
|
+
static get UserManagementBulkImportBlade(): Guid;
|
|
489
|
+
static get UserManagementLoginLogBlade(): Guid;
|
|
476
490
|
static get BusinessProfileAuthenticationBlade(): Guid;
|
|
491
|
+
static get TenantAnalyticsJourney(): Guid;
|
|
492
|
+
static get TenantAnalyticsSetupBlade(): Guid;
|
|
493
|
+
static get TenantAnalyticsConfigurationBlade(): Guid;
|
|
494
|
+
static get TenantAnalyticsAddDimensionBlade(): Guid;
|
|
495
|
+
static get UserManagementIdentityCreationRequestSettingsBlade(): Guid;
|
|
496
|
+
static get UserManagementIdentityCreationRequestUserTypeBlade(): Guid;
|
|
497
|
+
static get UserManagementIdentityCreationRequestUserTypePropertyBlade(): Guid;
|
|
498
|
+
static get UserManagementIdentityCreationRequestPendingApprovalListing(): Guid;
|
|
477
499
|
static get SetupWizardViewCore(): Guid;
|
|
478
500
|
static get SetupWizardGeneralStep(): Guid;
|
|
479
501
|
static get SetupWizardBrandingStep(): Guid;
|
|
@@ -525,7 +547,16 @@ export declare class WebComponentManifests {
|
|
|
525
547
|
static get UserInformationBlock(): Guid;
|
|
526
548
|
static get HttpCodeLayoutTenantJourney(): Guid;
|
|
527
549
|
static get HttpCodeLayoutBusinessProfileJourney(): Guid;
|
|
528
|
-
static get
|
|
550
|
+
static get AuthenticationScreenBlade(): Guid;
|
|
551
|
+
static get AuthenticationScreenChrome(): Guid;
|
|
552
|
+
static get PeopleRollupOwnerFilterEngineRenderer(): Guid;
|
|
553
|
+
static get PeopleRollupFilterEngineSelectionsAreaOwnerProperty(): Guid;
|
|
554
|
+
static get PeopleRollupOwnerPropertySettings(): Guid;
|
|
555
|
+
static get PeopleRollupOwnerPropertyDefaultValueInput(): Guid;
|
|
556
|
+
static get PeopleRollupUserTypeFilterEngineRenderer(): Guid;
|
|
557
|
+
static get PeopleRollupFilterEngineSelectionsAreaUserTypeProperty(): Guid;
|
|
558
|
+
static get PeopleRollupUserTypePropertySettings(): Guid;
|
|
559
|
+
static get PeopleRollupUserTypePropertyDefaultValueInput(): Guid;
|
|
529
560
|
}
|
|
530
561
|
export declare class WebComponentElements {
|
|
531
562
|
static get AppProvisioningStepMember(): string;
|
|
@@ -21,6 +21,7 @@ class WPRoleDefinition {
|
|
|
21
21
|
static get AnnouncementsBPAdmin() { return new fx_models_1.Guid("5FA0CED5-F7AB-4C7A-99D9-1F291CB08CC1"); }
|
|
22
22
|
static get SearchBPAdmin() { return new fx_models_1.Guid("affe1bd8-b534-459b-bdd5-f11e5a2d1d73"); }
|
|
23
23
|
static get GlobalSignOffRequestAdmin() { return new fx_models_1.Guid("d20507d0-41c0-43a2-8ffc-13e923362f9d"); }
|
|
24
|
+
static get AnalyticsBpReader() { return new fx_models_1.Guid("ab0d9a26-a89a-4117-bfee-0e3013e456e1"); }
|
|
24
25
|
}
|
|
25
26
|
exports.WPRoleDefinition = WPRoleDefinition;
|
|
26
27
|
class WizardSetupConstant {
|
|
@@ -142,10 +143,11 @@ class ResourceManifests {
|
|
|
142
143
|
static get HttpCodeLayoutResource() { return new fx_models_1.Guid("b6785187-5ac7-4fa1-a36e-08298f778cad"); }
|
|
143
144
|
static get HttpCodeLayoutBPRegistration() { return new fx_models_1.Guid("7e34f694-9a74-4741-bf2c-95ca05ade31a"); }
|
|
144
145
|
static get HttpCodeLayoutTenantRegistration() { return new fx_models_1.Guid("93178fef-8fbe-4e01-9510-b0a358ffa3a8"); }
|
|
145
|
-
static get
|
|
146
|
-
static get
|
|
147
|
-
static get
|
|
148
|
-
static get
|
|
146
|
+
static get AuthenticationScreenResources() { return new fx_models_1.Guid("47b5e3eb-3d80-487f-b60b-6ef072427c6d"); }
|
|
147
|
+
static get PeopleRollupFilterEngineContextPropertiesRegistration() { return new fx_models_1.Guid("3a46645d-4e20-40e8-8017-8f4ef34758c8"); }
|
|
148
|
+
static get PeopleRollupOwnerFilterEngineRegistrationApi() { return new fx_models_1.Guid("59f67a21-d0e5-4999-8d6e-260029173c7b"); }
|
|
149
|
+
static get PeopleRollupUserTypeFilterEngineRegistrationApi() { return new fx_models_1.Guid("09574fb3-e56d-4dc9-ada3-c2018e42c540"); }
|
|
150
|
+
static get PeopleRollupFilterEngineCore() { return new fx_models_1.Guid("3c70a618-1268-4eb7-aad4-38dff37fd8fe"); }
|
|
149
151
|
}
|
|
150
152
|
exports.ResourceManifests = ResourceManifests;
|
|
151
153
|
class WebComponentManifests {
|
|
@@ -334,6 +336,8 @@ class WebComponentManifests {
|
|
|
334
336
|
static get PeopleRollupCardViewSettings() { return new fx_models_1.Guid("3d27c8d2-51e7-447f-92fb-7b2e30e94705"); }
|
|
335
337
|
static get PageRollupRollerViewSettings() { return new fx_models_1.Guid("0d2c2989-adc4-46b5-a2a7-a594177420f1"); }
|
|
336
338
|
static get PageRollupRollerView() { return new fx_models_1.Guid("2bb232b8-130c-44a7-ab02-f49a1e604041"); }
|
|
339
|
+
static get PeopleRollupOmniaUserCardView() { return new fx_models_1.Guid("b5c9c9d8-f4b8-4c1d-bb33-b3512d3ef78f"); }
|
|
340
|
+
static get PeopleRollupOmniaUserCardViewSettings() { return new fx_models_1.Guid("675bceca-54bf-4097-a9eb-32b98aa3dfcf"); }
|
|
337
341
|
static get PersonSearchTemplate() { return new fx_models_1.Guid("6628abdf-153a-492d-8be0-b0351a11bfcf"); }
|
|
338
342
|
static get UserProfileCompletion() { return new fx_models_1.Guid("c67badd3-d4bd-46cf-a936-dfde200a1343"); }
|
|
339
343
|
static get UserProfilePropertiesWizard() { return new fx_models_1.Guid("95dd7949-6c02-4ccb-8539-20d39c6f9b8a"); }
|
|
@@ -385,6 +389,8 @@ class WebComponentManifests {
|
|
|
385
389
|
static get TeamCollaborationListViewSettings() { return new fx_models_1.Guid("D6F547EC-CF89-486F-8B59-C999553869E1"); }
|
|
386
390
|
static get TeamCollaborationNavigationView() { return new fx_models_1.Guid("1d7374e8-24bf-4e0e-b4d3-752fa89c7a38"); }
|
|
387
391
|
static get TeamCollaborationNavigationViewSettings() { return new fx_models_1.Guid("a1fd35eb-760a-45c7-b812-148a519ef500"); }
|
|
392
|
+
static get TeamCollaborationRollupRenderer() { return new fx_models_1.Guid("D22B2917-BE60-43D4-B989-49EBA88DCAC3"); }
|
|
393
|
+
static get TeamCollaborationRollupMetricDetailsDialog() { return new fx_models_1.Guid("75CCD5E7-F7B5-4D4F-AA6E-5391C1946B4B"); }
|
|
388
394
|
static get CreateTeamworkBlock() { return new fx_models_1.Guid("0f1da23c-05a0-4ff3-a3e6-83e1252db696"); }
|
|
389
395
|
static get CreateTeamworkComponent() { return new fx_models_1.Guid("466c0ccc-ed0e-41d9-b8c2-1200fb7ec59c"); }
|
|
390
396
|
static get CreateTeamworkBlockSettings() { return new fx_models_1.Guid("c5b867ec-4613-4b57-b75a-83461e1928ec"); }
|
|
@@ -447,6 +453,11 @@ class WebComponentManifests {
|
|
|
447
453
|
static get PropertiesBlockSettings() { return new fx_models_1.Guid("29559185-3df2-4049-93e5-d8326ec94982"); }
|
|
448
454
|
static get PropertiesBlockSettingConfiguration() { return new fx_models_1.Guid("b95bdf10-d32d-4659-836c-eadc1d57ac55"); }
|
|
449
455
|
static get PropertiesBlock() { return new fx_models_1.Guid("88894e6a-2e41-44b6-a6f1-af3612caf276"); }
|
|
456
|
+
static get AnalyticsBlocksCore() { return new fx_models_1.Guid("1b9cc09e-9e67-4c7c-87ea-9854a345403b"); }
|
|
457
|
+
static get AnalyticsWidgetBlockSettings() { return new fx_models_1.Guid("a8d46ae3-9f87-457b-8f95-e4b4aea5df6c"); }
|
|
458
|
+
static get AnalyticsWidgetBlock() { return new fx_models_1.Guid("56dd7c8f-3c3f-4ec3-8e41-e398c79f945a"); }
|
|
459
|
+
static get AnalyticsFilterBlockSettings() { return new fx_models_1.Guid("287d6801-5fdb-4649-a057-b52adc1c278a"); }
|
|
460
|
+
static get AnalyticsFilterBlock() { return new fx_models_1.Guid("aebb9b0b-32ae-4b14-b0f1-3515b62f329f"); }
|
|
450
461
|
static get PowerAppBlock() { return new fx_models_1.Guid("8905b50b-3b48-4053-b667-d3abf5d7c4ef"); }
|
|
451
462
|
static get PowerAppBlockSettings() { return new fx_models_1.Guid("faa90898-9cc3-4db8-ab24-e36fa6d96ea3"); }
|
|
452
463
|
static get PowerAppSettingAdminJourney() { return new fx_models_1.Guid("b643dd40-d26c-4c73-9f23-d5fa4b436064"); }
|
|
@@ -466,6 +477,7 @@ class WebComponentManifests {
|
|
|
466
477
|
static get UserManagementSyncProviderListingBlade() { return new fx_models_1.Guid("242dc560-2ede-41f0-b6d4-151884a2ec63"); }
|
|
467
478
|
static get UserManagementSyncProviderSettingsBlade() { return new fx_models_1.Guid("0ab38b6f-9852-40ec-83c4-37db8a27d7c6"); }
|
|
468
479
|
static get UserManagementSyncProviderLogsBlade() { return new fx_models_1.Guid("6a15d7ed-ea3d-4b54-8b71-d8a7f3e50295"); }
|
|
480
|
+
static get UserManagementOmniaSearchUserLogsBlade() { return new fx_models_1.Guid("3388cc39-7abc-42a2-8d2f-062e8532541b"); }
|
|
469
481
|
static get UserManagementUserListingBlade() { return new fx_models_1.Guid("6f1fc259-6ddb-411a-bf17-41ed422947e3"); }
|
|
470
482
|
static get UserManagementActiveUserListing() { return new fx_models_1.Guid("1972b656-c68c-4c50-afa7-c76c8959b88d"); }
|
|
471
483
|
static get UserManagementDeletedUserListing() { return new fx_models_1.Guid("a7dfb3df-024c-49ac-a5f0-6dfd46c2ab65"); }
|
|
@@ -482,7 +494,17 @@ class WebComponentManifests {
|
|
|
482
494
|
static get UserManagementUserPropertyDetailBlade() { return new fx_models_1.Guid("3967363b-80cd-4b12-900f-7a9c7975bf6a"); }
|
|
483
495
|
static get UserManagementUserDetailBladeAuthenticationTab() { return new fx_models_1.Guid("95A66C49-40C7-442C-B815-359C5D299365"); }
|
|
484
496
|
static get UserManagementUserDetailBladePropertiesTab() { return new fx_models_1.Guid("9C7C9267-6BAE-4157-A588-98EECB88663D"); }
|
|
497
|
+
static get UserManagementBulkImportBlade() { return new fx_models_1.Guid("8DF3CBAB-53D4-4091-8FE0-A44F88E92018"); }
|
|
498
|
+
static get UserManagementLoginLogBlade() { return new fx_models_1.Guid("F00E21CD-5E0F-472A-A91D-C2B927E25FA7"); }
|
|
485
499
|
static get BusinessProfileAuthenticationBlade() { return new fx_models_1.Guid("4C9410C5-86FF-49A6-A493-F8A35BB3F990"); }
|
|
500
|
+
static get TenantAnalyticsJourney() { return new fx_models_1.Guid("d64bc647-0d37-49de-bd60-eb0d39cbb4a9"); }
|
|
501
|
+
static get TenantAnalyticsSetupBlade() { return new fx_models_1.Guid("3e80d831-f02b-4c0b-bfbd-a1354896f98b"); }
|
|
502
|
+
static get TenantAnalyticsConfigurationBlade() { return new fx_models_1.Guid("4027e639-92ed-4064-95c8-f715f02cacac"); }
|
|
503
|
+
static get TenantAnalyticsAddDimensionBlade() { return new fx_models_1.Guid("752607aa-4b6e-4865-90cc-c867fa1e0d91"); }
|
|
504
|
+
static get UserManagementIdentityCreationRequestSettingsBlade() { return new fx_models_1.Guid("36D0078C-1C79-486B-B4E3-92A97F03BDB5"); }
|
|
505
|
+
static get UserManagementIdentityCreationRequestUserTypeBlade() { return new fx_models_1.Guid("126A1816-3C59-4A7C-867E-027F5D1021B8"); }
|
|
506
|
+
static get UserManagementIdentityCreationRequestUserTypePropertyBlade() { return new fx_models_1.Guid("9F06822D-0718-4B7A-B685-C6442EC2DFCC"); }
|
|
507
|
+
static get UserManagementIdentityCreationRequestPendingApprovalListing() { return new fx_models_1.Guid("6F3F70CA-AFC5-4724-B3F8-405986A21717"); }
|
|
486
508
|
static get SetupWizardViewCore() { return new fx_models_1.Guid("758d200f-91f3-4446-8662-07592f89eeba"); }
|
|
487
509
|
static get SetupWizardGeneralStep() { return new fx_models_1.Guid("c5f83b2f-a21f-4210-b4f4-13ffda4ac129"); }
|
|
488
510
|
static get SetupWizardBrandingStep() { return new fx_models_1.Guid("084f1e3e-f0f5-4f2b-a75d-67f629308bf8"); }
|
|
@@ -534,7 +556,16 @@ class WebComponentManifests {
|
|
|
534
556
|
static get UserInformationBlock() { return new fx_models_1.Guid("29f1772f-545e-4017-b9fa-d356c8192b66"); }
|
|
535
557
|
static get HttpCodeLayoutTenantJourney() { return new fx_models_1.Guid("a2b3a1be-68a8-49c2-8d60-5069174de7be"); }
|
|
536
558
|
static get HttpCodeLayoutBusinessProfileJourney() { return new fx_models_1.Guid("9b3a0a46-6267-48f3-b711-68bd16f62a66"); }
|
|
537
|
-
static get
|
|
559
|
+
static get AuthenticationScreenBlade() { return new fx_models_1.Guid("ecdcbe77-649d-423b-9f45-a2b3a4369a83"); }
|
|
560
|
+
static get AuthenticationScreenChrome() { return new fx_models_1.Guid("479f9b8e-edeb-4c41-95a3-1ac3e2b5299e"); }
|
|
561
|
+
static get PeopleRollupOwnerFilterEngineRenderer() { return new fx_models_1.Guid("6f8fe50e-34d1-42c6-98ea-5596b24cd82b"); }
|
|
562
|
+
static get PeopleRollupFilterEngineSelectionsAreaOwnerProperty() { return new fx_models_1.Guid("597aabee-e343-47b5-b7b4-233368f15030"); }
|
|
563
|
+
static get PeopleRollupOwnerPropertySettings() { return new fx_models_1.Guid("f0ff3e9d-530c-4040-a5f0-76545f5bc120"); }
|
|
564
|
+
static get PeopleRollupOwnerPropertyDefaultValueInput() { return new fx_models_1.Guid("fd90c46f-f9b8-419e-9bb8-cd3e8395570a"); }
|
|
565
|
+
static get PeopleRollupUserTypeFilterEngineRenderer() { return new fx_models_1.Guid("8d596096-ff19-4475-8bf3-8af898997f68"); }
|
|
566
|
+
static get PeopleRollupFilterEngineSelectionsAreaUserTypeProperty() { return new fx_models_1.Guid("526399b7-c793-4cdf-ab2a-ddf0eaa889f1"); }
|
|
567
|
+
static get PeopleRollupUserTypePropertySettings() { return new fx_models_1.Guid("3e501989-5533-4417-b8c7-73cae126144a"); }
|
|
568
|
+
static get PeopleRollupUserTypePropertyDefaultValueInput() { return new fx_models_1.Guid("b0c2ef27-7a32-4937-9f51-9704b4555e0a"); }
|
|
538
569
|
}
|
|
539
570
|
exports.WebComponentManifests = WebComponentManifests;
|
|
540
571
|
class WebComponentElements {
|
|
@@ -34,12 +34,12 @@ export interface SharePointSearchResultItem extends SearchResultItem {
|
|
|
34
34
|
modifiedById: string;
|
|
35
35
|
editorOWSUSER: string;
|
|
36
36
|
webTemplate: string;
|
|
37
|
-
customPropertiesResult: {
|
|
38
|
-
[key: string]: string;
|
|
39
|
-
};
|
|
40
37
|
title: string;
|
|
41
38
|
path: string;
|
|
42
39
|
serverRedirectedUrl?: string;
|
|
40
|
+
customPropertiesResult: {
|
|
41
|
+
[key: string]: string;
|
|
42
|
+
};
|
|
43
43
|
}
|
|
44
44
|
export interface MicrosoftSearchResultItem extends SearchResultItem {
|
|
45
45
|
title: string;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { IDataSourcePropertySelection } from "@omnia/fx/ux";
|
|
2
|
+
export interface AnalyticsDimensionMapping {
|
|
3
|
+
dimensionId: number;
|
|
4
|
+
mappedProperty: IDataSourcePropertySelection;
|
|
5
|
+
scope: AnalyticsDimensionScopes;
|
|
6
|
+
}
|
|
7
|
+
export interface AnalyticsDimension {
|
|
8
|
+
name: string;
|
|
9
|
+
id: number;
|
|
10
|
+
}
|
|
11
|
+
export interface AnalyticsDimensions {
|
|
12
|
+
visit: Array<AnalyticsDimension>;
|
|
13
|
+
action: Array<AnalyticsDimension>;
|
|
14
|
+
}
|
|
15
|
+
export interface AnalyticsScopeInfo {
|
|
16
|
+
scope: AnalyticsDimensionScopes;
|
|
17
|
+
numSlotsAvailable: number;
|
|
18
|
+
numSlotsUsed: number;
|
|
19
|
+
numSlotsLeft: number;
|
|
20
|
+
}
|
|
21
|
+
export declare enum AnalyticsDimensionScopes {
|
|
22
|
+
visit = 0,
|
|
23
|
+
action = 1
|
|
24
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AnalyticsDimensionScopes = void 0;
|
|
4
|
+
var AnalyticsDimensionScopes;
|
|
5
|
+
(function (AnalyticsDimensionScopes) {
|
|
6
|
+
AnalyticsDimensionScopes[AnalyticsDimensionScopes["visit"] = 0] = "visit";
|
|
7
|
+
AnalyticsDimensionScopes[AnalyticsDimensionScopes["action"] = 1] = "action";
|
|
8
|
+
})(AnalyticsDimensionScopes = exports.AnalyticsDimensionScopes || (exports.AnalyticsDimensionScopes = {}));
|
package/internal-do-not-import-from-here/models/analytics/businessProfileAnalyticsSettings.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BusinessProfileProperty } from "@omnia/fx-models";
|
|
2
|
+
import { AnalyticsDimensionMapping } from "./analyticsdimensionmappings";
|
|
3
|
+
export declare class BusinessProfileAnalyticsSettings extends BusinessProfileProperty {
|
|
4
|
+
enabled: boolean;
|
|
5
|
+
idSite: number;
|
|
6
|
+
mappings: AnalyticsDimensionMapping[];
|
|
7
|
+
constructor();
|
|
8
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BusinessProfileAnalyticsSettings = void 0;
|
|
4
|
+
const fx_models_1 = require("@omnia/fx-models");
|
|
5
|
+
const ManifestIds_1 = require("../ManifestIds");
|
|
6
|
+
class BusinessProfileAnalyticsSettings extends fx_models_1.BusinessProfileProperty {
|
|
7
|
+
constructor() {
|
|
8
|
+
super(ManifestIds_1.ServiceDefinition.Id, "bpanalyticssettings");
|
|
9
|
+
this.enabled = false;
|
|
10
|
+
this.idSite = -1;
|
|
11
|
+
this.mappings = [];
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
exports.BusinessProfileAnalyticsSettings = BusinessProfileAnalyticsSettings;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
export * from "./
|
|
2
|
-
export * from "./
|
|
3
|
-
export * from "./
|
|
4
|
-
export * from "./
|
|
1
|
+
export * from "./analyticsdimensionmappings";
|
|
2
|
+
export * from "./analyticssettings";
|
|
3
|
+
export * from "./widgetmetadata";
|
|
4
|
+
export * from "./analyticsfiltersettings";
|
|
5
|
+
export * from "./businessProfileAnalyticsSettings";
|
|
6
|
+
export * from "./matomosite";
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./
|
|
5
|
-
tslib_1.__exportStar(require("./
|
|
6
|
-
tslib_1.__exportStar(require("./
|
|
7
|
-
tslib_1.__exportStar(require("./
|
|
4
|
+
tslib_1.__exportStar(require("./analyticsdimensionmappings"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./analyticssettings"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./widgetmetadata"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./analyticsfiltersettings"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./businessProfileAnalyticsSettings"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./matomosite"), exports);
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export interface WidgetCategoryInfo {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
order: number;
|
|
5
|
+
widgets: WidgetInfo[];
|
|
6
|
+
}
|
|
7
|
+
export interface WidgetInfo {
|
|
8
|
+
name: string;
|
|
9
|
+
module: string;
|
|
10
|
+
action: string;
|
|
11
|
+
order: string;
|
|
12
|
+
parameters: {
|
|
13
|
+
string: string;
|
|
14
|
+
};
|
|
15
|
+
uniqueId: string;
|
|
16
|
+
isWide: boolean;
|
|
17
|
+
viewDataTable: string;
|
|
18
|
+
isReport: boolean;
|
|
19
|
+
}
|
package/internal-do-not-import-from-here/models/apps/TeamCollaborationAppTemplateProperties.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { AppEnums } from "./Enums";
|
|
2
|
-
import { AppTemplateProperties, GuidValue } from "@omnia/fx-models";
|
|
2
|
+
import { AppTemplateProperties, GuidValue, Identity } from "@omnia/fx-models";
|
|
3
3
|
import { MicrosoftTeamCreationInformation } from ".";
|
|
4
4
|
export interface PermissionIdentities {
|
|
5
|
-
defaultAdministrator?:
|
|
6
|
-
secondAdministrator?:
|
|
7
|
-
visitors?:
|
|
5
|
+
defaultAdministrator?: Identity[];
|
|
6
|
+
secondAdministrator?: Identity[];
|
|
7
|
+
visitors?: Identity[];
|
|
8
8
|
}
|
|
9
9
|
export interface InformationProtectionLabel {
|
|
10
10
|
id: GuidValue;
|
|
@@ -67,6 +67,5 @@ export * from "./searchstatistics";
|
|
|
67
67
|
export * from "./searchtoken";
|
|
68
68
|
export * from "./texttranslator";
|
|
69
69
|
export * from "./qrcode";
|
|
70
|
-
export * from "./statuscodelayout";
|
|
71
|
-
export * from "./analytics";
|
|
72
70
|
export * from "./DallESettingsPrompts";
|
|
71
|
+
export * from "./analytics";
|
|
@@ -71,6 +71,5 @@ tslib_1.__exportStar(require("./searchstatistics"), exports);
|
|
|
71
71
|
tslib_1.__exportStar(require("./searchtoken"), exports);
|
|
72
72
|
tslib_1.__exportStar(require("./texttranslator"), exports);
|
|
73
73
|
tslib_1.__exportStar(require("./qrcode"), exports);
|
|
74
|
-
tslib_1.__exportStar(require("./statuscodelayout"), exports);
|
|
75
|
-
tslib_1.__exportStar(require("./analytics"), exports);
|
|
76
74
|
tslib_1.__exportStar(require("./DallESettingsPrompts"), exports);
|
|
75
|
+
tslib_1.__exportStar(require("./analytics"), exports);
|
|
@@ -42,6 +42,7 @@ export declare const AnnouncementJourneyStyle: {
|
|
|
42
42
|
imageTag?: types.NestedCSSProperties;
|
|
43
43
|
editingTrStyle?: types.NestedCSSProperties;
|
|
44
44
|
inlineIconsStyle?: types.NestedCSSProperties;
|
|
45
|
+
identityRenderStyle?: types.NestedCSSProperties;
|
|
45
46
|
};
|
|
46
47
|
export declare const AnnouncementCommentLikeStyle: {
|
|
47
48
|
body?: types.NestedCSSProperties;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SpacingSettings, GuidValue, RollupFilter,
|
|
1
|
+
import { SpacingSettings, GuidValue, RollupFilter, RollupSetting, PersonPropFilterValue, BooleanPropFilterValue, TextPropFilterValue, TaxonomyPropFilterValue, TexSearchestPropFilterValue, MultilingualString, MediaPickerImage, FilterEngineSettings, RollupMetricSettings, DatePeriodPropFilterValue } from "@omnia/fx-models";
|
|
2
2
|
import { TeamCollaborationRollupScopeTypes } from ".";
|
|
3
3
|
import { AppEnums } from "../apps";
|
|
4
4
|
export declare const TeamCollaborationConstants: {
|
|
@@ -55,10 +55,7 @@ export interface TeamCollaborationRollupViewSettings {
|
|
|
55
55
|
* */
|
|
56
56
|
export interface UIFilter extends RollupFilter {
|
|
57
57
|
}
|
|
58
|
-
export interface UIDatePeriodsFilterValue extends
|
|
59
|
-
value: RollupEnums.DatePeriods;
|
|
60
|
-
fromDateStr?: string;
|
|
61
|
-
toDateStr?: string;
|
|
58
|
+
export interface UIDatePeriodsFilterValue extends DatePeriodPropFilterValue {
|
|
62
59
|
}
|
|
63
60
|
export interface UIBooleanPropFilterValue extends BooleanPropFilterValue {
|
|
64
61
|
}
|
|
@@ -86,12 +83,13 @@ export interface TeamCollaborationRollupQuery extends RollupSetting {
|
|
|
86
83
|
currentBusinessProfile?: boolean;
|
|
87
84
|
trimByRoleId?: GuidValue;
|
|
88
85
|
searchProperties?: Array<string>;
|
|
86
|
+
showMetric?: boolean;
|
|
89
87
|
}
|
|
90
88
|
export declare enum TeamCollaborationRollupLinkBehavior {
|
|
91
89
|
OpenTeamwork = 0,
|
|
92
90
|
OpenLayout = 1
|
|
93
91
|
}
|
|
94
|
-
export interface TeamCollaborationRollupBlockSettings extends TeamCollaborationRollupQuery {
|
|
92
|
+
export interface TeamCollaborationRollupBlockSettings extends TeamCollaborationRollupQuery, RollupMetricSettings {
|
|
95
93
|
selectedViewId: string;
|
|
96
94
|
viewSettings: TeamCollaborationRollupViewSettings;
|
|
97
95
|
title: MultilingualString;
|
|
@@ -17,6 +17,7 @@ export declare const TeamCollaborationRollupBlockStyles: {
|
|
|
17
17
|
left?: boolean;
|
|
18
18
|
bottom?: boolean;
|
|
19
19
|
}) => types.NestedCSSProperties;
|
|
20
|
+
metricDetailsDialog?: (height: number) => types.NestedCSSProperties;
|
|
20
21
|
};
|
|
21
22
|
export declare const TeamCollaborationRollupBlockListViewStyles: {
|
|
22
23
|
tableWrapper?: types.NestedCSSProperties;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OmniaContext } from "@omnia/fx";
|
|
2
|
+
import { MultilingualStore, UserTypeStore } from "@omnia/fx/stores";
|
|
3
|
+
import { DataSourcePropertiesService } from "@omnia/fx/services";
|
|
4
|
+
import { BusinessProfileAnalyticsSettings } from "../models/analytics";
|
|
5
|
+
export declare class AnalyticsService {
|
|
6
|
+
userTypeStore: UserTypeStore;
|
|
7
|
+
dataSourcePropertiesService: DataSourcePropertiesService;
|
|
8
|
+
multilingualStore: MultilingualStore;
|
|
9
|
+
omniaContext: OmniaContext;
|
|
10
|
+
readonly dsSourcesAllowed: string[];
|
|
11
|
+
tracker: any;
|
|
12
|
+
settings: BusinessProfileAnalyticsSettings;
|
|
13
|
+
constructor();
|
|
14
|
+
registerPageVisit(pageId?: number, resetDimensions?: boolean): Promise<void>;
|
|
15
|
+
registerAction(category: string, action: string, name: string, value?: number): Promise<void>;
|
|
16
|
+
private shouldCollect;
|
|
17
|
+
private getDataSources;
|
|
18
|
+
private getActiveProperties;
|
|
19
|
+
private getPropertyValueAndConverterFromSelection;
|
|
20
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { GuidValue, Identity } from "@omnia/fx/models";
|
|
2
|
+
import { AnalyticsDimensionMapping, AnalyticsDimensionScopes, AnalyticsDimensions, AnalyticsScopeInfo, AnalyticsSettings, AnalyticsToken, WidgetCategoryInfo, MatomoSite } from "../models/analytics";
|
|
3
|
+
export declare class AnalyticsStoreService {
|
|
4
|
+
private httpClient;
|
|
5
|
+
constructor();
|
|
6
|
+
getSettings: (businessProfileId?: GuidValue) => Promise<AnalyticsSettings>;
|
|
7
|
+
getToken: (businessProfileId?: GuidValue) => Promise<AnalyticsToken>;
|
|
8
|
+
getDimensions: (businessProfileId?: GuidValue) => Promise<AnalyticsDimensions>;
|
|
9
|
+
getScopesInfo: (businessProfileId?: GuidValue) => Promise<AnalyticsScopeInfo[]>;
|
|
10
|
+
getWidgetInformation: () => Promise<WidgetCategoryInfo[]>;
|
|
11
|
+
addDimension: (name: string, scope: AnalyticsDimensionScopes) => Promise<number>;
|
|
12
|
+
enableAnalytics: () => Promise<boolean>;
|
|
13
|
+
disableAnalytics: () => Promise<boolean>;
|
|
14
|
+
setBusinessProfileReaders: (roleId: GuidValue, identities: Identity[]) => Promise<void>;
|
|
15
|
+
setTenantAdmins: (roleId: GuidValue, identities: Identity[]) => Promise<void>;
|
|
16
|
+
setMappings: (mappings: AnalyticsDimensionMapping[]) => Promise<void>;
|
|
17
|
+
ensureSitesWithAtLeastViewAccess: () => Promise<MatomoSite[]>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Store } from "@omnia/fx/stores";
|
|
2
|
+
import { AnalyticsFilterSettings } from "../models";
|
|
3
|
+
export declare class AnalyticsFilterStore extends Store {
|
|
4
|
+
private _filters;
|
|
5
|
+
onActivated(): void;
|
|
6
|
+
onDisposing(): void;
|
|
7
|
+
getters: {
|
|
8
|
+
pageFilters: (name: string) => AnalyticsFilterSettings;
|
|
9
|
+
};
|
|
10
|
+
actions: any;
|
|
11
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Store } from "@omnia/fx/stores";
|
|
2
|
+
import { OmniaContext } from "@omnia/fx";
|
|
3
|
+
import { GuidValue } from "@omnia/fx-models";
|
|
4
|
+
import { AnalyticsDimensions, AnalyticsScopeInfo, AnalyticsSettings, MatomoSite } from "../models/analytics";
|
|
5
|
+
import { AnalyticsStoreService } from "../services/AnalyticsStoreService";
|
|
6
|
+
import { WidgetCategoryInfo } from "../models";
|
|
7
|
+
export declare class AnalyticsStore extends Store {
|
|
8
|
+
analyticsStoreService: AnalyticsStoreService;
|
|
9
|
+
omniaCtx: OmniaContext;
|
|
10
|
+
/**
|
|
11
|
+
* State
|
|
12
|
+
*/
|
|
13
|
+
private dimensions;
|
|
14
|
+
private ensuredLoadDimensionsPromise;
|
|
15
|
+
private settings;
|
|
16
|
+
private ensuredLoadSettingsPromise;
|
|
17
|
+
private tokens;
|
|
18
|
+
private ensuredLoadTokenPromise;
|
|
19
|
+
private scopeInfos;
|
|
20
|
+
private ensuredLoadScopeInfosPromise;
|
|
21
|
+
private widgetCategoryInfo;
|
|
22
|
+
private ensuredLoadWidgetPromise;
|
|
23
|
+
private analyticsUrl;
|
|
24
|
+
private ensuredLoadSitesWithAtLeastViewAccessPromise;
|
|
25
|
+
private sitesWithAtLeastViewAccess;
|
|
26
|
+
onActivated(): void;
|
|
27
|
+
onDisposing(): void;
|
|
28
|
+
/**
|
|
29
|
+
* Implementation of getters
|
|
30
|
+
*/
|
|
31
|
+
getters: {
|
|
32
|
+
dimensions: (businessProfileId?: GuidValue) => AnalyticsDimensions;
|
|
33
|
+
settings: (businessProfileId?: GuidValue) => AnalyticsSettings;
|
|
34
|
+
scopeInfos: (businessProfileId?: GuidValue) => AnalyticsScopeInfo[];
|
|
35
|
+
widgetCategoryInfo: () => WidgetCategoryInfo[];
|
|
36
|
+
tokens: (businessProfileId?: GuidValue) => string;
|
|
37
|
+
analyticsUrl: () => string;
|
|
38
|
+
sitesWithAtLeastViewAccess: () => MatomoSite[];
|
|
39
|
+
};
|
|
40
|
+
actions: any;
|
|
41
|
+
}
|
package/package.json
CHANGED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { SettingsService } from "@omnia/fx/services";
|
|
2
|
-
import { UserTypeStore } from "@omnia/fx/stores";
|
|
3
|
-
import { AnalyticsDataSourcePropertiesService } from "internal/analytics";
|
|
4
|
-
import { AnalyticsDataSourceProperty } from "../models/analytics/AnalyticsDataSourceProperty";
|
|
5
|
-
export declare class AnalyticsService {
|
|
6
|
-
userTypeStore: UserTypeStore;
|
|
7
|
-
dataSourcePropertiesService: AnalyticsDataSourcePropertiesService;
|
|
8
|
-
settingsService: SettingsService<AnalyticsDimensionMappings>;
|
|
9
|
-
dimensionMappings: AnalyticsDimensionMappings;
|
|
10
|
-
constructor();
|
|
11
|
-
registerPageVisit(resetDimensions?: boolean): Promise<void>;
|
|
12
|
-
registerAction(category: string, action: string, name: string, value?: number): Promise<void>;
|
|
13
|
-
}
|
|
14
|
-
interface AnalyticsDimensionMappings {
|
|
15
|
-
mappings: AnalyticsDimensionMapping[];
|
|
16
|
-
}
|
|
17
|
-
interface AnalyticsDimensionMapping {
|
|
18
|
-
dimensionId: number;
|
|
19
|
-
dataSourceProperty: AnalyticsDataSourceProperty;
|
|
20
|
-
scope: AnalyticsDimensionScopes;
|
|
21
|
-
}
|
|
22
|
-
export declare enum AnalyticsDimensionScopes {
|
|
23
|
-
visit = 0,
|
|
24
|
-
action = 1
|
|
25
|
-
}
|
|
26
|
-
export {};
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { IExtendApiManifestWithConfiguration } from "@omnia/fx-models";
|
|
2
|
-
import { AnalyticsPropertyDataSourceId, IAnalyticsPropertyDataSourceRegistrationApi } from "../models/analytics/AnalyticsDataSource";
|
|
3
|
-
import { AnalyticsDataSourcePropertyDefintionHandlerId } from "../models/analytics/AnalyticsDataSourcePropertyDefinitionHandler";
|
|
4
|
-
declare module "../models/WorkplaceApi" {
|
|
5
|
-
interface IWorkplaceApi {
|
|
6
|
-
analyticsProperties: {
|
|
7
|
-
dataSources: {
|
|
8
|
-
registrations: Promise<IAnalyticsPropertyDataSourceRegistrationApi>;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
}
|
|
12
|
-
interface IWorkplaceExtendApiManifest {
|
|
13
|
-
analyticsProperties: {
|
|
14
|
-
dataSources: {
|
|
15
|
-
/**
|
|
16
|
-
* Register the manifest/bundle that contains the propertydatasource
|
|
17
|
-
* */
|
|
18
|
-
registrations: IExtendApiManifestWithConfiguration<AnalyticsPropertyDataSourceId>;
|
|
19
|
-
/**
|
|
20
|
-
* Register any external plugin/dataSourcePropertyDefinitionHandler for a property data source
|
|
21
|
-
* */
|
|
22
|
-
pluginRegistration: IExtendApiManifestWithConfiguration<{
|
|
23
|
-
dataSourceId: AnalyticsPropertyDataSourceId;
|
|
24
|
-
dataSourcePropertyDefinitionHandlerId: AnalyticsDataSourcePropertyDefintionHandlerId;
|
|
25
|
-
}>;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
}
|
|
29
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { GuidValue, PropertyDefinition, PropertyDefinitionId } from "@omnia/fx-models";
|
|
2
|
-
import { AnalyticsPropertyDataSourceBase } from "./AnalyticsDataSourcePropertyProvider";
|
|
3
|
-
import { AnalyticsDataSourcePropertyDefinitionHandler } from "./AnalyticsDataSourcePropertyDefinitionHandler";
|
|
4
|
-
import { AnalyticsDataSourceProperty } from "./AnalyticsDataSourceProperty";
|
|
5
|
-
export type AnalyticsPropertyDataSourceId = GuidValue;
|
|
6
|
-
export interface IAnalyticsPropertyDataSourceRegistrationApi extends IRegisteredAnalyticsPropertyDataSourceApi {
|
|
7
|
-
/**
|
|
8
|
-
* Register a property data source
|
|
9
|
-
* */
|
|
10
|
-
registerAnalyticsDataSource<TDataSourceProperty extends AnalyticsDataSourceProperty>(registration: new () => AnalyticsPropertyDataSourceBase<TDataSourceProperty>): void;
|
|
11
|
-
/**
|
|
12
|
-
* Register a property handler for the specific datasource, such a handler looks at the TDataSourceProperty and checks if this should be converted to the property defintion this handler is created/registered to handle
|
|
13
|
-
* */
|
|
14
|
-
registerAnalyticsDataSourcePropertyDefintionHandler<TDataSourceProperty extends AnalyticsDataSourceProperty, TPropertyDefinition extends PropertyDefinition<any, any, any>>(dataSource: new () => AnalyticsPropertyDataSourceBase<TDataSourceProperty>, propertyDefinitionHandlerCtor: new () => AnalyticsDataSourcePropertyDefinitionHandler<TPropertyDefinition, TDataSourceProperty, any>): any;
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* We work on registered datasources without any care about implementing type, i.e. none generic for getting
|
|
18
|
-
* */
|
|
19
|
-
export interface IRegisteredAnalyticsPropertyDataSourceApi {
|
|
20
|
-
getDataSources(): Promise<(new () => AnalyticsPropertyDataSourceBase<AnalyticsDataSourceProperty>)[]>;
|
|
21
|
-
getDataSource(dataSourceId: AnalyticsPropertyDataSourceId): Promise<new () => AnalyticsPropertyDataSourceBase<AnalyticsDataSourceProperty>>;
|
|
22
|
-
getDataSourceDefinitionHandlers(dataSourceId: AnalyticsPropertyDataSourceId): Promise<Array<{
|
|
23
|
-
propertyDefintionId: PropertyDefinitionId;
|
|
24
|
-
handlerCtor: new () => AnalyticsDataSourcePropertyDefinitionHandler<PropertyDefinition<any, any, any>, AnalyticsDataSourceProperty, any>;
|
|
25
|
-
}>>;
|
|
26
|
-
}
|
|
27
|
-
export interface IAnalyticsPropertyDataSourceProvider {
|
|
28
|
-
}
|
|
29
|
-
export declare class AnalyticsPropertyDataSourceProviderRegistration {
|
|
30
|
-
typeId: AnalyticsPropertyDataSourceId;
|
|
31
|
-
provider: new () => IAnalyticsPropertyDataSourceProvider;
|
|
32
|
-
constructor(typeId: AnalyticsPropertyDataSourceId, provider: new () => IAnalyticsPropertyDataSourceProvider);
|
|
33
|
-
}
|
|
34
|
-
export interface IAnalyticsPropertyDataSourceProviderApi {
|
|
35
|
-
register(registration: AnalyticsPropertyDataSourceProviderRegistration): void;
|
|
36
|
-
getProvider(typeId: AnalyticsPropertyDataSourceId): Promise<new () => IAnalyticsPropertyDataSourceProvider>;
|
|
37
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AnalyticsPropertyDataSourceProviderRegistration = void 0;
|
|
4
|
-
class AnalyticsPropertyDataSourceProviderRegistration {
|
|
5
|
-
constructor(typeId, provider) {
|
|
6
|
-
this.typeId = typeId;
|
|
7
|
-
this.provider = provider;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
exports.AnalyticsPropertyDataSourceProviderRegistration = AnalyticsPropertyDataSourceProviderRegistration;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { GuidValue, MultilingualString } from "@omnia/fx-models";
|
|
2
|
-
import { AnalyticsPropertyDataSourceId } from "./AnalyticsDataSource";
|
|
3
|
-
export declare abstract class AnalyticsDataSourceProperty {
|
|
4
|
-
readonly dataSourceId: AnalyticsPropertyDataSourceId;
|
|
5
|
-
abstract isEqual: (property: AnalyticsDataSourceProperty) => boolean;
|
|
6
|
-
constructor(dataSourceId: AnalyticsPropertyDataSourceId);
|
|
7
|
-
}
|
|
8
|
-
export declare class AnalyticsDataSourcePropertyCategory {
|
|
9
|
-
id: GuidValue;
|
|
10
|
-
title: MultilingualString;
|
|
11
|
-
order: number;
|
|
12
|
-
builtIn: boolean;
|
|
13
|
-
constructor(id: GuidValue, title: MultilingualString, order: number, builtIn: boolean);
|
|
14
|
-
}
|
|
15
|
-
export declare class AnalyticsDataSourcePropertyDisplayInformation {
|
|
16
|
-
title: string;
|
|
17
|
-
category?: AnalyticsDataSourcePropertyCategory;
|
|
18
|
-
constructor(title: string, category?: AnalyticsDataSourcePropertyCategory);
|
|
19
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AnalyticsDataSourcePropertyDisplayInformation = exports.AnalyticsDataSourcePropertyCategory = exports.AnalyticsDataSourceProperty = void 0;
|
|
4
|
-
class AnalyticsDataSourceProperty {
|
|
5
|
-
constructor(dataSourceId) {
|
|
6
|
-
this.dataSourceId = dataSourceId;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
exports.AnalyticsDataSourceProperty = AnalyticsDataSourceProperty;
|
|
10
|
-
class AnalyticsDataSourcePropertyCategory {
|
|
11
|
-
constructor(id, title, order, builtIn) {
|
|
12
|
-
this.id = id;
|
|
13
|
-
this.title = title;
|
|
14
|
-
this.order = order;
|
|
15
|
-
this.builtIn = builtIn;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
exports.AnalyticsDataSourcePropertyCategory = AnalyticsDataSourcePropertyCategory;
|
|
19
|
-
class AnalyticsDataSourcePropertyDisplayInformation {
|
|
20
|
-
constructor(title, category) {
|
|
21
|
-
this.title = title;
|
|
22
|
-
this.category = category;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
exports.AnalyticsDataSourcePropertyDisplayInformation = AnalyticsDataSourcePropertyDisplayInformation;
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { GuidValue, PropertyConfiguration, PropertyDefinition, PropertyValueType, PropertyDefinitionId } from "@omnia/fx-models";
|
|
2
|
-
import { AnalyticsDataSourceProperty } from "./AnalyticsDataSourceProperty";
|
|
3
|
-
export type AnalyticsDataSourcePropertyDefintionHandlerId = GuidValue;
|
|
4
|
-
/**
|
|
5
|
-
*
|
|
6
|
-
* A plugin module for handling the different property definitions/values that can be created from the data source properties
|
|
7
|
-
*
|
|
8
|
-
* */
|
|
9
|
-
export declare abstract class AnalyticsDataSourcePropertyDefinitionHandler<TPropertyDefinition extends PropertyDefinition<any, any, any>, TDataSourceProperty extends AnalyticsDataSourceProperty, DataSourceReadDataType> {
|
|
10
|
-
/**
|
|
11
|
-
* A unique constant id for this converter
|
|
12
|
-
* */
|
|
13
|
-
abstract readonly Id: AnalyticsDataSourcePropertyDefintionHandlerId;
|
|
14
|
-
/**
|
|
15
|
-
* Handler title, will be used if more than one handler exists for any given propertyDefinition
|
|
16
|
-
* E.g "Ticks to DateTimeProperty", and one other handler nemed "String to DateTimeProperty", i.e "TDataSourceData To TPropertyDefinition" or so.
|
|
17
|
-
* */
|
|
18
|
-
abstract readonly title: string;
|
|
19
|
-
/**
|
|
20
|
-
* The property defintion this handler is intended to handle
|
|
21
|
-
* */
|
|
22
|
-
readonly propertyDefintionId: PropertyDefinitionId;
|
|
23
|
-
/**
|
|
24
|
-
* The ctor for the definition which this handler is defined for, only used to link with definitionId in a typesafe way
|
|
25
|
-
* */
|
|
26
|
-
constructor(propertyDefinitionCtor: new () => TPropertyDefinition);
|
|
27
|
-
propertyConfiguration?: PropertyConfiguration<TPropertyDefinition>;
|
|
28
|
-
/**
|
|
29
|
-
* This method should convert from the data source value to PropertyValue matching the TPropertyDefinition
|
|
30
|
-
* */
|
|
31
|
-
abstract propertyValueCreator(dataSourceProperty: TDataSourceProperty, valueFromSource: DataSourceReadDataType, propertyconfiguration?: PropertyConfiguration<PropertyDefinition<any, any, any>>): Promise<PropertyValueType<TPropertyDefinition>>;
|
|
32
|
-
/**
|
|
33
|
-
* This method should convert from PropertyValue matching the TPropertyDefinition to the string
|
|
34
|
-
* */
|
|
35
|
-
abstract propertyToStringCreator(dataSourceProperty: TDataSourceProperty, propertyValue: PropertyValueType<TPropertyDefinition>): Promise<string>;
|
|
36
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AnalyticsDataSourcePropertyDefinitionHandler = void 0;
|
|
4
|
-
/**
|
|
5
|
-
*
|
|
6
|
-
* A plugin module for handling the different property definitions/values that can be created from the data source properties
|
|
7
|
-
*
|
|
8
|
-
* */
|
|
9
|
-
class AnalyticsDataSourcePropertyDefinitionHandler {
|
|
10
|
-
/**
|
|
11
|
-
* The ctor for the definition which this handler is defined for, only used to link with definitionId in a typesafe way
|
|
12
|
-
* */
|
|
13
|
-
constructor(propertyDefinitionCtor) {
|
|
14
|
-
this.propertyConfiguration = null;
|
|
15
|
-
this.propertyDefintionId = new propertyDefinitionCtor().id;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
exports.AnalyticsDataSourcePropertyDefinitionHandler = AnalyticsDataSourcePropertyDefinitionHandler;
|
package/internal-do-not-import-from-here/models/analytics/AnalyticsDataSourcePropertyProvider.d.ts
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { PropertyConfiguration, PropertyDefinitionId, PropertyDefinition } from "@omnia/fx-models";
|
|
2
|
-
import { AnalyticsPropertyDataSourceId } from "./AnalyticsDataSource";
|
|
3
|
-
import { AnalyticsDataSourceProperty, AnalyticsDataSourcePropertyDisplayInformation } from "./AnalyticsDataSourceProperty";
|
|
4
|
-
export interface IAnalyticsDataSourcePropertyCreator {
|
|
5
|
-
createPropertyFromString(propertyName: string): Promise<AnalyticsDataSourceProperty>;
|
|
6
|
-
}
|
|
7
|
-
export declare abstract class AnalyticsPropertyDataSourceBase<TDataSourceProperty extends AnalyticsDataSourceProperty> {
|
|
8
|
-
abstract readonly title: string;
|
|
9
|
-
abstract readonly id: AnalyticsPropertyDataSourceId;
|
|
10
|
-
/**
|
|
11
|
-
* Get the current display information for a data source property, this is resolved from a data source property, as this information migth relay on system/source data that change over time
|
|
12
|
-
* */
|
|
13
|
-
abstract getPropertyDisplayInformation(dataSourceProperties: Array<TDataSourceProperty>): Promise<Array<{
|
|
14
|
-
property: TDataSourceProperty;
|
|
15
|
-
displayInformation: AnalyticsDataSourcePropertyDisplayInformation;
|
|
16
|
-
}>>;
|
|
17
|
-
/**
|
|
18
|
-
* Get all the properties supported by this data source, this is the @type {TDataSourceProperty} is extended to represent the information within a data source to identify a data source property
|
|
19
|
-
* */
|
|
20
|
-
abstract getProperties(): Promise<Array<TDataSourceProperty>>;
|
|
21
|
-
/**
|
|
22
|
-
* Returns the property configuration that should be used when representing this property, if the propertyconfiguration is not know by the source return null
|
|
23
|
-
* */
|
|
24
|
-
abstract getPropertyConfiguration(property: TDataSourceProperty): Promise<PropertyConfiguration<PropertyDefinition<any, any, any>>>;
|
|
25
|
-
/**
|
|
26
|
-
* Returns the property definition id that should be used for representing this property, if the propertydefinition is not know by the source return undefined, selection among source property creators can be made explicitly
|
|
27
|
-
* */
|
|
28
|
-
abstract getPropertyDefinition(property: TDataSourceProperty): Promise<PropertyDefinitionId>;
|
|
29
|
-
/**
|
|
30
|
-
* Get the value for datasource properties, the returned data type TDataSourceData must have a matching DataSourcePropertyDefinitionHandler<any,any,TDataSourceData>
|
|
31
|
-
* I.e. so a handler exists that can create property values from the source value type
|
|
32
|
-
* */
|
|
33
|
-
abstract getPropertyValues(properties: Array<TDataSourceProperty>): Promise<Array<{
|
|
34
|
-
valueFromSource: any;
|
|
35
|
-
dataSourceProperty: TDataSourceProperty;
|
|
36
|
-
}>>;
|
|
37
|
-
}
|
package/internal-do-not-import-from-here/models/statuscodelayout/StatusCodeDisplaySettings.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { IEditorItem, Layout } from "@omnia/fx-models";
|
|
2
|
-
export interface IStatusCodeLayoutItem extends IEditorItem {
|
|
3
|
-
layout: any;
|
|
4
|
-
onSave<ItemType>(): Promise<ItemType>;
|
|
5
|
-
onEdit<ItemType>(): Promise<ItemType>;
|
|
6
|
-
onCancel<ItemType>(): Promise<ItemType>;
|
|
7
|
-
}
|
|
8
|
-
export interface TenantStatusCodeLayoutSettings {
|
|
9
|
-
unauthorizedLayout: Layout;
|
|
10
|
-
notFoundLayout: Layout;
|
|
11
|
-
}
|
|
12
|
-
export interface BusinessProfileStatusCodeLayoutSettings extends TenantStatusCodeLayoutSettings {
|
|
13
|
-
inherit: boolean;
|
|
14
|
-
}
|
package/internal-do-not-import-from-here/models/statuscodelayout/StatusCodeLayoutProvider.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export interface IStatusCodeLayoutProvider {
|
|
2
|
-
httpcodelayout: string;
|
|
3
|
-
}
|
|
4
|
-
export declare const StatusCodeProvider: IStatusCodeLayoutProvider;
|
|
5
|
-
declare module "@omnia/fx-models/Layout" {
|
|
6
|
-
interface ILayoutDependencyProvider extends IStatusCodeLayoutProvider {
|
|
7
|
-
}
|
|
8
|
-
}
|