@mx-cartographer/experiences 6.5.8-alpha.san1 → 6.5.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,6 +1,6 @@
1
- ## [6.5.8] - 06-16-2025
1
+ ## [6.5.8] - 06-17-2025
2
2
 
3
- - **FIXED** - Investments Design Fixes
3
+ - **UPDATED** - Profile Save button has enabled/disabled states based on unsaved changes
4
4
 
5
5
  ## [6.5.7] - 06-17-2025
6
6
 
@@ -8,7 +8,7 @@
8
8
 
9
9
  ## [6.5.6] - 06-16-2025
10
10
 
11
- - ** FIXED** - Another issue preventing Recurring Transactions from being created
11
+ - **FIXED** - Another issue preventing Recurring Transactions from being created
12
12
 
13
13
  ## [6.5.5] - 06-16-2025
14
14
 
@@ -32,6 +32,7 @@ export interface UserProfile {
32
32
  uses_detailed_notifications: boolean;
33
33
  user_guid: string;
34
34
  }
35
+ export type EditableUser = Pick<User, 'birthday' | 'credit_score' | 'email' | 'first_name' | 'last_name' | 'phone' | 'postal_code'>;
35
36
  export interface UserFeature {
36
37
  feature_guid: string;
37
38
  feature_name: string;
@@ -25,7 +25,7 @@ export type { ScheduledPayment } from './ScheduledPayment';
25
25
  export type { SpendingPlan, SpendingPlanAccount, SpendingPlanIteration, IterationItem, } from './SpendingPlan';
26
26
  export type { Tag, Tagging, Transaction, TransactionRule } from './Transaction';
27
27
  export { TransactionStatus, TransactionType } from './Transaction';
28
- export type { Device, User, UserCommunicationProfile, UserFeature, UserProfile } from './User';
28
+ export type { Device, EditableUser, User, UserCommunicationProfile, UserFeature, UserProfile, } from './User';
29
29
  export { ScreenSize } from './ScreenSize';
30
30
  export type { MiniWidgetProps, WidgetProps } from './Widgets';
31
31
  export type { Holding } from './Holding';