@mx-cartographer/experiences 6.18.11 → 6.18.13-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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [6.18.12] - 07-30-2025
2
+
3
+ - **ADDED** - Added `session_timeout`, `session_timeout_url`, `keepalive_url` and `ping_id` to AppData
4
+
1
5
  ## [6.18.11] - 07-29-2025
2
6
 
3
7
  - **FIXED** - Content variable name from `notifications_settings_title` to `notification_settings_title`
@@ -0,0 +1,13 @@
1
+ import { default as React } from 'react';
2
+ interface ListItemRowProps {
3
+ onClick?: () => void;
4
+ leftIcon?: React.ReactNode;
5
+ rightIcon?: React.ReactNode;
6
+ title?: string;
7
+ subtitle?: string;
8
+ rightContent?: React.ReactNode;
9
+ titleBold?: boolean;
10
+ rightContentBold?: boolean;
11
+ }
12
+ export declare const ListItemRow: React.FC<ListItemRowProps>;
13
+ export {};
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ interface CollapseExpandListItemProps {
3
+ isExpanded: boolean;
4
+ onClick: () => void;
5
+ }
6
+ export declare const CollapseExpandListItem: React.FC<CollapseExpandListItemProps>;
7
+ export {};
@@ -83,8 +83,11 @@ export interface Config {
83
83
  enable_mark_account_duplicate_for_held_accounts: boolean;
84
84
  enable_renaming_home_accounts: boolean;
85
85
  enable_support_requests: boolean;
86
+ keepalive_url?: string;
86
87
  language?: string;
87
88
  product_name?: string;
89
+ session_timeout?: number;
90
+ session_timeout_url?: string;
88
91
  session_token?: string;
89
92
  show_account_nicknames_in_master: boolean;
90
93
  show_accounts_widget_in_master: boolean;
@@ -133,6 +136,7 @@ export interface Options {
133
136
  custom_copy_namespace?: string;
134
137
  language?: string;
135
138
  product_name?: string;
139
+ ping_id?: string;
136
140
  session_token?: string;
137
141
  subtype?: string;
138
142
  type?: string;