@mx-cartographer/experiences 5.2.9-alpha.al2 → 5.2.9

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.9] - 04-09-2025
2
+
3
+ - **ADDED** - Get offers
4
+
1
5
  ## [5.2.8] - 04-04-2025
2
6
 
3
7
  - **FIXED** - Check for theWholeHog fields before accessing
@@ -5,6 +5,7 @@ export declare class BeatApi {
5
5
  constructor(endpoint: string, token: string);
6
6
  getBeats: (pageNum?: number, perPage?: number) => Promise<any>;
7
7
  getBeatsWithAssociatedTransaction: (fromDate?: string) => Promise<any>;
8
+ getOffers: () => Promise<any>;
8
9
  updateBeat: (beat: Beat) => Promise<any>;
9
10
  updateOffer: (beat: Beat) => Promise<any>;
10
11
  }
@@ -14,7 +14,6 @@ export interface AccountFilterProps {
14
14
  selectedAccountGuids: string[];
15
15
  showAccountNumbers: boolean;
16
16
  sx?: SxProps;
17
- title?: string;
18
17
  variant?: 'outlined' | 'text';
19
18
  }
20
19
  declare const AccountFilter: FC<AccountFilterProps>;
@@ -25,6 +25,7 @@ export declare const ApiEndpoints: {
25
25
  NOTIFICATION_PROFILES: string;
26
26
  NOTIFICATIONS: string;
27
27
  PHONE_VERIFICATIONS: string;
28
+ PULSE_COMMUNICATIONS: string;
28
29
  RETIREMENT_GOALS: string;
29
30
  RETIREMENT_GOAL_ACCOUNTS: string;
30
31
  SCHEDULED_PAYMENTS: string;