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.
Files changed (502) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +8 -9
  3. package/angular-router.d.ts +3 -0
  4. package/angulartics2-core.d.ts +3 -1
  5. package/angulartics2.d.ts +1 -0
  6. package/angulartics2.module.d.ts +5 -0
  7. package/angulartics2On.d.ts +6 -0
  8. package/esm2020/angular-router.mjs +33 -0
  9. package/esm2020/angulartics2-config.mjs +19 -0
  10. package/esm2020/angulartics2-core.mjs +93 -0
  11. package/esm2020/angulartics2-interfaces.mjs +2 -0
  12. package/esm2020/angulartics2-token.mjs +3 -0
  13. package/esm2020/angulartics2.mjs +5 -0
  14. package/esm2020/angulartics2.module.mjs +30 -0
  15. package/esm2020/angulartics2On.mjs +66 -0
  16. package/esm2020/providers/adobeanalytics/adobeanalytics.mjs +98 -0
  17. package/esm2020/providers/amplitude/amplitude.mjs +68 -0
  18. package/esm2020/providers/appinsights/appinsights.mjs +118 -0
  19. package/esm2020/providers/baidu/baidu.mjs +81 -0
  20. package/esm2020/providers/clicky/clicky.interfaces.mjs +2 -0
  21. package/esm2020/providers/clicky/clicky.mjs +64 -0
  22. package/esm2020/providers/facebook/facebook.mjs +45 -0
  23. package/esm2020/providers/ga/ga.mjs +219 -0
  24. package/esm2020/providers/ga-enhanced-ecom/ga-enhanced-ecom-options.mjs +7 -0
  25. package/esm2020/providers/ga-enhanced-ecom/ga-enhanced-ecom.mjs +32 -0
  26. package/esm2020/providers/gosquared/gosquared.mjs +55 -0
  27. package/esm2020/providers/gst/gst-interfaces.mjs +2 -0
  28. package/esm2020/providers/gst/gst.mjs +197 -0
  29. package/esm2020/providers/gtm/gtm.mjs +114 -0
  30. package/esm2020/providers/hubspot/hubspot.mjs +40 -0
  31. package/esm2020/providers/ibm-digital-analytics/ibm-digital-analytics.mjs +125 -0
  32. package/esm2020/providers/intercom/intercom.mjs +60 -0
  33. package/esm2020/providers/kissmetrics/kissmetrics.mjs +40 -0
  34. package/esm2020/providers/launch/launch.mjs +59 -0
  35. package/esm2020/providers/matomo/matomo.mjs +303 -0
  36. package/esm2020/providers/mixpanel/mixpanel.mjs +109 -0
  37. package/esm2020/providers/pyze/pyze.mjs +65 -0
  38. package/esm2020/providers/segment/segment.mjs +100 -0
  39. package/esm2020/providers/splunk/splunk.mjs +46 -0
  40. package/esm2020/providers/woopra/woopra.mjs +61 -0
  41. package/esm2020/public_api.mjs +32 -0
  42. package/esm2020/routerless.mjs +10 -0
  43. package/esm2020/routerless.module.mjs +28 -0
  44. package/fesm2015/angulartics2.mjs +2248 -0
  45. package/fesm2015/angulartics2.mjs.map +1 -0
  46. package/fesm2020/angulartics2.mjs +2294 -0
  47. package/fesm2020/angulartics2.mjs.map +1 -0
  48. package/package.json +28 -16
  49. package/{adobeanalytics → providers/adobeanalytics}/README.md +1 -1
  50. package/{adobeanalytics → providers/adobeanalytics}/adobeanalytics.d.ts +4 -1
  51. package/{amplitude → providers/amplitude}/README.md +1 -1
  52. package/{amplitude → providers/amplitude}/amplitude.d.ts +4 -1
  53. package/{appinsights → providers/appinsights}/README.md +1 -1
  54. package/{appinsights → providers/appinsights}/appinsights.d.ts +5 -1
  55. package/{baidu → providers/baidu}/README.md +1 -1
  56. package/{baidu → providers/baidu}/baidu.d.ts +4 -1
  57. package/{clicky → providers/clicky}/README.md +1 -1
  58. package/{clicky → providers/clicky}/clicky.d.ts +4 -1
  59. package/{clicky → providers/clicky}/clicky.interfaces.d.ts +0 -0
  60. package/{facebook → providers/facebook}/README.md +1 -1
  61. package/{facebook → providers/facebook}/facebook.d.ts +4 -1
  62. package/{ga → providers/ga}/README.md +1 -1
  63. package/{ga → providers/ga}/ga.d.ts +6 -1
  64. package/{ga-enhanced-ecom → providers/ga-enhanced-ecom}/README.md +1 -1
  65. package/{ga-enhanced-ecom → providers/ga-enhanced-ecom}/ga-enhanced-ecom-options.d.ts +0 -0
  66. package/{ga-enhanced-ecom → providers/ga-enhanced-ecom}/ga-enhanced-ecom.d.ts +3 -0
  67. package/{gosquared → providers/gosquared}/README.md +1 -1
  68. package/{gosquared → providers/gosquared}/gosquared.d.ts +4 -1
  69. package/{gst → providers/gst}/README.md +2 -2
  70. package/{gst → providers/gst}/gst-interfaces.d.ts +0 -0
  71. package/{gst → providers/gst}/gst.d.ts +5 -1
  72. package/{gtm → providers/gtm}/README.md +2 -2
  73. package/{gtm → providers/gtm}/gtm.d.ts +5 -1
  74. package/{hubspot → providers/hubspot}/README.md +1 -1
  75. package/{hubspot → providers/hubspot}/hubspot.d.ts +4 -1
  76. package/{ibm-digital-analytics → providers/ibm-digital-analytics}/README.md +2 -2
  77. package/{ibm-digital-analytics → providers/ibm-digital-analytics}/ibm-digital-analytics.d.ts +4 -1
  78. package/{intercom → providers/intercom}/README.md +1 -1
  79. package/{intercom → providers/intercom}/intercom.d.ts +4 -1
  80. package/{kissmetrics → providers/kissmetrics}/README.md +1 -1
  81. package/{kissmetrics → providers/kissmetrics}/kissmetrics.d.ts +4 -1
  82. package/{launch → providers/launch}/README.md +3 -3
  83. package/{launch → providers/launch}/launch.d.ts +4 -1
  84. package/{piwik → providers/matomo}/README.md +20 -20
  85. package/providers/matomo/matomo.d.ts +140 -0
  86. package/{mixpanel → providers/mixpanel}/README.md +2 -2
  87. package/{mixpanel → providers/mixpanel}/mixpanel.d.ts +4 -1
  88. package/{pyze → providers/pyze}/README.md +1 -1
  89. package/{pyze → providers/pyze}/pyze.d.ts +4 -1
  90. package/{segment → providers/segment}/README.md +3 -3
  91. package/{segment → providers/segment}/segment.d.ts +4 -1
  92. package/{splunk → providers/splunk}/README.md +2 -2
  93. package/providers/splunk/splunk.d.ts +11 -0
  94. package/{woopra → providers/woopra}/README.md +1 -1
  95. package/{woopra → providers/woopra}/woopra.d.ts +4 -1
  96. package/public_api.d.ts +23 -0
  97. package/routerless.module.d.ts +10 -0
  98. package/adobeanalytics/angulartics2-adobeanalytics.d.ts +0 -4
  99. package/adobeanalytics/angulartics2-adobeanalytics.metadata.json +0 -1
  100. package/adobeanalytics/bundles/angulartics2-adobeanalytics.umd.js +0 -326
  101. package/adobeanalytics/bundles/angulartics2-adobeanalytics.umd.js.map +0 -1
  102. package/adobeanalytics/bundles/angulartics2-adobeanalytics.umd.min.js +0 -16
  103. package/adobeanalytics/bundles/angulartics2-adobeanalytics.umd.min.js.map +0 -1
  104. package/adobeanalytics/esm2015/adobeanalytics.js +0 -105
  105. package/adobeanalytics/esm2015/angulartics2-adobeanalytics.js +0 -5
  106. package/adobeanalytics/esm5/adobeanalytics.js +0 -108
  107. package/adobeanalytics/esm5/angulartics2-adobeanalytics.js +0 -5
  108. package/adobeanalytics/fesm2015/angulartics2-adobeanalytics.js +0 -108
  109. package/adobeanalytics/fesm2015/angulartics2-adobeanalytics.js.map +0 -1
  110. package/adobeanalytics/fesm5/angulartics2-adobeanalytics.js +0 -111
  111. package/adobeanalytics/fesm5/angulartics2-adobeanalytics.js.map +0 -1
  112. package/adobeanalytics/package.json +0 -22
  113. package/amplitude/angulartics2-amplitude.d.ts +0 -4
  114. package/amplitude/angulartics2-amplitude.metadata.json +0 -1
  115. package/amplitude/bundles/angulartics2-amplitude.umd.js +0 -298
  116. package/amplitude/bundles/angulartics2-amplitude.umd.js.map +0 -1
  117. package/amplitude/bundles/angulartics2-amplitude.umd.min.js +0 -16
  118. package/amplitude/bundles/angulartics2-amplitude.umd.min.js.map +0 -1
  119. package/amplitude/esm2015/amplitude.js +0 -75
  120. package/amplitude/esm2015/angulartics2-amplitude.js +0 -5
  121. package/amplitude/esm5/amplitude.js +0 -78
  122. package/amplitude/esm5/angulartics2-amplitude.js +0 -5
  123. package/amplitude/fesm2015/angulartics2-amplitude.js +0 -79
  124. package/amplitude/fesm2015/angulartics2-amplitude.js.map +0 -1
  125. package/amplitude/fesm5/angulartics2-amplitude.js +0 -82
  126. package/amplitude/fesm5/angulartics2-amplitude.js.map +0 -1
  127. package/amplitude/package.json +0 -22
  128. package/angulartics2.metadata.json +0 -1
  129. package/appinsights/angulartics2-appinsights.d.ts +0 -4
  130. package/appinsights/angulartics2-appinsights.metadata.json +0 -1
  131. package/appinsights/bundles/angulartics2-appinsights.umd.js +0 -344
  132. package/appinsights/bundles/angulartics2-appinsights.umd.js.map +0 -1
  133. package/appinsights/bundles/angulartics2-appinsights.umd.min.js +0 -16
  134. package/appinsights/bundles/angulartics2-appinsights.umd.min.js.map +0 -1
  135. package/appinsights/esm2015/angulartics2-appinsights.js +0 -5
  136. package/appinsights/esm2015/appinsights.js +0 -124
  137. package/appinsights/esm5/angulartics2-appinsights.js +0 -5
  138. package/appinsights/esm5/appinsights.js +0 -129
  139. package/appinsights/fesm2015/angulartics2-appinsights.js +0 -126
  140. package/appinsights/fesm2015/angulartics2-appinsights.js.map +0 -1
  141. package/appinsights/fesm5/angulartics2-appinsights.js +0 -130
  142. package/appinsights/fesm5/angulartics2-appinsights.js.map +0 -1
  143. package/appinsights/package.json +0 -22
  144. package/baidu/angulartics2-baidu.d.ts +0 -4
  145. package/baidu/angulartics2-baidu.metadata.json +0 -1
  146. package/baidu/bundles/angulartics2-baidu.umd.js +0 -308
  147. package/baidu/bundles/angulartics2-baidu.umd.js.map +0 -1
  148. package/baidu/bundles/angulartics2-baidu.umd.min.js +0 -16
  149. package/baidu/bundles/angulartics2-baidu.umd.min.js.map +0 -1
  150. package/baidu/esm2015/angulartics2-baidu.js +0 -5
  151. package/baidu/esm2015/baidu.js +0 -85
  152. package/baidu/esm5/angulartics2-baidu.js +0 -5
  153. package/baidu/esm5/baidu.js +0 -88
  154. package/baidu/fesm2015/angulartics2-baidu.js +0 -89
  155. package/baidu/fesm2015/angulartics2-baidu.js.map +0 -1
  156. package/baidu/fesm5/angulartics2-baidu.js +0 -92
  157. package/baidu/fesm5/angulartics2-baidu.js.map +0 -1
  158. package/baidu/package.json +0 -22
  159. package/bundles/angulartics2.umd.js +0 -489
  160. package/bundles/angulartics2.umd.js.map +0 -1
  161. package/bundles/angulartics2.umd.min.js +0 -16
  162. package/bundles/angulartics2.umd.min.js.map +0 -1
  163. package/clicky/angulartics2-clicky.d.ts +0 -4
  164. package/clicky/angulartics2-clicky.metadata.json +0 -1
  165. package/clicky/bundles/angulartics2-clicky.umd.js +0 -290
  166. package/clicky/bundles/angulartics2-clicky.umd.js.map +0 -1
  167. package/clicky/bundles/angulartics2-clicky.umd.min.js +0 -16
  168. package/clicky/bundles/angulartics2-clicky.umd.min.js.map +0 -1
  169. package/clicky/esm2015/angulartics2-clicky.js +0 -5
  170. package/clicky/esm2015/clicky.interfaces.js +0 -1
  171. package/clicky/esm2015/clicky.js +0 -70
  172. package/clicky/esm5/angulartics2-clicky.js +0 -5
  173. package/clicky/esm5/clicky.interfaces.js +0 -1
  174. package/clicky/esm5/clicky.js +0 -72
  175. package/clicky/fesm2015/angulartics2-clicky.js +0 -73
  176. package/clicky/fesm2015/angulartics2-clicky.js.map +0 -1
  177. package/clicky/fesm5/angulartics2-clicky.js +0 -75
  178. package/clicky/fesm5/angulartics2-clicky.js.map +0 -1
  179. package/clicky/package.json +0 -22
  180. package/esm2015/angular-router.js +0 -38
  181. package/esm2015/angulartics2-config.js +0 -19
  182. package/esm2015/angulartics2-core.js +0 -93
  183. package/esm2015/angulartics2-interfaces.js +0 -1
  184. package/esm2015/angulartics2-token.js +0 -3
  185. package/esm2015/angulartics2.js +0 -5
  186. package/esm2015/angulartics2.module.js +0 -28
  187. package/esm2015/angulartics2On.js +0 -68
  188. package/esm2015/public_api.js +0 -8
  189. package/esm2015/routerless.js +0 -10
  190. package/esm5/angular-router.js +0 -39
  191. package/esm5/angulartics2-config.js +0 -21
  192. package/esm5/angulartics2-core.js +0 -110
  193. package/esm5/angulartics2-interfaces.js +0 -1
  194. package/esm5/angulartics2-token.js +0 -3
  195. package/esm5/angulartics2.js +0 -5
  196. package/esm5/angulartics2.module.js +0 -33
  197. package/esm5/angulartics2On.js +0 -73
  198. package/esm5/public_api.js +0 -8
  199. package/esm5/routerless.js +0 -14
  200. package/facebook/angulartics2-facebook.d.ts +0 -4
  201. package/facebook/angulartics2-facebook.metadata.json +0 -1
  202. package/facebook/bundles/angulartics2-facebook.umd.js +0 -272
  203. package/facebook/bundles/angulartics2-facebook.umd.js.map +0 -1
  204. package/facebook/bundles/angulartics2-facebook.umd.min.js +0 -16
  205. package/facebook/bundles/angulartics2-facebook.umd.min.js.map +0 -1
  206. package/facebook/esm2015/angulartics2-facebook.js +0 -5
  207. package/facebook/esm2015/facebook.js +0 -49
  208. package/facebook/esm5/angulartics2-facebook.js +0 -5
  209. package/facebook/esm5/facebook.js +0 -52
  210. package/facebook/fesm2015/angulartics2-facebook.js +0 -53
  211. package/facebook/fesm2015/angulartics2-facebook.js.map +0 -1
  212. package/facebook/fesm5/angulartics2-facebook.js +0 -56
  213. package/facebook/fesm5/angulartics2-facebook.js.map +0 -1
  214. package/facebook/package.json +0 -22
  215. package/fesm2015/angulartics2.js +0 -237
  216. package/fesm2015/angulartics2.js.map +0 -1
  217. package/fesm5/angulartics2.js +0 -269
  218. package/fesm5/angulartics2.js.map +0 -1
  219. package/ga/angulartics2-ga.d.ts +0 -4
  220. package/ga/angulartics2-ga.metadata.json +0 -1
  221. package/ga/bundles/angulartics2-ga.umd.js +0 -509
  222. package/ga/bundles/angulartics2-ga.umd.js.map +0 -1
  223. package/ga/bundles/angulartics2-ga.umd.min.js +0 -16
  224. package/ga/bundles/angulartics2-ga.umd.min.js.map +0 -1
  225. package/ga/esm2015/angulartics2-ga.js +0 -5
  226. package/ga/esm2015/ga.js +0 -209
  227. package/ga/esm5/angulartics2-ga.js +0 -5
  228. package/ga/esm5/ga.js +0 -289
  229. package/ga/fesm2015/angulartics2-ga.js +0 -213
  230. package/ga/fesm2015/angulartics2-ga.js.map +0 -1
  231. package/ga/fesm5/angulartics2-ga.js +0 -292
  232. package/ga/fesm5/angulartics2-ga.js.map +0 -1
  233. package/ga/package.json +0 -22
  234. package/ga-enhanced-ecom/angulartics2-ga-enhanced-ecom.d.ts +0 -4
  235. package/ga-enhanced-ecom/angulartics2-ga-enhanced-ecom.metadata.json +0 -1
  236. package/ga-enhanced-ecom/bundles/angulartics2-ga-enhanced-ecom.umd.js +0 -257
  237. package/ga-enhanced-ecom/bundles/angulartics2-ga-enhanced-ecom.umd.js.map +0 -1
  238. package/ga-enhanced-ecom/bundles/angulartics2-ga-enhanced-ecom.umd.min.js +0 -16
  239. package/ga-enhanced-ecom/bundles/angulartics2-ga-enhanced-ecom.umd.min.js.map +0 -1
  240. package/ga-enhanced-ecom/esm2015/angulartics2-ga-enhanced-ecom.js +0 -5
  241. package/ga-enhanced-ecom/esm2015/ga-enhanced-ecom-options.js +0 -6
  242. package/ga-enhanced-ecom/esm2015/ga-enhanced-ecom.js +0 -32
  243. package/ga-enhanced-ecom/esm5/angulartics2-ga-enhanced-ecom.js +0 -5
  244. package/ga-enhanced-ecom/esm5/ga-enhanced-ecom-options.js +0 -6
  245. package/ga-enhanced-ecom/esm5/ga-enhanced-ecom.js +0 -35
  246. package/ga-enhanced-ecom/fesm2015/angulartics2-ga-enhanced-ecom.js +0 -37
  247. package/ga-enhanced-ecom/fesm2015/angulartics2-ga-enhanced-ecom.js.map +0 -1
  248. package/ga-enhanced-ecom/fesm5/angulartics2-ga-enhanced-ecom.js +0 -40
  249. package/ga-enhanced-ecom/fesm5/angulartics2-ga-enhanced-ecom.js.map +0 -1
  250. package/ga-enhanced-ecom/package.json +0 -22
  251. package/gosquared/angulartics2-gosquared.d.ts +0 -4
  252. package/gosquared/angulartics2-gosquared.metadata.json +0 -1
  253. package/gosquared/bundles/angulartics2-gosquared.umd.js +0 -286
  254. package/gosquared/bundles/angulartics2-gosquared.umd.js.map +0 -1
  255. package/gosquared/bundles/angulartics2-gosquared.umd.min.js +0 -16
  256. package/gosquared/bundles/angulartics2-gosquared.umd.min.js.map +0 -1
  257. package/gosquared/esm2015/angulartics2-gosquared.js +0 -5
  258. package/gosquared/esm2015/gosquared.js +0 -59
  259. package/gosquared/esm5/angulartics2-gosquared.js +0 -5
  260. package/gosquared/esm5/gosquared.js +0 -66
  261. package/gosquared/fesm2015/angulartics2-gosquared.js +0 -63
  262. package/gosquared/fesm2015/angulartics2-gosquared.js.map +0 -1
  263. package/gosquared/fesm5/angulartics2-gosquared.js +0 -70
  264. package/gosquared/fesm5/angulartics2-gosquared.js.map +0 -1
  265. package/gosquared/package.json +0 -22
  266. package/gst/angulartics2-gst.d.ts +0 -4
  267. package/gst/angulartics2-gst.metadata.json +0 -1
  268. package/gst/bundles/angulartics2-gst.umd.js +0 -423
  269. package/gst/bundles/angulartics2-gst.umd.js.map +0 -1
  270. package/gst/bundles/angulartics2-gst.umd.min.js +0 -16
  271. package/gst/bundles/angulartics2-gst.umd.min.js.map +0 -1
  272. package/gst/esm2015/angulartics2-gst.js +0 -5
  273. package/gst/esm2015/gst-interfaces.js +0 -1
  274. package/gst/esm2015/gst.js +0 -184
  275. package/gst/esm5/angulartics2-gst.js +0 -5
  276. package/gst/esm5/gst-interfaces.js +0 -1
  277. package/gst/esm5/gst.js +0 -203
  278. package/gst/fesm2015/angulartics2-gst.js +0 -188
  279. package/gst/fesm2015/angulartics2-gst.js.map +0 -1
  280. package/gst/fesm5/angulartics2-gst.js +0 -206
  281. package/gst/fesm5/angulartics2-gst.js.map +0 -1
  282. package/gst/package.json +0 -22
  283. package/gtm/angulartics2-gtm.d.ts +0 -4
  284. package/gtm/angulartics2-gtm.metadata.json +0 -1
  285. package/gtm/bundles/angulartics2-gtm.umd.js +0 -335
  286. package/gtm/bundles/angulartics2-gtm.umd.js.map +0 -1
  287. package/gtm/bundles/angulartics2-gtm.umd.min.js +0 -16
  288. package/gtm/bundles/angulartics2-gtm.umd.min.js.map +0 -1
  289. package/gtm/esm2015/angulartics2-gtm.js +0 -5
  290. package/gtm/esm2015/gtm.js +0 -110
  291. package/gtm/esm5/angulartics2-gtm.js +0 -5
  292. package/gtm/esm5/gtm.js +0 -115
  293. package/gtm/fesm2015/angulartics2-gtm.js +0 -114
  294. package/gtm/fesm2015/angulartics2-gtm.js.map +0 -1
  295. package/gtm/fesm5/angulartics2-gtm.js +0 -118
  296. package/gtm/fesm5/angulartics2-gtm.js.map +0 -1
  297. package/gtm/package.json +0 -22
  298. package/hubspot/angulartics2-hubspot.d.ts +0 -4
  299. package/hubspot/angulartics2-hubspot.metadata.json +0 -1
  300. package/hubspot/bundles/angulartics2-hubspot.umd.js +0 -268
  301. package/hubspot/bundles/angulartics2-hubspot.umd.js.map +0 -1
  302. package/hubspot/bundles/angulartics2-hubspot.umd.min.js +0 -16
  303. package/hubspot/bundles/angulartics2-hubspot.umd.min.js.map +0 -1
  304. package/hubspot/esm2015/angulartics2-hubspot.js +0 -5
  305. package/hubspot/esm2015/hubspot.js +0 -45
  306. package/hubspot/esm5/angulartics2-hubspot.js +0 -5
  307. package/hubspot/esm5/hubspot.js +0 -48
  308. package/hubspot/fesm2015/angulartics2-hubspot.js +0 -49
  309. package/hubspot/fesm2015/angulartics2-hubspot.js.map +0 -1
  310. package/hubspot/fesm5/angulartics2-hubspot.js +0 -52
  311. package/hubspot/fesm5/angulartics2-hubspot.js.map +0 -1
  312. package/hubspot/package.json +0 -22
  313. package/ibm-digital-analytics/angulartics2-ibm-digital-analytics.d.ts +0 -4
  314. package/ibm-digital-analytics/angulartics2-ibm-digital-analytics.metadata.json +0 -1
  315. package/ibm-digital-analytics/bundles/angulartics2-ibm-digital-analytics.umd.js +0 -352
  316. package/ibm-digital-analytics/bundles/angulartics2-ibm-digital-analytics.umd.js.map +0 -1
  317. package/ibm-digital-analytics/bundles/angulartics2-ibm-digital-analytics.umd.min.js +0 -16
  318. package/ibm-digital-analytics/bundles/angulartics2-ibm-digital-analytics.umd.min.js.map +0 -1
  319. package/ibm-digital-analytics/esm2015/angulartics2-ibm-digital-analytics.js +0 -5
  320. package/ibm-digital-analytics/esm2015/ibm-digital-analytics.js +0 -129
  321. package/ibm-digital-analytics/esm5/angulartics2-ibm-digital-analytics.js +0 -5
  322. package/ibm-digital-analytics/esm5/ibm-digital-analytics.js +0 -132
  323. package/ibm-digital-analytics/fesm2015/angulartics2-ibm-digital-analytics.js +0 -133
  324. package/ibm-digital-analytics/fesm2015/angulartics2-ibm-digital-analytics.js.map +0 -1
  325. package/ibm-digital-analytics/fesm5/angulartics2-ibm-digital-analytics.js +0 -136
  326. package/ibm-digital-analytics/fesm5/angulartics2-ibm-digital-analytics.js.map +0 -1
  327. package/ibm-digital-analytics/package.json +0 -22
  328. package/intercom/angulartics2-intercom.d.ts +0 -4
  329. package/intercom/angulartics2-intercom.metadata.json +0 -1
  330. package/intercom/bundles/angulartics2-intercom.umd.js +0 -289
  331. package/intercom/bundles/angulartics2-intercom.umd.js.map +0 -1
  332. package/intercom/bundles/angulartics2-intercom.umd.min.js +0 -16
  333. package/intercom/bundles/angulartics2-intercom.umd.min.js.map +0 -1
  334. package/intercom/esm2015/angulartics2-intercom.js +0 -5
  335. package/intercom/esm2015/intercom.js +0 -66
  336. package/intercom/esm5/angulartics2-intercom.js +0 -5
  337. package/intercom/esm5/intercom.js +0 -69
  338. package/intercom/fesm2015/angulartics2-intercom.js +0 -70
  339. package/intercom/fesm2015/angulartics2-intercom.js.map +0 -1
  340. package/intercom/fesm5/angulartics2-intercom.js +0 -73
  341. package/intercom/fesm5/angulartics2-intercom.js.map +0 -1
  342. package/intercom/package.json +0 -22
  343. package/kissmetrics/angulartics2-kissmetrics.d.ts +0 -4
  344. package/kissmetrics/angulartics2-kissmetrics.metadata.json +0 -1
  345. package/kissmetrics/bundles/angulartics2-kissmetrics.umd.js +0 -269
  346. package/kissmetrics/bundles/angulartics2-kissmetrics.umd.js.map +0 -1
  347. package/kissmetrics/bundles/angulartics2-kissmetrics.umd.min.js +0 -16
  348. package/kissmetrics/bundles/angulartics2-kissmetrics.umd.min.js.map +0 -1
  349. package/kissmetrics/esm2015/angulartics2-kissmetrics.js +0 -5
  350. package/kissmetrics/esm2015/kissmetrics.js +0 -46
  351. package/kissmetrics/esm5/angulartics2-kissmetrics.js +0 -5
  352. package/kissmetrics/esm5/kissmetrics.js +0 -49
  353. package/kissmetrics/fesm2015/angulartics2-kissmetrics.js +0 -50
  354. package/kissmetrics/fesm2015/angulartics2-kissmetrics.js.map +0 -1
  355. package/kissmetrics/fesm5/angulartics2-kissmetrics.js +0 -53
  356. package/kissmetrics/fesm5/angulartics2-kissmetrics.js.map +0 -1
  357. package/kissmetrics/package.json +0 -25
  358. package/launch/angulartics2-launch.d.ts +0 -4
  359. package/launch/angulartics2-launch.metadata.json +0 -1
  360. package/launch/bundles/angulartics2-launch.umd.js +0 -288
  361. package/launch/bundles/angulartics2-launch.umd.js.map +0 -1
  362. package/launch/bundles/angulartics2-launch.umd.min.js +0 -16
  363. package/launch/bundles/angulartics2-launch.umd.min.js.map +0 -1
  364. package/launch/esm2015/angulartics2-launch.js +0 -5
  365. package/launch/esm2015/launch.js +0 -65
  366. package/launch/esm5/angulartics2-launch.js +0 -5
  367. package/launch/esm5/launch.js +0 -68
  368. package/launch/fesm2015/angulartics2-launch.js +0 -69
  369. package/launch/fesm2015/angulartics2-launch.js.map +0 -1
  370. package/launch/fesm5/angulartics2-launch.js +0 -72
  371. package/launch/fesm5/angulartics2-launch.js.map +0 -1
  372. package/launch/package.json +0 -22
  373. package/mixpanel/angulartics2-mixpanel.d.ts +0 -4
  374. package/mixpanel/angulartics2-mixpanel.metadata.json +0 -1
  375. package/mixpanel/bundles/angulartics2-mixpanel.umd.js +0 -342
  376. package/mixpanel/bundles/angulartics2-mixpanel.umd.js.map +0 -1
  377. package/mixpanel/bundles/angulartics2-mixpanel.umd.min.js +0 -16
  378. package/mixpanel/bundles/angulartics2-mixpanel.umd.min.js.map +0 -1
  379. package/mixpanel/esm2015/angulartics2-mixpanel.js +0 -5
  380. package/mixpanel/esm2015/mixpanel.js +0 -119
  381. package/mixpanel/esm5/angulartics2-mixpanel.js +0 -5
  382. package/mixpanel/esm5/mixpanel.js +0 -122
  383. package/mixpanel/fesm2015/angulartics2-mixpanel.js +0 -123
  384. package/mixpanel/fesm2015/angulartics2-mixpanel.js.map +0 -1
  385. package/mixpanel/fesm5/angulartics2-mixpanel.js +0 -126
  386. package/mixpanel/fesm5/angulartics2-mixpanel.js.map +0 -1
  387. package/mixpanel/package.json +0 -22
  388. package/piwik/angulartics2-piwik.d.ts +0 -4
  389. package/piwik/angulartics2-piwik.metadata.json +0 -1
  390. package/piwik/bundles/angulartics2-piwik.umd.js +0 -478
  391. package/piwik/bundles/angulartics2-piwik.umd.js.map +0 -1
  392. package/piwik/bundles/angulartics2-piwik.umd.min.js +0 -16
  393. package/piwik/bundles/angulartics2-piwik.umd.min.js.map +0 -1
  394. package/piwik/esm2015/angulartics2-piwik.js +0 -5
  395. package/piwik/esm2015/piwik.js +0 -254
  396. package/piwik/esm5/angulartics2-piwik.js +0 -5
  397. package/piwik/esm5/piwik.js +0 -258
  398. package/piwik/fesm2015/angulartics2-piwik.js +0 -258
  399. package/piwik/fesm2015/angulartics2-piwik.js.map +0 -1
  400. package/piwik/fesm5/angulartics2-piwik.js +0 -262
  401. package/piwik/fesm5/angulartics2-piwik.js.map +0 -1
  402. package/piwik/package.json +0 -22
  403. package/piwik/piwik.d.ts +0 -27
  404. package/pyze/angulartics2-pyze.d.ts +0 -4
  405. package/pyze/angulartics2-pyze.metadata.json +0 -1
  406. package/pyze/bundles/angulartics2-pyze.umd.js +0 -292
  407. package/pyze/bundles/angulartics2-pyze.umd.js.map +0 -1
  408. package/pyze/bundles/angulartics2-pyze.umd.min.js +0 -16
  409. package/pyze/bundles/angulartics2-pyze.umd.min.js.map +0 -1
  410. package/pyze/esm2015/angulartics2-pyze.js +0 -5
  411. package/pyze/esm2015/pyze.js +0 -69
  412. package/pyze/esm5/angulartics2-pyze.js +0 -5
  413. package/pyze/esm5/pyze.js +0 -72
  414. package/pyze/fesm2015/angulartics2-pyze.js +0 -73
  415. package/pyze/fesm2015/angulartics2-pyze.js.map +0 -1
  416. package/pyze/fesm5/angulartics2-pyze.js +0 -76
  417. package/pyze/fesm5/angulartics2-pyze.js.map +0 -1
  418. package/pyze/package.json +0 -22
  419. package/routerlessmodule/angulartics2-routerlessmodule.d.ts +0 -4
  420. package/routerlessmodule/angulartics2-routerlessmodule.metadata.json +0 -1
  421. package/routerlessmodule/bundles/angulartics2-routerlessmodule.umd.js +0 -250
  422. package/routerlessmodule/bundles/angulartics2-routerlessmodule.umd.js.map +0 -1
  423. package/routerlessmodule/bundles/angulartics2-routerlessmodule.umd.min.js +0 -16
  424. package/routerlessmodule/bundles/angulartics2-routerlessmodule.umd.min.js.map +0 -1
  425. package/routerlessmodule/esm2015/angulartics2-routerlessmodule.js +0 -5
  426. package/routerlessmodule/esm2015/routerless.module.js +0 -23
  427. package/routerlessmodule/esm5/angulartics2-routerlessmodule.js +0 -5
  428. package/routerlessmodule/esm5/routerless.module.js +0 -28
  429. package/routerlessmodule/fesm2015/angulartics2-routerlessmodule.js +0 -29
  430. package/routerlessmodule/fesm2015/angulartics2-routerlessmodule.js.map +0 -1
  431. package/routerlessmodule/fesm5/angulartics2-routerlessmodule.js +0 -34
  432. package/routerlessmodule/fesm5/angulartics2-routerlessmodule.js.map +0 -1
  433. package/routerlessmodule/package.json +0 -22
  434. package/routerlessmodule/routerless.module.d.ts +0 -5
  435. package/segment/angulartics2-segment.d.ts +0 -4
  436. package/segment/angulartics2-segment.metadata.json +0 -1
  437. package/segment/bundles/angulartics2-segment.umd.js +0 -330
  438. package/segment/bundles/angulartics2-segment.umd.js.map +0 -1
  439. package/segment/bundles/angulartics2-segment.umd.min.js +0 -16
  440. package/segment/bundles/angulartics2-segment.umd.min.js.map +0 -1
  441. package/segment/esm2015/angulartics2-segment.js +0 -5
  442. package/segment/esm2015/segment.js +0 -107
  443. package/segment/esm5/angulartics2-segment.js +0 -5
  444. package/segment/esm5/segment.js +0 -110
  445. package/segment/fesm2015/angulartics2-segment.js +0 -111
  446. package/segment/fesm2015/angulartics2-segment.js.map +0 -1
  447. package/segment/fesm5/angulartics2-segment.js +0 -114
  448. package/segment/fesm5/angulartics2-segment.js.map +0 -1
  449. package/segment/package.json +0 -22
  450. package/splunk/angulartics2-splunk.d.ts +0 -4
  451. package/splunk/angulartics2-splunk.metadata.json +0 -1
  452. package/splunk/bundles/angulartics2-splunk.umd.js +0 -272
  453. package/splunk/bundles/angulartics2-splunk.umd.js.map +0 -1
  454. package/splunk/bundles/angulartics2-splunk.umd.min.js +0 -16
  455. package/splunk/bundles/angulartics2-splunk.umd.min.js.map +0 -1
  456. package/splunk/esm2015/angulartics2-splunk.js +0 -5
  457. package/splunk/esm2015/splunk.js +0 -50
  458. package/splunk/esm5/angulartics2-splunk.js +0 -5
  459. package/splunk/esm5/splunk.js +0 -52
  460. package/splunk/fesm2015/angulartics2-splunk.js +0 -54
  461. package/splunk/fesm2015/angulartics2-splunk.js.map +0 -1
  462. package/splunk/fesm5/angulartics2-splunk.js +0 -56
  463. package/splunk/fesm5/angulartics2-splunk.js.map +0 -1
  464. package/splunk/package.json +0 -22
  465. package/splunk/splunk.d.ts +0 -8
  466. package/uiroutermodule/angulartics2-uiroutermodule.d.ts +0 -4
  467. package/uiroutermodule/angulartics2-uiroutermodule.metadata.json +0 -1
  468. package/uiroutermodule/bundles/angulartics2-uiroutermodule.umd.js +0 -288
  469. package/uiroutermodule/bundles/angulartics2-uiroutermodule.umd.js.map +0 -1
  470. package/uiroutermodule/bundles/angulartics2-uiroutermodule.umd.min.js +0 -16
  471. package/uiroutermodule/bundles/angulartics2-uiroutermodule.umd.min.js.map +0 -1
  472. package/uiroutermodule/esm2015/angulartics2-uiroutermodule.js +0 -5
  473. package/uiroutermodule/esm2015/public_api.js +0 -3
  474. package/uiroutermodule/esm2015/uirouter.js +0 -42
  475. package/uiroutermodule/esm2015/uirouter.module.js +0 -24
  476. package/uiroutermodule/esm5/angulartics2-uiroutermodule.js +0 -5
  477. package/uiroutermodule/esm5/public_api.js +0 -3
  478. package/uiroutermodule/esm5/uirouter.js +0 -44
  479. package/uiroutermodule/esm5/uirouter.module.js +0 -29
  480. package/uiroutermodule/fesm2015/angulartics2-uiroutermodule.js +0 -66
  481. package/uiroutermodule/fesm2015/angulartics2-uiroutermodule.js.map +0 -1
  482. package/uiroutermodule/fesm5/angulartics2-uiroutermodule.js +0 -73
  483. package/uiroutermodule/fesm5/angulartics2-uiroutermodule.js.map +0 -1
  484. package/uiroutermodule/package.json +0 -22
  485. package/uiroutermodule/public_api.d.ts +0 -2
  486. package/uiroutermodule/uirouter.d.ts +0 -17
  487. package/uiroutermodule/uirouter.module.d.ts +0 -5
  488. package/woopra/angulartics2-woopra.d.ts +0 -4
  489. package/woopra/angulartics2-woopra.metadata.json +0 -1
  490. package/woopra/bundles/angulartics2-woopra.umd.js +0 -289
  491. package/woopra/bundles/angulartics2-woopra.umd.js.map +0 -1
  492. package/woopra/bundles/angulartics2-woopra.umd.min.js +0 -16
  493. package/woopra/bundles/angulartics2-woopra.umd.min.js.map +0 -1
  494. package/woopra/esm2015/angulartics2-woopra.js +0 -5
  495. package/woopra/esm2015/woopra.js +0 -66
  496. package/woopra/esm5/angulartics2-woopra.js +0 -5
  497. package/woopra/esm5/woopra.js +0 -69
  498. package/woopra/fesm2015/angulartics2-woopra.js +0 -70
  499. package/woopra/fesm2015/angulartics2-woopra.js.map +0 -1
  500. package/woopra/fesm5/angulartics2-woopra.js +0 -73
  501. package/woopra/fesm5/angulartics2-woopra.js.map +0 -1
  502. 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/gosquared';`
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/gst';`
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/gst';
41
+ import { Angulartics2GoogleGlobalSiteTag } from 'angulartics2';
42
42
 
