@mx-cartographer/experiences 5.0.22-alpha.mega2 → 5.0.23

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,12 @@
1
+ ## [5.0.23] - 03-27-2025
2
+
3
+ - **FIXED** - Fixed a bug for Projected dates updating after saving in Goals.
4
+ - **FIXED** - Help Widget | Consistency fix for Mobile, NetWorth, Notifications, RecurringTransactions
5
+
6
+ ## [5.0.22] - 03-27-2025
7
+
8
+ - **FIXED** - Goals | text not wrapping on mobile screen size fixed
9
+
1
10
  ## [5.0.21] - 03-26-2025
2
11
 
3
12
  - **UPDATED** - Handled request support in the help content page.
@@ -78,7 +78,7 @@ export interface Tagging {
78
78
  export interface TransactionRule {
79
79
  guid: string;
80
80
  user_guid: string;
81
- category_guid: string;
81
+ category_guid: string | null;
82
82
  match_description: string;
83
- description: string;
83
+ description: string | null;
84
84
  }