@mx-cartographer/experiences 6.27.1-alpha.al1 → 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 +1 -1
- package/dist/common/types/AppData.d.ts +5 -0
- package/dist/index.es.js +4292 -4288
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -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 {};
|