@mparticle/aquarium 1.61.0-operation-prism-shift.1 → 1.61.0-operation-prism-shift.3

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.
Files changed (161) hide show
  1. package/dist/aquarium.js +27036 -0
  2. package/dist/aquarium.umd.cjs +252 -0
  3. package/dist/index.d.ts +1 -0
  4. package/dist/src/components/UXPatterns/MoreActionsButton/MoreActionsButton.d.ts +18 -0
  5. package/dist/src/components/UXPatterns/UnauthorizedTooltip/UnauthorizedTooltip.d.ts +9 -0
  6. package/dist/src/components/data-display/Avatar/Avatar.d.ts +11 -0
  7. package/dist/src/components/data-display/Badge/Badge.d.ts +11 -0
  8. package/dist/src/components/data-display/Card/Card.d.ts +12 -0
  9. package/dist/src/components/data-display/Collapse/Collapse.d.ts +10 -0
  10. package/dist/src/components/data-display/Descriptions/Descriptions.d.ts +11 -0
  11. package/dist/src/components/data-display/Empty/Empty.d.ts +36 -0
  12. package/dist/src/components/data-display/Image/Image.d.ts +11 -0
  13. package/dist/src/components/data-display/List/List.d.ts +9 -0
  14. package/dist/src/components/data-display/Popover/Popover.d.ts +5 -0
  15. package/dist/src/components/data-display/Segmented/Segmented.d.ts +7 -0
  16. package/dist/src/components/data-display/Table/Table.d.ts +21 -0
  17. package/dist/src/components/data-display/Tabs/Tabs.d.ts +10 -0
  18. package/dist/src/components/data-display/Tag/Tag.d.ts +13 -0
  19. package/dist/src/components/data-display/Tooltip/Tooltip.d.ts +5 -0
  20. package/dist/src/components/data-display/Tour/Tour.d.ts +5 -0
  21. package/dist/src/components/data-entry/AutoComplete/AutoComplete.d.ts +5 -0
  22. package/dist/src/components/data-entry/Cascader/Cascader.d.ts +11 -0
  23. package/dist/src/components/data-entry/Checkbox/Checkbox.d.ts +11 -0
  24. package/dist/src/components/data-entry/DatePicker/DatePicker.d.ts +78 -0
  25. package/dist/src/components/data-entry/Form/Form.d.ts +28 -0
  26. package/dist/src/components/data-entry/Input/Input.d.ts +14 -0
  27. package/dist/src/components/data-entry/InputNumber/InputNumber.d.ts +5 -0
  28. package/dist/src/components/data-entry/QueryItem/Action.d.ts +10 -0
  29. package/dist/src/components/data-entry/QueryItem/Cascader.d.ts +27 -0
  30. package/dist/src/components/data-entry/QueryItem/NumberInput.d.ts +16 -0
  31. package/dist/src/components/data-entry/QueryItem/Qualifier.d.ts +16 -0
  32. package/dist/src/components/data-entry/QueryItem/QueryItem.d.ts +17 -0
  33. package/dist/src/components/data-entry/QueryItem/Text.d.ts +11 -0
  34. package/dist/src/components/data-entry/QueryItem/TextInput.d.ts +10 -0
  35. package/dist/src/components/data-entry/QueryItem/ValueSelector.d.ts +11 -0
  36. package/dist/src/components/data-entry/Radio/Radio.d.ts +11 -0
  37. package/dist/src/components/data-entry/Radio/RadioButton.d.ts +5 -0
  38. package/dist/src/components/data-entry/Radio/RadioGroup.d.ts +5 -0
  39. package/dist/src/components/data-entry/Select/Select.d.ts +14 -0
  40. package/dist/src/components/data-entry/Switch/Switch.d.ts +5 -0
  41. package/dist/src/components/data-entry/TimePicker/TimePicker.d.ts +11 -0
  42. package/dist/src/components/data-entry/TreeSelect/TreeSelect.d.ts +14 -0
  43. package/dist/src/components/data-entry/Upload/Upload.d.ts +16 -0
  44. package/dist/src/components/feedback/Alert/Alert.d.ts +13 -0
  45. package/dist/src/components/feedback/Drawer/Drawer.d.ts +5 -0
  46. package/dist/src/components/feedback/LoadingModal/LoadingModal.d.ts +8 -0
  47. package/dist/src/components/feedback/Message/Message.d.ts +23 -0
  48. package/dist/src/components/feedback/Modal/DeleteConfirmModal/DeleteConfirmModal.d.ts +14 -0
  49. package/dist/src/components/feedback/Modal/ErrorModal/ErrorModal.d.ts +9 -0
  50. package/dist/src/components/feedback/Modal/Modal.d.ts +16 -0
  51. package/dist/src/components/feedback/Notification/Notification.d.ts +22 -0
  52. package/dist/src/components/feedback/Popconfirm/Popconfirm.d.ts +5 -0
  53. package/dist/src/components/feedback/Progress/Progress.d.ts +5 -0
  54. package/dist/src/components/feedback/Result/Result.d.ts +17 -0
  55. package/dist/src/components/feedback/Skeleton/Skeleton.d.ts +19 -0
  56. package/dist/src/components/feedback/Spin/Spin.d.ts +10 -0
  57. package/dist/src/components/general/Button/Button.d.ts +18 -0
  58. package/dist/src/components/general/FloatButton/FloatButton.d.ts +12 -0
  59. package/dist/src/components/general/Icon/ErrorStateIcon/ErrorStateIcon.d.ts +9 -0
  60. package/dist/src/components/general/Icon/Icon.d.ts +12 -0
  61. package/dist/src/components/general/Icon/SuccessStateIcon/SuccessStateIcon.d.ts +9 -0
  62. package/dist/src/components/general/Icon/WarningStateIcon/WarningStateIcon.d.ts +9 -0
  63. package/dist/src/components/general/Typography/Typography.d.ts +35 -0
  64. package/dist/src/components/general/Typography/colors.d.ts +3 -0
  65. package/dist/src/components/icons/index.d.ts +140 -0
  66. package/dist/src/components/index.d.ts +99 -0
  67. package/dist/src/components/layout/Center/Center.d.ts +3 -0
  68. package/dist/src/components/layout/Divider/Divider.d.ts +5 -0
  69. package/dist/src/components/layout/Flex/Flex.d.ts +5 -0
  70. package/dist/src/components/layout/Grid/Grid.d.ts +6 -0
  71. package/dist/src/components/layout/Layout/Layout.d.ts +13 -0
  72. package/dist/src/components/layout/Space/Space.d.ts +11 -0
  73. package/dist/src/components/layout/Splitter/Splitter.d.ts +23 -0
  74. package/dist/src/components/navigation/Anchor/Anchor.d.ts +10 -0
  75. package/dist/src/components/navigation/Breadcrumb/Breadcrumb.d.ts +12 -0
  76. package/dist/src/components/navigation/Dropdown/Dropdown.d.ts +11 -0
  77. package/dist/src/components/navigation/GlobalNavigation/GlobalNavigation.d.ts +46 -0
  78. package/dist/src/components/navigation/GlobalNavigation/HomeButton.d.ts +6 -0
  79. package/dist/src/components/navigation/GlobalNavigation/NavigationButtonItem.d.ts +9 -0
  80. package/dist/src/components/navigation/GlobalNavigation/NavigationCreate.d.ts +20 -0
  81. package/dist/src/components/navigation/GlobalNavigation/NavigationIcon.d.ts +11 -0
  82. package/dist/src/components/navigation/GlobalNavigation/NavigationItem.d.ts +15 -0
  83. package/dist/src/components/navigation/GlobalNavigation/NavigationList.d.ts +6 -0
  84. package/dist/src/components/navigation/GlobalNavigation/NavigationMenu.d.ts +6 -0
  85. package/dist/src/components/navigation/GlobalNavigation/NavigationSearch.d.ts +6 -0
  86. package/dist/src/components/navigation/GlobalNavigation/NotificationCenter.d.ts +9 -0
  87. package/dist/src/components/navigation/GlobalNavigation/SuiteLogo.d.ts +7 -0
  88. package/dist/src/components/navigation/GlobalNavigation/SuiteSelector/SuiteSelector.d.ts +11 -0
  89. package/dist/src/components/navigation/GlobalNavigation/SuiteSelector/SuiteSelectorContent.d.ts +5 -0
  90. package/dist/src/components/navigation/GlobalNavigation/SuiteSelector/SuiteSelectorSuiteLink.d.ts +10 -0
  91. package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceNoResults.d.ts +2 -0
  92. package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelector.d.ts +12 -0
  93. package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelectorContent.d.ts +18 -0
  94. package/dist/src/components/navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelectorContentItems.d.ts +7 -0
  95. package/dist/src/components/navigation/GlobalNavigation/stories-utils.d.ts +2 -0
  96. package/dist/src/components/navigation/Menu/Menu.d.ts +24 -0
  97. package/dist/src/components/navigation/Pagination/Pagination.d.ts +5 -0
  98. package/dist/src/components/navigation/Steps/Steps.d.ts +5 -0
  99. package/dist/src/components/not-prod-ready/Affix/Affix.d.ts +5 -0
  100. package/dist/src/components/not-prod-ready/Calendar/Calendar.d.ts +13 -0
  101. package/dist/src/components/not-prod-ready/Carousel/Carousel.d.ts +5 -0
  102. package/dist/src/components/not-prod-ready/ColorPicker/ColorPicker.d.ts +5 -0
  103. package/dist/src/components/not-prod-ready/QRCode/QRCode.d.ts +5 -0
  104. package/dist/src/components/not-prod-ready/Rate/Rate.d.ts +5 -0
  105. package/dist/src/components/not-prod-ready/Slider/Slider.d.ts +5 -0
  106. package/dist/src/components/not-prod-ready/Statistic/Statistic.d.ts +15 -0
  107. package/dist/src/components/not-prod-ready/Timeline/Timeline.d.ts +10 -0
  108. package/dist/src/components/not-prod-ready/Transfer/Transfer.d.ts +16 -0
  109. package/dist/src/components/not-prod-ready/Tree/Tree.d.ts +19 -0
  110. package/dist/src/components/not-prod-ready/Watermark/Watermark.d.ts +5 -0
  111. package/dist/src/constants/ChartColors.d.ts +1 -0
  112. package/dist/src/constants/ChartConfig.d.ts +8 -0
  113. package/dist/src/constants/Icons.d.ts +2 -0
  114. package/dist/src/hooks/NewExperienceReminder/useNewExperienceReminder.d.ts +14 -0
  115. package/dist/src/hooks/useInitData.d.ts +1 -0
  116. package/dist/src/hooks/useMount.d.ts +1 -0
  117. package/dist/src/hooks/useUnMount.d.ts +1 -0
  118. package/dist/src/services/user-preferences/composite-user-preferences-service/composite-user-preferences-service.d.ts +9 -0
  119. package/dist/src/services/user-preferences/composite-user-preferences-service/composite-user-preferences-service.spec.d.ts +1 -0
  120. package/dist/src/services/user-preferences/composite-user-preferences-service/index.d.ts +1 -0
  121. package/dist/src/services/user-preferences/index.d.ts +1 -0
  122. package/dist/src/services/user-preferences/models/definitions/index.d.ts +4 -0
  123. package/dist/src/services/user-preferences/models/definitions/user-preference-definition.d.ts +5 -0
  124. package/dist/src/services/user-preferences/models/definitions/user-preference-definitions.d.ts +4 -0
  125. package/dist/src/services/user-preferences/models/definitions/user-preference-per-scope.d.ts +4 -0
  126. package/dist/src/services/user-preferences/models/definitions/user-preference-scope-type.d.ts +6 -0
  127. package/dist/src/services/user-preferences/models/storage-models/index.d.ts +1 -0
  128. package/dist/src/services/user-preferences/models/storage-models/user-preference-scope.d.ts +8 -0
  129. package/dist/src/services/user-preferences/user-preferences-service.d.ts +19 -0
  130. package/dist/src/services/user-preferences/user-preferences-service.spec.d.ts +26 -0
  131. package/dist/src/shared/Operation.d.ts +178 -0
  132. package/dist/src/shared/Paths.d.ts +146 -0
  133. package/dist/src/shared/Suite.d.ts +9 -0
  134. package/dist/src/shared/UserPreferences.d.ts +12 -0
  135. package/dist/src/shared/Utils.d.ts +4 -0
  136. package/dist/src/shared/services/AudiencePermissionsService.d.ts +9 -0
  137. package/dist/src/shared/services/AuthorizationsService.d.ts +6 -0
  138. package/dist/src/shared/services/FeatureFlagsService.d.ts +54 -0
  139. package/dist/src/shared/services/InitializationService.d.ts +4 -0
  140. package/dist/src/shared/services/NavigationItemsService.d.ts +55 -0
  141. package/dist/src/shared/services/RoutesAuthorizationsService.d.ts +12 -0
  142. package/dist/src/shared/services/routeAuthorizations/anaytics-authorizations.d.ts +6 -0
  143. package/dist/src/shared/services/routeAuthorizations/base-routes-authorizations.d.ts +7 -0
  144. package/dist/src/shared/services/routeAuthorizations/customer-360-authorizations.d.ts +11 -0
  145. package/dist/src/shared/services/routeAuthorizations/data-platform-authorizations.d.ts +22 -0
  146. package/dist/src/shared/services/routeAuthorizations/data-warehouse-authorizations.d.ts +10 -0
  147. package/dist/src/shared/services/routeAuthorizations/oversight-authorizations.d.ts +13 -0
  148. package/dist/src/shared/services/routeAuthorizations/root-authorizations.d.ts +10 -0
  149. package/dist/src/shared/services/routeAuthorizations/segmentation-authorizations.d.ts +10 -0
  150. package/dist/src/styles/style.d.ts +425 -0
  151. package/dist/src/types/icons.d.ts +14 -0
  152. package/dist/src/utils/Cookies.d.ts +15 -0
  153. package/dist/src/utils/ExampleStory.d.ts +9 -0
  154. package/dist/src/utils/GetGlobalToken.d.ts +2 -0
  155. package/dist/src/utils/debounce.d.ts +1 -0
  156. package/dist/src/utils/svg-prettifier/SvgPrettifier.d.ts +2 -0
  157. package/dist/src/utils/utils.d.ts +16 -0
  158. package/dist/src/utils/utils.spec.d.ts +1 -0
  159. package/dist/style.css +1 -0
  160. package/dist/style.ts +437 -0
  161. package/package.json +1 -1
