@mx-cartographer/experiences 5.2.14 → 5.2.17-alpha.mega1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## [5.2.17] - 04-16-2025
2
+
3
+ - **FIXED** - Notifications mobile responsiveness, padding, and background color adjustments.
4
+
5
+ ## [5.2.16] - 04-12-2025
6
+
7
+ - **ADDED** - `BannerApi` and `Banner`
8
+ - **ADDED** - Display `Banner` in `Dashboard` main column
9
+
10
+ ## [5.2.15] - 04-12-2025
11
+
12
+ - **FIXED** - NetWorth | List title label fixed.
13
+
1
14
  ## [5.2.14] - 04-12-2025
2
15
 
3
16
  - **FIXED** - NetWorth | List Sizing Issue fixed.
@@ -0,0 +1,6 @@
1
+ import { default as Fetch } from '../utils/Fetch';
2
+ export declare class BannerApi {
3
+ fetchInstance: Fetch | null;
4
+ constructor(bullseyeEndpoint: string | undefined | null);
5
+ getBanner: (userGuid: string) => Promise<any>;
6
+ }
@@ -1,4 +1,5 @@
1
1
  export { AnalyticsApi } from './AnalyticsApi';
2
+ export { BannerApi } from './BannerApi';
2
3
  export { BeatApi } from './BeatApi';
3
4
  export { CategoryApi } from './CategoryApi';
4
5
  export { GlobalCopyApi } from './GlobalCopyApi';
@@ -0,0 +1,3 @@
1
+ export declare const Banner: (() => import("react/jsx-runtime").JSX.Element | null) & {
2
+ displayName: string;
3
+ };
@@ -1,9 +1,12 @@
1
1
  import { AppDataApi } from '../api/AppDataApi';
2
- import { AppConfig, AppData, ClientCommunicationProfile, User, UserCommunicationProfile, UserProfile } from '../types';
2
+ import { AppConfig, AppData, Banner, ClientCommunicationProfile, User, UserCommunicationProfile, UserProfile } from '../types';
3
+ import { BannerApi } from '../api';
3
4
  export declare class AppDataStore {
4
5
  appConfig: AppConfig;
5
6
  appData: AppData;
6
7
  api: AppDataApi;
8
+ banner: Banner;
9
+ bannerApi: BannerApi;
7
10
  constructor(appConfig: AppConfig);
8
11
  initialize: (endpoint: string, token: string) => Promise<void>;
9
12
  get clientCommunicationProfile(): ClientCommunicationProfile;
@@ -11,6 +14,7 @@ export declare class AppDataStore {
11
14
  get userCommunicationProfile(): UserCommunicationProfile;
12
15
  get userProfile(): UserProfile;
13
16
  loadAppData: () => Promise<void>;
17
+ loadBanner: () => Promise<void>;
14
18
  setClientCommunicationProfile: (profile: ClientCommunicationProfile) => void;
15
19
  setUser: (user: User) => User;
16
20
  setUserCommunicationProfile: (profile: UserCommunicationProfile) => UserCommunicationProfile;
@@ -21,6 +21,10 @@ export interface AppConfig {
21
21
  postHogPublicKey?: string;
22
22
  userFeatures: UserFeature[];
23
23
  }
24
+ export interface Banner {
25
+ image_url?: string;
26
+ redirect_url?: string;
27
+ }
24
28
  export interface Config {
25
29
  assets_prefix?: string;
26
30
  bundle?: string;
@@ -2,7 +2,7 @@ export type { Account, DetailedAccount, Member, MonthlyAccountBalance } from './
2
2
  export { AccountIcon, AccountIconVariants, AccountSubType, AccountType, AccountTypeName, ConnectionStatus, ConnectionStatusEnums, ErrorStatuses, MfaStatuses, NonConnectedStatuses, ProcessingStatuses, PropertyType, PropertyTypeName, StatusName, } from './Account';
3
3
  export { type Activity, ActivityStatus, ActivityType } from './Activity';
4
4
  export type { AnalyticsEvent, AnalyticsPageview, BasicAnalyticsEvent, BasicAnalyticsPageview, AnalyticsSession, AnalyticEventFunction, AnalyticPageviewFunction, } from './Analytics';
5
- export type { AppConfig, AppData, Config, Options } from './AppData';
5
+ export type { AppConfig, AppData, Banner, Config, Options } from './AppData';
6
6
  export type { Beat, DataSeries } from './Beat';
7
7
  export { UserVerification } from './Beat';
8
8
  export type { Budget, BudgetColors, DetailedBudget } from './Budget';