@flarehr/apollo-super-selection 1.3.41402 → 1.3.41586

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.
@@ -105,6 +105,13 @@ declare type DefinedBenefitsChoiceDto = {
105
105
  memberElectContributionRatePreTax: number;
106
106
  memberElectContributionRatePostTax: number;
107
107
  };
108
+ declare type PromotedDefaultWithJoinFundChoiceDto = {
109
+ usi: string;
110
+ fundId: string;
111
+ memberNumber: string;
112
+ memberFirstName: string | null;
113
+ memberFamilyName: string | null;
114
+ };
108
115
  export declare type PrefillOwnFundChoiceDto = {
109
116
  fundDetail: {
110
117
  type: 'Valid';
@@ -154,6 +161,9 @@ declare type SuperChoiceDetailsDto = {
154
161
  } | {
155
162
  kind: 'DefinedBenefits';
156
163
  definedBenefits: DefinedBenefitsChoiceDto;
164
+ } | {
165
+ kind: 'PromotedDefaultWithJoin';
166
+ promotedDefaultWithJoin: PromotedDefaultWithJoinFundChoiceDto;
157
167
  };
158
168
  export declare function hydrateSuperChoiceDetailsDtoKind(dto: SuperChoiceDetailsDto): void;
159
169
  declare type SuperChoiceDto = {
@@ -46,7 +46,16 @@ export declare type DefinedBenefitsFund = {
46
46
  valid: FundValidState;
47
47
  lastNominatedAt: Option<Date>;
48
48
  };
49
- export declare type ExistingFund = PromotedFund | MyOwnFund | SelfManagedFund | DefaultFund | PromotedDefaultFund | DefinedBenefitsFund;
49
+ export declare type PromotedDefaultWithJoin = {
50
+ type: 'Promoted Default Fund With Join';
51
+ id: string;
52
+ name: string;
53
+ usi: Option<string>;
54
+ valid: FundValidState;
55
+ memberNumber: Option<string>;
56
+ lastNominatedAt: Option<Date>;
57
+ };
58
+ export declare type ExistingFund = PromotedFund | MyOwnFund | SelfManagedFund | DefaultFund | PromotedDefaultFund | DefinedBenefitsFund | PromotedDefaultWithJoin;
50
59
  export declare type RetainSuperFundDto = {
51
60
  fundType: string;
52
61
  fundName?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "1.3.41402",
3
+ "version": "1.3.41586",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",