@flarehr/apollo-super-selection 3.7.50075 → 3.8.50722

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.
@@ -15,6 +15,7 @@ declare type UserProfileDto = {
15
15
  email: string;
16
16
  mobilePhone: string;
17
17
  dateOfBirth: string;
18
+ yearsOfAge: number;
18
19
  address: AddressDto;
19
20
  };
20
21
  declare type PromotedFundChoiceDto = {
@@ -4,6 +4,9 @@ export declare const QSuperFundName = "QSuper";
4
4
  export declare const QSuperAltFundName = "Recognised performer";
5
5
  export declare const QSuperInsuranceProductName = "QSuper Insurance";
6
6
  export declare const QSuperPdsUrl = "https://qsuper.qld.gov.au/-/media/pdfs/qsuper-public/publications/pds11.pdf";
7
+ export declare const QSuperMinAge = 14;
8
+ export declare const QSuperMinInsuranceAge = 16;
9
+ export declare const QSuperMaxAge = 70;
7
10
  export declare const SlateFundUsi = "32367272075001";
8
11
  export declare const SlateFundId = "slate";
9
12
  export declare const SlateFundName = "Slate Super";
@@ -1,6 +1,9 @@
1
1
  export declare class QsuperInsuranceOptIn {
2
2
  private insuranceChosen;
3
3
  private readonly eventTrackingService;
4
+ private isEligibleForInsurance;
5
+ private ensureInsuranceEligibility;
6
+ private showIneligibleNotification;
4
7
  componentDidLoad(): Promise<void>;
5
8
  componentWillLoad(): void;
6
9
  render(): Element[];
@@ -1,6 +1,10 @@
1
1
  import { RouterHistory } from '@stencil/router';
2
2
  export declare class QsuperLayout {
3
3
  history: RouterHistory;
4
+ private isEligible;
5
+ private canContinue;
6
+ private ensureEligibility;
7
+ private showIneligibleNotification;
4
8
  componentWillLoad(): Promise<void>;
5
9
  render(): Element[];
6
10
  private tryAsync;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "3.7.50075",
3
+ "version": "3.8.50722",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",