@flarehr/apollo-super-selection 1.3.43135 → 1.3.43303
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-bdcfc026.system.js +1 -1
- package/dist/lib/apollo-super-selection/{p-43f6123b.system.entry.js → p-d617a46a.system.entry.js} +1 -1
- package/dist/lib/apollo-super-selection/{p-440977bd.entry.js → p-dfe86332.entry.js} +1 -1
- package/dist/lib/cjs/sss-button_41.cjs.entry.js +1 -21
- package/dist/lib/collection/components/super-selection-app/services/event-tracking.service.js +0 -20
- package/dist/lib/esm/sss-button_41.entry.js +1 -21
- 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 +0 -28
- package/dist/lib/types/components/super-selection-app/services/event-tracking.service.d.ts +0 -4
- package/package.json +1 -1
|
@@ -1,28 +1,8 @@
|
|
|
1
|
-
export declare type FinancialProductViewedDetail = {
|
|
2
|
-
fundUsi: string;
|
|
3
|
-
fundName: string;
|
|
4
|
-
financialProduct: string;
|
|
5
|
-
};
|
|
6
1
|
export declare type SuperFundPdsViewedDetail = {
|
|
7
2
|
fundUsi?: string;
|
|
8
3
|
fundName: string;
|
|
9
4
|
pageName: string;
|
|
10
5
|
};
|
|
11
|
-
export declare type FinancialProductAcceptedDetail = {
|
|
12
|
-
fundUsi: string;
|
|
13
|
-
fundName: string;
|
|
14
|
-
financialProduct: string;
|
|
15
|
-
};
|
|
16
|
-
export declare type FinancialProductRejectedDetail = {
|
|
17
|
-
fundUsi: string;
|
|
18
|
-
fundName: string;
|
|
19
|
-
financialProduct: string;
|
|
20
|
-
};
|
|
21
|
-
export declare type SuperFundPrivacyConfirmationAcceptedDetail = {
|
|
22
|
-
fundUsi: string;
|
|
23
|
-
fundName: string;
|
|
24
|
-
financialProduct: string;
|
|
25
|
-
};
|
|
26
6
|
export declare type ViewedPromotedFundDetail = {
|
|
27
7
|
fundUsi?: string;
|
|
28
8
|
fundName: string;
|
|
@@ -127,15 +107,7 @@ export declare type SuperFundDetailChangeRequested = {
|
|
|
127
107
|
DefaultFund: ViewedDefaultFundDetail;
|
|
128
108
|
};
|
|
129
109
|
export declare type SuperSelectionAnalyticsEvent = {
|
|
130
|
-
FinancialProductViewed: FinancialProductViewedDetail;
|
|
131
|
-
} | {
|
|
132
110
|
SuperFundPdsViewed: SuperFundPdsViewedDetail;
|
|
133
|
-
} | {
|
|
134
|
-
FinancialProductAccepted: FinancialProductAcceptedDetail;
|
|
135
|
-
} | {
|
|
136
|
-
FinancialProductRejected: FinancialProductRejectedDetail;
|
|
137
|
-
} | {
|
|
138
|
-
SuperFundPrivacyConfirmationAccepted: SuperFundPrivacyConfirmationAcceptedDetail;
|
|
139
111
|
} | {
|
|
140
112
|
SuperFundDetailViewed: SuperFundDetailViewedDetail;
|
|
141
113
|
} | {
|
|
@@ -3,11 +3,7 @@ export declare class EventTrackingService {
|
|
|
3
3
|
private static instance;
|
|
4
4
|
static get Instance(): EventTrackingService;
|
|
5
5
|
private readonly eventTrackingApi;
|
|
6
|
-
TrackFinancialProductViewedAsync(detail: model.FinancialProductViewedDetail): Promise<void>;
|
|
7
6
|
TrackSuperFundPdsViewedAsync(detail: model.SuperFundPdsViewedDetail): Promise<void>;
|
|
8
|
-
TrackFinancialProductAcceptedAsync(detail: model.FinancialProductAcceptedDetail): Promise<void>;
|
|
9
|
-
TrackFinancialProductRejectedAsync(detail: model.FinancialProductRejectedDetail): Promise<void>;
|
|
10
|
-
TrackSuperFundPrivacyConfirmationAcceptedAsync(detail: model.SuperFundPrivacyConfirmationAcceptedDetail): Promise<void>;
|
|
11
7
|
TrackPromotedSuperFundDetailViewedAsync(detail: model.ViewedPromotedFundDetail): Promise<void>;
|
|
12
8
|
TrackPromotedDefaultSuperFundDetailViewedAsync(detail: model.ViewedPromotedDefaultFundDetail): Promise<void>;
|
|
13
9
|
TrackMyOwnSuperFundDetailViewedAsync(detail: model.ViewedMyOwnFundDetail): Promise<void>;
|