@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.
@@ -83,7 +83,9 @@ export declare type SuperFundNominationDeclinedDetail = {
83
83
  fundStatus: string;
84
84
  lastNominatedAt: string;
85
85
  };
86
- export declare type SuperFundDisclaimerViewedDetail = Record<string, never>;
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
- definedBenefitsEligibility: boolean;
205
+ isDefinedBenefitsEligible: boolean | null;
206
206
  prefill: SuperChoicePrefillDto | null;
207
207
  };
208
208
  export declare type PromotedFundsConfigSourceDto = 'superSelection' | 'campaignConnect';
@@ -27,7 +27,7 @@ export declare class SuperSelectionAppService {
27
27
  completeSuperSelectionFlow(): void;
28
28
  markSuperSelectionAsSubmitted(): void;
29
29
  get campaignConnectEnabled(): boolean;
30
- get definedBenefitsEligibility(): boolean;
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
- definedBenefitsEligibility: boolean;
17
+ isDefinedBenefitsEligible: O.Option<boolean>;
18
18
  campaignConnect: O.Option<CampaignConnectDto>;
19
19
  };
20
20
  export declare const initialState: AppContextState;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "1.3.40541",
3
+ "version": "1.3.40557",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",