@mparticle/aquarium 1.40.0-poc-unified-nav.10 → 1.40.0-poc-unified-nav.11
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.
|
@@ -87,4 +87,4 @@ export { ChartConfig, ChartAxisStyle } from '../constants/ChartConfig';
|
|
|
87
87
|
export { ChartColors } from '../constants/ChartColors';
|
|
88
88
|
export { RoutesAuthorizationsService } from '../shared/services/RoutesAuthorizationsService';
|
|
89
89
|
export { InitializationService } from '../shared/services/InitializationService';
|
|
90
|
-
export { NavigationItemsService } from '../shared/services/NavigationItemsService';
|
|
90
|
+
export { NavigationItemsService, NavigationItemId } from '../shared/services/NavigationItemsService';
|
|
@@ -2,49 +2,48 @@ import { IGlobalNavigationItem } from '../../../../../../../../src/components';
|
|
|
2
2
|
export declare enum NavigationItemId {
|
|
3
3
|
Overview = "overview",
|
|
4
4
|
Oversight = "oversight",
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
5
|
+
Oversight_SystemAlerts = "oversight_systemAlerts",
|
|
6
|
+
Oversight_Observability = "oversight_observability",
|
|
7
|
+
Oversight_Observability_TraceActivity = "oversight_observability_traceActivity",
|
|
8
|
+
Oversight_Observability_TraceConfigurations = "oversight_observability_traceConfigurations",
|
|
9
|
+
Oversight_Privacy = "oversight_privacy",
|
|
10
|
+
Oversight_Privacy_DSRs = "oversight_privacy_dsrs",
|
|
11
|
+
Oversight_Privacy_PrivacySettings = "oversight_privacy_privacySettings",
|
|
12
12
|
Predictions = "predictions",
|
|
13
13
|
Customer360 = "customer360",
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
PredictiveAttributes = "predictiveAttributes",
|
|
14
|
+
Customer360_UserProfiles = "customer360_userProfiles",
|
|
15
|
+
Customer360_GroupIdentity = "customer360_groupIdentity",
|
|
16
|
+
Customer360_Enrichment = "customer360_enrichment",
|
|
17
|
+
Customer360_Enrichment_CalculatedAttributes = "customer360_enrichment_calculatedAttributes",
|
|
18
|
+
Customer360_Enrichment_PredictiveAttributes = "customer360_enrichment_predictiveAttributes",
|
|
20
19
|
DataPlatform = "dataPlatform",
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
20
|
+
DataPlatform_Trends = "dataPlatform_trends",
|
|
21
|
+
DataPlatform_Setup = "dataPlatform_setup",
|
|
22
|
+
DataPlatform_Setup_Connections = "dataPlatform_setup_connections",
|
|
23
|
+
DataPlatform_Setup_Inputs = "dataPlatform_setup_inputs",
|
|
24
|
+
DataPlatform_Setup_Outputs = "dataPlatform_setup_outputs",
|
|
25
|
+
DataPlatform_Setup_Directory = "dataPlatform_setup_directory",
|
|
26
|
+
DataPlatform_LiveStream = "dataPlatform_liveStream",
|
|
27
|
+
DataPlatform_DataCatalog = "dataPlatform_dataCatalog",
|
|
28
|
+
DataPlatform_Transformations = "dataPlatform_transformations",
|
|
29
|
+
DataPlatform_Transformations_Rules = "dataPlatform_transformations_rules",
|
|
30
|
+
DataPlatform_Transformations_Plans = "dataPlatform_transformations_plans",
|
|
31
|
+
DataPlatform_Transformations_Filters = "dataPlatform_transformations_filters",
|
|
32
|
+
DataPlatform_Transformations_Filters_PlatformFilters = "dataPlatform_transformations_filters_platformFilters",
|
|
33
|
+
DataPlatform_Transformations_Filters_FeedFilters = "dataPlatform_transformations_filters_feedFilters",
|
|
34
|
+
DataPlatform_EventForwarding = "dataPlatform_eventForwarding",
|
|
36
35
|
Segmentation = "segmentation",
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
36
|
+
Segmentation_Journeys = "segmentation_journeys",
|
|
37
|
+
Segmentation_Audiences = "segmentation_audiences",
|
|
38
|
+
Segmentation_Audiences_Standard = "segmentation_audiences_standard",
|
|
39
|
+
Segmentation_Audiences_Shared = "segmentation_audiences_shared",
|
|
40
|
+
Segmentation_Audiences_RealTime = "segmentation_audiences_realTime",
|
|
42
41
|
Analytics = "analytics",
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
42
|
+
Analytics_CreateAnalysis = "analytics_createAnalysis",
|
|
43
|
+
Analytics_MyHub = "analytics_myHub",
|
|
44
|
+
Analytics_Saved = "analytics_saved",
|
|
45
|
+
Analytics_Data = "analytics_data",
|
|
46
|
+
Analytics_Favorites = "analytics_favorites"
|
|
48
47
|
}
|
|
49
48
|
export declare class NavigationItemsService {
|
|
50
49
|
static navigationItems: IGlobalNavigationItem[];
|