@flarehr/apollo-super-selection 1.3.40525 → 1.3.40557
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-31add796.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/apollo-super-selection/p-eb81c8da.system.entry.js +69 -0
- package/dist/lib/cjs/sss-button_40.cjs.entry.js +1586 -1543
- package/dist/lib/collection/components/super-selection-app/api/super-selection.api.dto.js +7 -0
- package/dist/lib/collection/components/super-selection-app/api/super-selection.api.js +1 -0
- package/dist/lib/collection/components/super-selection-app/consent/consent.js +10 -1
- package/dist/lib/collection/components/super-selection-app/existing-choice/existing-choice.js +16 -3
- package/dist/lib/collection/components/super-selection-app/services/existing-super-choice-info.service.js +11 -0
- package/dist/lib/collection/components/super-selection-app/services/super-selection-app.service.js +4 -1
- package/dist/lib/collection/components/super-selection-app/services/super-selection.store.js +1 -1
- package/dist/lib/collection/components/super-selection-app/super-selection-app.js +7 -2
- package/dist/lib/esm/sss-button_40.entry.js +1586 -1543
- package/dist/lib/esm-es5/sss-button_40.entry.js +3 -3
- package/dist/lib/types/components/super-selection-app/api/super-selection-events.model.d.ts +3 -1
- package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +10 -1
- package/dist/lib/types/components/super-selection-app/services/existing-super-choice-info.service.d.ts +8 -1
- package/dist/lib/types/components/super-selection-app/services/super-selection-app.service.d.ts +1 -0
- package/dist/lib/types/components/super-selection-app/services/super-selection.store.d.ts +1 -1
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-6126259d.system.entry.js +0 -69
- package/dist/lib/apollo-super-selection/p-a5305364.entry.js +0 -14
|
@@ -83,7 +83,9 @@ export declare type SuperFundNominationDeclinedDetail = {
|
|
|
83
83
|
fundStatus: string;
|
|
84
84
|
lastNominatedAt: string;
|
|
85
85
|
};
|
|
86
|
-
export declare type SuperFundDisclaimerViewedDetail =
|
|
86
|
+
export declare type SuperFundDisclaimerViewedDetail = {
|
|
87
|
+
isDefinedBenefitsEligible: string;
|
|
88
|
+
};
|
|
87
89
|
export declare type SuperFundDisclaimerAcceptedDetail = Record<string, never>;
|
|
88
90
|
export declare type SuperFundPanelViewedDetail = {
|
|
89
91
|
promotedFundsShown: Array<string>;
|
|
@@ -99,6 +99,12 @@ declare type SMSFChoiceDto = {
|
|
|
99
99
|
fundName: string;
|
|
100
100
|
electronicServiceAddress: string;
|
|
101
101
|
};
|
|
102
|
+
declare type DefinedBenefitsChoiceDto = {
|
|
103
|
+
usi: string;
|
|
104
|
+
memberNumber: string;
|
|
105
|
+
memberElectContributionRatePreTax: number;
|
|
106
|
+
memberElectContributionRatePostTax: number;
|
|
107
|
+
};
|
|
102
108
|
export declare type PrefillOwnFundChoiceDto = {
|
|
103
109
|
fundDetail: {
|
|
104
110
|
type: 'Valid';
|
|
@@ -145,6 +151,9 @@ declare type SuperChoiceDetailsDto = {
|
|
|
145
151
|
} | {
|
|
146
152
|
kind: 'PromotedDefault';
|
|
147
153
|
promotedDefault: PromotedDefaultFundChoiceDto;
|
|
154
|
+
} | {
|
|
155
|
+
kind: 'DefinedBenefits';
|
|
156
|
+
definedBenefits: DefinedBenefitsChoiceDto;
|
|
148
157
|
};
|
|
149
158
|
export declare function hydrateSuperChoiceDetailsDtoKind(dto: SuperChoiceDetailsDto): void;
|
|
150
159
|
declare type SuperChoiceDto = {
|
|
@@ -193,7 +202,7 @@ export declare type AppStateDto = {
|
|
|
193
202
|
profileConfiguration: ProfileConfigurationDto;
|
|
194
203
|
promotedFunds: string[];
|
|
195
204
|
campaignConnectEnabled: boolean;
|
|
196
|
-
|
|
205
|
+
isDefinedBenefitsEligible: boolean | null;
|
|
197
206
|
prefill: SuperChoicePrefillDto | null;
|
|
198
207
|
};
|
|
199
208
|
export declare type PromotedFundsConfigSourceDto = 'superSelection' | 'campaignConnect';
|
|
@@ -39,7 +39,14 @@ export declare type PromotedDefaultFund = {
|
|
|
39
39
|
valid: FundValidState;
|
|
40
40
|
lastNominatedAt: Option<Date>;
|
|
41
41
|
};
|
|
42
|
-
export declare type
|
|
42
|
+
export declare type DefinedBenefitsFund = {
|
|
43
|
+
type: 'Defined Benefits Fund';
|
|
44
|
+
name: string;
|
|
45
|
+
usi: Option<string>;
|
|
46
|
+
valid: FundValidState;
|
|
47
|
+
lastNominatedAt: Option<Date>;
|
|
48
|
+
};
|
|
49
|
+
export declare type ExistingFund = PromotedFund | MyOwnFund | SelfManagedFund | DefaultFund | PromotedDefaultFund | DefinedBenefitsFund;
|
|
43
50
|
export declare type RetainSuperFundDto = {
|
|
44
51
|
fundType: string;
|
|
45
52
|
fundName?: string;
|
package/dist/lib/types/components/super-selection-app/services/super-selection-app.service.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export declare class SuperSelectionAppService {
|
|
|
27
27
|
completeSuperSelectionFlow(): void;
|
|
28
28
|
markSuperSelectionAsSubmitted(): void;
|
|
29
29
|
get campaignConnectEnabled(): boolean;
|
|
30
|
+
get isDefinedBenefitsEligible(): O.Option<boolean>;
|
|
30
31
|
loadAppStateAsync(): Promise<void>;
|
|
31
32
|
startLoadingCampaignConnectAsync(): Promise<void>;
|
|
32
33
|
completeCampaignConnectRequestSafe(): Promise<void>;
|
|
@@ -14,7 +14,7 @@ export declare type AppContextState = {
|
|
|
14
14
|
hasSuperSelectionBeenSubmitted: boolean;
|
|
15
15
|
campaignConnectEnabled: boolean;
|
|
16
16
|
campaignConnectPromise: O.Option<Promise<CampaignConnectDto>>;
|
|
17
|
-
|
|
17
|
+
isDefinedBenefitsEligible: O.Option<boolean>;
|
|
18
18
|
campaignConnect: O.Option<CampaignConnectDto>;
|
|
19
19
|
};
|
|
20
20
|
export declare const initialState: AppContextState;
|