@flarehr/apollo-super-selection 3.95.13475 → 4.0.14518
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/assets/logo-first.svg +15 -0
- package/dist/lib/apollo-super-selection/p-2d18a805.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/apollo-super-selection/p-e367fcf2.entry.js +14 -0
- package/dist/lib/cjs/sss-button_29.cjs.entry.js +54 -11
- package/dist/lib/collection/components/super-selection-app/api/super-selection.api.dto.js +6 -0
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +14 -1
- 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/assets/logo-first.svg +15 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +29 -2
- package/dist/lib/esm/sss-button_29.entry.js +54 -11
- 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 +9 -0
- package/dist/lib/types/components/super-selection-app/funds/constants.d.ts +7 -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
- package/dist/lib/apollo-super-selection/p-ef84114b.system.entry.js +0 -69
|
@@ -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;
|
|
@@ -54,6 +54,11 @@ declare type PromotedFundChoiceDto = {
|
|
|
54
54
|
usi: string;
|
|
55
55
|
memberNumber: string;
|
|
56
56
|
};
|
|
57
|
+
} | {
|
|
58
|
+
firstSuper: {
|
|
59
|
+
usi: string;
|
|
60
|
+
memberNumber: string;
|
|
61
|
+
};
|
|
57
62
|
};
|
|
58
63
|
export declare function getSuperChoiceUsi(dto: SuperChoiceDetailsDto): Option<string>;
|
|
59
64
|
export declare function getSuperChoiceMemberNumber(dto: SuperChoiceDetailsDto): Option<string>;
|
|
@@ -94,6 +99,9 @@ export declare type AccountConfigurationDto = {
|
|
|
94
99
|
accountId: string;
|
|
95
100
|
defaultFundUsi: string | null;
|
|
96
101
|
};
|
|
102
|
+
export declare type ProfileConfigurationDto = {
|
|
103
|
+
defaultFundUsi: string | null;
|
|
104
|
+
};
|
|
97
105
|
export declare type AustralianFundDto = {
|
|
98
106
|
abn: string;
|
|
99
107
|
fundName: string;
|
|
@@ -108,6 +116,7 @@ export declare type AustralianFundsLookupResponseDto = Array<AustralianFundDto>;
|
|
|
108
116
|
export declare type AppStateDto = {
|
|
109
117
|
superBuyer: SuperBuyerDto;
|
|
110
118
|
accountConfiguration: AccountConfigurationDto;
|
|
119
|
+
profileConfiguration: ProfileConfigurationDto;
|
|
111
120
|
promotedFunds: string[];
|
|
112
121
|
};
|
|
113
122
|
export {};
|
|
@@ -48,6 +48,13 @@ export declare const Spirit: {
|
|
|
48
48
|
PdsUrl: string;
|
|
49
49
|
Abn: string;
|
|
50
50
|
};
|
|
51
|
+
export declare const First: {
|
|
52
|
+
Id: string;
|
|
53
|
+
Name: string;
|
|
54
|
+
Logo: string;
|
|
55
|
+
PdsUrl: string;
|
|
56
|
+
Abn: string;
|
|
57
|
+
};
|
|
51
58
|
export declare const PromotedFundIdList: {
|
|
52
59
|
dtoPropName: string;
|
|
53
60
|
id: string;
|
|
@@ -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
|
};
|