@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 +1 -1
- package/dist/common/types/AppData.d.ts +0 -5
- package/dist/index.es.js +3506 -3514
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -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 {};
|