@flarehr/apollo-super-selection 4.42.36722 → 4.43.36878
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-5be8f0b9.entry.js → p-2fff3609.entry.js} +1 -1
- package/dist/lib/apollo-super-selection/p-88073c59.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/cjs/sss-button_38.cjs.entry.js +13 -3
- package/dist/lib/collection/components/super-selection-app/consent/consent.js +7 -2
- package/dist/lib/collection/components/super-selection-app/services/super-selection-app.service.js +6 -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 +1 -1
- package/dist/lib/esm/sss-button_38.entry.js +13 -3
- package/dist/lib/esm-es5/sss-button_38.entry.js +1 -1
- package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +1 -0
- package/dist/lib/types/components/super-selection-app/services/super-selection-app.service.d.ts +2 -0
- package/dist/lib/types/components/super-selection-app/services/super-selection.store.d.ts +1 -0
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-65c670d7.system.entry.js +0 -69
|
@@ -186,6 +186,7 @@ export declare type AppStateDto = {
|
|
|
186
186
|
profileConfiguration: ProfileConfigurationDto;
|
|
187
187
|
promotedFunds: string[];
|
|
188
188
|
campaignConnectEnabled: boolean;
|
|
189
|
+
definedBenefitsEligibility: boolean;
|
|
189
190
|
prefill: SuperChoicePrefillDto | null;
|
|
190
191
|
};
|
|
191
192
|
export declare type PromotedFundsConfigSourceDto = 'superSelection' | 'campaignConnect';
|
package/dist/lib/types/components/super-selection-app/services/super-selection-app.service.d.ts
CHANGED
|
@@ -26,7 +26,9 @@ export declare class SuperSelectionAppService {
|
|
|
26
26
|
get jwt(): string;
|
|
27
27
|
completeSuperSelectionFlow(): void;
|
|
28
28
|
markSuperSelectionAsSubmitted(): void;
|
|
29
|
+
get campaignConnectEnabled(): boolean;
|
|
29
30
|
loadAppStateAsync(): Promise<void>;
|
|
31
|
+
startLoadingCampaignConnectAsync(): Promise<void>;
|
|
30
32
|
completeCampaignConnectRequestSafe(): Promise<void>;
|
|
31
33
|
}
|
|
32
34
|
declare const _default: SuperSelectionAppService;
|
|
@@ -14,6 +14,7 @@ export declare type AppContextState = {
|
|
|
14
14
|
hasSuperSelectionBeenSubmitted: boolean;
|
|
15
15
|
campaignConnectEnabled: boolean;
|
|
16
16
|
campaignConnectPromise: O.Option<Promise<CampaignConnectDto>>;
|
|
17
|
+
definedBenefitsEligibility: boolean;
|
|
17
18
|
campaignConnect: O.Option<CampaignConnectDto>;
|
|
18
19
|
};
|
|
19
20
|
export declare const initialState: AppContextState;
|