@mx-cartographer/experiences 6.15.0 → 6.16.0-ram1

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,15 @@
1
+ ## [6.16.1] - 07-02-2025
2
+
3
+ - **FIXED** - Accounts subtotal miscalculation and matching with the networth and accounts subtotals
4
+
5
+ ## [6.16.0] - 07-02-2025
6
+
7
+ - **UPDATED** - Notification settings to have list items for all notification types
8
+ - **UPDATED** - Budget notification profiles to use expanders for each type
9
+ - **UPDATED** - Insight notification profiles into a new component
10
+ - **ADDED** - Institution logos for account in account notification profiles
11
+ - **FIXED** - Dialog title for dates in account notification profiles
12
+
1
13
  ## [6.15.0] - 07-08-2025
2
14
 
3
15
  - **FIXED** - Added decimal input support for Split Transactions on mobile devices
@@ -8,7 +20,7 @@
8
20
 
9
21
  ## [6.14.2] - 07-07-2025
10
22
 
11
- - **FIXED** - Accounts filtering option indicating `(Closed)`
23
+ - **FIXED** - Accounts filtering option indicating `(Closed)`
12
24
 
13
25
  ## [6.14.1] - 07-04-2025
14
26
 
@@ -1,4 +1,7 @@
1
+ import { default as React } from 'react';
1
2
  interface ToggleButtonListItemProps {
3
+ avatar?: React.ReactNode;
4
+ endIcon?: React.ReactNode;
2
5
  isChecked: boolean;
3
6
  isDisabled?: boolean;
4
7
  onClick: () => void;
@@ -6,5 +9,5 @@ interface ToggleButtonListItemProps {
6
9
  primaryText: string;
7
10
  secondaryText?: string;
8
11
  }
9
- export declare const ToggleButtonListItem: ({ isChecked, isDisabled, onClick, onToggle, primaryText, secondaryText, }: ToggleButtonListItemProps) => import("react/jsx-runtime").JSX.Element;
12
+ export declare const ToggleButtonListItem: ({ avatar, endIcon, isChecked, isDisabled, onClick, onToggle, primaryText, secondaryText, }: ToggleButtonListItemProps) => import("react/jsx-runtime").JSX.Element;
10
13
  export {};
@@ -4,6 +4,7 @@ interface ToggleListItemProps {
4
4
  onToggle: () => void;
5
5
  primaryText: string;
6
6
  secondaryText?: string;
7
+ useExtraPadding?: boolean;
7
8
  }
8
- export declare const ToggleListItem: ({ isChecked, isDisabled, onToggle, primaryText, secondaryText, }: ToggleListItemProps) => import("react/jsx-runtime").JSX.Element;
9
+ export declare const ToggleListItem: ({ isChecked, isDisabled, onToggle, primaryText, secondaryText, useExtraPadding, }: ToggleListItemProps) => import("react/jsx-runtime").JSX.Element;
9
10
  export {};
@@ -10,14 +10,14 @@ export type Notification = {
10
10
  has_been_viewed: boolean;
11
11
  in_app_icon: string;
12
12
  merchant_guid: string;
13
- notification_type: NotificationType;
13
+ notification_type: number;
14
14
  };
15
15
  export type NotificationProfile = {
16
16
  email_channel: boolean;
17
17
  entity_guid: string;
18
18
  guid: string;
19
19
  is_enabled: boolean;
20
- notification_type: NotificationType;
20
+ notification_type: number;
21
21
  push_channel: boolean;
22
22
  sms_channel: boolean;
23
23
  threshold?: number | null;
@@ -28,9 +28,12 @@ export interface DetailedNotificationProfile extends NotificationProfile {
28
28
  deliveryMethodsLabel?: string;
29
29
  label: string;
30
30
  }
31
- export declare enum NotificationType {
32
- BudgetExceeded = 1,
33
- BudgetOffTarget = 2,
31
+ export declare enum NotificationTypes {
32
+ Accounts = "accounts",
33
+ Budgets = "budgets",
34
+ Insights = "insights"
35
+ }
36
+ export declare enum AccountNotificationTypes {
34
37
  DebtPaymentReminder = 3,
35
38
  AccountBalanceLow = 6,
36
39
  AccountDepositLarge = 7,
@@ -39,13 +42,16 @@ export declare enum NotificationType {
39
42
  InternationalTransaction = 23,
40
43
  AccountDepositLargePosted = 48
41
44
  }
42
- export declare enum InsightNotificationType {
45
+ export declare enum BudgetNotificationTypes {
46
+ BudgetExceeded = 1,
47
+ BudgetOffTarget = 2
48
+ }
49
+ export declare enum InsightNotificationTypes {
43
50
  AccountBalanceLow = 33,
44
51
  BillAmountNotStandard = 49,
45
52
  CategorySpending = 50,
46
53
  CreditCardCloseToLimit = 51,
47
54
  DebtPaymentReminder = 37,
48
- DebtPaymentReminderV3 = 66,
49
55
  DuplicatePayment = 42,
50
56
  MonthlySpendComparison = 53,
51
57
  MonthlySpendToIncomeComparison = 54,
@@ -65,20 +71,3 @@ export declare enum InsightNotificationType {
65
71
  PromotionalCampaignMessages = 67,
66
72
  TransparentOverdraft = 68
67
73
  }
68
- export type InsightsNotificationProfile = {
69
- email_channel: boolean;
70
- entity_guid: string;
71
- guid: string;
72
- is_enabled: boolean;
73
- notification_type: number;
74
- user_guid: string;
75
- push_channel: boolean;
76
- sms_channel: boolean;
77
- client_guid: string;
78
- };
79
- export interface DetailedInsightsNotificationProfile extends InsightsNotificationProfile {
80
- account?: Account;
81
- children?: DetailedInsightsNotificationProfile[];
82
- deliveryMethodsLabel?: string;
83
- label: string;
84
- }
@@ -19,8 +19,8 @@ export type { HelpAlertProps, HelpCategory, HelpContentProps, HelpTopic, HelpTyp
19
19
  export type { Institution } from './Institution';
20
20
  export * from './localization';
21
21
  export type { LocalizedContent } from './LocalizedContent';
22
- export { NotificationType } from './Notification';
23
- export type { DetailedNotificationProfile, Notification, NotificationProfile, InsightsNotificationProfile, DetailedInsightsNotificationProfile, } from './Notification';
22
+ export { AccountNotificationTypes, BudgetNotificationTypes, InsightNotificationTypes, NotificationTypes, } from './Notification';
23
+ export type { DetailedNotificationProfile, Notification, NotificationProfile } from './Notification';
24
24
  export type { Merchant } from './Merchant';
25
25
  export type { ScheduledPayment } from './ScheduledPayment';
26
26
  export type { SpendingPlan, SpendingPlanAccount, SpendingPlanIteration, IterationItem, } from './SpendingPlan';
@@ -1,6 +1,9 @@
1
1
  export interface SettingsCopy {
2
+ accounts_subtitle: string;
3
+ accounts_threshold_title: string;
2
4
  accounts_title: string;
3
5
  birthdate: string;
6
+ budgets_subtitle: string;
4
7
  budgets_title: string;
5
8
  category: string;
6
9
  confirm_email: string;
@@ -34,11 +37,16 @@ export interface SettingsCopy {
34
37
  enter_verification_code: string;
35
38
  first_name: string;
36
39
  help_label: string;
40
+ insights_subtitle: string;
41
+ insights_title: string;
37
42
  information_updated_error: string;
38
43
  information_updated_success: string;
39
44
  keep_editing: string;
40
45
  last_name: string;
41
46
  leave: string;
47
+ manage_account_notifications: string;
48
+ manage_budget_notifications: string;
49
+ manage_insights_notifications: string;
42
50
  mobile_devices_access_cta: string;
43
51
  mobile_devices_access_description: string;
44
52
  mobile_devices_access_error: string;