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

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
- - **ADDED** - Transactions widget supports account-specific requests
3
+ - **FIXED** `Recurring Transactions` settings Drawer | Description/Border Bug.
4
4
 
5
5
  ## [6.27.0] - 09-15-2025
6
6
 
@@ -28,13 +28,9 @@ export interface Banner {
28
28
  image_url?: string;
29
29
  redirect_url?: string;
30
30
  }
31
- interface TransactionConfig {
32
- selected_account_guid?: string;
33
- }
34
31
  export interface ClientConfig {
35
32
  color_scheme?: 'light' | 'dark' | 'browser';
36
33
  master?: MasterConfig;
37
- transactions?: TransactionConfig;
38
34
  [key: string]: any;
39
35
  }
40
36
  export interface MasterConfig {
@@ -147,4 +143,3 @@ export interface Options {
147
143
  subtype?: string;
148
144
  type?: string;
149
145
  }
150
- export {};