@flarehr/apollo-super-selection 3.95.13475 → 3.96.14021
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/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
- package/dist/lib/apollo-super-selection/p-253a24c3.entry.js +14 -0
- package/dist/lib/apollo-super-selection/{p-ef84114b.system.entry.js → p-9e145635.system.entry.js} +1 -1
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/cjs/sss-button_29.cjs.entry.js +22 -10
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/default-fund/default-fund.js +3 -2
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund.js +2 -1
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.js +3 -1
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v1-iframe-builder.js +2 -1
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +2 -1
- package/dist/lib/collection/components/super-selection-app/funds/slate-super/services/slate-iframe-builder.js +3 -1
- package/dist/lib/collection/components/super-selection-app/services/super-selection-app.service.js +5 -0
- package/dist/lib/collection/components/super-selection-app/services/super-selection.store.js +1 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +5 -2
- package/dist/lib/esm/sss-button_29.entry.js +22 -10
- package/dist/lib/esm-es5/sss-button_29.entry.js +3 -3
- package/dist/lib/types/components/super-selection-app/api/super-selection-events.model.d.ts +5 -0
- package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +4 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/api/promoted-fund-choice.api.dto.d.ts +1 -0
- package/dist/lib/types/components/super-selection-app/funds/slate-super/api/slate-choice.api.dto.d.ts +1 -0
- package/dist/lib/types/components/super-selection-app/services/super-selection.store.d.ts +2 -1
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-898aa97e.entry.js +0 -14
|
@@ -28,17 +28,21 @@ export declare type ViewedPromotedFundDetail = {
|
|
|
28
28
|
fundName: string;
|
|
29
29
|
promotedFundId: string;
|
|
30
30
|
promotedFundsShown: Array<string>;
|
|
31
|
+
defaultFundUsiSet?: string;
|
|
31
32
|
};
|
|
32
33
|
export declare type ViewedMyOwnFundDetail = {
|
|
33
34
|
promotedFundsShown: Array<string>;
|
|
35
|
+
defaultFundUsiSet?: string;
|
|
34
36
|
};
|
|
35
37
|
export declare type ViewedSmsfDetail = {
|
|
36
38
|
promotedFundsShown: Array<string>;
|
|
39
|
+
defaultFundUsiSet?: string;
|
|
37
40
|
};
|
|
38
41
|
export declare type ViewedDefaultFundDetail = {
|
|
39
42
|
fundUsi: string;
|
|
40
43
|
fundName: string;
|
|
41
44
|
promotedFundsShown: Array<string>;
|
|
45
|
+
defaultFundUsiSet?: string;
|
|
42
46
|
};
|
|
43
47
|
export declare type SuperFundNominationViewedDetail = {
|
|
44
48
|
fundType: string;
|
|
@@ -64,6 +68,7 @@ export declare type SuperFundDisclaimerAcceptedDetail = {
|
|
|
64
68
|
};
|
|
65
69
|
export declare type SuperFundPanelViewedDetail = {
|
|
66
70
|
promotedFundsShown: Array<string>;
|
|
71
|
+
defaultFundUsiSet?: string;
|
|
67
72
|
};
|
|
68
73
|
export declare type SuperFundDetailViewedDetail = {
|
|
69
74
|
PromotedFund: ViewedPromotedFundDetail;
|
|
@@ -94,6 +94,9 @@ export declare type AccountConfigurationDto = {
|
|
|
94
94
|
accountId: string;
|
|
95
95
|
defaultFundUsi: string | null;
|
|
96
96
|
};
|
|
97
|
+
export declare type ProfileConfigurationDto = {
|
|
98
|
+
defaultFundUsi: string | null;
|
|
99
|
+
};
|
|
97
100
|
export declare type AustralianFundDto = {
|
|
98
101
|
abn: string;
|
|
99
102
|
fundName: string;
|
|
@@ -108,6 +111,7 @@ export declare type AustralianFundsLookupResponseDto = Array<AustralianFundDto>;
|
|
|
108
111
|
export declare type AppStateDto = {
|
|
109
112
|
superBuyer: SuperBuyerDto;
|
|
110
113
|
accountConfiguration: AccountConfigurationDto;
|
|
114
|
+
profileConfiguration: ProfileConfigurationDto;
|
|
111
115
|
promotedFunds: string[];
|
|
112
116
|
};
|
|
113
117
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as O from 'fp-ts/lib/Option';
|
|
2
|
-
import { AccountConfigurationDto, SuperBuyerDto } from '../api/super-selection.api.dto';
|
|
2
|
+
import { AccountConfigurationDto, ProfileConfigurationDto, SuperBuyerDto } from '../api/super-selection.api.dto';
|
|
3
3
|
export declare type AppContextState = {
|
|
4
4
|
apiBaseUrl: O.Option<string>;
|
|
5
5
|
appBaseUrl: O.Option<string>;
|
|
@@ -8,6 +8,7 @@ export declare type AppContextState = {
|
|
|
8
8
|
superBuyer: O.Option<SuperBuyerDto>;
|
|
9
9
|
promotedFunds: O.Option<string[]>;
|
|
10
10
|
accountConfiguration: O.Option<AccountConfigurationDto>;
|
|
11
|
+
profileConfiguration: O.Option<ProfileConfigurationDto>;
|
|
11
12
|
hasSuccessPageBeenAcknowledged: boolean;
|
|
12
13
|
hasSuperSelectionBeenSubmitted: boolean;
|
|
13
14
|
};
|