@mx-cartographer/experiences 6.3.11-alpha.sms9 → 6.3.12

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.3.12] - 06-10-2025
1
+ ## [6.3.12] - 06-11-2025
2
2
 
3
- - **UPDATED** - `SettingsWidget` to have extensible contents that can be leveraged directly by parent (ie Insights)
3
+ - **ADDED** - PostMessage on Insight on transaction click
4
4
 
5
5
  ## [6.3.11] - 06-09-2025
6
6
 
@@ -1,4 +1,4 @@
1
- export declare const useScreenSize: (availableWidth?: undefined | number) => {
1
+ export declare const useScreenSize: () => {
2
2
  isLargeDesktop: boolean;
3
3
  isDesktop: boolean;
4
4
  isMobile: boolean;
@@ -8,7 +8,8 @@ export declare enum Frequency {
8
8
  EveryOtherMonth = 4,
9
9
  EveryQuarter = 5,
10
10
  EveryOtherQuarter = 6,
11
- EveryYear = 7
11
+ EveryYear = 7,
12
+ TwiceAMonth = 8
12
13
  }
13
14
  export declare enum RecurrenceStatus {
14
15
  Paid = 0,
@@ -39,6 +40,7 @@ export interface RepeatingTransaction {
39
40
  recurrence_type: Frequency;
40
41
  recurrence_day: number;
41
42
  repeating_transaction_type: RepeatingType;
43
+ second_recurrence_day?: number;
42
44
  account?: Account;
43
45
  transactions: Transaction[];
44
46
  }
@@ -55,6 +57,7 @@ export interface Recurrence {
55
57
  occurredOnDate?: Date;
56
58
  recurrenceDay: number;
57
59
  repeatingTransactionGuid: string;
60
+ secondRecurrenceDay?: number;
58
61
  status: RecurrenceStatus;
59
62
  type: RecurrenceType;
60
63
  transaction?: Transaction;
@@ -0,0 +1,9 @@
1
+ export declare function getReferrer(): string;
2
+ export interface PostMessageData {
3
+ metadata?: Record<string, any>;
4
+ mx: boolean;
5
+ type: string;
6
+ [key: string]: any;
7
+ }
8
+ export declare function postMessageToParent(message: PostMessageData): boolean;
9
+ export declare function postInsightOnTransaction(beatGuid: string): boolean;