@flarehr/apollo-super-selection 1.3.43269 → 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-54a1a6bc.system.entry.js → p-d617a46a.system.entry.js} +1 -1
- package/dist/lib/apollo-super-selection/{p-96fb5d28.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
|
@@ -284,7 +284,7 @@ class TapSubscriber extends datoramaAkita.Subscriber {
|
|
|
284
284
|
}
|
|
285
285
|
}
|
|
286
286
|
|
|
287
|
-
const AppVersion = '1.3.
|
|
287
|
+
const AppVersion = '1.3.43303';
|
|
288
288
|
|
|
289
289
|
// -------------------------------------------------------------------------------------
|
|
290
290
|
// guards
|
|
@@ -3689,31 +3689,11 @@ class EventTrackingService {
|
|
|
3689
3689
|
static get Instance() {
|
|
3690
3690
|
return this.instance || (this.instance = new this());
|
|
3691
3691
|
}
|
|
3692
|
-
async TrackFinancialProductViewedAsync(detail) {
|
|
3693
|
-
return this.trackEventAsync({
|
|
3694
|
-
FinancialProductViewed: detail
|
|
3695
|
-
});
|
|
3696
|
-
}
|
|
3697
3692
|
async TrackSuperFundPdsViewedAsync(detail) {
|
|
3698
3693
|
return this.trackEventAsync({
|
|
3699
3694
|
SuperFundPdsViewed: detail
|
|
3700
3695
|
});
|
|
3701
3696
|
}
|
|
3702
|
-
async TrackFinancialProductAcceptedAsync(detail) {
|
|
3703
|
-
return this.trackEventAsync({
|
|
3704
|
-
FinancialProductAccepted: detail
|
|
3705
|
-
});
|
|
3706
|
-
}
|
|
3707
|
-
async TrackFinancialProductRejectedAsync(detail) {
|
|
3708
|
-
return this.trackEventAsync({
|
|
3709
|
-
FinancialProductRejected: detail
|
|
3710
|
-
});
|
|
3711
|
-
}
|
|
3712
|
-
async TrackSuperFundPrivacyConfirmationAcceptedAsync(detail) {
|
|
3713
|
-
return this.trackEventAsync({
|
|
3714
|
-
SuperFundPrivacyConfirmationAccepted: detail
|
|
3715
|
-
});
|
|
3716
|
-
}
|
|
3717
3697
|
async TrackPromotedSuperFundDetailViewedAsync(detail) {
|
|
3718
3698
|
return this.trackEventAsync({
|
|
3719
3699
|
SuperFundDetailViewed: {
|
package/dist/lib/collection/components/super-selection-app/services/event-tracking.service.js
CHANGED
|
@@ -6,31 +6,11 @@ export class EventTrackingService {
|
|
|
6
6
|
static get Instance() {
|
|
7
7
|
return this.instance || (this.instance = new this());
|
|
8
8
|
}
|
|
9
|
-
async TrackFinancialProductViewedAsync(detail) {
|
|
10
|
-
return this.trackEventAsync({
|
|
11
|
-
FinancialProductViewed: detail
|
|
12
|
-
});
|
|
13
|
-
}
|
|
14
9
|
async TrackSuperFundPdsViewedAsync(detail) {
|
|
15
10
|
return this.trackEventAsync({
|
|
16
11
|
SuperFundPdsViewed: detail
|
|
17
12
|
});
|
|
18
13
|
}
|
|
19
|
-
async TrackFinancialProductAcceptedAsync(detail) {
|
|
20
|
-
return this.trackEventAsync({
|
|
21
|
-
FinancialProductAccepted: detail
|
|
22
|
-
});
|
|
23
|
-
}
|
|
24
|
-
async TrackFinancialProductRejectedAsync(detail) {
|
|
25
|
-
return this.trackEventAsync({
|
|
26
|
-
FinancialProductRejected: detail
|
|
27
|
-
});
|
|
28
|
-
}
|
|
29
|
-
async TrackSuperFundPrivacyConfirmationAcceptedAsync(detail) {
|
|
30
|
-
return this.trackEventAsync({
|
|
31
|
-
SuperFundPrivacyConfirmationAccepted: detail
|
|
32
|
-
});
|
|
33
|
-
}
|
|
34
14
|
async TrackPromotedSuperFundDetailViewedAsync(detail) {
|
|
35
15
|
return this.trackEventAsync({
|
|
36
16
|
SuperFundDetailViewed: {
|
|
@@ -260,7 +260,7 @@ class TapSubscriber extends Subscriber {
|
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
262
|
|
|
263
|
-
const AppVersion = '1.3.
|
|
263
|
+
const AppVersion = '1.3.43303';
|
|
264
264
|
|
|
265
265
|
// -------------------------------------------------------------------------------------
|
|
266
266
|
// guards
|
|
@@ -3665,31 +3665,11 @@ class EventTrackingService {
|
|
|
3665
3665
|
static get Instance() {
|
|
3666
3666
|
return this.instance || (this.instance = new this());
|
|
3667
3667
|
}
|
|
3668
|
-
async TrackFinancialProductViewedAsync(detail) {
|
|
3669
|
-
return this.trackEventAsync({
|
|
3670
|
-
FinancialProductViewed: detail
|
|
3671
|
-
});
|
|
3672
|
-
}
|
|
3673
3668
|
async TrackSuperFundPdsViewedAsync(detail) {
|
|
3674
3669
|
return this.trackEventAsync({
|
|
3675
3670
|
SuperFundPdsViewed: detail
|
|
3676
3671
|
});
|
|
3677
3672
|
}
|
|
3678
|
-
async TrackFinancialProductAcceptedAsync(detail) {
|
|
3679
|
-
return this.trackEventAsync({
|
|
3680
|
-
FinancialProductAccepted: detail
|
|
3681
|
-
});
|
|
3682
|
-
}
|
|
3683
|
-
async TrackFinancialProductRejectedAsync(detail) {
|
|
3684
|
-
return this.trackEventAsync({
|
|
3685
|
-
FinancialProductRejected: detail
|
|
3686
|
-
});
|
|
3687
|
-
}
|
|
3688
|
-
async TrackSuperFundPrivacyConfirmationAcceptedAsync(detail) {
|
|
3689
|
-
return this.trackEventAsync({
|
|
3690
|
-
SuperFundPrivacyConfirmationAccepted: detail
|
|
3691
|
-
});
|
|
3692
|
-
}
|
|
3693
3673
|
async TrackPromotedSuperFundDetailViewedAsync(detail) {
|
|
3694
3674
|
return this.trackEventAsync({
|
|
3695
3675
|
SuperFundDetailViewed: {
|