@mx-cartographer/experiences 6.3.3 → 6.4.0-alpha.al0
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.
@@ -10,6 +10,7 @@ export declare class AppDataStore {
|
|
10
10
|
banner: Banner;
|
11
11
|
constructor(globalStore: GlobalStore);
|
12
12
|
get appConfig(): AppConfig;
|
13
|
+
get isMobileWebview(): boolean;
|
13
14
|
get clientCommunicationProfile(): import('../types').ClientCommunicationProfile;
|
14
15
|
get user(): User;
|
15
16
|
get userCommunicationProfile(): UserCommunicationProfile;
|
@@ -66,6 +66,7 @@ export interface Config {
|
|
66
66
|
enable_mark_account_duplicate_for_held_accounts: boolean;
|
67
67
|
enable_renaming_home_accounts: boolean;
|
68
68
|
enable_support_requests: boolean;
|
69
|
+
is_mobile_webview?: boolean;
|
69
70
|
language?: string;
|
70
71
|
product_name?: string;
|
71
72
|
session_token?: string;
|
package/dist/index.es.js
CHANGED
@@ -19132,6 +19132,7 @@ const el = A(
|
|
19132
19132
|
assets_prefix: "/assets",
|
19133
19133
|
bundle: "widgetLoader",
|
19134
19134
|
client_guid: "",
|
19135
|
+
is_mobile_webview: !1,
|
19135
19136
|
dashboard_accounts_index: 6,
|
19136
19137
|
dashboard_accounts_location: 0,
|
19137
19138
|
dashboard_activity_index: 2,
|
@@ -19558,6 +19559,10 @@ class zC {
|
|
19558
19559
|
get appConfig() {
|
19559
19560
|
return this.globalStore.appConfig;
|
19560
19561
|
}
|
19562
|
+
get isMobileWebview() {
|
19563
|
+
const n = this.appData?.appConfig?.config;
|
19564
|
+
return n?.is_mobile_webview !== void 0 ? !!n.is_mobile_webview : !!this.globalStore.appConfig.config.is_mobile_webview;
|
19565
|
+
}
|
19561
19566
|
get clientCommunicationProfile() {
|
19562
19567
|
return this.appData.client_communication_profile;
|
19563
19568
|
}
|