@mx-cartographer/experiences 6.25.0-alpha.sms1 → 6.25.0-alpha.sms3
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/dist/accounts/stores/AccountStore.d.ts +8 -8
- 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 +247 -224
- package/dist/index.es.js.map +1 -1
- package/dist/transactions/stores/TransactionStore.d.ts +13 -6
- package/package.json +1 -1
|
@@ -27,7 +27,13 @@ export declare class TransactionStore {
|
|
|
27
27
|
transactionRules: TransactionRule[];
|
|
28
28
|
onAnalyticEvent: (event: string, session: import('../analytics').AnalyticSession | null) => Promise<any>;
|
|
29
29
|
constructor(globalStore: GlobalStore);
|
|
30
|
-
loadTransactionData: (
|
|
30
|
+
loadTransactionData: ({ associatedBeats, taggings, tags, transactionRules, transactions, }: {
|
|
31
|
+
associatedBeats?: Beat[];
|
|
32
|
+
taggings?: Tagging[];
|
|
33
|
+
tags?: Tag[];
|
|
34
|
+
transactionRules?: TransactionRule[];
|
|
35
|
+
transactions?: Transaction[];
|
|
36
|
+
}) => Promise<void>;
|
|
31
37
|
get sortedTransactions(): Transaction[];
|
|
32
38
|
get sortedTransactionsWithSplits(): Transaction[];
|
|
33
39
|
get transactions(): Transaction[];
|
|
@@ -93,11 +99,12 @@ export declare class TransactionStore {
|
|
|
93
99
|
is_duplicate: boolean;
|
|
94
100
|
feed_transacted_at: number | null;
|
|
95
101
|
}[];
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
102
|
+
getTransactionData: () => {};
|
|
103
|
+
loadAssociatedBeats: (fromDate?: Date, beatsOverride?: Beat[]) => Promise<void>;
|
|
104
|
+
loadTags: (tagsOverrides?: Tag[]) => Promise<void>;
|
|
105
|
+
loadTaggings: (taggingsOverrides?: Tagging[]) => Promise<void>;
|
|
106
|
+
loadTransactionRules: (transactionRulesOverrides?: TransactionRule[]) => Promise<void>;
|
|
107
|
+
loadTransactions: (startDate?: Date, endDate?: Date, transactionsOverrides?: Transaction[]) => Promise<void>;
|
|
101
108
|
loadTransactionsByDateRange: (endDate: number, startDate: number) => Promise<void>;
|
|
102
109
|
modifyTransactionByAccountGuid: (guid: string, updates: Partial<Transaction>) => void;
|
|
103
110
|
removeTag: (tagGuid: string) => Promise<void>;
|