43
43
  @Component({ ... })
44
44
  export class AppComponent {
File without changes
@@ -1,5 +1,7 @@
1
- import { Angulartics2, GoogleGlobalSiteTagSettings } from 'angulartics2';
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/gtm';`
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/gtm';
24
+ import { Angulartics2GoogleTagManager } from 'angulartics2';
25
25
 
26
26
  @Component({ ... })
27
27
  export class AppComponent {
@@ -1,4 +1,6 @@
1
- import { Angulartics2, GoogleTagManagerSettings } from '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/hubspot';`
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/ibm-digital-analytics';`
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/ibm-digital-analytics';
65
+ import { Angulartics2IBMDigitalAnalytics } from 'angulartics2';
66
66
 
67
67
  @Component({
68
68
  selector: 'app-root',
@@ -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/intercom';`
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/kissmetrics';`
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/launch';`
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/launch';
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/launch';
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/piwik.svg"
3
- alt="Piwik logo"
2
+ src="../../../assets/svg/matomo.svg"
3
+ alt="Matomo logo"
4
4
  height="100px"
5
5
  width="200px" />
6
6
 
7
- # Piwik
8
- __homepage__: [piwik.org](https://piwik.org)
9
- __docs__: [developer.piwik.org](https://developer.piwik.org)
10
- __import__: `import { Angulartics2Piwik } from 'angulartics2/piwik';`
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 piwik track code inside your index.html head tag:
13
+ Add the standard matomo track code inside your index.html head tag:
14
14
  ```html
15
- <!-- Piwik -->
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="//piwik.YOUR-DOMAIN.com/";
23
- _paq.push(['setTrackerUrl', u+'piwik.php']);
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+'piwik.js'; s.parentNode.insertBefore(g,s);
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 Piwik Code -->
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 piwik domain (`//DOMAIN.innocraft.cloud` if you are using the innocraft cloud service).
33
+ Replace YOUR-DOMAIN with your matomo domain (`//DOMAIN.innocraft.cloud` if you are using the innocraft cloud service).
34
34
 
35
- Pass the Piwik provider to angulartics in app.module:
35
+ Pass the Matomo provider to angulartics in app.module:
36
36
  ```ts
37
37
  import { Angulartics2Module } from 'angulartics2';
38
- import { Angulartics2Piwik } from 'angulartics2/piwik';
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 { Angulartics2Piwik } from 'angulartics2/piwik';
47
+ import { Angulartics2Matomo } from 'angulartics2';
48
48
  export class AppComponent {
49
- // inject Angulartics2Piwik in root component and initialize it
50
- constructor(private angulartics2Piwik: Angulartics2Piwik) {
51
- angulartics2Piwik.startTracking();
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 Piwik dashboard.
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/mixpanel';`
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/mixpanel';
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/pyze';`
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/segment';`
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/segment';
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/segment';
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/splunk';`
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/splunk';
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/woopra';`
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
  }