@mparticle/aquarium 1.48.0 → 1.49.0
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/dist/aquarium.js +3629 -3546
- package/dist/aquarium.umd.cjs +49 -49
- package/dist/src/components/icons/index.d.ts +2 -1
- package/dist/src/shared/Paths.d.ts +9 -0
- package/dist/src/shared/Suite.d.ts +1 -0
- package/dist/src/shared/services/NavigationItemsService.d.ts +6 -0
- package/dist/src/shared/services/RoutesAuthorizationsService.d.ts +1 -1
- package/dist/src/shared/services/routeAuthorizations/data-platform-authorizations.d.ts +2 -2
- package/dist/src/shared/services/routeAuthorizations/data-warehouse-authorizations.d.ts +11 -0
- package/dist/src/types/icons.d.ts +1 -1
- package/package.json +1 -1
|
@@ -111,4 +111,5 @@ import SubmitFeedback from '../../../../../../../../src/assets/svg/mp_act_lt_sub
|
|
|
111
111
|
import Boost from '../../../../../../../../src/assets/svg/mp_info_lt_boost.svg?react';
|
|
112
112
|
import Clone from '../../../../../../../../src/assets/svg/mp_act_lt_clone.svg?react';
|
|
113
113
|
import Reorder from '../../../../../../../../src/assets/svg/mp_act_lt_reorder.svg?react';
|
|
114
|
-
|
|
114
|
+
import GenericIcon from '../../../../../../../../src/assets/svg/mp_info_lt_generic.svg?react';
|
|
115
|
+
export { AbSplit, Account, ActiveIcon, AddIcon, AlicornIcon, RateDownIcon, RateUpIcon, AnalyticsIcon, AnalyticsIconDt, Annotation, C360Icon, C360IconDt, CalculatedAttributeIcon, CatalogIcon, ChartColumnIcon, ChartLineIcon, CheckIcon, CircleNodesIcon, CloudIcon, Cohort, ConnectionsIcon, ConversionIcon, Copy, Dashboard, DatabaseIcon, DataPlatformIcon, DataPlatformIconDt, DateIcon, Delete, DevicesIcon, DirectoryIcon, DragAndDropIcon, DropdownClose, DropdownOpen, DsrIcon, Edit, EmptyIcon, EnrichmentIcon, EventAttributeIcon, EventIcon, FilterIcon, FitToScreen, Flag, FolderClosedIcon, ForwardingIcon, FullScreen, Funnel, GearIcon, GenericIcon, GridIcon, GroupIcon, HeartIcon, HelpIcon, HelpVideoIcon, IdentityIcon, InfoIcon, JourneyAnalysis, JumpToIcon, LightBulbIcon, LinkIcon, LiveStreamIcon, LockIcon, MessageQuestionIcon, MoreActions, MpLogoIcon, NextIcon, NotificationIcon, NotificationSubscribedIcon, NotificationSubscribeIcon, ObservabilityIcon, OpenTabIcon, Organization, OversightIcon, OversightIconDt, OverviewIcon, OverviewIconDt, PaywallIcon, Placeholder, PrecisionIcon, PredictionsIcon, PredictionsIconDt, PremiumIcon, PremiumIconDt, PreviousIcon, Privileges, RefreshFrequency, Reorder, RemoveIcon, ScheduledReport, SearchIcon, SegmentationAnalysis, SegmentationIconDt, ShieldKeyholeIcon, SignoutIcon, SplitIcon, SubmitFeedback, SystemAlertsIcon, TextWidget, TransformationsIcon, UnlockIcon, UploadIcon, UserAttributeIcon, UserProfilesIcon, UsersIcon, WrenchIcon, ZoomIn, ZoomOut, BannerFreemium, StateEmpty, StateError, StateNoResults, Back, Boost, Clone, };
|
|
@@ -95,6 +95,15 @@ export declare const Paths: {
|
|
|
95
95
|
};
|
|
96
96
|
readonly EventForwarding: "/data-platform/event-forwarding";
|
|
97
97
|
};
|
|
98
|
+
readonly DataWarehouse: {
|
|
99
|
+
readonly Root: "/data-warehouse";
|
|
100
|
+
readonly WarehouseIngest: "/data-warehouse/warehouse-ingest";
|
|
101
|
+
readonly Activation: {
|
|
102
|
+
readonly Connections: "/data-warehouse/activation/connections";
|
|
103
|
+
readonly DataModels: "/data-warehouse/activation/data-models";
|
|
104
|
+
};
|
|
105
|
+
readonly WarehouseOutput: "/data-warehouse/warehouse-output";
|
|
106
|
+
};
|
|
98
107
|
readonly Customer360: {
|
|
99
108
|
readonly Identity: {
|
|
100
109
|
readonly Root: "/customer-360/identity";
|
|
@@ -31,6 +31,12 @@ export declare enum NavigationItemId {
|
|
|
31
31
|
DataPlatform_Transformations_Filters_PlatformFilters = "dataPlatform_transformations_filters_platformFilters",
|
|
32
32
|
DataPlatform_Transformations_Filters_FeedFilters = "dataPlatform_transformations_filters_feedFilters",
|
|
33
33
|
DataPlatform_EventForwarding = "dataPlatform_eventForwarding",
|
|
34
|
+
DataWarehouse = "dataWarehouse",
|
|
35
|
+
DataWarehouse_WarehouseIngest = "dataWarehouse_warehouseIngest",
|
|
36
|
+
DataWarehouse_Activation = "dataWarehouse_activation",
|
|
37
|
+
DataWarehouse_Activation_Connections = "dataWarehouse_activation_connections",
|
|
38
|
+
DataWarehouse_Activation_DataModels = "dataWarehouse_activation_dataModels",
|
|
39
|
+
DataWarehouse_WarehouseOutput = "dataWarehouse_warehouseOutput",
|
|
34
40
|
Segmentation = "segmentation",
|
|
35
41
|
Segmentation_Journeys = "segmentation_journeys",
|
|
36
42
|
Segmentation_Audiences = "segmentation_audiences",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BaseRoutesAuthorizations } from
|
|
2
|
-
import { Suite } from
|
|
1
|
+
import { BaseRoutesAuthorizations } from './base-routes-authorizations';
|
|
2
|
+
import { Suite } from '../../Suite';
|
|
3
3
|
export declare class DataPlatformAuthorizations extends BaseRoutesAuthorizations {
|
|
4
4
|
protected suite: Suite;
|
|
5
5
|
protected getAuthorizations(): Record<string, boolean>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BaseRoutesAuthorizations } from './base-routes-authorizations';
|
|
2
|
+
import { Suite } from '../../Suite';
|
|
3
|
+
export declare class DataWarehouseAuthorizations extends BaseRoutesAuthorizations {
|
|
4
|
+
protected suite: Suite;
|
|
5
|
+
protected getAuthorizations(): Record<string, boolean>;
|
|
6
|
+
canViewDataWarehouse(): boolean;
|
|
7
|
+
private canViewWarehouseIngest;
|
|
8
|
+
private canViewConnections;
|
|
9
|
+
private canViewDataModels;
|
|
10
|
+
private canViewWarehouseOutput;
|
|
11
|
+
}
|
|
@@ -7,4 +7,4 @@ export type IconOptions = RequireAtLeastOne<{
|
|
|
7
7
|
default: IconVariant;
|
|
8
8
|
deprecated?: string;
|
|
9
9
|
}, IconVariant>;
|
|
10
|
-
export type IconNames = 'abSplit' | 'account' | 'active' | 'add' | 'alicorn' | 'analytics' | 'annotation' | 'api' | 'audiences' | 'C360' | 'calculatedAttribute' | 'catalog' | 'chartColumn' | 'chartLine' | 'check' | 'circleNodes' | 'close' | 'cloud' | 'cohort' | 'connections' | 'conversion' | 'copy' | 'dashboard' | 'database' | 'dataPlatform' | 'date' | 'delete' | 'devices' | 'directory' | 'dragAndDrop' | 'dropdownClose' | 'dropdownOpen' | 'dsr' | 'edit' | 'empty' | 'enrichment' | 'event' | 'eventAttribute' | 'favorite' | 'filter' | 'fitToScreen' | 'flag' | 'folderClosed' | 'forwarding' | 'fullScreen' | 'funnel' | 'gear' | 'grid' | 'group' | 'heart' | 'help' | 'helpVideo' | 'identity' | 'info' | 'insights' | 'journeyAnalysis' | 'journeys' | 'jumpTo' | 'lightBulb' | 'link' | 'liveStream' | 'lock' | 'logout' | 'messageQuestion' | 'moreActions' | 'mpLogo' | 'myHub' | 'next' | 'notification' | 'notificationSubscribed' | 'notificationSubscribe' | 'observability' | 'openTab' | 'organization' | 'oversight' | 'overview' | 'paywall' | 'pipelines' | 'placeholder' | 'precision' | 'predictions' | 'premium' | 'premiumDt' | 'previous' | 'privacy' | 'privileges' | 'refreshFrequency' | 'rateDown' | 'rateUp' | 'remove' | 'savedProjects' | 'scheduledReport' | 'search' | 'segmentation' | 'segmentationAnalysis' | 'selected' | 'settings' | 'setup' | 'shieldKeyhole' | 'signout' | 'siteMap' | 'sparkles' | 'split' | 'support' | 'systemAlerts' | 'textWidget' | 'transformation' | 'trends' | 'unlock' | 'upload' | 'userAttribute' | 'userProfiles' | 'users' | 'wrench' | 'zoomIn' | 'zoomOut' | 'bannerFreemium' | 'stateEmpty' | 'stateError' | 'stateNoResults' | 'back' | 'submitFeedback' | 'boost' | 'clone' | 'reorder';
|
|
10
|
+
export type IconNames = 'abSplit' | 'account' | 'active' | 'add' | 'alicorn' | 'analytics' | 'annotation' | 'api' | 'audiences' | 'C360' | 'calculatedAttribute' | 'catalog' | 'chartColumn' | 'chartLine' | 'check' | 'circleNodes' | 'close' | 'cloud' | 'cohort' | 'connections' | 'conversion' | 'copy' | 'dashboard' | 'database' | 'dataPlatform' | 'date' | 'delete' | 'devices' | 'directory' | 'dragAndDrop' | 'dropdownClose' | 'dropdownOpen' | 'dsr' | 'edit' | 'empty' | 'enrichment' | 'event' | 'eventAttribute' | 'favorite' | 'filter' | 'fitToScreen' | 'flag' | 'folderClosed' | 'forwarding' | 'fullScreen' | 'funnel' | 'gear' | 'generic' | 'grid' | 'group' | 'heart' | 'help' | 'helpVideo' | 'identity' | 'info' | 'insights' | 'journeyAnalysis' | 'journeys' | 'jumpTo' | 'lightBulb' | 'link' | 'liveStream' | 'lock' | 'logout' | 'messageQuestion' | 'moreActions' | 'mpLogo' | 'myHub' | 'next' | 'notification' | 'notificationSubscribed' | 'notificationSubscribe' | 'observability' | 'openTab' | 'organization' | 'oversight' | 'overview' | 'paywall' | 'pipelines' | 'placeholder' | 'precision' | 'predictions' | 'premium' | 'premiumDt' | 'previous' | 'privacy' | 'privileges' | 'refreshFrequency' | 'rateDown' | 'rateUp' | 'remove' | 'savedProjects' | 'scheduledReport' | 'search' | 'segmentation' | 'segmentationAnalysis' | 'selected' | 'settings' | 'setup' | 'shieldKeyhole' | 'signout' | 'siteMap' | 'sparkles' | 'split' | 'support' | 'systemAlerts' | 'textWidget' | 'transformation' | 'trends' | 'unlock' | 'upload' | 'userAttribute' | 'userProfiles' | 'users' | 'wrench' | 'zoomIn' | 'zoomOut' | 'bannerFreemium' | 'stateEmpty' | 'stateError' | 'stateNoResults' | 'back' | 'submitFeedback' | 'boost' | 'clone' | 'reorder';
|