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

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.25.3] - 08-21-2025
1
+ ## [6.25.3] - 08-22-2025
2
2
 
3
- - **CHANGED** - new Trends Widget to use Detailed Categories
3
+ - **ADDED** - Copy content for the `Profile` drawer in the `Finstrong` widget
4
4
 
5
5
  ## [6.25.2] - 08-21-2025
6
6
 
@@ -10,7 +10,7 @@
10
10
 
11
11
  - **ADDED** - `Profile` drawer with API for `Finstrong` widget
12
12
 
13
- ## [6.25.0] - 08-20-2025
13
+ ## [6.25.00] - 08-20-2025
14
14
 
15
15
  - **ADDED** - (new) TrendsWidget, TrendsStore, TrendsChartTotals, TrendsInsights
16
16
  - **ADDED** - CategoryList, CategoryDetailDrawer, CategoryDetailChart
@@ -55,8 +55,13 @@ export interface DetailedCategory extends Category {
55
55
  totalAverageAmount: number;
56
56
  totalMonthlyAmounts: MonthlyAmount[];
57
57
  }
58
- export interface DetailedCategoryWithTransactions extends DetailedCategory {
59
- transactions: Transaction[];
58
+ export interface CategoryListItem {
59
+ guid: string;
60
+ name: string;
61
+ amount: number;
62
+ transactions?: Transaction[];
63
+ color?: string;
64
+ chartLabel?: string;
60
65
  }
61
66
  export interface CategoryTotal {
62
67
  amount: number;
@@ -6,7 +6,7 @@ export type { Beat, DataSeries } from './Beat';
6
6
  export { UserVerification } from './Beat';
7
7
  export type { Budget, BudgetColors, DetailedBudget } from './Budget';
8
8
  export type { CashflowEvent, CashflowSequence, RepeatDay, RepeatInterval, RepeatMonth, RepeatWeekday, } from './Cashflow';
9
- export type { Category, CategoryTotal, DateRangeCategoryTotals, DetailedCategory, DetailedCategoryWithTransactions, MonthlyAmount, MonthlyCategoryTotals, } from './Category';
9
+ export type { Category, CategoryListItem, CategoryTotal, DateRangeCategoryTotals, DetailedCategory, MonthlyAmount, MonthlyCategoryTotals, } from './Category';
10
10
  export type { Client, ClientColorScheme, ClientCommunicationProfile, ClientInsightProfile, ClientProfile, ClientStyleProfile, } from './Client';
11
11
  export type { DateType, DateRange } from './Date';
12
12
  export type { Expense } from './Expense';
@@ -46,15 +46,27 @@ interface KeyIndicatorSpend {
46
46
  title: string;
47
47
  }
48
48
  export interface FinstrongCopy {
49
+ account: string;
50
+ accounts: string;
51
+ add_profile_item: string;
49
52
  building: string;
53
+ complete: string;
50
54
  connect_more_accounts_button: string;
51
55
  connect_more_accounts_description: string;
52
56
  connect_more_accounts_title: string;
53
57
  connect_more_accounts_to_view_more_accurate_financial_picture: string;
58
+ connect_your_accounts: string;
59
+ connected_account: string;
60
+ connections: string;
61
+ credit_score: string;
54
62
  credit_score_status: CreditScoreStatusCopy;
63
+ date_of_birth: string;
55
64
  dont_see_all_your_accounts: string;
56
- footer_center_content_updated_just_now: string;
65
+ edit_credit_score: string;
66
+ financial_profile: string;
67
+ financial_profile_description: string;
57
68
  finstrong_freedom_description: string;
69
+ footer_center_content_updated_just_now: string;
58
70
  how_do_we_do_this: string;
59
71
  insufficient_data: string;
60
72
  key_indicators: string;
@@ -67,17 +79,21 @@ export interface FinstrongCopy {
67
79
  key_indicators_spend: KeyIndicatorSpend;
68
80
  missing_data_description: string;
69
81
  missing_data_title: string;
82
+ monthly_income: string;
83
+ profile: string;
70
84
  score_rubric: string;
71
85
  see_whats_possible: string;
72
86
  see_whats_possible_description: string;
73
87
  stable: string;
74
88
  strong: string;
89
+ title: string;
75
90
  understand_your_habits: string;
76
91
  understand_your_habits_description: string;
77
92
  vulnerable: string;
78
93
  we_ask_questions: string;
79
94
  we_ask_questions_description_1: string;
80
95
  we_ask_questions_description_2: string;
96
+ your_financial_profile: string;
81
97
  your_path_to_financial_freedom: string;
82
98
  }
83
99
  export {};