@flarehr/apollo-super-selection 1.3.40541 → 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 +1566 -1557
- package/dist/lib/collection/components/super-selection-app/consent/consent.js +10 -1
- package/dist/lib/collection/components/super-selection-app/services/super-selection-app.service.js +3 -3
- 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 +3 -2
- package/dist/lib/esm/sss-button_40.entry.js +1566 -1557
- 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 +1 -1
- package/dist/lib/types/components/super-selection-app/services/super-selection-app.service.d.ts +1 -1
- 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-2a49b07d.system.entry.js +0 -69
- package/dist/lib/apollo-super-selection/p-b3af59b8.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>;
|
|
@@ -202,7 +202,7 @@ export declare type AppStateDto = {
|
|
|
202
202
|
profileConfiguration: ProfileConfigurationDto;
|
|
203
203
|
promotedFunds: string[];
|
|
204
204
|
campaignConnectEnabled: boolean;
|
|
205
|
-
|
|
205
|
+
isDefinedBenefitsEligible: boolean | null;
|
|
206
206
|
prefill: SuperChoicePrefillDto | null;
|
|
207
207
|
};
|
|
208
208
|
export declare type PromotedFundsConfigSourceDto = 'superSelection' | 'campaignConnect';
|
package/dist/lib/types/components/super-selection-app/services/super-selection-app.service.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export declare class SuperSelectionAppService {
|
|
|
27
27
|
completeSuperSelectionFlow(): void;
|
|
28
28
|
markSuperSelectionAsSubmitted(): void;
|
|
29
29
|
get campaignConnectEnabled(): boolean;
|
|
30
|
-
get
|
|
30
|
+
get isDefinedBenefitsEligible(): O.Option<boolean>;
|
|
31
31
|
loadAppStateAsync(): Promise<void>;
|
|
32
32
|
startLoadingCampaignConnectAsync(): Promise<void>;
|
|
33
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;
|