@mx-cartographer/experiences 5.2.8-alpha.mm6 → 5.2.8

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,7 @@
1
+ ## [5.2.8] - 04-04-2025
2
+
3
+ - **FIXED** - Check for theWholeHog fields before accessing
4
+
1
5
  ## [5.2.7] - 04-02-2025
2
6
 
3
7
  - **FIXED** - Transaction Rules | Incorrect alert when category changed
@@ -1,12 +1,10 @@
1
- import { Account, BannerApi, CampaignBanner, GlobalStore, Institution, Member } from '../../common';
1
+ import { Account, GlobalStore, Institution, Member } from '../../common';
2
2
  import { AccountApi } from '../api/AccountApi';
3
3
  import { UiStore } from './UiStore';
4
4
  export declare class AccountStore {
5
5
  api: AccountApi;
6
- bannerApi: BannerApi;
7
6
  globalStore: GlobalStore;
8
7
  accounts: Account[];
9
- banner: CampaignBanner;
10
8
  institutions: Institution[];
11
9
  members: Member[];
12
10
  uiStore: UiStore;
@@ -21,7 +19,6 @@ export declare class AccountStore {
21
19
  addAccount: (account: Account) => Promise<void>;
22
20
  augmentAccounts: (accounts?: Account[]) => Account[];
23
21
  loadAccounts: () => Promise<void>;
24
- loadBanner: () => Promise<void>;
25
22
  loadInstitutions: () => Promise<void>;
26
23
  loadMembers: () => Promise<void>;
27
24
  mergeAccounts: (accountGuids: string[]) => Promise<void>;
@@ -6,4 +6,5 @@ export declare class BeatApi {
6
6
  getBeats: (pageNum?: number, perPage?: number) => Promise<any>;
7
7
  getBeatsWithAssociatedTransaction: (fromDate?: string) => Promise<any>;
8
8
  updateBeat: (beat: Beat) => Promise<any>;
9
+ updateOffer: (beat: Beat) => Promise<any>;
9
10
  }
@@ -1,5 +1,4 @@
1
1
  export { AnalyticsApi } from './AnalyticsApi';
2
- export { BannerApi } from './BannerApi';
3
2
  export { BeatApi } from './BeatApi';
4
3
  export { CategoryApi } from './CategoryApi';
5
4
  export { GlobalCopyApi } from './GlobalCopyApi';
@@ -21,6 +21,7 @@ export declare const ApiEndpoints: {
21
21
  MERCHANTS: string;
22
22
  MONTHLY_CASH_FLOW_PROFILE: string;
23
23
  MONTHLY_CATEGORY_TOTALS: string;
24
+ OFFERS: string;
24
25
  NOTIFICATION_PROFILES: string;
25
26
  NOTIFICATIONS: string;
26
27
  PHONE_VERIFICATIONS: string;
@@ -67,10 +67,6 @@ export interface Account {
67
67
  truncatedDisplayName?: string;
68
68
  institutionName?: string;
69
69
  }
70
- export interface CampaignBanner {
71
- image_url?: string;
72
- redirect_url?: string;
73
- }
74
70
  export interface DetailedAccount extends Account {
75
71
  institution_name: string;
76
72
  isEnabled: boolean;
@@ -1,4 +1,4 @@
1
- export type { Account, CampaignBanner, DetailedAccount, Member, MonthlyAccountBalance, } from './Account';
1
+ export type { Account, DetailedAccount, Member, MonthlyAccountBalance } from './Account';
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';
@@ -1,8 +1,7 @@
1
1
  export declare class Fetch {
2
2
  endpoint: string;
3
3
  headers: {};
4
- fetchOptions: {};
5
- constructor(endpoint: string, token: string, options?: {});
4
+ constructor(endpoint: string, token: string);
6
5
  get: (url: string) => Promise<any>;
7
6
  post: (url: string, data?: any) => Promise<any>;
8
7
  put: (url: string, data: any) => Promise<any>;