@mx-cartographer/experiences 6.2.0-alpha.al0 → 6.2.0-alpha.al2

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,22 @@
1
- ## [6.2.0] - 05-20-2025
1
+ ## [6.2.0] - 05-21-2025
2
2
 
3
3
  - **ADDED** - Analytics | Survey MiniWidget
4
4
 
5
+ ## [6.1.3] - 05-21-2025
6
+
7
+ - **CHANGED** - Notification profiles to hide Delivery Method section when all are disabled
8
+ - **CHANGED** - User Profile in Settings to be hidden when disabled
9
+ - **CHANGED** - Mobile Devices in Settings to be hidden when disabled
10
+ - **CHANGED** - Notifications in Settings to be hidden when disabled
11
+ - **CHANGED** - Transaction Rules in Settings to be hidden when disabled
12
+ - **CHANGED** - Help in Settings to be hidden when disabled
13
+ - **CHANGED** - Email Address Edit field in Profile to be hidden when disabled
14
+ - **CHANGED** - Mobile Phone Edit field in Profile to be hidden when disabled
15
+
16
+ ## [6.1.2] - 05-21-2025
17
+
18
+ - **CHANGED** - Help & Cashflow images to load from AWS S3 instead of being included in the bundle
19
+
5
20
  ## [6.1.1] - 05-20-2025
6
21
 
7
22
  - **ADDED** - Overview Component | Investments Widget
@@ -1,5 +1,5 @@
1
- import { GlobalStore } from '../../common/stores/GlobalStore';
2
1
  import { Survey, SurveyQuestion } from 'posthog-js';
2
+ import { GlobalStore } from '../../common/stores/GlobalStore';
3
3
  export declare class AnalyticsStore {
4
4
  globalStore: GlobalStore;
5
5
  survey: Survey | null;
@@ -13,7 +13,7 @@ export declare class AnalyticsStore {
13
13
  get responsePayload(): {
14
14
  $survey_id: string;
15
15
  };
16
- get surveyId(): string;
16
+ get surveyId(): "0196caa6-9b37-0000-98a7-f04e8d56faf5" | "0196a6b0-ccde-0000-b980-0b84ea2fef4a";
17
17
  get surveyQuestions(): SurveyQuestion[];
18
18
  loadSurvey: (forceReload?: boolean) => void;
19
19
  nextQuestion: () => void;
@@ -0,0 +1,4 @@
1
+ export declare const CASHFLOW_IMAGES: {
2
+ CASHFLOW_ONBOARDING: string;
3
+ CASHFLOW_LOADING_ANIMATION: string;
4
+ };
@@ -14,6 +14,7 @@ export declare class AppDataStore {
14
14
  get user(): User;
15
15
  get userCommunicationProfile(): UserCommunicationProfile;
16
16
  get userProfile(): UserProfile;
17
+ get environment(): string;
17
18
  loadAppData: () => Promise<void>;
18
19
  loadBanner: () => Promise<void>;
19
20
  setUser: (user: User) => User;
@@ -55,7 +55,7 @@ export interface Config {
55
55
  display_password_options_in_settings: boolean;
56
56
  display_sms_edit_field_in_settings: boolean;
57
57
  display_terms_and_conditions: boolean;
58
- display_user_profile_in_settins: boolean;
58
+ display_user_profile_in_settings: boolean;
59
59
  display_user_transaction_rules_in_settings: boolean;
60
60
  enable_add_account_in_zero_state: boolean;
61
61
  enable_aggregation_prompts: boolean;
@@ -0,0 +1,44 @@
1
+ export declare const HELP_IMAGES: {
2
+ ACCOUNT_DETAILS: string;
3
+ ACCOUNT_OVERVIEW: string;
4
+ ACCOUNT_ADD: string;
5
+ ACCOUNT_BROKEN_CONNECTION: string;
6
+ ACCOUNT_HIDE: string;
7
+ ACCOUNT_MANAGE_CONNECTIONS: string;
8
+ BUDGETS_ADD_SUB_BUDGET: string;
9
+ BUDGETS_WIDGET: string;
10
+ BUDGETS_EDIT_INCOME: string;
11
+ CASHFLOW_WIDGET: string;
12
+ CASHFLOW_EXPENSE_DETAILS: string;
13
+ CASHFLOW_MANAGE_EXPENSES: string;
14
+ DEBTS_DETAILS: string;
15
+ DEBTS_OVERVIEW: string;
16
+ DEBTS_PRIORITIZATION: string;
17
+ DEBTS_SNOWBALL_METHOD: string;
18
+ GENERAL_CATEGORIZE_TRANSACTIONS: string;
19
+ GOALS_CREATE_GOAL: string;
20
+ GOALS_DEBT_GOALS: string;
21
+ GOALS_WIDGET_OVERVIEW: string;
22
+ GOALS_MANAGE_GOALS: string;
23
+ GOALS_RETIREMENT_GOALS: string;
24
+ GOALS_SAVINGS_GOALS: string;
25
+ INSIGHTS_CAROUSEL: string;
26
+ INSIGHTS_FEED: string;
27
+ INVESTMENTS_WIDGET_DETAILS: string;
28
+ MOBILE_ADD_MOBILE_DEVICE: string;
29
+ NETWORTH_ASSETS_LIABILITIES: string;
30
+ NETWORTH_GAINS_LOSSES: string;
31
+ NETWORTH_WIDGET: string;
32
+ NOTIFICATIONS_MANAGING: string;
33
+ NOTIFICATIONS_OVERVIEW: string;
34
+ RECURRING_TRANSACTIONS_EXPENSE_DETAILS: string;
35
+ RECURRING_TRANSACTIONS_MANAGE_EXPENSES: string;
36
+ RECURRING_TRANSACTIONS_OVERVIEW: string;
37
+ SPENDING_WIDGET: string;
38
+ TRANSACTIONS_CATEGORIZE: string;
39
+ TRANSACTIONS_EDIT: string;
40
+ TRANSACTIONS_EXPORT: string;
41
+ TRANSACTIONS_OVERVIEW: string;
42
+ TRANSACTIONS_RULES: string;
43
+ TRENDS_WIDGET: string;
44
+ };