@flarehr/apollo-super-selection 4.41.36202 → 4.42.36722
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-8b6b22f0.entry.js → p-5be8f0b9.entry.js} +1 -1
- package/dist/lib/apollo-super-selection/{p-5ca1df0f.system.entry.js → p-65c670d7.system.entry.js} +1 -1
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/cjs/sss-button_38.cjs.entry.js +9 -3
- package/dist/lib/collection/components/super-selection-app/services/super-selection-app.service.js +8 -2
- package/dist/lib/esm/sss-button_38.entry.js +9 -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 +5 -3
- package/package.json +1 -1
|
@@ -17,7 +17,6 @@ declare type UserProfileDto = {
|
|
|
17
17
|
email: string;
|
|
18
18
|
mobilePhone: string;
|
|
19
19
|
dateOfBirth: string;
|
|
20
|
-
yearsOfAge: number;
|
|
21
20
|
address: AddressDto;
|
|
22
21
|
};
|
|
23
22
|
declare type PromotedFundChoiceDto = {
|
|
@@ -190,9 +189,12 @@ export declare type AppStateDto = {
|
|
|
190
189
|
prefill: SuperChoicePrefillDto | null;
|
|
191
190
|
};
|
|
192
191
|
export declare type PromotedFundsConfigSourceDto = 'superSelection' | 'campaignConnect';
|
|
192
|
+
export declare type PromotedFundTypeDto = 'promoted' | 'promoted-default' | 'defined-benefits';
|
|
193
193
|
export declare type CampaignConnectDto = {
|
|
194
|
-
promotedFunds:
|
|
195
|
-
|
|
194
|
+
promotedFunds: {
|
|
195
|
+
fundId: string;
|
|
196
|
+
type: PromotedFundTypeDto;
|
|
197
|
+
}[];
|
|
196
198
|
};
|
|
197
199
|
export declare type ClickPromotedTileDto = {
|
|
198
200
|
promoted: {
|