@mx-cartographer/experiences 6.3.11-alpha.sms6 → 6.3.11
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 +2 -2
- package/dist/common/types/AppData.d.ts +5 -0
- package/dist/index.es.js +3512 -3522
- package/dist/index.es.js.map +1 -1
- package/dist/settings/SettingsWidget.d.ts +0 -7
- package/dist/settings/index.d.ts +1 -2
- package/package.json +1 -1
- package/dist/settings/components/SettingsWidgetContents.d.ts +0 -8
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
## [6.3.11] - 06-
|
1
|
+
## [6.3.11] - 06-09-2025
|
2
2
|
|
3
|
-
- **
|
3
|
+
- **ADDED** - AppConfig type | Addeed clientConfig property for widget URL params
|
4
4
|
|
5
5
|
## [6.3.10] - 06-06-2025
|
6
6
|
|
@@ -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;
|