@flarehr/apollo-super-selection 1.3.41563 → 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.
- package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
- package/dist/lib/apollo-super-selection/p-4e642455.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-a46b913a.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/cjs/sss-button_41.cjs.entry.js +23 -1
- package/dist/lib/collection/components/super-selection-app/api/super-selection.api.dto.js +7 -0
- package/dist/lib/collection/components/super-selection-app/api/super-selection.api.js +1 -0
- package/dist/lib/collection/components/super-selection-app/existing-choice/existing-choice.js +2 -0
- package/dist/lib/collection/components/super-selection-app/services/existing-super-choice-info.service.js +13 -0
- package/dist/lib/esm/sss-button_41.entry.js +23 -1
- package/dist/lib/esm-es5/sss-button_41.entry.js +1 -1
- package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +10 -0
- package/dist/lib/types/components/super-selection-app/services/existing-super-choice-info.service.d.ts +10 -1
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-8ac19b3d.system.entry.js +0 -69
- package/dist/lib/apollo-super-selection/p-9a56c626.entry.js +0 -14
|
@@ -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
|
|
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;
|