@mx-cartographer/experiences 6.16.1 → 6.16.2
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 +5 -1
- package/dist/common/types/AppData.d.ts +10 -0
- package/dist/index.es.js +1506 -1505
- package/dist/index.es.js.map +1 -1
- package/dist/settings/NotificationSettingsWidget.d.ts +3 -1
- package/dist/settings/components/notifications/NotificationSettings.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
|
+
## [6.16.2] - 07-08-2025
|
|
2
|
+
|
|
3
|
+
- **ADDED** - Deep link view support for `NotificationSettings` widget
|
|
4
|
+
|
|
1
5
|
## [6.16.1] - 07-09-2025
|
|
2
6
|
|
|
3
7
|
- **ADDED** - EmptyState for RecurringTransactions Micro Widget.
|
|
4
8
|
|
|
5
|
-
## [6.16.0] - 07-
|
|
9
|
+
## [6.16.0] - 07-07-2025
|
|
6
10
|
|
|
7
11
|
- **UPDATED** - Notification settings to have list items for all notification types
|
|
8
12
|
- **UPDATED** - Budget notification profiles to use expanders for each type
|
|
@@ -30,8 +30,18 @@ export interface Banner {
|
|
|
30
30
|
}
|
|
31
31
|
export interface ClientConfig {
|
|
32
32
|
color_scheme?: 'light' | 'dark' | 'browser';
|
|
33
|
+
master?: MasterConfig;
|
|
33
34
|
[key: string]: any;
|
|
34
35
|
}
|
|
36
|
+
export interface MasterConfig {
|
|
37
|
+
deep_link_params?: DeepLinkParams;
|
|
38
|
+
ui_message_protocol?: string;
|
|
39
|
+
ui_message_version?: number;
|
|
40
|
+
ui_message_webview_url_scheme?: string;
|
|
41
|
+
}
|
|
42
|
+
export interface DeepLinkParams {
|
|
43
|
+
view: string;
|
|
44
|
+
}
|
|
35
45
|
export interface Config {
|
|
36
46
|
assets_prefix?: string;
|
|
37
47
|
bundle?: string;
|