@flarehr/apollo-super-selection 4.30.31017 → 4.32.31414

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.
@@ -30,6 +30,13 @@ export declare type ViewedPromotedFundDetail = {
30
30
  promotedFundsShown: Array<string>;
31
31
  defaultFundUsiSet?: string;
32
32
  };
33
+ export declare type ViewedPromotedDefaultFundDetail = {
34
+ fundUsi: string;
35
+ fundName: string;
36
+ promotedFundId: string;
37
+ promotedFundsShown: Array<string>;
38
+ defaultFundUsiSet?: string;
39
+ };
33
40
  export declare type ViewedMyOwnFundDetail = {
34
41
  promotedFundsShown: Array<string>;
35
42
  defaultFundUsiSet?: string;
@@ -68,6 +75,8 @@ export declare type SuperFundPanelViewedDetail = {
68
75
  };
69
76
  export declare type SuperFundDetailViewedDetail = {
70
77
  PromotedFund: ViewedPromotedFundDetail;
78
+ } | {
79
+ PromotedDefaultFund: ViewedPromotedDefaultFundDetail;
71
80
  } | {
72
81
  MyOwnFund: ViewedMyOwnFundDetail;
73
82
  } | {
@@ -9,6 +9,7 @@ export declare class EventTrackingService {
9
9
  TrackFinancialProductRejectedAsync(detail: model.FinancialProductRejectedDetail): Promise<void>;
10
10
  TrackSuperFundPrivacyConfirmationAcceptedAsync(detail: model.SuperFundPrivacyConfirmationAcceptedDetail): Promise<void>;
11
11
  TrackPromotedSuperFundDetailViewedAsync(detail: model.ViewedPromotedFundDetail): Promise<void>;
12
+ TrackPromotedDefaultSuperFundDetailViewedAsync(detail: model.ViewedPromotedDefaultFundDetail): Promise<void>;
12
13
  TrackMyOwnSuperFundDetailViewedAsync(detail: model.ViewedMyOwnFundDetail): Promise<void>;
13
14
  TrackSmsfSuperFundDetailViewedAsync(detail: model.ViewedSmsfDetail): Promise<void>;
14
15
  TrackDefaultSuperFundDetailViewedAsync(detail: model.ViewedDefaultFundDetail): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "4.30.31017",
3
+ "version": "4.32.31414",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",