@mx-cartographer/experiences 6.27.1-alpha.al2 → 6.27.1-alpha.mega1

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
1
  ## [6.27.1] - 09-16-2025
2
2
 
3
- - **UPDATED** removed categories list and insights microcarousel from table view in 'TrendsWidget'
3
+ - **ADDED** - Transactions widget supports account-specific requests
4
4
 
5
5
  ## [6.27.0] - 09-15-2025
6
6
 
@@ -28,9 +28,13 @@ export interface Banner {
28
28
  image_url?: string;
29
29
  redirect_url?: string;
30
30
  }
31
+ interface TransactionConfig {
32
+ selected_account_guid?: string;
33
+ }
31
34
  export interface ClientConfig {
32
35
  color_scheme?: 'light' | 'dark' | 'browser';
33
36
  master?: MasterConfig;
37
+ transactions?: TransactionConfig;
34
38
  [key: string]: any;
35
39
  }
36
40
  export interface MasterConfig {
@@ -143,3 +147,4 @@ export interface Options {
143
147
  subtype?: string;
144
148
  type?: string;
145
149
  }
150
+ export {};