@mparticle/aquarium 1.40.0-poc-unified-nav.5 → 1.40.0-poc-unified-nav.6
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.
|
@@ -57,12 +57,15 @@ export declare const Paths: {
|
|
|
57
57
|
readonly DataPlatform: {
|
|
58
58
|
readonly Trends: "data-platform/trends";
|
|
59
59
|
readonly Setup: {
|
|
60
|
+
readonly Root: "data-platform/setup";
|
|
60
61
|
readonly Connections: "data-platform/setup/connections";
|
|
61
62
|
readonly Inputs: {
|
|
63
|
+
readonly Root: "data-platform/setup/inputs";
|
|
62
64
|
readonly Feeds: "data-platform/setup/inputs/feeds";
|
|
63
65
|
readonly Apps: "data-platform/setup/inputs/apps";
|
|
64
66
|
};
|
|
65
67
|
readonly Outputs: {
|
|
68
|
+
readonly Root: "data-platform/setup/outputs";
|
|
66
69
|
readonly Event: "data-platform/setup/outputs/event";
|
|
67
70
|
readonly Audience: "data-platform/setup/outputs/audience";
|
|
68
71
|
readonly CookieSync: "data-platform/setup/outputs/cookiesync";
|
|
@@ -73,6 +76,7 @@ export declare const Paths: {
|
|
|
73
76
|
readonly Crm: "data-platform/setup/outputs/crm";
|
|
74
77
|
};
|
|
75
78
|
readonly Directory: {
|
|
79
|
+
readonly Root: "data-platform/setup/directory";
|
|
76
80
|
readonly Listing: "data-platform/setup/directory/listing";
|
|
77
81
|
};
|
|
78
82
|
readonly WarehouseSync: "data-platform/setup/warehouse-sync";
|
|
@@ -80,9 +84,11 @@ export declare const Paths: {
|
|
|
80
84
|
readonly Livestream: "data-platform/livestream";
|
|
81
85
|
readonly DataCatalog: "data-platform/data-catalog";
|
|
82
86
|
readonly Transformations: {
|
|
87
|
+
readonly Root: "data-platform/transformations";
|
|
83
88
|
readonly Rules: "data-platform/transformations/rules";
|
|
84
89
|
readonly Plans: "data-platform/transformations/plans";
|
|
85
90
|
readonly Filters: {
|
|
91
|
+
readonly Root: "data-platform/transformations/filters";
|
|
86
92
|
readonly Platform: "data-platform/transformations/filters/platform";
|
|
87
93
|
readonly Feed: "data-platform/transformations/filters/feed";
|
|
88
94
|
};
|
|
@@ -91,10 +97,12 @@ export declare const Paths: {
|
|
|
91
97
|
};
|
|
92
98
|
readonly Customer360: {
|
|
93
99
|
readonly Identity: {
|
|
100
|
+
readonly Root: "customer-360/identity";
|
|
94
101
|
readonly GroupIdentities: "customer-360/identity/group-identities";
|
|
95
102
|
};
|
|
96
103
|
readonly UserProfile: "customer-360/user-profile";
|
|
97
104
|
readonly Enrichment: {
|
|
105
|
+
readonly Root: "customer-360/enrichment";
|
|
98
106
|
readonly CalculatedAttributes: "customer-360/enrichment/calculated-attributes";
|
|
99
107
|
readonly PredictiveAttributes: "customer-360/enrichment/predictive-attributes";
|
|
100
108
|
readonly PredictiveAttributesNew: "customer-360/enrichment/predictive-attributes/new";
|
|
@@ -103,6 +111,7 @@ export declare const Paths: {
|
|
|
103
111
|
};
|
|
104
112
|
readonly Segmentation: {
|
|
105
113
|
readonly Audiences: {
|
|
114
|
+
readonly Root: "segmentation/audiences";
|
|
106
115
|
readonly RealTime: "segmentation/audiences/real-time";
|
|
107
116
|
readonly Standard: "segmentation/audiences/standard";
|
|
108
117
|
readonly Shared: "segmentation/audiences/shared";
|
|
@@ -115,6 +124,7 @@ export declare const Paths: {
|
|
|
115
124
|
readonly Oversight: {
|
|
116
125
|
readonly SystemAlerts: "oversight/system-alerts";
|
|
117
126
|
readonly Observability: {
|
|
127
|
+
readonly Root: "oversight/observability";
|
|
118
128
|
readonly List: "oversight/observability/trace/activity";
|
|
119
129
|
readonly Requests: "oversight/observability/trace/configurations";
|
|
120
130
|
};
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
+
import { Suite } from "../Suite";
|
|
2
|
+
export type RouteAuthorization = {
|
|
3
|
+
suite: Suite;
|
|
4
|
+
route: string;
|
|
5
|
+
authorized: boolean;
|
|
6
|
+
};
|
|
1
7
|
export declare class RoutesAuthorizationsService {
|
|
8
|
+
private static routesAuthorizations;
|
|
9
|
+
static init(): void;
|
|
2
10
|
static isRouteAuthorized(route: string): boolean;
|
|
3
11
|
private static routeMatches;
|
|
4
12
|
}
|