@mx-cartographer/experiences 6.24.12 → 6.25.0-alpha.sms2
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 +0 -8
- package/dist/accounts/stores/AccountStore.d.ts +12 -4
- package/dist/categories/stores/CategoryStore.d.ts +4 -1
- package/dist/common/stores/AppDataStore.d.ts +1 -1
- package/dist/common/stores/GlobalStore.d.ts +17 -2
- package/dist/common/stores/UserStore.d.ts +1 -1
- package/dist/index.es.js +255 -228
- package/dist/index.es.js.map +1 -1
- package/dist/transactions/stores/TransactionStore.d.ts +13 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
## [6.24.12] - 08-13-2025
|
|
2
|
-
|
|
3
|
-
- **FIXED** - App bar settings overflow on compact devices
|
|
4
|
-
|
|
5
|
-
## [6.24.11] - 08-12-2025
|
|
6
|
-
|
|
7
|
-
- **FIXED** - Unwanted white space issue in the Budgets widget by updating usage of `detailedBudgets` for consistent filtering
|
|
8
|
-
|
|
9
1
|
## [6.24.10] - 08-11-2025
|
|
10
2
|
|
|
11
3
|
- **ADDED** - Score Rubric Drawer component displaying detailed financial strength scoring information
|
|
@@ -9,7 +9,15 @@ export declare class AccountStore {
|
|
|
9
9
|
members: Member[];
|
|
10
10
|
uiStore: UiStore;
|
|
11
11
|
constructor(globalStore: GlobalStore);
|
|
12
|
-
|
|
12
|
+
getAccountData: () => {
|
|
13
|
+
accounts: Account[];
|
|
14
|
+
institutions: Institution[];
|
|
15
|
+
};
|
|
16
|
+
loadAccountData: ({ accounts, institutions, members }: {
|
|
17
|
+
accounts?: Account[];
|
|
18
|
+
institutions?: Institution[];
|
|
19
|
+
members?: Member[];
|
|
20
|
+
}) => Promise<void>;
|
|
13
21
|
get cashAccounts(): Account[];
|
|
14
22
|
get cashBalance(): number;
|
|
15
23
|
get checkingAccounts(): Account[];
|
|
@@ -25,9 +33,9 @@ export declare class AccountStore {
|
|
|
25
33
|
get visibleSavingsAccounts(): Account[];
|
|
26
34
|
addAccount: (account: Account) => Promise<void>;
|
|
27
35
|
augmentAccounts: (accounts?: Account[]) => Account[];
|
|
28
|
-
loadAccounts: () => Promise<void>;
|
|
29
|
-
loadInstitutions: () => Promise<void>;
|
|
30
|
-
loadMembers: () => Promise<void>;
|
|
36
|
+
loadAccounts: (accountsOverride?: Account[], members?: Member[]) => Promise<void>;
|
|
37
|
+
loadInstitutions: (institutionsOverride?: Institution[]) => Promise<void>;
|
|
38
|
+
loadMembers: (membersOverride?: Member[]) => Promise<void>;
|
|
31
39
|
mergeAccounts: (accountGuids: string[]) => Promise<void>;
|
|
32
40
|
sortAccounts: (accounts?: Account[]) => Account[];
|
|
33
41
|
refreshAccounts: () => Promise<void>;
|
|
@@ -16,7 +16,10 @@ export declare class CategoryStore {
|
|
|
16
16
|
get spendCategories(): DetailedCategory[];
|
|
17
17
|
get transferCategories(): DetailedCategory[];
|
|
18
18
|
addCategory: (name: string, parentGuid: string) => Promise<void>;
|
|
19
|
-
|
|
19
|
+
getCategoryData: () => {
|
|
20
|
+
categories: Category[];
|
|
21
|
+
};
|
|
22
|
+
loadCategories: (categoriesOverride?: Category[]) => Promise<void>;
|
|
20
23
|
loadDateRangeCategoryTotals: (accounts: Account[], startDate: Date, endDate: Date) => Promise<void>;
|
|
21
24
|
loadMonthlyCategoryTotals: (accounts?: Account[], startDate?: Date, endDate?: Date) => Promise<void>;
|
|
22
25
|
reloadCategoryTotals: (accounts: Account[], startDate: Date, endDate: Date) => Promise<void>;
|
|
@@ -15,7 +15,7 @@ export declare class AppDataStore {
|
|
|
15
15
|
get user(): User;
|
|
16
16
|
get userCommunicationProfile(): UserCommunicationProfile;
|
|
17
17
|
get userProfile(): UserProfile;
|
|
18
|
-
loadAppData: () => Promise<void>;
|
|
18
|
+
loadAppData: (appDataOverrides?: AppData) => Promise<void>;
|
|
19
19
|
loadBanner: () => Promise<void>;
|
|
20
20
|
setUser: (user: User) => User;
|
|
21
21
|
setUserCommunicationProfile: (profile: UserCommunicationProfile) => UserCommunicationProfile;
|
|
@@ -21,7 +21,21 @@ import { ConnectStore } from './ConnectStore';
|
|
|
21
21
|
import { GlobalCopyStore } from './GlobalCopyStore';
|
|
22
22
|
import { GlobalUiStore } from './GlobalUiStore';
|
|
23
23
|
import { UserStore } from './UserStore';
|
|
24
|
-
import {
|
|
24
|
+
import { Account, Category, Institution, Member } from '../../common';
|
|
25
|
+
import { AppConfig, AppData, Beat, Tag, Tagging, Transaction, TransactionRule, UserFeature } from '../types';
|
|
26
|
+
interface LoadDataProps {
|
|
27
|
+
accounts?: Account[];
|
|
28
|
+
appData?: AppData;
|
|
29
|
+
associatedBeats?: Beat[];
|
|
30
|
+
categories?: Category[];
|
|
31
|
+
institutions?: Institution[];
|
|
32
|
+
members?: Member[];
|
|
33
|
+
taggings?: Tagging[];
|
|
34
|
+
tags?: Tag[];
|
|
35
|
+
transactionRules?: TransactionRule[];
|
|
36
|
+
transactions?: Transaction[];
|
|
37
|
+
userFeatures?: UserFeature[];
|
|
38
|
+
}
|
|
25
39
|
export declare class GlobalStore {
|
|
26
40
|
appConfig: AppConfig;
|
|
27
41
|
endpoint: string;
|
|
@@ -51,5 +65,6 @@ export declare class GlobalStore {
|
|
|
51
65
|
globalUiStore: GlobalUiStore;
|
|
52
66
|
constructor(appConfig?: AppConfig, endpoint?: string);
|
|
53
67
|
get isInitialized(): boolean;
|
|
54
|
-
loadData: () => Promise<void>;
|
|
68
|
+
loadData: ({ accounts, appData, associatedBeats, categories, institutions, members, taggings, tags, transactionRules, transactions, userFeatures, }: LoadDataProps) => Promise<void>;
|
|
55
69
|
}
|
|
70
|
+
export {};
|
|
@@ -9,7 +9,7 @@ export declare class UserStore {
|
|
|
9
9
|
initialize: (endpoint: string, token: string) => Promise<void>;
|
|
10
10
|
get userProfile(): UserProfile;
|
|
11
11
|
get user(): User;
|
|
12
|
-
loadUserFeatures: () => Promise<void>;
|
|
12
|
+
loadUserFeatures: (featuresOverrides?: UserFeature[]) => Promise<void>;
|
|
13
13
|
updateUser: (user: User) => Promise<void>;
|
|
14
14
|
updateUserProfile: (userProfile: UserProfile) => Promise<void>;
|
|
15
15
|
}
|