@mx-cartographer/experiences 7.2.15-alpha.sms31 → 7.2.15-alpha.sms33
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/common/index.es.js
CHANGED
|
@@ -1201,9 +1201,9 @@ class ts {
|
|
|
1201
1201
|
// UI Stores
|
|
1202
1202
|
globalUiStore;
|
|
1203
1203
|
constructor(t = K, e = "/", r, o) {
|
|
1204
|
-
this.appConfig = t, this.endpoint = e, this.sessionToken = t.options.session_token ?? "", this.onError = r, this.accountStore = new yt(this), this.appDataStore = new ce(this), this.analyticsStore = new se(this), this.beatStore = new bt(this), this.budgetsStore = new re(this), this.cashflowStore = new nt(this), this.categoryStore = new et(this), this.connectStore = new de(this), this.copyStore = new ee(this), this.debtsStore = new Ct(this), this.finstrongStore = new vt(this), this.goalStore = new it(this), this.helpStore = new ne(this), this.holdingStore = new ie(this), this.merchantStore = new Bt(this), this.netWorthStore = new It(this), this.notificationStore = new st(this), this.recurringTransactionsStore = new mt(this), this.settingsStore = new Nt(this), this.transactionStore = new at(this), this.trendsStore = new ct(this), this.userStore = new ue(this), this.globalUiStore = new le(this), f(this), ft(() => {
|
|
1204
|
+
this.appConfig = t, this.endpoint = e, this.sessionToken = t.options.session_token ?? "", this.onError = r, this.onStoreUpdate = o, this.accountStore = new yt(this), this.appDataStore = new ce(this), this.analyticsStore = new se(this), this.beatStore = new bt(this), this.budgetsStore = new re(this), this.cashflowStore = new nt(this), this.categoryStore = new et(this), this.connectStore = new de(this), this.copyStore = new ee(this), this.debtsStore = new Ct(this), this.finstrongStore = new vt(this), this.goalStore = new it(this), this.helpStore = new ne(this), this.holdingStore = new ie(this), this.merchantStore = new Bt(this), this.netWorthStore = new It(this), this.notificationStore = new st(this), this.recurringTransactionsStore = new mt(this), this.settingsStore = new Nt(this), this.transactionStore = new at(this), this.trendsStore = new ct(this), this.userStore = new ue(this), this.globalUiStore = new le(this), f(this), ft(() => {
|
|
1205
1205
|
const { transactions: a } = this.transactionStore;
|
|
1206
|
-
|
|
1206
|
+
this.emitChange(a);
|
|
1207
1207
|
});
|
|
1208
1208
|
}
|
|
1209
1209
|
get isInitialized() {
|
|
@@ -1218,7 +1218,9 @@ class ts {
|
|
|
1218
1218
|
// returns change subscribed to in the autorun (found in the constructor)
|
|
1219
1219
|
getTransactionStoreSnapshot = () => this.transactionStore;
|
|
1220
1220
|
// emits change triggered in the autorun
|
|
1221
|
-
emitChange = (t) =>
|
|
1221
|
+
emitChange = (t) => {
|
|
1222
|
+
console.log("emitted change", t), this.onStoreUpdate?.(t);
|
|
1223
|
+
};
|
|
1222
1224
|
loadData = async ({
|
|
1223
1225
|
accounts: t,
|
|
1224
1226
|
appData: e,
|
|
@@ -72,7 +72,7 @@ export declare class GlobalStore {
|
|
|
72
72
|
get isInitialized(): boolean;
|
|
73
73
|
subscribe: (listener: any) => () => void;
|
|
74
74
|
getTransactionStoreSnapshot: () => TransactionStore;
|
|
75
|
-
emitChange: (change: any) =>
|
|
75
|
+
emitChange: (change: any) => void;
|
|
76
76
|
loadData: ({ accounts, appData, associatedBeats, categories, institutions, transactionRules, transactions, userFeatures, }?: LoadDataProps) => Promise<void>;
|
|
77
77
|
}
|
|
78
78
|
export {};
|