angulartics2 9.1.0 → 12.0.0
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/LICENSE +1 -1
- package/README.md +8 -9
- package/angular-router.d.ts +3 -0
- package/angulartics2-core.d.ts +3 -1
- package/angulartics2.d.ts +1 -0
- package/angulartics2.module.d.ts +5 -0
- package/angulartics2On.d.ts +6 -0
- package/esm2020/angular-router.mjs +33 -0
- package/esm2020/angulartics2-config.mjs +19 -0
- package/esm2020/angulartics2-core.mjs +93 -0
- package/esm2020/angulartics2-interfaces.mjs +2 -0
- package/esm2020/angulartics2-token.mjs +3 -0
- package/esm2020/angulartics2.mjs +5 -0
- package/esm2020/angulartics2.module.mjs +30 -0
- package/esm2020/angulartics2On.mjs +66 -0
- package/esm2020/providers/adobeanalytics/adobeanalytics.mjs +98 -0
- package/esm2020/providers/amplitude/amplitude.mjs +68 -0
- package/esm2020/providers/appinsights/appinsights.mjs +118 -0
- package/esm2020/providers/baidu/baidu.mjs +81 -0
- package/esm2020/providers/clicky/clicky.interfaces.mjs +2 -0
- package/esm2020/providers/clicky/clicky.mjs +64 -0
- package/esm2020/providers/facebook/facebook.mjs +45 -0
- package/esm2020/providers/ga/ga.mjs +219 -0
- package/esm2020/providers/ga-enhanced-ecom/ga-enhanced-ecom-options.mjs +7 -0
- package/esm2020/providers/ga-enhanced-ecom/ga-enhanced-ecom.mjs +32 -0
- package/esm2020/providers/gosquared/gosquared.mjs +55 -0
- package/esm2020/providers/gst/gst-interfaces.mjs +2 -0
- package/esm2020/providers/gst/gst.mjs +197 -0
- package/esm2020/providers/gtm/gtm.mjs +114 -0
- package/esm2020/providers/hubspot/hubspot.mjs +40 -0
- package/esm2020/providers/ibm-digital-analytics/ibm-digital-analytics.mjs +125 -0
- package/esm2020/providers/intercom/intercom.mjs +60 -0
- package/esm2020/providers/kissmetrics/kissmetrics.mjs +40 -0
- package/esm2020/providers/launch/launch.mjs +59 -0
- package/esm2020/providers/matomo/matomo.mjs +303 -0
- package/esm2020/providers/mixpanel/mixpanel.mjs +109 -0
- package/esm2020/providers/pyze/pyze.mjs +65 -0
- package/esm2020/providers/segment/segment.mjs +100 -0
- package/esm2020/providers/splunk/splunk.mjs +46 -0
- package/esm2020/providers/woopra/woopra.mjs +61 -0
- package/esm2020/public_api.mjs +32 -0
- package/esm2020/routerless.mjs +10 -0
- package/esm2020/routerless.module.mjs +28 -0
- package/fesm2015/angulartics2.mjs +2248 -0
- package/fesm2015/angulartics2.mjs.map +1 -0
- package/fesm2020/angulartics2.mjs +2294 -0
- package/fesm2020/angulartics2.mjs.map +1 -0
- package/package.json +28 -16
- package/{adobeanalytics → providers/adobeanalytics}/README.md +1 -1
- package/{adobeanalytics → providers/adobeanalytics}/adobeanalytics.d.ts +4 -1
- package/{amplitude → providers/amplitude}/README.md +1 -1
- package/{amplitude → providers/amplitude}/amplitude.d.ts +4 -1
- package/{appinsights → providers/appinsights}/README.md +1 -1
- package/{appinsights → providers/appinsights}/appinsights.d.ts +5 -1
- package/{baidu → providers/baidu}/README.md +1 -1
- package/{baidu → providers/baidu}/baidu.d.ts +4 -1
- package/{clicky → providers/clicky}/README.md +1 -1
- package/{clicky → providers/clicky}/clicky.d.ts +4 -1
- package/{clicky → providers/clicky}/clicky.interfaces.d.ts +0 -0
- package/{facebook → providers/facebook}/README.md +1 -1
- package/{facebook → providers/facebook}/facebook.d.ts +4 -1
- package/{ga → providers/ga}/README.md +1 -1
- package/{ga → providers/ga}/ga.d.ts +6 -1
- package/{ga-enhanced-ecom → providers/ga-enhanced-ecom}/README.md +1 -1
- package/{ga-enhanced-ecom → providers/ga-enhanced-ecom}/ga-enhanced-ecom-options.d.ts +0 -0
- package/{ga-enhanced-ecom → providers/ga-enhanced-ecom}/ga-enhanced-ecom.d.ts +3 -0
- package/{gosquared → providers/gosquared}/README.md +1 -1
- package/{gosquared → providers/gosquared}/gosquared.d.ts +4 -1
- package/{gst → providers/gst}/README.md +2 -2
- package/{gst → providers/gst}/gst-interfaces.d.ts +0 -0
- package/{gst → providers/gst}/gst.d.ts +5 -1
- package/{gtm → providers/gtm}/README.md +2 -2
- package/{gtm → providers/gtm}/gtm.d.ts +5 -1
- package/{hubspot → providers/hubspot}/README.md +1 -1
- package/{hubspot → providers/hubspot}/hubspot.d.ts +4 -1
- package/{ibm-digital-analytics → providers/ibm-digital-analytics}/README.md +2 -2
- package/{ibm-digital-analytics → providers/ibm-digital-analytics}/ibm-digital-analytics.d.ts +4 -1
- package/{intercom → providers/intercom}/README.md +1 -1
- package/{intercom → providers/intercom}/intercom.d.ts +4 -1
- package/{kissmetrics → providers/kissmetrics}/README.md +1 -1
- package/{kissmetrics → providers/kissmetrics}/kissmetrics.d.ts +4 -1
- package/{launch → providers/launch}/README.md +3 -3
- package/{launch → providers/launch}/launch.d.ts +4 -1
- package/{piwik → providers/matomo}/README.md +20 -20
- package/providers/matomo/matomo.d.ts +140 -0
- package/{mixpanel → providers/mixpanel}/README.md +2 -2
- package/{mixpanel → providers/mixpanel}/mixpanel.d.ts +4 -1
- package/{pyze → providers/pyze}/README.md +1 -1
- package/{pyze → providers/pyze}/pyze.d.ts +4 -1
- package/{segment → providers/segment}/README.md +3 -3
- package/{segment → providers/segment}/segment.d.ts +4 -1
- package/{splunk → providers/splunk}/README.md +2 -2
- package/providers/splunk/splunk.d.ts +11 -0
- package/{woopra → providers/woopra}/README.md +1 -1
- package/{woopra → providers/woopra}/woopra.d.ts +4 -1
- package/public_api.d.ts +23 -0
- package/routerless.module.d.ts +10 -0
- package/adobeanalytics/angulartics2-adobeanalytics.d.ts +0 -4
- package/adobeanalytics/angulartics2-adobeanalytics.metadata.json +0 -1
- package/adobeanalytics/bundles/angulartics2-adobeanalytics.umd.js +0 -326
- package/adobeanalytics/bundles/angulartics2-adobeanalytics.umd.js.map +0 -1
- package/adobeanalytics/bundles/angulartics2-adobeanalytics.umd.min.js +0 -16
- package/adobeanalytics/bundles/angulartics2-adobeanalytics.umd.min.js.map +0 -1
- package/adobeanalytics/esm2015/adobeanalytics.js +0 -105
- package/adobeanalytics/esm2015/angulartics2-adobeanalytics.js +0 -5
- package/adobeanalytics/esm5/adobeanalytics.js +0 -108
- package/adobeanalytics/esm5/angulartics2-adobeanalytics.js +0 -5
- package/adobeanalytics/fesm2015/angulartics2-adobeanalytics.js +0 -108
- package/adobeanalytics/fesm2015/angulartics2-adobeanalytics.js.map +0 -1
- package/adobeanalytics/fesm5/angulartics2-adobeanalytics.js +0 -111
- package/adobeanalytics/fesm5/angulartics2-adobeanalytics.js.map +0 -1
- package/adobeanalytics/package.json +0 -22
- package/amplitude/angulartics2-amplitude.d.ts +0 -4
- package/amplitude/angulartics2-amplitude.metadata.json +0 -1
- package/amplitude/bundles/angulartics2-amplitude.umd.js +0 -298
- package/amplitude/bundles/angulartics2-amplitude.umd.js.map +0 -1
- package/amplitude/bundles/angulartics2-amplitude.umd.min.js +0 -16
- package/amplitude/bundles/angulartics2-amplitude.umd.min.js.map +0 -1
- package/amplitude/esm2015/amplitude.js +0 -75
- package/amplitude/esm2015/angulartics2-amplitude.js +0 -5
- package/amplitude/esm5/amplitude.js +0 -78
- package/amplitude/esm5/angulartics2-amplitude.js +0 -5
- package/amplitude/fesm2015/angulartics2-amplitude.js +0 -79
- package/amplitude/fesm2015/angulartics2-amplitude.js.map +0 -1
- package/amplitude/fesm5/angulartics2-amplitude.js +0 -82
- package/amplitude/fesm5/angulartics2-amplitude.js.map +0 -1
- package/amplitude/package.json +0 -22
- package/angulartics2.metadata.json +0 -1
- package/appinsights/angulartics2-appinsights.d.ts +0 -4
- package/appinsights/angulartics2-appinsights.metadata.json +0 -1
- package/appinsights/bundles/angulartics2-appinsights.umd.js +0 -344
- package/appinsights/bundles/angulartics2-appinsights.umd.js.map +0 -1
- package/appinsights/bundles/angulartics2-appinsights.umd.min.js +0 -16
- package/appinsights/bundles/angulartics2-appinsights.umd.min.js.map +0 -1
- package/appinsights/esm2015/angulartics2-appinsights.js +0 -5
- package/appinsights/esm2015/appinsights.js +0 -124
- package/appinsights/esm5/angulartics2-appinsights.js +0 -5
- package/appinsights/esm5/appinsights.js +0 -129
- package/appinsights/fesm2015/angulartics2-appinsights.js +0 -126
- package/appinsights/fesm2015/angulartics2-appinsights.js.map +0 -1
- package/appinsights/fesm5/angulartics2-appinsights.js +0 -130
- package/appinsights/fesm5/angulartics2-appinsights.js.map +0 -1
- package/appinsights/package.json +0 -22
- package/baidu/angulartics2-baidu.d.ts +0 -4
- package/baidu/angulartics2-baidu.metadata.json +0 -1
- package/baidu/bundles/angulartics2-baidu.umd.js +0 -308
- package/baidu/bundles/angulartics2-baidu.umd.js.map +0 -1
- package/baidu/bundles/angulartics2-baidu.umd.min.js +0 -16
- package/baidu/bundles/angulartics2-baidu.umd.min.js.map +0 -1
- package/baidu/esm2015/angulartics2-baidu.js +0 -5
- package/baidu/esm2015/baidu.js +0 -85
- package/baidu/esm5/angulartics2-baidu.js +0 -5
- package/baidu/esm5/baidu.js +0 -88
- package/baidu/fesm2015/angulartics2-baidu.js +0 -89
- package/baidu/fesm2015/angulartics2-baidu.js.map +0 -1
- package/baidu/fesm5/angulartics2-baidu.js +0 -92
- package/baidu/fesm5/angulartics2-baidu.js.map +0 -1
- package/baidu/package.json +0 -22
- package/bundles/angulartics2.umd.js +0 -489
- package/bundles/angulartics2.umd.js.map +0 -1
- package/bundles/angulartics2.umd.min.js +0 -16
- package/bundles/angulartics2.umd.min.js.map +0 -1
- package/clicky/angulartics2-clicky.d.ts +0 -4
- package/clicky/angulartics2-clicky.metadata.json +0 -1
- package/clicky/bundles/angulartics2-clicky.umd.js +0 -290
- package/clicky/bundles/angulartics2-clicky.umd.js.map +0 -1
- package/clicky/bundles/angulartics2-clicky.umd.min.js +0 -16
- package/clicky/bundles/angulartics2-clicky.umd.min.js.map +0 -1
- package/clicky/esm2015/angulartics2-clicky.js +0 -5
- package/clicky/esm2015/clicky.interfaces.js +0 -1
- package/clicky/esm2015/clicky.js +0 -70
- package/clicky/esm5/angulartics2-clicky.js +0 -5
- package/clicky/esm5/clicky.interfaces.js +0 -1
- package/clicky/esm5/clicky.js +0 -72
- package/clicky/fesm2015/angulartics2-clicky.js +0 -73
- package/clicky/fesm2015/angulartics2-clicky.js.map +0 -1
- package/clicky/fesm5/angulartics2-clicky.js +0 -75
- package/clicky/fesm5/angulartics2-clicky.js.map +0 -1
- package/clicky/package.json +0 -22
- package/esm2015/angular-router.js +0 -38
- package/esm2015/angulartics2-config.js +0 -19
- package/esm2015/angulartics2-core.js +0 -93
- package/esm2015/angulartics2-interfaces.js +0 -1
- package/esm2015/angulartics2-token.js +0 -3
- package/esm2015/angulartics2.js +0 -5
- package/esm2015/angulartics2.module.js +0 -28
- package/esm2015/angulartics2On.js +0 -68
- package/esm2015/public_api.js +0 -8
- package/esm2015/routerless.js +0 -10
- package/esm5/angular-router.js +0 -39
- package/esm5/angulartics2-config.js +0 -21
- package/esm5/angulartics2-core.js +0 -110
- package/esm5/angulartics2-interfaces.js +0 -1
- package/esm5/angulartics2-token.js +0 -3
- package/esm5/angulartics2.js +0 -5
- package/esm5/angulartics2.module.js +0 -33
- package/esm5/angulartics2On.js +0 -73
- package/esm5/public_api.js +0 -8
- package/esm5/routerless.js +0 -14
- package/facebook/angulartics2-facebook.d.ts +0 -4
- package/facebook/angulartics2-facebook.metadata.json +0 -1
- package/facebook/bundles/angulartics2-facebook.umd.js +0 -272
- package/facebook/bundles/angulartics2-facebook.umd.js.map +0 -1
- package/facebook/bundles/angulartics2-facebook.umd.min.js +0 -16
- package/facebook/bundles/angulartics2-facebook.umd.min.js.map +0 -1
- package/facebook/esm2015/angulartics2-facebook.js +0 -5
- package/facebook/esm2015/facebook.js +0 -49
- package/facebook/esm5/angulartics2-facebook.js +0 -5
- package/facebook/esm5/facebook.js +0 -52
- package/facebook/fesm2015/angulartics2-facebook.js +0 -53
- package/facebook/fesm2015/angulartics2-facebook.js.map +0 -1
- package/facebook/fesm5/angulartics2-facebook.js +0 -56
- package/facebook/fesm5/angulartics2-facebook.js.map +0 -1
- package/facebook/package.json +0 -22
- package/fesm2015/angulartics2.js +0 -237
- package/fesm2015/angulartics2.js.map +0 -1
- package/fesm5/angulartics2.js +0 -269
- package/fesm5/angulartics2.js.map +0 -1
- package/ga/angulartics2-ga.d.ts +0 -4
- package/ga/angulartics2-ga.metadata.json +0 -1
- package/ga/bundles/angulartics2-ga.umd.js +0 -509
- package/ga/bundles/angulartics2-ga.umd.js.map +0 -1
- package/ga/bundles/angulartics2-ga.umd.min.js +0 -16
- package/ga/bundles/angulartics2-ga.umd.min.js.map +0 -1
- package/ga/esm2015/angulartics2-ga.js +0 -5
- package/ga/esm2015/ga.js +0 -209
- package/ga/esm5/angulartics2-ga.js +0 -5
- package/ga/esm5/ga.js +0 -289
- package/ga/fesm2015/angulartics2-ga.js +0 -213
- package/ga/fesm2015/angulartics2-ga.js.map +0 -1
- package/ga/fesm5/angulartics2-ga.js +0 -292
- package/ga/fesm5/angulartics2-ga.js.map +0 -1
- package/ga/package.json +0 -22
- package/ga-enhanced-ecom/angulartics2-ga-enhanced-ecom.d.ts +0 -4
- package/ga-enhanced-ecom/angulartics2-ga-enhanced-ecom.metadata.json +0 -1
- package/ga-enhanced-ecom/bundles/angulartics2-ga-enhanced-ecom.umd.js +0 -257
- package/ga-enhanced-ecom/bundles/angulartics2-ga-enhanced-ecom.umd.js.map +0 -1
- package/ga-enhanced-ecom/bundles/angulartics2-ga-enhanced-ecom.umd.min.js +0 -16
- package/ga-enhanced-ecom/bundles/angulartics2-ga-enhanced-ecom.umd.min.js.map +0 -1
- package/ga-enhanced-ecom/esm2015/angulartics2-ga-enhanced-ecom.js +0 -5
- package/ga-enhanced-ecom/esm2015/ga-enhanced-ecom-options.js +0 -6
- package/ga-enhanced-ecom/esm2015/ga-enhanced-ecom.js +0 -32
- package/ga-enhanced-ecom/esm5/angulartics2-ga-enhanced-ecom.js +0 -5
- package/ga-enhanced-ecom/esm5/ga-enhanced-ecom-options.js +0 -6
- package/ga-enhanced-ecom/esm5/ga-enhanced-ecom.js +0 -35
- package/ga-enhanced-ecom/fesm2015/angulartics2-ga-enhanced-ecom.js +0 -37
- package/ga-enhanced-ecom/fesm2015/angulartics2-ga-enhanced-ecom.js.map +0 -1
- package/ga-enhanced-ecom/fesm5/angulartics2-ga-enhanced-ecom.js +0 -40
- package/ga-enhanced-ecom/fesm5/angulartics2-ga-enhanced-ecom.js.map +0 -1
- package/ga-enhanced-ecom/package.json +0 -22
- package/gosquared/angulartics2-gosquared.d.ts +0 -4
- package/gosquared/angulartics2-gosquared.metadata.json +0 -1
- package/gosquared/bundles/angulartics2-gosquared.umd.js +0 -286
- package/gosquared/bundles/angulartics2-gosquared.umd.js.map +0 -1
- package/gosquared/bundles/angulartics2-gosquared.umd.min.js +0 -16
- package/gosquared/bundles/angulartics2-gosquared.umd.min.js.map +0 -1
- package/gosquared/esm2015/angulartics2-gosquared.js +0 -5
- package/gosquared/esm2015/gosquared.js +0 -59
- package/gosquared/esm5/angulartics2-gosquared.js +0 -5
- package/gosquared/esm5/gosquared.js +0 -66
- package/gosquared/fesm2015/angulartics2-gosquared.js +0 -63
- package/gosquared/fesm2015/angulartics2-gosquared.js.map +0 -1
- package/gosquared/fesm5/angulartics2-gosquared.js +0 -70
- package/gosquared/fesm5/angulartics2-gosquared.js.map +0 -1
- package/gosquared/package.json +0 -22
- package/gst/angulartics2-gst.d.ts +0 -4
- package/gst/angulartics2-gst.metadata.json +0 -1
- package/gst/bundles/angulartics2-gst.umd.js +0 -423
- package/gst/bundles/angulartics2-gst.umd.js.map +0 -1
- package/gst/bundles/angulartics2-gst.umd.min.js +0 -16
- package/gst/bundles/angulartics2-gst.umd.min.js.map +0 -1
- package/gst/esm2015/angulartics2-gst.js +0 -5
- package/gst/esm2015/gst-interfaces.js +0 -1
- package/gst/esm2015/gst.js +0 -184
- package/gst/esm5/angulartics2-gst.js +0 -5
- package/gst/esm5/gst-interfaces.js +0 -1
- package/gst/esm5/gst.js +0 -203
- package/gst/fesm2015/angulartics2-gst.js +0 -188
- package/gst/fesm2015/angulartics2-gst.js.map +0 -1
- package/gst/fesm5/angulartics2-gst.js +0 -206
- package/gst/fesm5/angulartics2-gst.js.map +0 -1
- package/gst/package.json +0 -22
- package/gtm/angulartics2-gtm.d.ts +0 -4
- package/gtm/angulartics2-gtm.metadata.json +0 -1
- package/gtm/bundles/angulartics2-gtm.umd.js +0 -335
- package/gtm/bundles/angulartics2-gtm.umd.js.map +0 -1
- package/gtm/bundles/angulartics2-gtm.umd.min.js +0 -16
- package/gtm/bundles/angulartics2-gtm.umd.min.js.map +0 -1
- package/gtm/esm2015/angulartics2-gtm.js +0 -5
- package/gtm/esm2015/gtm.js +0 -110
- package/gtm/esm5/angulartics2-gtm.js +0 -5
- package/gtm/esm5/gtm.js +0 -115
- package/gtm/fesm2015/angulartics2-gtm.js +0 -114
- package/gtm/fesm2015/angulartics2-gtm.js.map +0 -1
- package/gtm/fesm5/angulartics2-gtm.js +0 -118
- package/gtm/fesm5/angulartics2-gtm.js.map +0 -1
- package/gtm/package.json +0 -22
- package/hubspot/angulartics2-hubspot.d.ts +0 -4
- package/hubspot/angulartics2-hubspot.metadata.json +0 -1
- package/hubspot/bundles/angulartics2-hubspot.umd.js +0 -268
- package/hubspot/bundles/angulartics2-hubspot.umd.js.map +0 -1
- package/hubspot/bundles/angulartics2-hubspot.umd.min.js +0 -16
- package/hubspot/bundles/angulartics2-hubspot.umd.min.js.map +0 -1
- package/hubspot/esm2015/angulartics2-hubspot.js +0 -5
- package/hubspot/esm2015/hubspot.js +0 -45
- package/hubspot/esm5/angulartics2-hubspot.js +0 -5
- package/hubspot/esm5/hubspot.js +0 -48
- package/hubspot/fesm2015/angulartics2-hubspot.js +0 -49
- package/hubspot/fesm2015/angulartics2-hubspot.js.map +0 -1
- package/hubspot/fesm5/angulartics2-hubspot.js +0 -52
- package/hubspot/fesm5/angulartics2-hubspot.js.map +0 -1
- package/hubspot/package.json +0 -22
- package/ibm-digital-analytics/angulartics2-ibm-digital-analytics.d.ts +0 -4
- package/ibm-digital-analytics/angulartics2-ibm-digital-analytics.metadata.json +0 -1
- package/ibm-digital-analytics/bundles/angulartics2-ibm-digital-analytics.umd.js +0 -352
- package/ibm-digital-analytics/bundles/angulartics2-ibm-digital-analytics.umd.js.map +0 -1
- package/ibm-digital-analytics/bundles/angulartics2-ibm-digital-analytics.umd.min.js +0 -16
- package/ibm-digital-analytics/bundles/angulartics2-ibm-digital-analytics.umd.min.js.map +0 -1
- package/ibm-digital-analytics/esm2015/angulartics2-ibm-digital-analytics.js +0 -5
- package/ibm-digital-analytics/esm2015/ibm-digital-analytics.js +0 -129
- package/ibm-digital-analytics/esm5/angulartics2-ibm-digital-analytics.js +0 -5
- package/ibm-digital-analytics/esm5/ibm-digital-analytics.js +0 -132
- package/ibm-digital-analytics/fesm2015/angulartics2-ibm-digital-analytics.js +0 -133
- package/ibm-digital-analytics/fesm2015/angulartics2-ibm-digital-analytics.js.map +0 -1
- package/ibm-digital-analytics/fesm5/angulartics2-ibm-digital-analytics.js +0 -136
- package/ibm-digital-analytics/fesm5/angulartics2-ibm-digital-analytics.js.map +0 -1
- package/ibm-digital-analytics/package.json +0 -22
- package/intercom/angulartics2-intercom.d.ts +0 -4
- package/intercom/angulartics2-intercom.metadata.json +0 -1
- package/intercom/bundles/angulartics2-intercom.umd.js +0 -289
- package/intercom/bundles/angulartics2-intercom.umd.js.map +0 -1
- package/intercom/bundles/angulartics2-intercom.umd.min.js +0 -16
- package/intercom/bundles/angulartics2-intercom.umd.min.js.map +0 -1
- package/intercom/esm2015/angulartics2-intercom.js +0 -5
- package/intercom/esm2015/intercom.js +0 -66
- package/intercom/esm5/angulartics2-intercom.js +0 -5
- package/intercom/esm5/intercom.js +0 -69
- package/intercom/fesm2015/angulartics2-intercom.js +0 -70
- package/intercom/fesm2015/angulartics2-intercom.js.map +0 -1
- package/intercom/fesm5/angulartics2-intercom.js +0 -73
- package/intercom/fesm5/angulartics2-intercom.js.map +0 -1
- package/intercom/package.json +0 -22
- package/kissmetrics/angulartics2-kissmetrics.d.ts +0 -4
- package/kissmetrics/angulartics2-kissmetrics.metadata.json +0 -1
- package/kissmetrics/bundles/angulartics2-kissmetrics.umd.js +0 -269
- package/kissmetrics/bundles/angulartics2-kissmetrics.umd.js.map +0 -1
- package/kissmetrics/bundles/angulartics2-kissmetrics.umd.min.js +0 -16
- package/kissmetrics/bundles/angulartics2-kissmetrics.umd.min.js.map +0 -1
- package/kissmetrics/esm2015/angulartics2-kissmetrics.js +0 -5
- package/kissmetrics/esm2015/kissmetrics.js +0 -46
- package/kissmetrics/esm5/angulartics2-kissmetrics.js +0 -5
- package/kissmetrics/esm5/kissmetrics.js +0 -49
- package/kissmetrics/fesm2015/angulartics2-kissmetrics.js +0 -50
- package/kissmetrics/fesm2015/angulartics2-kissmetrics.js.map +0 -1
- package/kissmetrics/fesm5/angulartics2-kissmetrics.js +0 -53
- package/kissmetrics/fesm5/angulartics2-kissmetrics.js.map +0 -1
- package/kissmetrics/package.json +0 -25
- package/launch/angulartics2-launch.d.ts +0 -4
- package/launch/angulartics2-launch.metadata.json +0 -1
- package/launch/bundles/angulartics2-launch.umd.js +0 -288
- package/launch/bundles/angulartics2-launch.umd.js.map +0 -1
- package/launch/bundles/angulartics2-launch.umd.min.js +0 -16
- package/launch/bundles/angulartics2-launch.umd.min.js.map +0 -1
- package/launch/esm2015/angulartics2-launch.js +0 -5
- package/launch/esm2015/launch.js +0 -65
- package/launch/esm5/angulartics2-launch.js +0 -5
- package/launch/esm5/launch.js +0 -68
- package/launch/fesm2015/angulartics2-launch.js +0 -69
- package/launch/fesm2015/angulartics2-launch.js.map +0 -1
- package/launch/fesm5/angulartics2-launch.js +0 -72
- package/launch/fesm5/angulartics2-launch.js.map +0 -1
- package/launch/package.json +0 -22
- package/mixpanel/angulartics2-mixpanel.d.ts +0 -4
- package/mixpanel/angulartics2-mixpanel.metadata.json +0 -1
- package/mixpanel/bundles/angulartics2-mixpanel.umd.js +0 -342
- package/mixpanel/bundles/angulartics2-mixpanel.umd.js.map +0 -1
- package/mixpanel/bundles/angulartics2-mixpanel.umd.min.js +0 -16
- package/mixpanel/bundles/angulartics2-mixpanel.umd.min.js.map +0 -1
- package/mixpanel/esm2015/angulartics2-mixpanel.js +0 -5
- package/mixpanel/esm2015/mixpanel.js +0 -119
- package/mixpanel/esm5/angulartics2-mixpanel.js +0 -5
- package/mixpanel/esm5/mixpanel.js +0 -122
- package/mixpanel/fesm2015/angulartics2-mixpanel.js +0 -123
- package/mixpanel/fesm2015/angulartics2-mixpanel.js.map +0 -1
- package/mixpanel/fesm5/angulartics2-mixpanel.js +0 -126
- package/mixpanel/fesm5/angulartics2-mixpanel.js.map +0 -1
- package/mixpanel/package.json +0 -22
- package/piwik/angulartics2-piwik.d.ts +0 -4
- package/piwik/angulartics2-piwik.metadata.json +0 -1
- package/piwik/bundles/angulartics2-piwik.umd.js +0 -478
- package/piwik/bundles/angulartics2-piwik.umd.js.map +0 -1
- package/piwik/bundles/angulartics2-piwik.umd.min.js +0 -16
- package/piwik/bundles/angulartics2-piwik.umd.min.js.map +0 -1
- package/piwik/esm2015/angulartics2-piwik.js +0 -5
- package/piwik/esm2015/piwik.js +0 -254
- package/piwik/esm5/angulartics2-piwik.js +0 -5
- package/piwik/esm5/piwik.js +0 -258
- package/piwik/fesm2015/angulartics2-piwik.js +0 -258
- package/piwik/fesm2015/angulartics2-piwik.js.map +0 -1
- package/piwik/fesm5/angulartics2-piwik.js +0 -262
- package/piwik/fesm5/angulartics2-piwik.js.map +0 -1
- package/piwik/package.json +0 -22
- package/piwik/piwik.d.ts +0 -27
- package/pyze/angulartics2-pyze.d.ts +0 -4
- package/pyze/angulartics2-pyze.metadata.json +0 -1
- package/pyze/bundles/angulartics2-pyze.umd.js +0 -292
- package/pyze/bundles/angulartics2-pyze.umd.js.map +0 -1
- package/pyze/bundles/angulartics2-pyze.umd.min.js +0 -16
- package/pyze/bundles/angulartics2-pyze.umd.min.js.map +0 -1
- package/pyze/esm2015/angulartics2-pyze.js +0 -5
- package/pyze/esm2015/pyze.js +0 -69
- package/pyze/esm5/angulartics2-pyze.js +0 -5
- package/pyze/esm5/pyze.js +0 -72
- package/pyze/fesm2015/angulartics2-pyze.js +0 -73
- package/pyze/fesm2015/angulartics2-pyze.js.map +0 -1
- package/pyze/fesm5/angulartics2-pyze.js +0 -76
- package/pyze/fesm5/angulartics2-pyze.js.map +0 -1
- package/pyze/package.json +0 -22
- package/routerlessmodule/angulartics2-routerlessmodule.d.ts +0 -4
- package/routerlessmodule/angulartics2-routerlessmodule.metadata.json +0 -1
- package/routerlessmodule/bundles/angulartics2-routerlessmodule.umd.js +0 -250
- package/routerlessmodule/bundles/angulartics2-routerlessmodule.umd.js.map +0 -1
- package/routerlessmodule/bundles/angulartics2-routerlessmodule.umd.min.js +0 -16
- package/routerlessmodule/bundles/angulartics2-routerlessmodule.umd.min.js.map +0 -1
- package/routerlessmodule/esm2015/angulartics2-routerlessmodule.js +0 -5
- package/routerlessmodule/esm2015/routerless.module.js +0 -23
- package/routerlessmodule/esm5/angulartics2-routerlessmodule.js +0 -5
- package/routerlessmodule/esm5/routerless.module.js +0 -28
- package/routerlessmodule/fesm2015/angulartics2-routerlessmodule.js +0 -29
- package/routerlessmodule/fesm2015/angulartics2-routerlessmodule.js.map +0 -1
- package/routerlessmodule/fesm5/angulartics2-routerlessmodule.js +0 -34
- package/routerlessmodule/fesm5/angulartics2-routerlessmodule.js.map +0 -1
- package/routerlessmodule/package.json +0 -22
- package/routerlessmodule/routerless.module.d.ts +0 -5
- package/segment/angulartics2-segment.d.ts +0 -4
- package/segment/angulartics2-segment.metadata.json +0 -1
- package/segment/bundles/angulartics2-segment.umd.js +0 -330
- package/segment/bundles/angulartics2-segment.umd.js.map +0 -1
- package/segment/bundles/angulartics2-segment.umd.min.js +0 -16
- package/segment/bundles/angulartics2-segment.umd.min.js.map +0 -1
- package/segment/esm2015/angulartics2-segment.js +0 -5
- package/segment/esm2015/segment.js +0 -107
- package/segment/esm5/angulartics2-segment.js +0 -5
- package/segment/esm5/segment.js +0 -110
- package/segment/fesm2015/angulartics2-segment.js +0 -111
- package/segment/fesm2015/angulartics2-segment.js.map +0 -1
- package/segment/fesm5/angulartics2-segment.js +0 -114
- package/segment/fesm5/angulartics2-segment.js.map +0 -1
- package/segment/package.json +0 -22
- package/splunk/angulartics2-splunk.d.ts +0 -4
- package/splunk/angulartics2-splunk.metadata.json +0 -1
- package/splunk/bundles/angulartics2-splunk.umd.js +0 -272
- package/splunk/bundles/angulartics2-splunk.umd.js.map +0 -1
- package/splunk/bundles/angulartics2-splunk.umd.min.js +0 -16
- package/splunk/bundles/angulartics2-splunk.umd.min.js.map +0 -1
- package/splunk/esm2015/angulartics2-splunk.js +0 -5
- package/splunk/esm2015/splunk.js +0 -50
- package/splunk/esm5/angulartics2-splunk.js +0 -5
- package/splunk/esm5/splunk.js +0 -52
- package/splunk/fesm2015/angulartics2-splunk.js +0 -54
- package/splunk/fesm2015/angulartics2-splunk.js.map +0 -1
- package/splunk/fesm5/angulartics2-splunk.js +0 -56
- package/splunk/fesm5/angulartics2-splunk.js.map +0 -1
- package/splunk/package.json +0 -22
- package/splunk/splunk.d.ts +0 -8
- package/uiroutermodule/angulartics2-uiroutermodule.d.ts +0 -4
- package/uiroutermodule/angulartics2-uiroutermodule.metadata.json +0 -1
- package/uiroutermodule/bundles/angulartics2-uiroutermodule.umd.js +0 -288
- package/uiroutermodule/bundles/angulartics2-uiroutermodule.umd.js.map +0 -1
- package/uiroutermodule/bundles/angulartics2-uiroutermodule.umd.min.js +0 -16
- package/uiroutermodule/bundles/angulartics2-uiroutermodule.umd.min.js.map +0 -1
- package/uiroutermodule/esm2015/angulartics2-uiroutermodule.js +0 -5
- package/uiroutermodule/esm2015/public_api.js +0 -3
- package/uiroutermodule/esm2015/uirouter.js +0 -42
- package/uiroutermodule/esm2015/uirouter.module.js +0 -24
- package/uiroutermodule/esm5/angulartics2-uiroutermodule.js +0 -5
- package/uiroutermodule/esm5/public_api.js +0 -3
- package/uiroutermodule/esm5/uirouter.js +0 -44
- package/uiroutermodule/esm5/uirouter.module.js +0 -29
- package/uiroutermodule/fesm2015/angulartics2-uiroutermodule.js +0 -66
- package/uiroutermodule/fesm2015/angulartics2-uiroutermodule.js.map +0 -1
- package/uiroutermodule/fesm5/angulartics2-uiroutermodule.js +0 -73
- package/uiroutermodule/fesm5/angulartics2-uiroutermodule.js.map +0 -1
- package/uiroutermodule/package.json +0 -22
- package/uiroutermodule/public_api.d.ts +0 -2
- package/uiroutermodule/uirouter.d.ts +0 -17
- package/uiroutermodule/uirouter.module.d.ts +0 -5
- package/woopra/angulartics2-woopra.d.ts +0 -4
- package/woopra/angulartics2-woopra.metadata.json +0 -1
- package/woopra/bundles/angulartics2-woopra.umd.js +0 -289
- package/woopra/bundles/angulartics2-woopra.umd.js.map +0 -1
- package/woopra/bundles/angulartics2-woopra.umd.min.js +0 -16
- package/woopra/bundles/angulartics2-woopra.umd.min.js.map +0 -1
- package/woopra/esm2015/angulartics2-woopra.js +0 -5
- package/woopra/esm2015/woopra.js +0 -66
- package/woopra/esm5/angulartics2-woopra.js +0 -5
- package/woopra/esm5/woopra.js +0 -69
- package/woopra/fesm2015/angulartics2-woopra.js +0 -70
- package/woopra/fesm2015/angulartics2-woopra.js.map +0 -1
- package/woopra/fesm5/angulartics2-woopra.js +0 -73
- package/woopra/fesm5/angulartics2-woopra.js.map +0 -1
- package/woopra/package.json +0 -22
@@ -1,4 +1,5 @@
|
|
1
1
|
import { GaEnhancedEcomAction, GaEnhancedEcomActionFieldObject, GaEnhancedEcomImpressionFieldObject, GaEnhancedEcomProductFieldObject } from './ga-enhanced-ecom-options';
|
2
|
+
import * as i0 from "@angular/core";
|
2
3
|
export declare class Angulartics2GoogleAnalyticsEnhancedEcommerce {
|
3
4
|
/**
|
4
5
|
* Add impression in GA enhanced ecommerce tracking
|
@@ -15,4 +16,6 @@ export declare class Angulartics2GoogleAnalyticsEnhancedEcommerce {
|
|
15
16
|
* @link https://developers.google.com/analytics/devguides/collection/analyticsjs/ecommerce
|
16
17
|
*/
|
17
18
|
ecSetAction(action: GaEnhancedEcomAction, properties: Partial<GaEnhancedEcomActionFieldObject>): void;
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Angulartics2GoogleAnalyticsEnhancedEcommerce, never>;
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Angulartics2GoogleAnalyticsEnhancedEcommerce>;
|
18
21
|
}
|
@@ -7,6 +7,6 @@
|
|
7
7
|
# GoSquared
|
8
8
|
__homepage__: [www.gosquared.com](https://www.gosquared.com/)
|
9
9
|
__docs__: [gosquared.com/docs](https://gosquared.com/docs)
|
10
|
-
__import__: `import { Angulartics2GoSquared } from 'angulartics2
|
10
|
+
__import__: `import { Angulartics2GoSquared } from 'angulartics2';`
|
11
11
|
|
12
12
|
## Setup
|
@@ -1,4 +1,5 @@
|
|
1
|
-
import { Angulartics2 } from 'angulartics2';
|
1
|
+
import { Angulartics2 } from '../../angulartics2-core';
|
2
|
+
import * as i0 from "@angular/core";
|
2
3
|
export declare class Angulartics2GoSquared {
|
3
4
|
private angulartics2;
|
4
5
|
constructor(angulartics2: Angulartics2);
|
@@ -6,4 +7,6 @@ export declare class Angulartics2GoSquared {
|
|
6
7
|
pageTrack(path: string): void;
|
7
8
|
eventTrack(action: string, properties: any): void;
|
8
9
|
setUserProperties(properties: any): void;
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Angulartics2GoSquared, never>;
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Angulartics2GoSquared>;
|
9
12
|
}
|
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
* __homepage__: [google.com/analytics](https://marketingplatform.google.com/about/analytics/)
|
10
10
|
* __docs__: [developers.google.com/analytics/devguides/collection/gtagjs](https://developers.google.com/analytics/devguides/collection/gtagjs/)
|
11
|
-
* __import__: `import { Angulartics2GoogleGlobalSiteTag } from 'angulartics2
|
11
|
+
* __import__: `import { Angulartics2GoogleGlobalSiteTag } from 'angulartics2';`
|
12
12
|
|
13
13
|
## Initial Setup
|
14
14
|
|
@@ -38,7 +38,7 @@ change to your analytics provider.
|
|
38
38
|
|
39
39
|
```ts
|
40
40
|
// component
|
41
|
-
import { Angulartics2GoogleGlobalSiteTag } from 'angulartics2
|
41
|
+
import { Angulartics2GoogleGlobalSiteTag } from 'angulartics2';
|
42
42
|
|
43
43
|
@Component({ ... })
|
44
44
|
export class AppComponent {
|
File without changes
|
@@ -1,5 +1,7 @@
|
|
1
|
-
import {
|
1
|
+
import { GoogleGlobalSiteTagSettings } from '../../angulartics2-config';
|
2
|
+
import { Angulartics2 } from '../../angulartics2-core';
|
2
3
|
import { EventGst, UserTimingsGst } from './gst-interfaces';
|
4
|
+
import * as i0 from "@angular/core";
|
3
5
|
export declare class GoogleGlobalSiteTagDefaults implements GoogleGlobalSiteTagSettings {
|
4
6
|
trackingIds: string[];
|
5
7
|
constructor();
|
@@ -53,4 +55,6 @@ export declare class Angulartics2GoogleGlobalSiteTag {
|
|
53
55
|
private setDimensionsAndMetrics;
|
54
56
|
private eventTrackInternal;
|
55
57
|
private cleanProperties;
|
58
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Angulartics2GoogleGlobalSiteTag, never>;
|
59
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Angulartics2GoogleGlobalSiteTag>;
|
56
60
|
}
|
@@ -7,7 +7,7 @@
|
|
7
7
|
# Google Tag Manager (`gtag.js`)
|
8
8
|
__homepage__: [google.com/analytics/tag-manager](https://www.google.com/analytics/tag-manager/)
|
9
9
|
__docs__: [developers.google.com/tag-manager/devguide](https://developers.google.com/tag-manager/devguide)
|
10
|
-
__import__: `import { Angulartics2GoogleTagManager } from 'angulartics2
|
10
|
+
__import__: `import { Angulartics2GoogleTagManager } from 'angulartics2';`
|
11
11
|
|
12
12
|
|
13
13
|
## Initial Setup
|
@@ -21,7 +21,7 @@ Bootstrapping the application with ```Angulartics2``` as provider and injecting
|
|
21
21
|
|
22
22
|
```ts
|
23
23
|
// component
|
24
|
-
import { Angulartics2GoogleTagManager } from 'angulartics2
|
24
|
+
import { Angulartics2GoogleTagManager } from 'angulartics2';
|
25
25
|
|
26
26
|
@Component({ ... })
|
27
27
|
export class AppComponent {
|
@@ -1,4 +1,6 @@
|
|
1
|
-
import { Angulartics2
|
1
|
+
import { Angulartics2 } from '../../angulartics2-core';
|
2
|
+
import { GoogleTagManagerSettings } from '../../angulartics2-config';
|
3
|
+
import * as i0 from "@angular/core";
|
2
4
|
export declare class GoogleTagManagerDefaults implements GoogleTagManagerSettings {
|
3
5
|
userId: any;
|
4
6
|
}
|
@@ -30,4 +32,6 @@ export declare class Angulartics2GoogleTagManager {
|
|
30
32
|
* @param userId used to identify user cross-device in Google Analytics
|
31
33
|
*/
|
32
34
|
setUsername(userId: string): void;
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Angulartics2GoogleTagManager, never>;
|
36
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Angulartics2GoogleTagManager>;
|
33
37
|
}
|
@@ -7,6 +7,6 @@
|
|
7
7
|
# HubSpot
|
8
8
|
__homepage__: [www.hubspot.com](https://www.hubspot.com/)
|
9
9
|
__docs__: [developers.hubspot.com/docs/methods/tracking_code_api/tracking_code_overview](https://developers.hubspot.com/docs/methods/tracking_code_api/tracking_code_overview)
|
10
|
-
__import__: `import { Angulartics2Hubspot } from 'angulartics2
|
10
|
+
__import__: `import { Angulartics2Hubspot } from 'angulartics2';`
|
11
11
|
|
12
12
|
## Setup
|
@@ -1,4 +1,5 @@
|
|
1
|
-
import { Angulartics2 } from 'angulartics2';
|
1
|
+
import { Angulartics2 } from '../../angulartics2-core';
|
2
|
+
import * as i0 from "@angular/core";
|
2
3
|
export declare class Angulartics2Hubspot {
|
3
4
|
private angulartics2;
|
4
5
|
constructor(angulartics2: Angulartics2);
|
@@ -6,4 +7,6 @@ export declare class Angulartics2Hubspot {
|
|
6
7
|
pageTrack(path: string): void;
|
7
8
|
eventTrack(action: string, properties: any): void;
|
8
9
|
setUserProperties(properties: any): void;
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Angulartics2Hubspot, never>;
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Angulartics2Hubspot>;
|
9
12
|
}
|
@@ -7,7 +7,7 @@
|
|
7
7
|
# IBM Digital Analytics
|
8
8
|
__homepage__: [https://digitalanalytics.ibmcloud.com](https://digitalanalytics.ibmcloud.com)
|
9
9
|
__docs__: [https://www.ibm.com/support/knowledgecenter/SSPG9M/Analytics/kc_welcome_analytics.html](https://www.ibm.com/support/knowledgecenter/SSPG9M/Analytics/kc_welcome_analytics.html)
|
10
|
-
__import__: `import { Angulartics2IBMDigitalAnalytics } from 'angulartics2
|
10
|
+
__import__: `import { Angulartics2IBMDigitalAnalytics } from 'angulartics2';`
|
11
11
|
|
12
12
|
## Setup
|
13
13
|
|
@@ -62,7 +62,7 @@ export class AppModule { }
|
|
62
62
|
```ts
|
63
63
|
// app.component.ts
|
64
64
|
import { Component } from '@angular/core';
|
65
|
-
import { Angulartics2IBMDigitalAnalytics } from 'angulartics2
|
65
|
+
import { Angulartics2IBMDigitalAnalytics } from 'angulartics2';
|
66
66
|
|
67
67
|
@Component({
|
68
68
|
selector: 'app-root',
|
package/{ibm-digital-analytics → providers/ibm-digital-analytics}/ibm-digital-analytics.d.ts
RENAMED
@@ -1,4 +1,5 @@
|
|
1
|
-
import { Angulartics2 } from 'angulartics2';
|
1
|
+
import { Angulartics2 } from '../../angulartics2-core';
|
2
|
+
import * as i0 from "@angular/core";
|
2
3
|
export declare class Angulartics2IBMDigitalAnalytics {
|
3
4
|
private angulartics2;
|
4
5
|
constructor(angulartics2: Angulartics2);
|
@@ -18,4 +19,6 @@ export declare class Angulartics2IBMDigitalAnalytics {
|
|
18
19
|
* @param properties The properties that need to be logged with the event.
|
19
20
|
*/
|
20
21
|
eventTrack(action: string, properties?: any): void;
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Angulartics2IBMDigitalAnalytics, never>;
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Angulartics2IBMDigitalAnalytics>;
|
21
24
|
}
|
@@ -7,6 +7,6 @@
|
|
7
7
|
# Intercom
|
8
8
|
__homepage__: [www.intercom.com](https://www.intercom.com/)
|
9
9
|
__docs__: [developers.intercom.com/docs](https://developers.intercom.com/docs)
|
10
|
-
__import__: `import { Angulartics2Intercom } from 'angulartics2
|
10
|
+
__import__: `import { Angulartics2Intercom } from 'angulartics2';`
|
11
11
|
|
12
12
|
## Setup
|
@@ -1,4 +1,5 @@
|
|
1
|
-
import { Angulartics2 } from 'angulartics2';
|
1
|
+
import { Angulartics2 } from '../../angulartics2-core';
|
2
|
+
import * as i0 from "@angular/core";
|
2
3
|
export declare class Angulartics2Intercom {
|
3
4
|
private angulartics2;
|
4
5
|
constructor(angulartics2: Angulartics2);
|
@@ -6,4 +7,6 @@ export declare class Angulartics2Intercom {
|
|
6
7
|
pageTrack(path: string): void;
|
7
8
|
eventTrack(action: string, properties: any): void;
|
8
9
|
setUserProperties(properties: any): void;
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Angulartics2Intercom, never>;
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Angulartics2Intercom>;
|
9
12
|
}
|
@@ -7,6 +7,6 @@
|
|
7
7
|
# Kissmetrics
|
8
8
|
__homepage__: [kissmetrics.com/product/analyze/](https://www.kissmetrics.com/product/analyze/)
|
9
9
|
__docs__: [developers.kissmetrics.com/reference](https://developers.kissmetrics.com/reference)
|
10
|
-
__import__: `import { Angulartics2Kissmetrics } from 'angulartics2
|
10
|
+
__import__: `import { Angulartics2Kissmetrics } from 'angulartics2';`
|
11
11
|
|
12
12
|
## Setup
|
@@ -1,4 +1,5 @@
|
|
1
|
-
import { Angulartics2 } from 'angulartics2';
|
1
|
+
import { Angulartics2 } from '../../angulartics2-core';
|
2
|
+
import * as i0 from "@angular/core";
|
2
3
|
export declare class Angulartics2Kissmetrics {
|
3
4
|
private angulartics2;
|
4
5
|
constructor(angulartics2: Angulartics2);
|
@@ -7,4 +8,6 @@ export declare class Angulartics2Kissmetrics {
|
|
7
8
|
eventTrack(action: string, properties: any): void;
|
8
9
|
setUsername(userId: string): void;
|
9
10
|
setUserProperties(properties: any): void;
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Angulartics2Kissmetrics, never>;
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Angulartics2Kissmetrics>;
|
10
13
|
}
|
@@ -7,7 +7,7 @@
|
|
7
7
|
# Launch, by Adobe
|
8
8
|
__homepage__: [Launch, by Adobe](https://www.adobe.com/experience-platform/launch.html)
|
9
9
|
__docs__: [developer.adobelaunch.com/](https://developer.adobelaunch.com/)
|
10
|
-
__import__: `import { Angulartics2LaunchByAdobe } from 'angulartics2
|
10
|
+
__import__: `import { Angulartics2LaunchByAdobe } from 'angulartics2';`
|
11
11
|
|
12
12
|
|
13
13
|
## Initial Setup
|
@@ -25,7 +25,7 @@ Bootstrapping the application with ```Angulartics2``` as provider and injecting
|
|
25
25
|
|
26
26
|
```ts
|
27
27
|
// component
|
28
|
-
import { Angulartics2LaunchByAdobe } from 'angulartics2
|
28
|
+
import { Angulartics2LaunchByAdobe } from 'angulartics2';
|
29
29
|
|
30
30
|
@Component({ ... })
|
31
31
|
export class AppComponent {
|
@@ -39,7 +39,7 @@ export class AppComponent {
|
|
39
39
|
```ts
|
40
40
|
// bootstrap
|
41
41
|
import { Angulartics2Module } from 'angulartics2';
|
42
|
-
import { Angulartics2LaunchByAdobe } from 'angulartics2
|
42
|
+
import { Angulartics2LaunchByAdobe } from 'angulartics2';
|
43
43
|
|
44
44
|
@NgModule({
|
45
45
|
imports: [
|
@@ -1,4 +1,5 @@
|
|
1
|
-
import { Angulartics2 } from 'angulartics2';
|
1
|
+
import { Angulartics2 } from '../../angulartics2-core';
|
2
|
+
import * as i0 from "@angular/core";
|
2
3
|
export declare class Angulartics2LaunchByAdobe {
|
3
4
|
protected angulartics2: Angulartics2;
|
4
5
|
payload: any;
|
@@ -12,4 +13,6 @@ export declare class Angulartics2LaunchByAdobe {
|
|
12
13
|
* @param properties associated with the event
|
13
14
|
*/
|
14
15
|
eventTrack(action: string, properties: any): void;
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Angulartics2LaunchByAdobe, never>;
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Angulartics2LaunchByAdobe>;
|
15
18
|
}
|
@@ -1,41 +1,41 @@
|
|
1
1
|
<img
|
2
|
-
src="../../../assets/svg/
|
3
|
-
alt="
|
2
|
+
src="../../../assets/svg/matomo.svg"
|
3
|
+
alt="Matomo logo"
|
4
4
|
height="100px"
|
5
5
|
width="200px" />
|
6
6
|
|
7
|
-
#
|
8
|
-
__homepage__: [
|
9
|
-
__docs__: [developer.
|
10
|
-
__import__: `import {
|
7
|
+
# Matomo
|
8
|
+
__homepage__: [matomo.org](https://matomo.org)
|
9
|
+
__docs__: [developer.matomo.org](https://developer.matomo.org)
|
10
|
+
__import__: `import { Angulartics2Matomo } from 'angulartics2';`
|
11
11
|
|
12
12
|
## Setup
|
13
|
-
Add the standard
|
13
|
+
Add the standard matomo track code inside your index.html head tag:
|
14
14
|
```html
|
15
|
-
<!--
|
15
|
+
<!-- Matomo -->
|
16
16
|
<script type="text/javascript">
|
17
17
|
var _paq = _paq || [];
|
18
18
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
19
19
|
// _paq.push(['trackPageView']); // DELETE THIS LINE
|
20
20
|
_paq.push(['enableLinkTracking']);
|
21
21
|
(function() {
|
22
|
-
var u="//
|
23
|
-
_paq.push(['setTrackerUrl', u+'
|
22
|
+
var u="//matomo.YOUR-DOMAIN.com/";
|
23
|
+
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
24
24
|
_paq.push(['setSiteId', '11']);
|
25
25
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
26
|
-
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'
|
26
|
+
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
27
27
|
})();
|
28
28
|
</script>
|
29
|
-
<!-- End
|
29
|
+
<!-- End Matomo Code -->
|
30
30
|
```
|
31
31
|
Make sure "trackPageView" line is commented or deleted. It is not needed as page tracking will be trigger by the angular module on route change.
|
32
32
|
|
33
|
-
Replace YOUR-DOMAIN with your
|
33
|
+
Replace YOUR-DOMAIN with your matomo domain (`//DOMAIN.innocraft.cloud` if you are using the innocraft cloud service).
|
34
34
|
|
35
|
-
Pass the
|
35
|
+
Pass the Matomo provider to angulartics in app.module:
|
36
36
|
```ts
|
37
37
|
import { Angulartics2Module } from 'angulartics2';
|
38
|
-
import {
|
38
|
+
import { Angulartics2Matomo } from 'angulartics2';
|
39
39
|
@NgModule({
|
40
40
|
imports: [
|
41
41
|
Angulartics2Module.forRoot(),
|
@@ -44,11 +44,11 @@ import { Angulartics2Piwik } from 'angulartics2/piwik';
|
|
44
44
|
|
45
45
|
Inject angulartics into your root component (usually appComponent)
|
46
46
|
```ts
|
47
|
-
import {
|
47
|
+
import { Angulartics2Matomo } from 'angulartics2';
|
48
48
|
export class AppComponent {
|
49
|
-
// inject
|
50
|
-
constructor(private
|
51
|
-
|
49
|
+
// inject Angulartics2Matomo in root component and initialize it
|
50
|
+
constructor(private angulartics2Matomo: Angulartics2Matomo) {
|
51
|
+
angulartics2Matomo.startTracking();
|
52
52
|
}
|
53
53
|
}
|
54
54
|
```
|
@@ -69,6 +69,6 @@ angulartics2.setUserProperties.next({
|
|
69
69
|
```
|
70
70
|
Note: Custom Variables and Custom Dimensions cannot be tracked in the same call, and requires separate setUserProperties calls
|
71
71
|
|
72
|
-
To track full URLs if there is a hash (#), make sure to enable `settings=>websites=>settings=>page url fragments tracking` in the
|
72
|
+
To track full URLs if there is a hash (#), make sure to enable `settings=>websites=>settings=>page url fragments tracking` in the Matomo dashboard.
|
73
73
|
|
74
74
|
Once set up, Angulartics [usage](https://github.com/angulartics/angulartics2#usage) is the same regardless of provider
|
@@ -0,0 +1,140 @@
|
|
1
|
+
import { Angulartics2 } from '../../angulartics2-core';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare type EventTrackAction = 'setEcommerceView' | 'addEcommerceItem' | 'trackEcommerceCartUpdate' | 'trackEcommerceOrder' | 'trackLink' | 'trackGoal' | 'trackSiteSearch' | string;
|
4
|
+
export declare type ScopeMatomo = 'visit' | 'page';
|
5
|
+
export interface DimensionsMatomoProperties {
|
6
|
+
dimension0?: string;
|
7
|
+
dimension1?: string;
|
8
|
+
dimension2?: string;
|
9
|
+
dimension3?: string;
|
10
|
+
dimension4?: string;
|
11
|
+
dimension5?: string;
|
12
|
+
dimension6?: string;
|
13
|
+
dimension7?: string;
|
14
|
+
dimension8?: string;
|
15
|
+
dimension9?: string;
|
16
|
+
}
|
17
|
+
export interface SetEcommerceViewMatomoProperties {
|
18
|
+
/** @class SetEcommerceViewMatomoProperties */
|
19
|
+
productSKU: string;
|
20
|
+
/** @class SetEcommerceViewMatomoProperties */
|
21
|
+
productName: string;
|
22
|
+
/** @class SetEcommerceViewMatomoProperties */
|
23
|
+
categoryName: string;
|
24
|
+
/** @class SetEcommerceViewMatomoProperties */
|
25
|
+
price: string;
|
26
|
+
}
|
27
|
+
export interface AddEcommerceItemProperties {
|
28
|
+
/** @class AddEcommerceItemProperties */
|
29
|
+
productSKU: string;
|
30
|
+
/** @class AddEcommerceItemProperties */
|
31
|
+
productName: string;
|
32
|
+
/** @class AddEcommerceItemProperties */
|
33
|
+
productCategory: string;
|
34
|
+
/** @class AddEcommerceItemProperties */
|
35
|
+
price: string;
|
36
|
+
/** @class AddEcommerceItemProperties */
|
37
|
+
quantity: string;
|
38
|
+
}
|
39
|
+
export interface TrackEcommerceCartUpdateMatomoProperties {
|
40
|
+
/** @class TrackEcommerceCartUpdateMatomoProperties */
|
41
|
+
grandTotal: string;
|
42
|
+
}
|
43
|
+
export interface TrackEcommerceOrderMatomoProperties {
|
44
|
+
/** @class TrackEcommerceOrderMatomoProperties */
|
45
|
+
orderId: string;
|
46
|
+
/** @class TrackEcommerceOrderMatomoProperties */
|
47
|
+
grandTotal: string;
|
48
|
+
/** @class TrackEcommerceOrderMatomoProperties */
|
49
|
+
subTotal: string;
|
50
|
+
/** @class TrackEcommerceOrderMatomoProperties */
|
51
|
+
tax: string;
|
52
|
+
/** @class TrackEcommerceOrderMatomoProperties */
|
53
|
+
shipping: string;
|
54
|
+
/** @class TrackEcommerceOrderMatomoProperties */
|
55
|
+
discount: string;
|
56
|
+
}
|
57
|
+
export interface TrackLinkMatomoProperties {
|
58
|
+
/** @class TrackLinkMatomoProperties */
|
59
|
+
url: string;
|
60
|
+
/** @class TrackLinkMatomoProperties */
|
61
|
+
linkType: string;
|
62
|
+
}
|
63
|
+
export interface TrackGoalMatomoProperties {
|
64
|
+
/** @class TrackGoalMatomoProperties */
|
65
|
+
goalId: string;
|
66
|
+
/** @class TrackGoalMatomoProperties */
|
67
|
+
value: string;
|
68
|
+
}
|
69
|
+
export interface TrackSiteSearchMatomoProperties {
|
70
|
+
/** @class TrackSiteSearchMatomoProperties */
|
71
|
+
keyword: string;
|
72
|
+
/** @class TrackSiteSearchMatomoProperties */
|
73
|
+
category: string;
|
74
|
+
/** @class TrackSiteSearchMatomoProperties */
|
75
|
+
searchCount: string;
|
76
|
+
}
|
77
|
+
export interface TrackEventMatomoProperties {
|
78
|
+
/** @class TrackEventMatomoProperties */
|
79
|
+
category: string;
|
80
|
+
/** @class TrackEventMatomoProperties */
|
81
|
+
name?: string;
|
82
|
+
/** @class TrackEventMatomoProperties */
|
83
|
+
label?: string;
|
84
|
+
/** @class TrackEventMatomoProperties */
|
85
|
+
value: number | string;
|
86
|
+
}
|
87
|
+
export interface SetCustomVariableMatomoProperties extends DimensionsMatomoProperties {
|
88
|
+
/** @class SetCustomVariableMatomoProperties */
|
89
|
+
index: number;
|
90
|
+
/** @class SetCustomVariableMatomoProperties */
|
91
|
+
name: string;
|
92
|
+
/** @class SetCustomVariableMatomoProperties */
|
93
|
+
value: string;
|
94
|
+
/** @class SetCustomVariableMatomoProperties */
|
95
|
+
scope: ScopeMatomo;
|
96
|
+
}
|
97
|
+
export interface DeleteCustomVariableMatomoProperties {
|
98
|
+
/** @class DeleteCustomVariableMatomoProperties */
|
99
|
+
index: number;
|
100
|
+
/** @class DeleteCustomVariableMatomoProperties */
|
101
|
+
scope: ScopeMatomo;
|
102
|
+
}
|
103
|
+
export declare type EventTrackactionProperties = SetEcommerceViewMatomoProperties | AddEcommerceItemProperties | TrackEcommerceCartUpdateMatomoProperties | TrackEcommerceOrderMatomoProperties | TrackLinkMatomoProperties | TrackGoalMatomoProperties | TrackSiteSearchMatomoProperties | TrackEventMatomoProperties;
|
104
|
+
export declare class Angulartics2Matomo {
|
105
|
+
private angulartics2;
|
106
|
+
constructor(angulartics2: Angulartics2);
|
107
|
+
startTracking(): void;
|
108
|
+
pageTrack(path: string, title?: string): void;
|
109
|
+
resetUser(): void;
|
110
|
+
eventTrack(action: 'setEcommerceView', properties: SetEcommerceViewMatomoProperties): void;
|
111
|
+
eventTrack(action: 'addEcommerceItem', properties: AddEcommerceItemProperties): void;
|
112
|
+
eventTrack(action: 'trackEcommerceCartUpdate', properties: TrackEcommerceCartUpdateMatomoProperties): void;
|
113
|
+
eventTrack(action: 'trackEcommerceOrder', properties: TrackEcommerceOrderMatomoProperties): void;
|
114
|
+
eventTrack(action: 'trackLink', properties: TrackLinkMatomoProperties): void;
|
115
|
+
eventTrack(action: 'trackGoal', properties: TrackGoalMatomoProperties): void;
|
116
|
+
eventTrack(action: 'trackSiteSearch', properties: TrackSiteSearchMatomoProperties): void;
|
117
|
+
eventTrack(action: string, properties: TrackEventMatomoProperties): void;
|
118
|
+
setUsername(userId: string | boolean): void;
|
119
|
+
/**
|
120
|
+
* Sets custom dimensions if at least one property has the key "dimension<n>",
|
121
|
+
* e.g. dimension10. If there are custom dimensions, any other property is ignored.
|
122
|
+
*
|
123
|
+
* If there are no custom dimensions in the given properties object, the properties
|
124
|
+
* object is saved as a custom variable.
|
125
|
+
*
|
126
|
+
* If in doubt, prefer custom dimensions.
|
127
|
+
* @link https://matomo.org/docs/custom-variables/
|
128
|
+
*/
|
129
|
+
setUserProperties(properties: SetCustomVariableMatomoProperties): void;
|
130
|
+
/**
|
131
|
+
* If you created a custom variable and then decide to remove this variable from
|
132
|
+
* a visit or page view, you can use deleteCustomVariable.
|
133
|
+
*
|
134
|
+
* @link https://developer.matomo.org/guides/tracking-javascript-guide#deleting-a-custom-variable
|
135
|
+
*/
|
136
|
+
deletedUserProperties(properties: DeleteCustomVariableMatomoProperties): void;
|
137
|
+
private setCustomDimensions;
|
138
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Angulartics2Matomo, never>;
|
139
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Angulartics2Matomo>;
|
140
|
+
}
|
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
**homepage**: [mixpanel.com](https://mixpanel.com/)
|
10
10
|
**docs**: [mixpanel.com/help/reference/javascript](https://mixpanel.com/help/reference/javascript)
|
11
|
-
**import**: `import { Angulartics2Mixpanel } from 'angulartics2
|
11
|
+
**import**: `import { Angulartics2Mixpanel } from 'angulartics2';`
|
12
12
|
|
13
13
|
## Setup
|
14
14
|
|
@@ -48,7 +48,7 @@ export interface MixPanelPayloadProperties {
|
|
48
48
|
```ts
|
49
49
|
import { Injectable } from '@angular/core';
|
50
50
|
import { Actions, Effect } from '@ngrx/effects';
|
51
|
-
import { Angulartics2Mixpanel } from 'angulartics2
|
51
|
+
import { Angulartics2Mixpanel } from 'angulartics2';
|
52
52
|
|
53
53
|
import * as mixpanel from '../actions/mixpanel';
|
54
54
|
|
@@ -1,4 +1,5 @@
|
|
1
|
-
import { Angulartics2 } from 'angulartics2';
|
1
|
+
import { Angulartics2 } from '../../angulartics2-core';
|
2
|
+
import * as i0 from "@angular/core";
|
2
3
|
export declare class Angulartics2Mixpanel {
|
3
4
|
private angulartics2;
|
4
5
|
constructor(angulartics2: Angulartics2);
|
@@ -11,4 +12,6 @@ export declare class Angulartics2Mixpanel {
|
|
11
12
|
setSuperProperties(properties: any): void;
|
12
13
|
setSuperPropertiesOnce(properties: any): void;
|
13
14
|
setAlias(alias: any): void;
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Angulartics2Mixpanel, never>;
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Angulartics2Mixpanel>;
|
14
17
|
}
|
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
__homepage__: [pyze.com](https://www.pyze.com/)
|
10
10
|
__docs__: [docs.pyze.com/web.html](https://docs.pyze.com/web.html)
|
11
|
-
__import__: `import { Angulartics2Pyze } from 'angulartics2
|
11
|
+
__import__: `import { Angulartics2Pyze } from 'angulartics2';`
|
12
12
|
|
13
13
|
## Setup
|
14
14
|
|
@@ -1,4 +1,5 @@
|
|
1
|
-
import { Angulartics2 } from 'angulartics2';
|
1
|
+
import { Angulartics2 } from '../../angulartics2-core';
|
2
|
+
import * as i0 from "@angular/core";
|
2
3
|
export declare class Angulartics2Pyze {
|
3
4
|
private angulartics2;
|
4
5
|
constructor(angulartics2: Angulartics2);
|
@@ -7,4 +8,6 @@ export declare class Angulartics2Pyze {
|
|
7
8
|
eventTrack(action: string, properties: any): void;
|
8
9
|
setUserId(userId: string): void;
|
9
10
|
postTraits(properties: string): void;
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Angulartics2Pyze, never>;
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Angulartics2Pyze>;
|
10
13
|
}
|
@@ -7,7 +7,7 @@
|
|
7
7
|
# Segment
|
8
8
|
__homepage__: [segment.com](https://segment.com/)
|
9
9
|
__docs__: [segment.com/docs/sources/website/analytics.js](https://segment.com/docs/sources/website/analytics.js/)
|
10
|
-
__import__: `import { Angulartics2Segment } from 'angulartics2
|
10
|
+
__import__: `import { Angulartics2Segment } from 'angulartics2';`
|
11
11
|
|
12
12
|
## Setup
|
13
13
|
1. Add `Angulartics2Module` to your root NgModule passing an array of providers to enable
|
@@ -17,7 +17,7 @@ import { BrowserModule } from '@angular/platform-browser';
|
|
17
17
|
import { RouterModule, Routes } from '@angular/router';
|
18
18
|
|
19
19
|
import { Angulartics2Module } from 'angulartics2';
|
20
|
-
import { Angulartics2Segment } from 'angulartics2
|
20
|
+
import { Angulartics2Segment } from 'angulartics2';
|
21
21
|
|
22
22
|
const ROUTES: Routes = [
|
23
23
|
{ path: '', component: HomeComponent },
|
@@ -39,7 +39,7 @@ const ROUTES: Routes = [
|
|
39
39
|
2. __Required__: Import your providers in the root component. This starts the tracking of route changes.
|
40
40
|
```ts
|
41
41
|
// component
|
42
|
-
import { Angulartics2Segment } from 'angulartics2
|
42
|
+
import { Angulartics2Segment } from 'angulartics2';
|
43
43
|
|
44
44
|
@Component({ ... })
|
45
45
|
export class AppComponent {
|
@@ -1,4 +1,5 @@
|
|
1
|
-
import { Angulartics2 } from 'angulartics2';
|
1
|
+
import { Angulartics2 } from '../../angulartics2-core';
|
2
|
+
import * as i0 from "@angular/core";
|
2
3
|
export declare class Angulartics2Segment {
|
3
4
|
private angulartics2;
|
4
5
|
constructor(angulartics2: Angulartics2);
|
@@ -33,4 +34,6 @@ export declare class Angulartics2Segment {
|
|
33
34
|
* analytics.alias(userId, previousId, options, callback);
|
34
35
|
*/
|
35
36
|
setAlias(alias: any): void;
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Angulartics2Segment, never>;
|
38
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Angulartics2Segment>;
|
36
39
|
}
|
@@ -7,7 +7,7 @@
|
|
7
7
|
# Splunk
|
8
8
|
__homepage__: [splunk.com](https://www.splunk.com/)
|
9
9
|
__docs__: [Splunk Collector API](https://github.com/splunk/splunk-demo-collector-for-analyticsjs#api)
|
10
|
-
__import__: `import { Angulartics2Splunk } from 'angulartics2
|
10
|
+
__import__: `import { Angulartics2Splunk } from 'angulartics2';`
|
11
11
|
|
12
12
|
## Setup
|
13
13
|
1. Add tracking code [provided by Splunk](https://www.splunk.com/blog/2013/10/17/still-using-3rd-party-web-analytics-providers-build-your-own-using-splunk.html) to right above the `</head>` closing tag.
|
@@ -46,7 +46,7 @@ const ROUTES: Routes = [
|
|
46
46
|
3. __Required__: Import your providers in the root component. This starts the tracking of route changes.
|
47
47
|
```ts
|
48
48
|
// component
|
49
|
-
import { Angulartics2Splunk } from 'angulartics2
|
49
|
+
import { Angulartics2Splunk } from 'angulartics2';
|
50
50
|
|
51
51
|
@Component({ ... })
|
52
52
|
export class AppComponent {
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { Angulartics2 } from '../../angulartics2-core';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class Angulartics2Splunk {
|
4
|
+
private angulartics2;
|
5
|
+
constructor(angulartics2: Angulartics2);
|
6
|
+
startTracking(): void;
|
7
|
+
pageTrack(path: string): void;
|
8
|
+
eventTrack(action: string, properties: any): void;
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Angulartics2Splunk, never>;
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Angulartics2Splunk>;
|
11
|
+
}
|
@@ -7,6 +7,6 @@
|
|
7
7
|
# Woopra
|
8
8
|
__homepage__: [woopra.com](https://www.woopra.com/)
|
9
9
|
__docs__: [woopra.com/docs/setup/javascript-tracking/](https://www.woopra.com/docs/setup/javascript-tracking/)
|
10
|
-
__import__: `import { Angulartics2Woopra } from 'angulartics2
|
10
|
+
__import__: `import { Angulartics2Woopra } from 'angulartics2';`
|
11
11
|
|
12
12
|
## Setup
|
@@ -1,4 +1,5 @@
|
|
1
|
-
import { Angulartics2 } from 'angulartics2';
|
1
|
+
import { Angulartics2 } from '../../angulartics2-core';
|
2
|
+
import * as i0 from "@angular/core";
|
2
3
|
export declare class Angulartics2Woopra {
|
3
4
|
private angulartics2;
|
4
5
|
constructor(angulartics2: Angulartics2);
|
@@ -6,4 +7,6 @@ export declare class Angulartics2Woopra {
|
|
6
7
|
pageTrack(path: string): void;
|
7
8
|
eventTrack(action: string, properties: any): void;
|
8
9
|
setUserProperties(properties: any): void;
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Angulartics2Woopra, never>;
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Angulartics2Woopra>;
|
9
12
|
}
|