@mx-cartographer/experiences 5.2.8-alpha.al9 → 5.2.8-alpha.mm2
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/components/AccountBanner.d.ts +1 -0
- package/dist/accounts/stores/AccountStore.d.ts +4 -1
- package/dist/common/api/BannerApi.d.ts +6 -0
- package/dist/common/api/index.d.ts +1 -0
- package/dist/common/types/Account.d.ts +4 -0
- package/dist/common/types/index.d.ts +1 -1
- package/dist/index.es.js +3360 -3312
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const AccountBanner: () => "" | import("react/jsx-runtime").JSX.Element | undefined;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { Account, GlobalStore, Institution, Member } from '../../common';
|
|
1
|
+
import { Account, BannerApi, CampaignBanner, GlobalStore, Institution, Member } from '../../common';
|
|
2
2
|
import { AccountApi } from '../api/AccountApi';
|
|
3
3
|
import { UiStore } from './UiStore';
|
|
4
4
|
export declare class AccountStore {
|
|
5
5
|
api: AccountApi;
|
|
6
|
+
bannerApi: BannerApi;
|
|
6
7
|
globalStore: GlobalStore;
|
|
7
8
|
accounts: Account[];
|
|
9
|
+
banner: CampaignBanner;
|
|
8
10
|
institutions: Institution[];
|
|
9
11
|
members: Member[];
|
|
10
12
|
uiStore: UiStore;
|
|
@@ -19,6 +21,7 @@ export declare class AccountStore {
|
|
|
19
21
|
addAccount: (account: Account) => Promise<void>;
|
|
20
22
|
augmentAccounts: (accounts?: Account[]) => Account[];
|
|
21
23
|
loadAccounts: () => Promise<void>;
|
|
24
|
+
loadBanner: () => Promise<void>;
|
|
22
25
|
loadInstitutions: () => Promise<void>;
|
|
23
26
|
loadMembers: () => Promise<void>;
|
|
24
27
|
mergeAccounts: (accountGuids: string[]) => Promise<void>;
|
|
@@ -67,6 +67,10 @@ export interface Account {
|
|
|
67
67
|
truncatedDisplayName?: string;
|
|
68
68
|
institutionName?: string;
|
|
69
69
|
}
|
|
70
|
+
export interface CampaignBanner {
|
|
71
|
+
image_url?: string;
|
|
72
|
+
redirect_url?: string;
|
|
73
|
+
}
|
|
70
74
|
export interface DetailedAccount extends Account {
|
|
71
75
|
institution_name: string;
|
|
72
76
|
isEnabled: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type { Account, DetailedAccount, Member, MonthlyAccountBalance } from './Account';
|
|
1
|
+
export type { Account, CampaignBanner, DetailedAccount, Member, MonthlyAccountBalance, } from './Account';
|
|
2
2
|
export { AccountIcon, AccountIconVariants, AccountSubType, AccountType, AccountTypeName, ConnectionStatus, ConnectionStatusEnums, ErrorStatuses, MfaStatuses, NonConnectedStatuses, ProcessingStatuses, PropertyType, PropertyTypeName, StatusName, } from './Account';
|
|
3
3
|
export { type Activity, ActivityStatus, ActivityType } from './Activity';
|
|
4
4
|
export type { AnalyticsEvent, AnalyticsPageview, BasicAnalyticsEvent, BasicAnalyticsPageview, AnalyticsSession, AnalyticEventFunction, AnalyticPageviewFunction, } from './Analytics';
|