@mx-cartographer/experiences 7.2.15-alpha.sms28 → 7.2.15-alpha.sms29
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.
|
@@ -7,7 +7,7 @@ export interface GlobalStoreContextTypes {
|
|
|
7
7
|
onLoad?: (widgetName: string) => void;
|
|
8
8
|
onPageView: (pageViewEvent: string) => void;
|
|
9
9
|
globalStore: GlobalStore;
|
|
10
|
-
onStoreUpdate?: () => void;
|
|
10
|
+
onStoreUpdate?: (update: any) => void;
|
|
11
11
|
}
|
|
12
12
|
export declare const GlobalDataContext: React.Context<GlobalStoreContextTypes | null>;
|
|
13
13
|
export declare const GlobalDataProvider: React.FC<React.PropsWithChildren<GlobalStoreContextTypes>>;
|
package/dist/common/index.es.js
CHANGED
|
@@ -1203,12 +1203,15 @@ class ts {
|
|
|
1203
1203
|
constructor(t = K, e = "/", r) {
|
|
1204
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(() => {
|
|
1205
1205
|
const { transactions: o } = this.transactionStore;
|
|
1206
|
-
console.log("change happened
|
|
1206
|
+
console.log("change happened 4"), this.doThings(o);
|
|
1207
1207
|
});
|
|
1208
1208
|
}
|
|
1209
1209
|
get isInitialized() {
|
|
1210
1210
|
return this.globalUiStore.isInitialized;
|
|
1211
1211
|
}
|
|
1212
|
+
doThings = (t) => {
|
|
1213
|
+
console.log("i did things!"), this.onStoreUpdate?.(t);
|
|
1214
|
+
};
|
|
1212
1215
|
// for external libraries like Pulse to subscribe
|
|
1213
1216
|
// to global store snapshots, like `getTransactionStoreSnapshot` below
|
|
1214
1217
|
// using `useSyncExternalStore` https://react.dev/reference/react/useSyncExternalStore
|
|
@@ -70,6 +70,7 @@ export declare class GlobalStore {
|
|
|
70
70
|
globalUiStore: GlobalUiStore;
|
|
71
71
|
constructor(appConfig?: AppConfig, endpoint?: string, onError?: GlobalErrorHandler);
|
|
72
72
|
get isInitialized(): boolean;
|
|
73
|
+
doThings: (thing: any) => void;
|
|
73
74
|
subscribe: (listener: any) => () => void;
|
|
74
75
|
getTransactionStoreSnapshot: () => TransactionStore;
|
|
75
76
|
emitChange: (change: any) => any;
|