@flarehr/apollo-super-selection 5.84.52699 → 5.86.53344

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.
Files changed (18) hide show
  1. package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
  2. package/dist/lib/apollo-super-selection/{p-6dfc46fa.entry.js → p-40bfe38f.entry.js} +4 -4
  3. package/dist/lib/apollo-super-selection/{p-4874e7a2.system.entry.js → p-b2de6265.system.entry.js} +11 -11
  4. package/dist/lib/apollo-super-selection/p-bd6e6a8f.system.js +1 -1
  5. package/dist/lib/cjs/sss-button_32.cjs.entry.js +18 -10
  6. package/dist/lib/collection/components/super-campaign/fund-tile-clicked.handler.js +7 -3
  7. package/dist/lib/collection/components/super-campaign/promoted-fund-joined.handler.js +4 -4
  8. package/dist/lib/collection/components/super-campaign/super-campaign.js +3 -1
  9. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/featured-funds/super-campaign-featured-funds.js +3 -1
  10. package/dist/lib/esm/sss-button_32.entry.js +18 -10
  11. package/dist/lib/esm-es5/sss-button_32.entry.js +5 -5
  12. package/dist/lib/types/components/super-campaign/fund-tile-clicked.handler.d.ts +3 -1
  13. package/dist/lib/types/components/super-campaign/super-campaign-types.d.ts +10 -0
  14. package/dist/lib/types/components/super-selection-app/api/super-selection-events.model.d.ts +4 -0
  15. package/dist/lib/types/components/super-selection-app/funds/custom-fund/api/custom-fund-choice.api.dto.d.ts +2 -0
  16. package/dist/lib/types/components/super-selection-app/funds/custom-fund/featured-funds/super-campaign-featured-funds.types.d.ts +2 -0
  17. package/dist/lib/types/components/super-selection-app/funds/promoted-fund/api/promoted-fund-choice.api.dto.d.ts +2 -0
  18. package/package.json +1 -1
@@ -7,6 +7,8 @@ declare type FundTileClickedArgs = {
7
7
  fundUsi?: string;
8
8
  fundName: string;
9
9
  fundType: ShownFundType;
10
+ sourceOfJoin: string;
11
+ isDefaultExclusive?: boolean;
10
12
  };
11
- export declare const fundTileClicked: ({ sender, placementId, fundId, fundUsi, fundName, fundType }: FundTileClickedArgs) => Promise<void>;
13
+ export declare const fundTileClicked: ({ sender, placementId, fundId, fundUsi, fundName, fundType, sourceOfJoin, isDefaultExclusive }: FundTileClickedArgs) => Promise<void>;
12
14
  export {};
@@ -26,6 +26,8 @@ export declare type FundTileClickedEvent = SuperCampaignCommonEventPayload & {
26
26
  fundUsi?: string;
27
27
  fundName: string;
28
28
  fundType: ShownFundType;
29
+ sourceOfJoin: string;
30
+ isDefaultExclusive?: boolean;
29
31
  };
30
32
  export declare type FundPdsViewedEvent = SuperCampaignCommonEventPayload & {
31
33
  type: 'fund-pds-viewed';
@@ -53,12 +55,16 @@ export declare type PromotedFundJoinInfo = {
53
55
  memberNumber: string;
54
56
  memberFirstName?: string;
55
57
  memberFamilyName?: string;
58
+ sourceOfJoin: string;
59
+ isDefaultExclusive?: boolean;
56
60
  };
57
61
  export declare type PromotedDefaultFundJoinInfo = {
58
62
  fundType: 'PromotedDefault';
59
63
  fundId: string;
60
64
  fundName: string;
61
65
  usi: string;
66
+ sourceOfJoin: string;
67
+ isDefaultExclusive?: boolean;
62
68
  };
63
69
  export declare type PromotedDefaultFundWithJoinInfo = {
64
70
  fundType: 'PromotedDefaultWithJoin';
@@ -68,6 +74,8 @@ export declare type PromotedDefaultFundWithJoinInfo = {
68
74
  memberNumber: string;
69
75
  memberFirstName: string;
70
76
  memberFamilyName: string;
77
+ sourceOfJoin: string;
78
+ isDefaultExclusive?: boolean;
71
79
  };
72
80
  export declare type DefinedBenefitsJoinInfo = {
73
81
  fundType: 'DefinedBenefits';
@@ -77,6 +85,8 @@ export declare type DefinedBenefitsJoinInfo = {
77
85
  memberNumber: string;
78
86
  memberElectContributionRatePreTax: number;
79
87
  memberElectContributionRatePostTax: number;
88
+ sourceOfJoin: string;
89
+ isDefaultExclusive?: boolean;
80
90
  };
81
91
  export declare type FundJoinInfo = PromotedFundJoinInfo | PromotedDefaultFundJoinInfo | PromotedDefaultFundWithJoinInfo | DefinedBenefitsJoinInfo;
82
92
  export declare type JoinedFundType = FundJoinInfo['fundType'];
@@ -13,6 +13,8 @@ export declare type ViewedPromotedFundDetail = {
13
13
  defaultFundUsiSet?: string;
14
14
  superCampaignEnabled: boolean;
15
15
  placementId: PlacementId;
16
+ sourceOfJoin?: string;
17
+ isDefaultExclusive?: boolean;
16
18
  };
17
19
  export declare type FundDetailChangeRequested = Omit<ViewedDefaultFundDetail, 'superCampaignEnabled'>;
18
20
  export declare type ViewedPromotedDefaultFundDetail = {
@@ -23,6 +25,8 @@ export declare type ViewedPromotedDefaultFundDetail = {
23
25
  defaultFundUsiSet?: string;
24
26
  superCampaignEnabled: boolean;
25
27
  placementId: PlacementId;
28
+ sourceOfJoin?: string;
29
+ isDefaultExclusive?: boolean;
26
30
  };
27
31
  export declare type ViewedMyOwnFundDetail = {
28
32
  promotedFundsShown: Array<string>;
@@ -37,6 +37,8 @@ export declare type DefinedBenefitsDto = {
37
37
  memberNumber: string;
38
38
  memberElectContributionRatePreTax: number;
39
39
  memberElectContributionRatePostTax: number;
40
+ sourceOfJoin?: string;
41
+ isDefaultExclusive?: boolean;
40
42
  } & PromotedFundsConfigDto;
41
43
  export declare type AbnUsedForRegulatedFundResponseDto = {
42
44
  result: boolean;
@@ -8,6 +8,8 @@ export declare type ContinueClicked = FeaturedFundsCommonEventPayload & {
8
8
  fundUsi?: string;
9
9
  fundName: string;
10
10
  fundType: ShownFundType;
11
+ sourceOfJoin: string;
12
+ isDefaultExclusive?: boolean;
11
13
  };
12
14
  export declare type FeaturedFundPanelShown = FeaturedFundsCommonEventPayload & {
13
15
  type: 'featured-fund-panel-shown';
@@ -4,6 +4,8 @@ declare type CommonDto = {
4
4
  standardChoiceFormSignature: string;
5
5
  defaultFundUsiSet?: string;
6
6
  placementId: PlacementId;
7
+ sourceOfJoin?: string;
8
+ isDefaultExclusive?: boolean;
7
9
  };
8
10
  export declare type PromotedFundChoiceRequestDto = {
9
11
  usi?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "5.84.52699",
3
+ "version": "5.86.53344",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",