@mx-cartographer/experiences 3.1.2-alpha.bb1 → 3.1.2

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [3.1.2] - 09-03-2024
2
+
3
+ - **FIXED** - Issue with accounts not loading
4
+
1
5
  ## [3.1.1] - 08-28-2024
2
6
 
3
7
  - **FIXED** - Cashflow daterange inconsistencies
@@ -11,11 +11,11 @@ export declare class AccountStore {
11
11
  members: Member[];
12
12
  uiStore: UiStore;
13
13
  constructor(globalStore: GlobalStore);
14
- initialize: (endpoint: string, token: string) => void;
14
+ initialize: (endpoint: string, token: string) => Promise<void>;
15
15
  get cashAccounts(): Account[];
16
16
  get cashBalance(): number;
17
17
  addAccount: (account: Account) => Promise<void>;
18
- augmentAccounts: (accounts?: Account[]) => void;
18
+ augmentAccounts: (accounts?: Account[]) => Account[];
19
19
  loadAccounts: () => Promise<void>;
20
20
  loadInstitutions: () => Promise<void>;
21
21
  loadMembers: () => Promise<void>;
@@ -25,8 +25,8 @@ export declare class AccountStore {
25
25
  mode?: string | undefined;
26
26
  }) => Promise<any>;
27
27
  mergeAccounts: (accountGuids: string[]) => Promise<void>;
28
- sortAccounts: (accounts?: Account[]) => void;
29
- refreshAccounts: () => void;
28
+ sortAccounts: (accounts?: Account[]) => Account[];
29
+ refreshAccounts: () => Promise<void>;
30
30
  refreshMembers: () => Promise<void>;
31
31
  removeAccount: (accountGuid: string) => Promise<void>;
32
32
  updateAccount: (account: Account) => Promise<void>;
@@ -1,2 +1 @@
1
- export { BubbleBudgetsWidget } from './BubbleBudgetsWidget';
2
1
  export { default as BubbleBudgetsMiniWidget } from './BubbleBudgetsMiniWidget';