@@ -0,0 +1,26 @@
1
+ import { type UserPreferenceScope } from './models/storage-models/user-preference-scope';
2
+ import { UserPreferenceScopeType } from './models/definitions/user-preference-scope-type';
3
+ import { type Sync } from 'factory.ts';
4
+ import { type UserPreferenceDefinitions } from '../../components';
5
+ import { type UserPreferencesPerScope } from './models/definitions/user-preference-per-scope';
6
+ export type TestType = {
7
+ Default: {
8
+ isOptedIn: boolean;
9
+ };
10
+ PreferenceOne: {
11
+ isOptedIn: boolean;
12
+ };
13
+ };
14
+ export declare function TestUserPreferenceDefinitionsFakeFactory(config?: Array<{
15
+ id: string;
16
+ isOptedInByDefault?: boolean;
17
+ allowedScope?: UserPreferenceScopeType;
18
+ }>): Sync.Builder<UserPreferenceDefinitions<TestType>, keyof UserPreferenceDefinitions<TestType>>;
19
+ export interface TestUserPreferencesFakeBuilder {
20
+ wantsRandom?: boolean;
21
+ scope?: UserPreferenceScope;
22
+ keys?: string[];
23
+ defaultValues?: any[];
24
+ }
25
+ export declare function makeBuilderFromDefinition(definitions: UserPreferenceDefinitions<TestType>, scope?: UserPreferenceScope): TestUserPreferencesFakeBuilder;
26
+ export declare function TestUserPreferencesFakeFactory(scopes?: TestUserPreferencesFakeBuilder[]): Sync.Builder<UserPreferencesPerScope<TestType>, keyof UserPreferencesPerScope<TestType>>;
@@ -0,0 +1,178 @@
1
+ export declare enum Operation {
2
+ ORG_CREATE = 100,
3
+ ORG_UPDATE = 101,
4
+ ORG_DELETE = 102,
5
+ APPFAMILY_CREATE = 103,
6
+ APPFAMILY_UPDATE = 104,
7
+ APPFAMILY_DELETE = 105,
8
+ ACCOUNT_CREATE = 110,
9
+ ACCOUNT_UPDATE = 111,
10
+ ACCOUNT_DELETE = 112,
11
+ USER_CREATE = 113,
12
+ USER_UPDATE = 114,
13
+ USER_DEACTIVATE = 115,
14
+ USER_LIST = 116,
15
+ USER_VIEW = 117,
16
+ USER_ROLECHANGE = 118,
17
+ USER_PASSWORDRESET = 119,
18
+ ORG_LIST = 121,
19
+ EVENT_LIST = 122,
20
+ LOGIN = 123,
21
+ ACCOUNT_LIST = 124,
22
+ ACCOUNT_VIEW = 125,
23
+ APPFAMILY_LIST = 126,
24
+ APPFAMILY_VIEW = 127,
25
+ ORG_VIEW = 128,
26
+ PARTNER_CREATE = 130,
27
+ TOKEN_EDIT = 131,
28
+ DEVICE_CREATE = 132,
29
+ DEVICE_UPDATE = 133,
30
+ DEVICE_DELETE = 134,
31
+ DEVICE_LIST = 135,
32
+ DEVICE_VIEW = 136,
33
+ POLICY_LIST = 137,
34
+ POLICY_ADD = 138,
35
+ POLICY_EDIT = 139,
36
+ POLICY_DELETE = 140,
37
+ PUBLISHER_ADD = 141,
38
+ PUBLISHER_LIST = 142,
39
+ PUBLISHER_EDIT = 143,
40
+ PUBLISHER_DELETE = 144,
41
+ CAMPAIGN_CREATE = 145,
42
+ CAMPAIGN_LIST = 146,
43
+ CAMPAIGN_EDIT = 147,
44
+ CAMPAIGN_DELETE = 148,
45
+ REPORT_LIST = 149,
46
+ EVENTTRANSFORM_LIST = 150,
47
+ EVENTTRANSFORM_ADD = 151,
48
+ EVENTTRANSFORM_EDIT = 152,
49
+ PROVIDER_LIST = 154,
50
+ ERROR_LIST = 156,
51
+ ERROR_DETAIL_VIEW = 157,
52
+ AUDIENCE_LIST = 158,
53
+ AUDIENCE_CREATE = 159,
54
+ AUDIENCE_EDIT = 160,
55
+ AUDIENCE_DELETE = 161,
56
+ PARTNERLIST = 163,
57
+ PARTNEREDIT = 164,
58
+ PARTNERDELETE = 165,
59
+ BILLINGLIST = 166,
60
+ BILLINGEDIT = 167,
61
+ BILLINGCANCEL = 168,
62
+ EVENTBROWSER = 169,
63
+ PUSHNOTIFICATIONS_EDIT = 170,
64
+ PROVIDER_DATAMAPPINGS = 171,
65
+ EVENT_STREAM = 182,
66
+ REDSHIFT = 183,
67
+ REDSHIFT_ACCESSCONFIG = 184,
68
+ FILTERING_EVENT_ATTRIBUTE_UPDATE = 189,
69
+ EVENT_UPDATE = 193,
70
+ FILTERING_EVENT_ATTRIBUTE_VIEW = 194,
71
+ REDSHIFT_ACCESS_CONFIGURATION_UPDATE = 195,
72
+ REDSHIFT_UPDATE = 196,
73
+ GOOGLEBIGQUERYUPDATECONFIG = 197,
74
+ GOOGLEBIGQUERYVIEW = 198,
75
+ PROVIDER_DATAMAPPINGS_VIEW = 199,
76
+ PROVIDER_DATAMAPPINGS_UPDATE = 200,
77
+ FIELDSUGGESTIONQUERY = 201,
78
+ RULE_CREATE = 205,
79
+ RULE_UPDATE = 206,
80
+ RULE_DELETE = 207,
81
+ RULE_LIST = 208,
82
+ RULE_CONNECT = 209,
83
+ AUDIENCESHARE = 210,
84
+ AUDIENCEUNSHARE = 211,
85
+ AUDIENCESHAREVIEW = 212,
86
+ AUDIENCESHAREOPT = 214,
87
+ AUDIENCE_TAG_CREATE = 217,
88
+ AUDIENCE_TAG_DELETE = 218,
89
+ REDSHIFT_QUERYTOOL = 219,
90
+ AUDIENCE_FAULT_CLEAR = 222,
91
+ USERACTIVITY_VIEW = 223,
92
+ USERACTIVITY_EVENTS_VIEW = 224,
93
+ CONSENT_PURPOSE_CREATE = 227,
94
+ IDENTITY_SETTINGS_VIEW = 228,
95
+ GDPR_REQUEST_LIST = 229,
96
+ GDPR_REQUEST_CREATE = 230,
97
+ GDPR_REQUEST_UPDATE = 231,
98
+ DATAMANAGER_VIEW = 232,
99
+ DATAMANAGER_UPDATE = 233,
100
+ AUDIENCE_DOWNLOAD = 241,
101
+ SNOWFLAKE = 243,
102
+ SNOWFLAKEUPDATE = 244,
103
+ CREATE_ROLE_DEFINITION = 246,
104
+ AUDIENCE_ACCESS_IDENTITY = 270,
105
+ AUDIENCE_SUBSCRIPTION_LIST = 272,
106
+ AUDIENCE_SUBSCRIPTION_CREATE = 273,
107
+ AUDIENCE_SUBSCRIPTION_EDIT = 274,
108
+ AUDIENCE_SUBSCRIPTION_DELETE = 275,
109
+ AUDIENCE_ESTIMATE_EXPRESSION_SIZE = 284,
110
+ DATAPLAN_VIEW = 285,
111
+ DATAPLAN_UPDATE = 286,
112
+ CALCULATEDATTRIBUTES_VIEW = 287,
113
+ CALCULATEDATTRIBUTES_UPDATE = 288,
114
+ CALCULATEDATTRIBUTES_DELETE = 289,
115
+ CREATE_API_KEY = 290,
116
+ DELETE_API_KEY = 291,
117
+ LIST_API_KEY = 292,
118
+ UPDATE_API_KEY = 293,
119
+ VIEW_API_KEY = 294,
120
+ VIEW_COMPLIANCE_SETTINGS = 301,
121
+ USER_MANAGEMENT_VIEW = 322,
122
+ DATA_MASTER_VIEW_ATTRIBUTE_VALUES = 330,
123
+ MODULE_VIEW = 331,
124
+ JOURNEY_VIEW = 336,
125
+ JOURNEY_MODIFY = 337,
126
+ EVENT_TIER_UPDATE = 338,
127
+ INDICATIVE_REQUIRES_ACCEPTED_TERMS = 345,
128
+ WORKSPACE_KEY_VIEW = 346,
129
+ INDICATIVE_ADD_USER_TO_PROJECT = 347,
130
+ INDICATIVE_WIZARD_TEAMMATES_VIEW = 348,
131
+ AUDIENCE_VIEW = 351,
132
+ GDPR_REQUEST_VIEW = 352,
133
+ FILTERS_LIST = 354,
134
+ OUTPUTS_LIST = 355,
135
+ CALCULATEDATTRIBUTES_LIST = 356,
136
+ WORKSPACE_SETTINGS = 357,
137
+ GDPR_REQUEST_DETAILS_VIEW = 362,
138
+ INPUTS_LIST = 363,
139
+ INPUTS_CREATE = 364,
140
+ INPUTS_UPDATE = 365,
141
+ INPUTS_VIEW = 366,
142
+ INPUTS_DELETE = 367,
143
+ OUTPUTS_CREATE = 368,
144
+ OUTPUTS_UPDATE = 369,
145
+ OUTPUTS_VIEW = 370,
146
+ OUTPUTS_DELETE = 371,
147
+ SUBSCRIPTIONS_LIST = 372,
148
+ SUBSCRIPTIONS_CREATE = 373,
149
+ SUBSCRIPTIONS_UPDATE = 374,
150
+ SUBSCRIPTIONS_VIEW = 375,
151
+ SUBSCRIPTIONS_DELETE = 376,
152
+ AUDIENCE_SETTINGS = 377,
153
+ AUDIENCE_ACTIVATE = 381,
154
+ CALCULATEDATTRIBUTES_ACTIVATE = 382,
155
+ FREE_TRIAL_VIEW = 388,
156
+ FREE_TRIAL_REQUEST = 389,
157
+ LEGAL_AGREEMENT_VIEW = 390,
158
+ LEGAL_AGREEMENT_ACCEPT = 391,
159
+ USER_GROUPS_VIEW = 392,
160
+ USER_GROUPS_CREATE = 393,
161
+ USER_GROUPS_UPDATE = 394,
162
+ USER_GROUPS_DELETE = 395,
163
+ DATABRICKSVIEW = 396,
164
+ DATABRICKSUPDATE = 397,
165
+ USER_ACTIVITY_UPDATE_USER_PROFILE = 398,
166
+ USER_ACTIVITY_DELETE_USER_PROFILE = 399,
167
+ VIEW_VBP_BILLING_REPORT = 401,
168
+ DATA_INGEST_CONNECTION_VIEW = 424,
169
+ DATA_INGEST_CONNECTION_UPDATE = 425,
170
+ DATA_INGEST_CONNECTION_TEST = 426,
171
+ DATA_INGEST_CONNECTION_SETTING_VIEW = 427,
172
+ DATA_INGEST_DATA_MODEL_VIEW = 428,
173
+ DATA_INGEST_DATA_MODEL_UPDATE = 429,
174
+ DATA_INGEST_DATA_MODEL_PREVIEW = 430,
175
+ DATA_INGEST_PIPELINE_VIEW = 431,
176
+ DATA_INGEST_PIPELINE_UPDATE = 432,
177
+ ALLOW_ANONYMOUS = 9999
178
+ }
@@ -0,0 +1,146 @@
1
+ export declare const Paths: {
2
+ readonly Root: {
3
+ readonly Overview: {
4
+ readonly Root: "/mp/overview";
5
+ readonly Connections: "/mp/overview/connections";
6
+ };
7
+ readonly Workspaces: "/mp/workspaces";
8
+ readonly UserSettings: "/mp/usersettings";
9
+ readonly SwitchWorkspace: "/mp/switch-workspace";
10
+ readonly Analytics: "/mp/analytics";
11
+ readonly Predictions: "/mp/predictions";
12
+ readonly UserSettingsList: "/mp/usersettings/list";
13
+ readonly NotificationPreferences: "/mp/usersettings/notificationpreferences";
14
+ readonly UsageBilling: "/mp/usagebilling";
15
+ readonly NewExperienceOnly: "/mp/new-experience-only";
16
+ readonly UncaughtErrorHandlerTest: "/mp/uncaughtErrorHandlerTest";
17
+ readonly Playground: {
18
+ readonly React: "/mp/playground/react";
19
+ readonly ReactExample: "/mp/playground/react/data-example";
20
+ readonly PopOverErrorIcon: "/mp/playground/popovererroricon";
21
+ readonly Card: "/mp/playground/card";
22
+ readonly DashboardComponents: "/mp/playground/dashboard-components";
23
+ readonly Services: "/mp/playground/services";
24
+ readonly JourneyMilestoneAudience: "/mp/playground/journey-milestone-audience-modal-playground";
25
+ readonly AudienceSizeLabel: "/mp/playground/audience-size-label";
26
+ readonly CategoryList: "/mp/playground/categorylist";
27
+ readonly Journey: "/mp/playground/journey";
28
+ readonly LiveSearch: "/mp/playground/livesearch";
29
+ readonly DmDataTable: "/mp/playground/dmdatatable";
30
+ readonly CardDetailContainer: "/mp/playground/card-detail-container";
31
+ readonly DatePicker: "/mp/playground/datepicker";
32
+ readonly FaultError: "/mp/playground/faulterror";
33
+ readonly AudienceConnect: "/mp/playground/audienceconnect";
34
+ readonly AudienceFault: "/mp/playground/audiencefault";
35
+ readonly AudienceInputs: "/mp/playground/audienceinputs";
36
+ readonly AudienceOutputs: "/mp/playground/audienceoutputs";
37
+ readonly mpDataTable: "/mp/playground/mp-data-table";
38
+ readonly DiagramService: "/mp/playground/diagram-service";
39
+ readonly AudienceBuilder: "/mp/playground/audiencebuilder";
40
+ readonly InputTile: "/mp/playground/inputtile";
41
+ readonly OutputTile: "/mp/playground/outputtile";
42
+ readonly InputSelector: "/mp/playground/inputselector";
43
+ readonly OutputSelector: "/mp/playground/outputselector";
44
+ readonly InstructionComponents: "/mp/playground/instruction-components";
45
+ readonly QuickstartLivestream: "/mp/playground/quickstart-livestream";
46
+ readonly WizardBreadcrumbs: "/mp/playground/wizard-breadcrumbs";
47
+ readonly WizardManager: "/mp/playground/wizard-manager";
48
+ readonly HelpText: "/mp/playground/help-text";
49
+ readonly DropdownEvents: "/mp/playground/dropdown-events";
50
+ readonly StyleguideButtons: "/mp/playground/styleguide/buttons";
51
+ readonly StyleguideTextFields: "/mp/styleguide/textfields";
52
+ readonly StyleguideDropdowns: "/mp/styleguide/dropdowns";
53
+ readonly StyleguideCallouts: "/mp/styleguide/callouts";
54
+ readonly Video: "/mp/playground/video";
55
+ };
56
+ };
57
+ readonly DataPlatform: {
58
+ readonly Trends: "/data-platform/trends";
59
+ readonly Setup: {
60
+ readonly Root: "/data-platform/setup";
61
+ readonly Connections: "/data-platform/setup/connections";
62
+ readonly Inputs: {
63
+ readonly Root: "/data-platform/setup/inputs";
64
+ readonly Feeds: "/data-platform/setup/inputs/feeds";
65
+ readonly Apps: "/data-platform/setup/inputs/apps";
66
+ };
67
+ readonly Outputs: {
68
+ readonly Root: "/data-platform/setup/outputs";
69
+ readonly Event: "/data-platform/setup/outputs/event";
70
+ readonly Audience: "/data-platform/setup/outputs/audience";
71
+ readonly CookieSync: "/data-platform/setup/outputs/cookiesync";
72
+ readonly Gdpr: "/data-platform/setup/outputs/gdpr";
73
+ readonly LiveRamp: "/data-platform/setup/outputs/liveramp";
74
+ readonly Dsr: "/data-platform/setup/outputs/dsr";
75
+ readonly DataWarehouse: "/data-platform/setup/outputs/datawarehouse";
76
+ readonly Crm: "/data-platform/setup/outputs/crm";
77
+ };
78
+ readonly Directory: {
79
+ readonly Root: "/data-platform/setup/directory";
80
+ readonly Listing: "/data-platform/setup/directory/listing";
81
+ };
82
+ readonly WarehouseSync: "/data-platform/setup/warehouse-sync";
83
+ };
84
+ readonly Livestream: "/data-platform/livestream";
85
+ readonly DataCatalog: "/data-platform/data-catalog";
86
+ readonly Transformations: {
87
+ readonly Root: "/data-platform/transformations";
88
+ readonly Rules: "/data-platform/transformations/rules";
89
+ readonly Plans: "/data-platform/transformations/plans";
90
+ readonly Filters: {
91
+ readonly Root: "/data-platform/transformations/filters";
92
+ readonly Platform: "/data-platform/transformations/filters/platform";
93
+ readonly Feed: "/data-platform/transformations/filters/feed";
94
+ };
95
+ };
96
+ readonly EventForwarding: "/data-platform/event-forwarding";
97
+ };
98
+ readonly DataWarehouse: {
99
+ readonly Root: "/data-warehouse";
100
+ readonly Connections: "/data-warehouse/activation/connections";
101
+ readonly DataModels: "/data-warehouse/activation/data-models";
102
+ readonly Pipelines: "/data-warehouse/activation/pipelines";
103
+ };
104
+ readonly Customer360: {
105
+ readonly Identity: {
106
+ readonly Root: "/customer-360/identity";
107
+ readonly GroupIdentities: "/customer-360/identity/group-identities";
108
+ };
109
+ readonly UserProfile: "/customer-360/user-profile";
110
+ readonly Enrichment: {
111
+ readonly Root: "/customer-360/enrichment";
112
+ readonly CalculatedAttributes: "/customer-360/enrichment/calculated-attributes";
113
+ readonly PredictiveAttributes: "/customer-360/enrichment/predictive-attributes";
114
+ readonly PredictiveAttributesNew: "/customer-360/enrichment/predictive-attributes/new";
115
+ readonly PredictiveAttributesNextBestAction: "/customer-360/enrichment/predictive-attributes/next-best-action";
116
+ };
117
+ };
118
+ readonly Segmentation: {
119
+ readonly Audiences: {
120
+ readonly Root: "/segmentation/audiences";
121
+ readonly RealTime: "/segmentation/audiences/real-time";
122
+ readonly Standard: "/segmentation/audiences/standard";
123
+ readonly Shared: "/segmentation/audiences/shared";
124
+ readonly SharedByAccount: "/segmentation/audiences/sharedbyaccount";
125
+ readonly Received: "/segmentation/audiences/received";
126
+ readonly P2P: "/segmentation/audiences/p2p";
127
+ };
128
+ readonly Journeys: "/segmentation/journeys";
129
+ };
130
+ readonly Oversight: {
131
+ readonly SystemAlerts: "/oversight/system-alerts";
132
+ readonly Observability: {
133
+ readonly Root: "/oversight/observability";
134
+ readonly List: "/oversight/observability/trace/activity";
135
+ readonly Requests: "/oversight/observability/trace/configurations";
136
+ };
137
+ readonly DSR: "/oversight/data-subject-requests";
138
+ readonly PrivacySettings: "/oversight/privacy-settings";
139
+ };
140
+ readonly Analytics: {
141
+ readonly MyHub: "#/info";
142
+ readonly Saved: "#/saved";
143
+ readonly Data: "#/data";
144
+ readonly Favorites: "#/saved/favorites";
145
+ };
146
+ };
@@ -0,0 +1,9 @@
1
+ export declare enum Suite {
2
+ Root = "Root",
3
+ DataPlatform = "DataPlatform",
4
+ DataWarehouse = "DataWarehouse",
5
+ Customer360 = "Customer360",
6
+ Segmentation = "Segmentation",
7
+ Oversight = "Oversight",
8
+ Analytics = "Analytics"
9
+ }
@@ -0,0 +1,12 @@
1
+ export declare let userPreferences: Preferences;
2
+ export declare enum mParticleUserPreferenceIds {
3
+ IsSegmentationNewExperience = "is-on-temporarily-unified-experience"
4
+ }
5
+ type Preferences = {
6
+ [mParticleUserPreferenceIds.IsSegmentationNewExperience]: {
7
+ optedIn: boolean;
8
+ };
9
+ };
10
+ export declare function initializeUserPreferences(): Promise<void>;
11
+ export declare function isSegmentationNewExperience(): boolean;
12
+ export {};
@@ -0,0 +1,4 @@
1
+ export declare class Utils {
2
+ static generateUniversalHash(value: string, caseSensitive?: boolean): string;
3
+ static isMobile(): boolean;
4
+ }
@@ -0,0 +1,9 @@
1
+ export declare class AudiencePermissionsService {
2
+ static isAudienceLeftNavVisible(): boolean;
3
+ static isAudienceEnabledAccountLevel(): boolean;
4
+ static isAudienceRealtimeEnabled(): boolean;
5
+ static canUserViewAudiences(): boolean;
6
+ static isOfflineAudienceEnabled(): boolean;
7
+ static isPredictiveAudiencesPLDEnabled(): boolean;
8
+ static isJourneysSharedRealTimeAudiencesEnabled(): boolean;
9
+ }
@@ -0,0 +1,6 @@
1
+ import { Operation } from "../Operation";
2
+ export declare class AuthorizationsService {
3
+ private static authorizedOperations;
4
+ static initialize(authorizedOperations: Operation[]): void;
5
+ static isAuthorized(operation: Operation | Operation[]): boolean;
6
+ }
@@ -0,0 +1,54 @@
1
+ export declare enum FeatureFlag {
2
+ Unassigned = "Unassigned",
3
+ /** Obsolete */
4
+ DataPlanTransformations = "DataPlanningTransformations",
5
+ ReportingJobId = "ReportingJobId",
6
+ DataMasterShowAttributesAutoComplete = "DataMasterShowAttributesAutoComplete",
7
+ TieredEventsReport = "TieredEvents.Report",
8
+ TieredEventsIdentityTier = "TieredEvents.IdentityTier",
9
+ DefaultEventTierConfiguration = "TieredEvents.DefaultEventTierConfiguration",
10
+ ShowUsageDashboard = "ShowUsageDashboard",
11
+ IsJourneyDeactivationDisabled = "IsJourneyDeactivationDisabled",
12
+ MpRuleDurationGraph = "MpRuleDurationGraph",
13
+ WorkspaceDefaults = "WorkspaceDefaults",
14
+ MarketingBannerCortexDisabled = "MarketingBanner.Cortex.Disabled",
15
+ HasJourneyBuilderEarlyAccess = "JourneyBuilder.EarlyAccess",
16
+ ProfileProtection = "ProfileProtection",
17
+ PredictiveAudiencesDisabled = "PredictiveAudiences.Disabled",
18
+ ObservabilityDetails = "Observability.Details",
19
+ PredictiveAudiencesPLDDisabled = "PredictiveAudiences.PLD.Disabled",
20
+ AnalyticsInMPv1Disabled = "AnalyticsInMP.v1.Disabled",
21
+ OverviewMap = "OverviewMap",
22
+ GroupingUI = "Grouping.UI",
23
+ JourneysAbTestDisabled = "JourneysAbTest.Disabled",
24
+ JourneysUnificationDisabled = "JourneysUnification.Disabled",
25
+ NotificationCenterV0Preferences = "NotificationCenter.V0.Preferences",
26
+ FieldTransformationsAPI = "FieldTransformations.API",
27
+ ImproveAudienceEstimatorAccuracyDisabled = "ImproveAudienceEstimatorAccuracy.Disabled",
28
+ ObservabilityM4 = "ObservabilityM4",
29
+ PredictiveAttributesCreationDisabled = "PredictiveAttributes.Creation.Disabled",
30
+ NotificationCenterV0Inbox = "NotificationCenter.V0.Inbox",
31
+ NotificationCenterV0InboxTemp = "NotificationCenter.V0.InboxTemp",
32
+ DataManagerOptimizationCA = "DataManagerOptimization.CA",
33
+ DataManagerOptimizationDataCatalog = "DataManagerOptimization.DataCatalog",
34
+ VBPUsageReportV2 = "VBP.UsageReport.V2",
35
+ UAVNewTabletsReadMethod = "UAVNewTabletsReadMethod",
36
+ PredictiveAttributesNextBestActionEnabled = "PredictiveAttributes.NextBestAction.Enabled",
37
+ JourneysEnvironmentSelectionDisabled = "Journeys.EnvironmentSelection.Disabled",
38
+ AudienceInsightsPreviewTabEnabled = "AudienceInsightsPreviewTab.Enabled",
39
+ JourneyAudienceRefreshCadence = "JourneyAudienceRefreshCadence",
40
+ TemporarilyUnifiedExperience = "Unify.TemporarilyUnifiedExperience",
41
+ DataManagerOptimizationDataCatalogDetails = "DataManagerOptimization.DataCatalogDetails",
42
+ JourneysMilestoneWithAudienceNode = "Journeys.MilestoneWithAudienceNode",
43
+ AudienceUnificationEnabled = "Audience.Unification.Enabled"
44
+ }
45
+ export declare class FeatureFlagsService {
46
+ private static enabledFeatures;
47
+ static initialize(enabledFeatures: FeatureFlag[]): void;
48
+ /**
49
+ * Checks whether a feature is enabled or not in the currently active workspace.
50
+ * @param feature The feature to check for.
51
+ * @returns true if the feature is enabled, otherwise false.
52
+ **/
53
+ static isEnabled(feature: FeatureFlag): boolean;
54
+ }
@@ -0,0 +1,4 @@
1
+ export declare class InitializationService {
2
+ static loadMParticleConfig(baseUrl?: string): Promise<void>;
3
+ static initialize(baseUrl?: string): Promise<void>;
4
+ }
@@ -0,0 +1,55 @@
1
+ import { type IGlobalNavigationItem } from '../../components';
2
+ export declare enum NavigationItemId {
3
+ Overview = "overview",
4
+ Oversight = "oversight",
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
+ Customer360 = "customer360",
13
+ Customer360_UserProfiles = "customer360_userProfiles",
14
+ Customer360_GroupIdentity = "customer360_groupIdentity",
15
+ Customer360_Enrichment = "customer360_enrichment",
16
+ Customer360_Enrichment_CalculatedAttributes = "customer360_enrichment_calculatedAttributes",
17
+ Customer360_Enrichment_PredictiveAttributes = "customer360_enrichment_predictiveAttributes",
18
+ DataPlatform = "dataPlatform",
19
+ DataPlatform_Trends = "dataPlatform_trends",
20
+ DataPlatform_Setup = "dataPlatform_setup",
21
+ DataPlatform_Setup_Connections = "dataPlatform_setup_connections",
22
+ DataPlatform_Setup_Inputs = "dataPlatform_setup_inputs",
23
+ DataPlatform_Setup_Outputs = "dataPlatform_setup_outputs",
24
+ DataPlatform_Setup_Directory = "dataPlatform_setup_directory",
25
+ DataPlatform_LiveStream = "dataPlatform_liveStream",
26
+ DataPlatform_DataCatalog = "dataPlatform_dataCatalog",
27
+ DataPlatform_Transformations_Rules = "dataPlatform_transformations_rules",
28
+ DataPlatform_Transformations_Plans = "dataPlatform_transformations_plans",
29
+ DataPlatform_Transformations_Filters = "dataPlatform_transformations_filters",
30
+ DataPlatform_Transformations_Filters_PlatformFilters = "dataPlatform_transformations_filters_platformFilters",
31
+ DataPlatform_Transformations_Filters_FeedFilters = "dataPlatform_transformations_filters_feedFilters",
32
+ DataPlatform_EventForwarding = "dataPlatform_eventForwarding",
33
+ DataWarehouse = "dataWarehouse",
34
+ DataWarehouse_Connections = "dataWarehouse_connections",
35
+ DataWarehouse_DataModels = "dataWarehouse_dataModels",
36
+ DataWarehouse_Pipelines = "dataWarehouse_pipelines",
37
+ Segmentation = "segmentation",
38
+ Segmentation_Journeys = "segmentation_journeys",
39
+ Segmentation_Audiences = "segmentation_audiences",
40
+ Segmentation_Audiences_Standard = "segmentation_audiences_standard",
41
+ Segmentation_Audiences_RealTime = "segmentation_audiences_realTime",
42
+ Segmentation_Audiences_SharedByAccount = "segmentation_audiences_sharedByAccount",
43
+ Analytics = "analytics",
44
+ Analytics_MyHub = "analytics_myHub",
45
+ Analytics_Saved = "analytics_saved",
46
+ Analytics_Data = "analytics_data",
47
+ Analytics_Favorites = "analytics_favorites"
48
+ }
49
+ export declare class NavigationItemsService {
50
+ static get navigationItems(): IGlobalNavigationItem[];
51
+ static initialize(): void;
52
+ static findItemById(id: NavigationItemId): IGlobalNavigationItem | undefined;
53
+ private static traverseItems;
54
+ static traverseAllItems(callback: (item: IGlobalNavigationItem) => void): void;
55
+ }
@@ -0,0 +1,12 @@
1
+ import type { Suite } from '../Suite';
2
+ export type RouteAuthorization = {
3
+ suite: Suite;
4
+ route: string;
5
+ authorized: boolean;
6
+ };
7
+ export declare class RoutesAuthorizationsService {
8
+ private static routesAuthorizations;
9
+ static initialize(): void;
10
+ static isRouteAuthorized(route: string): boolean;
11
+ private static routeMatches;
12
+ }
@@ -0,0 +1,6 @@
1
+ import { BaseRoutesAuthorizations } from "./base-routes-authorizations";
2
+ import { Suite } from "../../Suite";
3
+ export declare class AnalyticsAuthorizations extends BaseRoutesAuthorizations {
4
+ protected suite: Suite;
5
+ protected getAuthorizations(): Record<string, boolean>;
6
+ }
@@ -0,0 +1,7 @@
1
+ import { Suite } from "../../Suite";
2
+ import { RouteAuthorization } from "../RoutesAuthorizationsService";
3
+ export declare abstract class BaseRoutesAuthorizations {
4
+ protected abstract suite: Suite;
5
+ protected abstract getAuthorizations(): Record<string, boolean>;
6
+ getRoutesAuthorizations(): RouteAuthorization[];
7
+ }
@@ -0,0 +1,11 @@
1
+ import { Suite } from "../../Suite";
2
+ import { BaseRoutesAuthorizations } from "./base-routes-authorizations";
3
+ export declare class Customer360Authorizations extends BaseRoutesAuthorizations {
4
+ protected suite: Suite;
5
+ protected getAuthorizations(): Record<string, boolean>;
6
+ private canViewUserGroups;
7
+ private canViewUserActivity;
8
+ private canViewCalculatedAttributes;
9
+ private canViewCreatePredictiveAttribute;
10
+ private canViewNextBestAction;
11
+ }
@@ -0,0 +1,22 @@
1
+ import { BaseRoutesAuthorizations } from './base-routes-authorizations';
2
+ import { Suite } from '../../Suite';
3
+ export declare class DataPlatformAuthorizations extends BaseRoutesAuthorizations {
4
+ protected suite: Suite;
5
+ protected getAuthorizations(): Record<string, boolean>;
6
+ private canViewTransformations;
7
+ private canViewSetup;
8
+ private canViewPlatformTrends;
9
+ private canViewLiveStream;
10
+ private canViewEventForwarding;
11
+ private canViewConnections;
12
+ private canViewInputs;
13
+ private canViewOutputs;
14
+ canViewDataWarehouse(): boolean;
15
+ private canViewWarehouseSync;
16
+ canViewCrm(): boolean;
17
+ private canViewDirectory;
18
+ private canViewDataCatalog;
19
+ private canViewRules;
20
+ private canViewPlans;
21
+ private canViewFilters;
22
+ }
@@ -0,0 +1,10 @@
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 canViewConnections;
8
+ private canViewDataModels;
9
+ private canViewPipelines;
10
+ }
@@ -0,0 +1,13 @@
1
+ import { BaseRoutesAuthorizations } from "./base-routes-authorizations";
2
+ import { Suite } from "../../Suite";
3
+ export declare class OversightAuthorizations extends BaseRoutesAuthorizations {
4
+ protected suite: Suite;
5
+ protected getAuthorizations(): Record<string, boolean>;
6
+ private isCCPAorGDPREnabled;
7
+ private canViewDSR;
8
+ private canViewPrivacy;
9
+ private canViewSystemAlerts;
10
+ private canViewObservability;
11
+ private canViewObservabilityTraceList;
12
+ private canViewObservabilityTraceRequests;
13
+ }
@@ -0,0 +1,10 @@
1
+ import { BaseRoutesAuthorizations } from './base-routes-authorizations';
2
+ import { Suite } from '../../Suite';
3
+ export declare class RootAuthorizations extends BaseRoutesAuthorizations {
4
+ protected suite: Suite;
5
+ protected getAuthorizations(): Record<string, boolean>;
6
+ private canViewWorkspacesSettings;
7
+ private canViewAnalytics;
8
+ private canViewPlayground;
9
+ private canViewUsageReport;
10
+ }
@@ -0,0 +1,10 @@
1
+ import { BaseRoutesAuthorizations } from './base-routes-authorizations';
2
+ import { Suite } from '../../Suite';
3
+ export declare class SegmentationAuthorizations extends BaseRoutesAuthorizations {
4
+ protected suite: Suite;
5
+ protected getAuthorizations(): Record<string, boolean>;
6
+ private canViewStandardAudiences;
7
+ private canViewAudiencesShare;
8
+ private canViewRealTimeSharedAudiences;
9
+ private canViewRealTimeAudiences;
10
+ }