@mx-cartographer/experiences 6.24.15-alpha.al0 → 6.24.15-alpha.al2

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
+ ## [6.24.15] - 08-15-2025
2
+
3
+ - **UPDATED** - Remove "" from clientStyleProfile mode type
4
+
1
5
  ## [6.24.14] - 08-14-2025
2
6
 
3
7
  - **ADDED** - Additional copy for new trends widget
@@ -59,7 +59,13 @@ export interface CategoryListItem {
59
59
  guid: string;
60
60
  name: string;
61
61
  amount: number;
62
+ subcategories?: CategoryListItem[];
63
+ monthlyTotals?: {
64
+ month: number;
65
+ total: number;
66
+ }[];
62
67
  transactions?: Transaction[];
68
+ transactionCount?: number;
63
69
  color?: string;
64
70
  chartLabel?: string;
65
71
  }
@@ -110,7 +110,7 @@ export interface ClientStyleProfile {
110
110
  error_color_dark?: string;
111
111
  warning_color_dark?: string;
112
112
  info_color_dark?: string;
113
- mode?: 'dark' | 'light' | 'browser' | '';
113
+ mode?: 'dark' | 'light' | 'browser';
114
114
  system_font?: string;
115
115
  card_corner_radius?: number;
116
116
  button_corner_radius?: number;