@mx-cartographer/experiences 6.3.11-alpha.sms1 → 6.3.11-alpha.sms10
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,7 +1,11 @@
|
|
1
|
-
## [6.3.
|
1
|
+
## [6.3.12] - 06-10-2025
|
2
2
|
|
3
3
|
- **UPDATED** - `SettingsWidget` to have extensible contents that can be leveraged directly by parent (ie Insights)
|
4
4
|
|
5
|
+
## [6.3.11] - 06-09-2025
|
6
|
+
|
7
|
+
- **ADDED** - AppConfig type | Addeed clientConfig property for widget URL params
|
8
|
+
|
5
9
|
## [6.3.10] - 06-06-2025
|
6
10
|
|
7
11
|
- **ADDED** - AppConfig type | Added isMobileWebview property
|
@@ -14,6 +14,7 @@ export interface AppData {
|
|
14
14
|
user_profile: UserProfile;
|
15
15
|
}
|
16
16
|
export interface AppConfig {
|
17
|
+
clientConfig?: ClientConfig;
|
17
18
|
clientStyleProfile: ClientStyleProfile;
|
18
19
|
config: Config;
|
19
20
|
honeyBadgerPublicKey?: string;
|
@@ -26,6 +27,10 @@ export interface Banner {
|
|
26
27
|
image_url?: string;
|
27
28
|
redirect_url?: string;
|
28
29
|
}
|
30
|
+
export interface ClientConfig {
|
31
|
+
color_scheme?: 'light' | 'dark' | 'browser';
|
32
|
+
[key: string]: any;
|
33
|
+
}
|
29
34
|
export interface Config {
|
30
35
|
assets_prefix?: string;
|
31
36
|
bundle?: string;
|