@flarehr/apollo-super-selection 1.3.41694 → 1.3.41733
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-eddc3534.system.entry.js → p-99c23afc.system.entry.js} +8 -8
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/apollo-super-selection/p-c6192b69.entry.js +14 -0
- package/dist/lib/cjs/sss-button_41.cjs.entry.js +40 -3
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/api/promoted-fund-choice.api.js +9 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +25 -2
- package/dist/lib/collection/components/super-selection-app/standard-choice/standard-choice-form.js +5 -0
- package/dist/lib/esm/sss-button_41.entry.js +40 -3
- package/dist/lib/esm-es5/sss-button_41.entry.js +4 -4
- package/dist/lib/types/components/super-selection-app/api/super-selection-events.model.d.ts +4 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/api/promoted-fund-choice.api.d.ts +2 -1
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/api/promoted-fund-choice.api.dto.d.ts +12 -0
- package/dist/lib/types/components/super-selection-app/standard-choice/standard-choice-form.store.d.ts +6 -0
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-e452e0d4.entry.js +0 -14
|
@@ -108,6 +108,10 @@ export declare type SuperFundDetailChangeRequested = {
|
|
|
108
108
|
} & ViewedPromotedFundDetail;
|
|
109
109
|
} | {
|
|
110
110
|
PromotedDefaultFund: ViewedPromotedDefaultFundDetail;
|
|
111
|
+
} | {
|
|
112
|
+
PromotedDefaultFundWithJoin: {
|
|
113
|
+
memberNumber: string;
|
|
114
|
+
} & ViewedPromotedDefaultFundDetail;
|
|
111
115
|
} | {
|
|
112
116
|
MyOwnFund: {
|
|
113
117
|
fundName: string;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { PromotedDefaultFundChoiceRequestDto, PromotedFundChoiceRequestDto } from './promoted-fund-choice.api.dto';
|
|
1
|
+
import { PromotedDefaultFundChoiceRequestDto, PromotedDefaultFundWithJoinChoiceRequestDto, PromotedFundChoiceRequestDto } from './promoted-fund-choice.api.dto';
|
|
2
2
|
export declare class PromotedFundChoiceApi {
|
|
3
3
|
submitChoiceAsync(dto: PromotedFundChoiceRequestDto): Promise<void>;
|
|
4
4
|
submitDefaultChoiceAsync(dto: PromotedDefaultFundChoiceRequestDto): Promise<void>;
|
|
5
|
+
submitDefaultChoiceWithJoinAsync(dto: PromotedDefaultFundWithJoinChoiceRequestDto): Promise<void>;
|
|
5
6
|
}
|
|
6
7
|
declare const _default: PromotedFundChoiceApi;
|
|
7
8
|
export default _default;
|
|
@@ -20,3 +20,15 @@ export declare type PromotedDefaultFundChoiceRequestDto = {
|
|
|
20
20
|
promotedDefaultFundPosition?: number;
|
|
21
21
|
promotedFundsConfigSource: PromotedFundsConfigSourceDto;
|
|
22
22
|
};
|
|
23
|
+
export declare type PromotedDefaultFundWithJoinChoiceRequestDto = {
|
|
24
|
+
fundId: string;
|
|
25
|
+
usi: string;
|
|
26
|
+
memberNumber: string;
|
|
27
|
+
memberFirstName: string;
|
|
28
|
+
memberFamilyName: string;
|
|
29
|
+
standardChoiceFormSignature: string;
|
|
30
|
+
shownFunds: string[];
|
|
31
|
+
defaultFundUsiSet?: string;
|
|
32
|
+
promotedDefaultFundPosition?: number;
|
|
33
|
+
promotedFundsConfigSource: PromotedFundsConfigSourceDto;
|
|
34
|
+
};
|
|
@@ -22,6 +22,12 @@ export declare type FundDetails = {
|
|
|
22
22
|
fundName: string;
|
|
23
23
|
fundUsi: string;
|
|
24
24
|
promotedFundId: string;
|
|
25
|
+
} | {
|
|
26
|
+
type: 'promotedDefaultWithJoin';
|
|
27
|
+
fundName: string;
|
|
28
|
+
fundUsi: string;
|
|
29
|
+
memberNumber: string;
|
|
30
|
+
promotedFundId: string;
|
|
25
31
|
} | {
|
|
26
32
|
type: 'null';
|
|
27
33
|
};
|