@flarehr/apollo-super-selection 3.34.55209 → 3.35.55455

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.
@@ -26,23 +26,30 @@ export declare type SuperFundPrivacyConfirmationAcceptedDetail = {
26
26
  export declare type ViewedPromotedFundDetail = {
27
27
  fundUsi?: string;
28
28
  fundName: string;
29
+ promotedFundId: string;
30
+ promotedFundsShown: Array<string>;
29
31
  };
30
- export declare type ViewedDefaultFundDetail = {
31
- fundUsi: string;
32
- fundName: string;
32
+ export declare type ViewedMyOwnFundDetail = {
33
+ promotedFundsShown: Array<string>;
33
34
  };
34
- export declare type SuperFundDetailAcceptedDetail = {
35
+ export declare type ViewedSmsfDetail = {
36
+ promotedFundsShown: Array<string>;
37
+ };
38
+ export declare type ViewedDefaultFundDetail = {
35
39
  fundUsi: string;
36
40
  fundName: string;
37
- isPdfViewed: boolean;
38
- isSearchSuperChosen: boolean;
41
+ promotedFundsShown: Array<string>;
39
42
  };
40
43
  export declare type SuperFundPanelViewedDetail = {
41
- enabledFundIds: Array<string>;
44
+ promotedFundsShown: Array<string>;
42
45
  };
43
46
  export declare type SuperFundDetailViewedDetail = {
44
47
  PromotedFund: ViewedPromotedFundDetail;
45
- } | 'MyOwnFund' | 'Smsf' | {
48
+ } | {
49
+ MyOwnFund: ViewedMyOwnFundDetail;
50
+ } | {
51
+ Smsf: ViewedSmsfDetail;
52
+ } | {
46
53
  DefaultFund: ViewedDefaultFundDetail;
47
54
  };
48
55
  export declare type SuperSelectionAnalyticsEvent = {
@@ -57,8 +64,6 @@ export declare type SuperSelectionAnalyticsEvent = {
57
64
  SuperFundPrivacyConfirmationAccepted: SuperFundPrivacyConfirmationAcceptedDetail;
58
65
  } | {
59
66
  SuperFundDetailViewed: SuperFundDetailViewedDetail;
60
- } | {
61
- SuperFundDetailAccepted: SuperFundDetailAcceptedDetail;
62
67
  } | {
63
68
  SuperFundPanelViewed: SuperFundPanelViewedDetail;
64
69
  };
@@ -9,8 +9,8 @@ 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
- TrackMyOwnSuperFundDetailViewedAsync(): Promise<void>;
13
- TrackSmsfSuperFundDetailViewedAsync(): Promise<void>;
12
+ TrackMyOwnSuperFundDetailViewedAsync(detail: model.ViewedMyOwnFundDetail): Promise<void>;
13
+ TrackSmsfSuperFundDetailViewedAsync(detail: model.ViewedSmsfDetail): Promise<void>;
14
14
  TrackDefaultSuperFundDetailViewedAsync(detail: model.ViewedDefaultFundDetail): Promise<void>;
15
15
  TrackSuperFundPanelViewedAsync(detail: model.SuperFundPanelViewedDetail): Promise<void>;
16
16
  private trackEventAsync;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "3.34.55209",
3
+ "version": "3.35.55455",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",