angulartics2 11.0.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 (122) hide show
  1. package/angular-router.d.ts +3 -0
  2. package/angulartics2-core.d.ts +3 -0
  3. package/angulartics2.d.ts +1 -0
  4. package/angulartics2.module.d.ts +5 -0
  5. package/angulartics2On.d.ts +6 -0
  6. package/esm2020/angular-router.mjs +33 -0
  7. package/{esm2015/angulartics2-config.js → esm2020/angulartics2-config.mjs} +0 -0
  8. package/esm2020/angulartics2-core.mjs +93 -0
  9. package/{esm2015/angulartics2-interfaces.js → esm2020/angulartics2-interfaces.mjs} +0 -0
  10. package/{esm2015/angulartics2-token.js → esm2020/angulartics2-token.mjs} +0 -0
  11. package/{esm2015/angulartics2.js → esm2020/angulartics2.mjs} +0 -0
  12. package/esm2020/angulartics2.module.mjs +30 -0
  13. package/esm2020/angulartics2On.mjs +66 -0
  14. package/esm2020/providers/adobeanalytics/adobeanalytics.mjs +98 -0
  15. package/esm2020/providers/amplitude/amplitude.mjs +68 -0
  16. package/esm2020/providers/appinsights/appinsights.mjs +118 -0
  17. package/esm2020/providers/baidu/baidu.mjs +81 -0
  18. package/{esm2015/providers/clicky/clicky.interfaces.js → esm2020/providers/clicky/clicky.interfaces.mjs} +0 -0
  19. package/esm2020/providers/clicky/clicky.mjs +64 -0
  20. package/esm2020/providers/facebook/facebook.mjs +45 -0
  21. package/esm2020/providers/ga/ga.mjs +219 -0
  22. package/{esm2015/providers/ga-enhanced-ecom/ga-enhanced-ecom-options.js → esm2020/providers/ga-enhanced-ecom/ga-enhanced-ecom-options.mjs} +0 -0
  23. package/esm2020/providers/ga-enhanced-ecom/ga-enhanced-ecom.mjs +32 -0
  24. package/esm2020/providers/gosquared/gosquared.mjs +55 -0
  25. package/{esm2015/providers/gst/gst-interfaces.js → esm2020/providers/gst/gst-interfaces.mjs} +0 -0
  26. package/esm2020/providers/gst/gst.mjs +197 -0
  27. package/esm2020/providers/gtm/gtm.mjs +114 -0
  28. package/esm2020/providers/hubspot/hubspot.mjs +40 -0
  29. package/esm2020/providers/ibm-digital-analytics/ibm-digital-analytics.mjs +125 -0
  30. package/esm2020/providers/intercom/intercom.mjs +60 -0
  31. package/esm2020/providers/kissmetrics/kissmetrics.mjs +40 -0
  32. package/esm2020/providers/launch/launch.mjs +59 -0
  33. package/esm2020/providers/matomo/matomo.mjs +303 -0
  34. package/esm2020/providers/mixpanel/mixpanel.mjs +109 -0
  35. package/esm2020/providers/pyze/pyze.mjs +65 -0
  36. package/esm2020/providers/segment/segment.mjs +100 -0
  37. package/esm2020/providers/splunk/splunk.mjs +46 -0
  38. package/esm2020/providers/woopra/woopra.mjs +61 -0
  39. package/{esm2015/public_api.js → esm2020/public_api.mjs} +0 -0
  40. package/{esm2015/routerless.js → esm2020/routerless.mjs} +0 -0
  41. package/esm2020/routerless.module.mjs +28 -0
  42. package/fesm2015/{angulartics2.js → angulartics2.mjs} +201 -210
  43. package/fesm2015/angulartics2.mjs.map +1 -0
  44. package/fesm2020/angulartics2.mjs +2294 -0
  45. package/fesm2020/angulartics2.mjs.map +1 -0
  46. package/package.json +23 -11
  47. package/providers/adobeanalytics/README.md +12 -0
  48. package/providers/adobeanalytics/adobeanalytics.d.ts +3 -0
  49. package/providers/amplitude/README.md +12 -0
  50. package/providers/amplitude/amplitude.d.ts +3 -0
  51. package/providers/appinsights/README.md +12 -0
  52. package/providers/appinsights/appinsights.d.ts +3 -0
  53. package/providers/baidu/README.md +12 -0
  54. package/providers/baidu/baidu.d.ts +3 -0
  55. package/providers/clicky/README.md +93 -0
  56. package/providers/clicky/clicky.d.ts +3 -0
  57. package/providers/facebook/README.md +36 -0
  58. package/providers/facebook/facebook.d.ts +3 -0
  59. package/providers/ga/README.md +25 -0
  60. package/providers/ga/ga.d.ts +3 -0
  61. package/providers/ga-enhanced-ecom/README.md +12 -0
  62. package/providers/ga-enhanced-ecom/ga-enhanced-ecom.d.ts +3 -0
  63. package/providers/gosquared/README.md +12 -0
  64. package/providers/gosquared/gosquared.d.ts +3 -0
  65. package/providers/gst/README.md +110 -0
  66. package/providers/gst/gst.d.ts +3 -0
  67. package/providers/gtm/README.md +58 -0
  68. package/providers/gtm/gtm.d.ts +3 -0
  69. package/providers/hubspot/README.md +12 -0
  70. package/providers/hubspot/hubspot.d.ts +3 -0
  71. package/providers/ibm-digital-analytics/README.md +123 -0
  72. package/providers/ibm-digital-analytics/ibm-digital-analytics.d.ts +3 -0
  73. package/providers/intercom/README.md +12 -0
  74. package/providers/intercom/intercom.d.ts +3 -0
  75. package/providers/kissmetrics/README.md +12 -0
  76. package/providers/kissmetrics/kissmetrics.d.ts +3 -0
  77. package/providers/launch/README.md +59 -0
  78. package/providers/launch/launch.d.ts +3 -0
  79. package/providers/matomo/README.md +74 -0
  80. package/providers/matomo/matomo.d.ts +3 -0
  81. package/providers/mixpanel/README.md +105 -0
  82. package/providers/mixpanel/mixpanel.d.ts +3 -0
  83. package/providers/pyze/README.md +21 -0
  84. package/providers/pyze/pyze.d.ts +3 -0
  85. package/providers/segment/README.md +50 -0
  86. package/providers/segment/segment.d.ts +3 -0
  87. package/providers/splunk/README.md +57 -0
  88. package/providers/splunk/splunk.d.ts +3 -0
  89. package/providers/woopra/README.md +12 -0
  90. package/providers/woopra/woopra.d.ts +3 -0
  91. package/routerless.module.d.ts +5 -0
  92. package/angulartics2.metadata.json +0 -1
  93. package/bundles/angulartics2.umd.js +0 -2821
  94. package/bundles/angulartics2.umd.js.map +0 -1
  95. package/esm2015/angular-router.js +0 -36
  96. package/esm2015/angulartics2-core.js +0 -91
  97. package/esm2015/angulartics2.module.js +0 -25
  98. package/esm2015/angulartics2On.js +0 -55
  99. package/esm2015/providers/adobeanalytics/adobeanalytics.js +0 -102
  100. package/esm2015/providers/amplitude/amplitude.js +0 -70
  101. package/esm2015/providers/appinsights/appinsights.js +0 -120
  102. package/esm2015/providers/baidu/baidu.js +0 -83
  103. package/esm2015/providers/clicky/clicky.js +0 -68
  104. package/esm2015/providers/facebook/facebook.js +0 -47
  105. package/esm2015/providers/ga/ga.js +0 -208
  106. package/esm2015/providers/ga-enhanced-ecom/ga-enhanced-ecom.js +0 -30
  107. package/esm2015/providers/gosquared/gosquared.js +0 -57
  108. package/esm2015/providers/gst/gst.js +0 -182
  109. package/esm2015/providers/gtm/gtm.js +0 -107
  110. package/esm2015/providers/hubspot/hubspot.js +0 -42
  111. package/esm2015/providers/ibm-digital-analytics/ibm-digital-analytics.js +0 -127
  112. package/esm2015/providers/intercom/intercom.js +0 -62
  113. package/esm2015/providers/kissmetrics/kissmetrics.js +0 -42
  114. package/esm2015/providers/launch/launch.js +0 -61
  115. package/esm2015/providers/matomo/matomo.js +0 -305
  116. package/esm2015/providers/mixpanel/mixpanel.js +0 -111
  117. package/esm2015/providers/pyze/pyze.js +0 -67
  118. package/esm2015/providers/segment/segment.js +0 -102
  119. package/esm2015/providers/splunk/splunk.js +0 -48
  120. package/esm2015/providers/woopra/woopra.js +0 -63
  121. package/esm2015/routerless.module.js +0 -23
  122. package/fesm2015/angulartics2.js.map +0 -1
@@ -1,13 +1,11 @@
1
1
  import * as i0 from '@angular/core';
2
- import { InjectionToken, Injectable, Inject, Directive, ElementRef, Renderer2, Input, NgModule } from '@angular/core';
2
+ import { InjectionToken, Injectable, Inject, Directive, Input, NgModule } from '@angular/core';
3
3
  import { BehaviorSubject, ReplaySubject } from 'rxjs';
4
4
  import { filter, map, delay } from 'rxjs/operators';
5
- import * as i2 from '@angular/common';
6
- import { Location } from '@angular/common';
7
5
  import * as i1 from '@angular/router';
8
- import { NavigationEnd, Router, NavigationStart, NavigationError } from '@angular/router';
6
+ import { NavigationEnd, NavigationStart, NavigationError } from '@angular/router';
7
+ import * as i2 from '@angular/common';
9
8
  import * as i2$1 from '@angular/platform-browser';
10
- import { Title } from '@angular/platform-browser';
11
9
 
12
10
  class DefaultConfig {
13
11
  constructor() {
@@ -112,14 +110,17 @@ class Angulartics2 {
112
110
  return url;
113
111
  }
114
112
  }
115
- Angulartics2.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2_Factory() { return new Angulartics2(i0.ɵɵinject(RouterlessTracking), i0.ɵɵinject(ANGULARTICS2_TOKEN)); }, token: Angulartics2, providedIn: "root" });
116
- Angulartics2.decorators = [
117
- { type: Injectable, args: [{ providedIn: 'root' },] }
118
- ];
119
- Angulartics2.ctorParameters = () => [
120
- { type: RouterlessTracking },
121
- { type: undefined, decorators: [{ type: Inject, args: [ANGULARTICS2_TOKEN,] }] }
122
- ];
113
+ Angulartics2.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2, deps: [{ token: RouterlessTracking }, { token: ANGULARTICS2_TOKEN }], target: i0.ɵɵFactoryTarget.Injectable });
114
+ Angulartics2.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2, providedIn: 'root' });
115
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2, decorators: [{
116
+ type: Injectable,
117
+ args: [{ providedIn: 'root' }]
118
+ }], ctorParameters: function () {
119
+ return [{ type: RouterlessTracking }, { type: undefined, decorators: [{
120
+ type: Inject,
121
+ args: [ANGULARTICS2_TOKEN]
122
+ }] }];
123
+ } });
123
124
 
124
125
  /**
125
126
  * Track Route changes for applications using Angular's
@@ -141,14 +142,12 @@ class AngularRouterTracking {
141
142
  return this.location.prepareExternalUrl(url);
142
143
  }
143
144
  }
144
- AngularRouterTracking.ɵprov = i0.ɵɵdefineInjectable({ factory: function AngularRouterTracking_Factory() { return new AngularRouterTracking(i0.ɵɵinject(i1.Router), i0.ɵɵinject(i2.Location)); }, token: AngularRouterTracking, providedIn: "root" });
145
- AngularRouterTracking.decorators = [
146
- { type: Injectable, args: [{ providedIn: 'root' },] }
147
- ];
148
- AngularRouterTracking.ctorParameters = () => [
149
- { type: Router },
150
- { type: Location }
151
- ];
145
+ AngularRouterTracking.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AngularRouterTracking, deps: [{ token: i1.Router }, { token: i2.Location }], target: i0.ɵɵFactoryTarget.Injectable });
146
+ AngularRouterTracking.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AngularRouterTracking, providedIn: 'root' });
147
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AngularRouterTracking, decorators: [{
148
+ type: Injectable,
149
+ args: [{ providedIn: 'root' }]
150
+ }], ctorParameters: function () { return [{ type: i1.Router }, { type: i2.Location }]; } });
152
151
 
153
152
  class Angulartics2On {
154
153
  constructor(elRef, angulartics2, renderer) {
@@ -178,30 +177,37 @@ class Angulartics2On {
178
177
  });
179
178
  }
180
179
  }
181
- Angulartics2On.decorators = [
182
- { type: Directive, args: [{ selector: '[angulartics2On]' },] }
183
- ];
184
- Angulartics2On.ctorParameters = () => [
185
- { type: ElementRef },
186
- { type: Angulartics2 },
187
- { type: Renderer2 }
188
- ];
189
- Angulartics2On.propDecorators = {
190
- angulartics2On: [{ type: Input, args: ['angulartics2On',] }],
191
- angularticsAction: [{ type: Input }],
192
- angularticsCategory: [{ type: Input }],
193
- angularticsLabel: [{ type: Input }],
194
- angularticsValue: [{ type: Input }],
195
- angularticsProperties: [{ type: Input }]
196
- };
180
+ Angulartics2On.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2On, deps: [{ token: i0.ElementRef }, { token: Angulartics2 }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
181
+ Angulartics2On.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: Angulartics2On, selector: "[angulartics2On]", inputs: { angulartics2On: "angulartics2On", angularticsAction: "angularticsAction", angularticsCategory: "angularticsCategory", angularticsLabel: "angularticsLabel", angularticsValue: "angularticsValue", angularticsProperties: "angularticsProperties" }, ngImport: i0 });
182
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2On, decorators: [{
183
+ type: Directive,
184
+ args: [{ selector: '[angulartics2On]' }]
185
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: Angulartics2 }, { type: i0.Renderer2 }]; }, propDecorators: { angulartics2On: [{
186
+ type: Input,
187
+ args: ['angulartics2On']
188
+ }], angularticsAction: [{
189
+ type: Input
190
+ }], angularticsCategory: [{
191
+ type: Input
192
+ }], angularticsLabel: [{
193
+ type: Input
194
+ }], angularticsValue: [{
195
+ type: Input
196
+ }], angularticsProperties: [{
197
+ type: Input
198
+ }] } });
197
199
  class Angulartics2OnModule {
198
200
  }
199
- Angulartics2OnModule.decorators = [
200
- { type: NgModule, args: [{
201
- declarations: [Angulartics2On],
202
- exports: [Angulartics2On],
203
- },] }
204
- ];
201
+ Angulartics2OnModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2OnModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
202
+ Angulartics2OnModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2OnModule, declarations: [Angulartics2On], exports: [Angulartics2On] });
203
+ Angulartics2OnModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2OnModule });
204
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2OnModule, decorators: [{
205
+ type: NgModule,
206
+ args: [{
207
+ declarations: [Angulartics2On],
208
+ exports: [Angulartics2On],
209
+ }]
210
+ }] });
205
211
 
206
212
  class Angulartics2Module {
207
213
  static forRoot(settings = {}) {
@@ -215,12 +221,16 @@ class Angulartics2Module {
215
221
  };
216
222
  }
217
223
  }
218
- Angulartics2Module.decorators = [
219
- { type: NgModule, args: [{
220
- imports: [Angulartics2OnModule],
221
- exports: [Angulartics2On],
222
- },] }
223
- ];
224
+ Angulartics2Module.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
225
+ Angulartics2Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Module, imports: [Angulartics2OnModule], exports: [Angulartics2On] });
226
+ Angulartics2Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Module, imports: [[Angulartics2OnModule]] });
227
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Module, decorators: [{
228
+ type: NgModule,
229
+ args: [{
230
+ imports: [Angulartics2OnModule],
231
+ exports: [Angulartics2On],
232
+ }]
233
+ }] });
224
234
 
225
235
  class Angulartics2RouterlessModule {
226
236
  static forRoot(settings = {}) {
@@ -234,11 +244,15 @@ class Angulartics2RouterlessModule {
234
244
  };
235
245
  }
236
246
  }
237
- Angulartics2RouterlessModule.decorators = [
238
- { type: NgModule, args: [{
239
- imports: [Angulartics2OnModule],
240
- },] }
241
- ];
247
+ Angulartics2RouterlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2RouterlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
248
+ Angulartics2RouterlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2RouterlessModule, imports: [Angulartics2OnModule] });
249
+ Angulartics2RouterlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2RouterlessModule, imports: [[Angulartics2OnModule]] });
250
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2RouterlessModule, decorators: [{
251
+ type: NgModule,
252
+ args: [{
253
+ imports: [Angulartics2OnModule],
254
+ }]
255
+ }] });
242
256
 
243
257
  class Angulartics2AdobeAnalytics {
244
258
  constructor(angulartics2, location) {
@@ -327,14 +341,12 @@ class Angulartics2AdobeAnalytics {
327
341
  }
328
342
  }
329
343
  }
330
- Angulartics2AdobeAnalytics.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2AdobeAnalytics_Factory() { return new Angulartics2AdobeAnalytics(i0.ɵɵinject(Angulartics2), i0.ɵɵinject(i2.Location)); }, token: Angulartics2AdobeAnalytics, providedIn: "root" });
331
- Angulartics2AdobeAnalytics.decorators = [
332
- { type: Injectable, args: [{ providedIn: 'root' },] }
333
- ];
334
- Angulartics2AdobeAnalytics.ctorParameters = () => [
335
- { type: Angulartics2 },
336
- { type: Location }
337
- ];
344
+ Angulartics2AdobeAnalytics.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2AdobeAnalytics, deps: [{ token: Angulartics2 }, { token: i2.Location }], target: i0.ɵɵFactoryTarget.Injectable });
345
+ Angulartics2AdobeAnalytics.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2AdobeAnalytics, providedIn: 'root' });
346
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2AdobeAnalytics, decorators: [{
347
+ type: Injectable,
348
+ args: [{ providedIn: 'root' }]
349
+ }], ctorParameters: function () { return [{ type: Angulartics2 }, { type: i2.Location }]; } });
338
350
 
339
351
  class AppInsightsDefaults {
340
352
  constructor() {
@@ -437,15 +449,12 @@ class Angulartics2AppInsights {
437
449
  }
438
450
  }
439
451
  }
440
- Angulartics2AppInsights.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2AppInsights_Factory() { return new Angulartics2AppInsights(i0.ɵɵinject(Angulartics2), i0.ɵɵinject(i2$1.Title), i0.ɵɵinject(i1.Router)); }, token: Angulartics2AppInsights, providedIn: "root" });
441
- Angulartics2AppInsights.decorators = [
442
- { type: Injectable, args: [{ providedIn: 'root' },] }
443
- ];
444
- Angulartics2AppInsights.ctorParameters = () => [
445
- { type: Angulartics2 },
446
- { type: Title },
447
- { type: Router }
448
- ];
452
+ Angulartics2AppInsights.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2AppInsights, deps: [{ token: Angulartics2 }, { token: i2$1.Title }, { token: i1.Router }], target: i0.ɵɵFactoryTarget.Injectable });
453
+ Angulartics2AppInsights.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2AppInsights, providedIn: 'root' });
454
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2AppInsights, decorators: [{
455
+ type: Injectable,
456
+ args: [{ providedIn: 'root' }]
457
+ }], ctorParameters: function () { return [{ type: Angulartics2 }, { type: i2$1.Title }, { type: i1.Router }]; } });
449
458
 
450
459
  class Angulartics2BaiduAnalytics {
451
460
  constructor(angulartics2) {
@@ -518,13 +527,12 @@ class Angulartics2BaiduAnalytics {
518
527
  _hmt.push(['_setCustomVar', 2, 'user', JSON.stringify(properties)]);
519
528
  }
520
529
  }
521
- Angulartics2BaiduAnalytics.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2BaiduAnalytics_Factory() { return new Angulartics2BaiduAnalytics(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2BaiduAnalytics, providedIn: "root" });
522
- Angulartics2BaiduAnalytics.decorators = [
523
- { type: Injectable, args: [{ providedIn: 'root' },] }
524
- ];
525
- Angulartics2BaiduAnalytics.ctorParameters = () => [
526
- { type: Angulartics2 }
527
- ];
530
+ Angulartics2BaiduAnalytics.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2BaiduAnalytics, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
531
+ Angulartics2BaiduAnalytics.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2BaiduAnalytics, providedIn: 'root' });
532
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2BaiduAnalytics, decorators: [{
533
+ type: Injectable,
534
+ args: [{ providedIn: 'root' }]
535
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
528
536
 
529
537
  const facebookEventList = [
530
538
  'ViewContent',
@@ -561,13 +569,12 @@ class Angulartics2Facebook {
561
569
  return fbq('track', action, properties);
562
570
  }
563
571
  }
564
- Angulartics2Facebook.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2Facebook_Factory() { return new Angulartics2Facebook(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2Facebook, providedIn: "root" });
565
- Angulartics2Facebook.decorators = [
566
- { type: Injectable, args: [{ providedIn: 'root' },] }
567
- ];
568
- Angulartics2Facebook.ctorParameters = () => [
569
- { type: Angulartics2 }
570
- ];
572
+ Angulartics2Facebook.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Facebook, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
573
+ Angulartics2Facebook.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Facebook, providedIn: 'root' });
574
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Facebook, decorators: [{
575
+ type: Injectable,
576
+ args: [{ providedIn: 'root' }]
577
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
571
578
 
572
579
  class GoogleAnalyticsDefaults {
573
580
  constructor() {
@@ -765,13 +772,12 @@ class Angulartics2GoogleAnalytics {
765
772
  });
766
773
  }
767
774
  }
768
- Angulartics2GoogleAnalytics.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2GoogleAnalytics_Factory() { return new Angulartics2GoogleAnalytics(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2GoogleAnalytics, providedIn: "root" });
769
- Angulartics2GoogleAnalytics.decorators = [
770
- { type: Injectable, args: [{ providedIn: 'root' },] }
771
- ];
772
- Angulartics2GoogleAnalytics.ctorParameters = () => [
773
- { type: Angulartics2 }
774
- ];
775
+ Angulartics2GoogleAnalytics.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2GoogleAnalytics, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
776
+ Angulartics2GoogleAnalytics.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2GoogleAnalytics, providedIn: 'root' });
777
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2GoogleAnalytics, decorators: [{
778
+ type: Injectable,
779
+ args: [{ providedIn: 'root' }]
780
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
775
781
 
776
782
  class Angulartics2GoogleAnalyticsEnhancedEcommerce {
777
783
  /**
@@ -796,10 +802,12 @@ class Angulartics2GoogleAnalyticsEnhancedEcommerce {
796
802
  ga('ec:setAction', action, properties);
797
803
  }
798
804
  }
799
- Angulartics2GoogleAnalyticsEnhancedEcommerce.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2GoogleAnalyticsEnhancedEcommerce_Factory() { return new Angulartics2GoogleAnalyticsEnhancedEcommerce(); }, token: Angulartics2GoogleAnalyticsEnhancedEcommerce, providedIn: "root" });
800
- Angulartics2GoogleAnalyticsEnhancedEcommerce.decorators = [
801
- { type: Injectable, args: [{ providedIn: 'root' },] }
802
- ];
805
+ Angulartics2GoogleAnalyticsEnhancedEcommerce.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2GoogleAnalyticsEnhancedEcommerce, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
806
+ Angulartics2GoogleAnalyticsEnhancedEcommerce.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2GoogleAnalyticsEnhancedEcommerce, providedIn: 'root' });
807
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2GoogleAnalyticsEnhancedEcommerce, decorators: [{
808
+ type: Injectable,
809
+ args: [{ providedIn: 'root' }]
810
+ }] });
803
811
 
804
812
  class GoogleTagManagerDefaults {
805
813
  constructor() {
@@ -896,13 +904,12 @@ class Angulartics2GoogleTagManager {
896
904
  this.angulartics2.settings.gtm.userId = userId;
897
905
  }
898
906
  }
899
- Angulartics2GoogleTagManager.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2GoogleTagManager_Factory() { return new Angulartics2GoogleTagManager(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2GoogleTagManager, providedIn: "root" });
900
- Angulartics2GoogleTagManager.decorators = [
901
- { type: Injectable, args: [{ providedIn: 'root' },] }
902
- ];
903
- Angulartics2GoogleTagManager.ctorParameters = () => [
904
- { type: Angulartics2 }
905
- ];
907
+ Angulartics2GoogleTagManager.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2GoogleTagManager, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
908
+ Angulartics2GoogleTagManager.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2GoogleTagManager, providedIn: 'root' });
909
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2GoogleTagManager, decorators: [{
910
+ type: Injectable,
911
+ args: [{ providedIn: 'root' }]
912
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
906
913
 
907
914
  class GoogleGlobalSiteTagDefaults {
908
915
  constructor() {
@@ -1074,13 +1081,12 @@ class Angulartics2GoogleGlobalSiteTag {
1074
1081
  }
1075
1082
  }
1076
1083
  }
1077
- Angulartics2GoogleGlobalSiteTag.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2GoogleGlobalSiteTag_Factory() { return new Angulartics2GoogleGlobalSiteTag(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2GoogleGlobalSiteTag, providedIn: "root" });
1078
- Angulartics2GoogleGlobalSiteTag.decorators = [
1079
- { type: Injectable, args: [{ providedIn: 'root' },] }
1080
- ];
1081
- Angulartics2GoogleGlobalSiteTag.ctorParameters = () => [
1082
- { type: Angulartics2 }
1083
- ];
1084
+ Angulartics2GoogleGlobalSiteTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2GoogleGlobalSiteTag, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
1085
+ Angulartics2GoogleGlobalSiteTag.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2GoogleGlobalSiteTag, providedIn: 'root' });
1086
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2GoogleGlobalSiteTag, decorators: [{
1087
+ type: Injectable,
1088
+ args: [{ providedIn: 'root' }]
1089
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
1084
1090
 
1085
1091
  class Angulartics2Hubspot {
1086
1092
  constructor(angulartics2) {
@@ -1112,13 +1118,12 @@ class Angulartics2Hubspot {
1112
1118
  }
1113
1119
  }
1114
1120
  }
1115
- Angulartics2Hubspot.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2Hubspot_Factory() { return new Angulartics2Hubspot(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2Hubspot, providedIn: "root" });
1116
- Angulartics2Hubspot.decorators = [
1117
- { type: Injectable, args: [{ providedIn: 'root' },] }
1118
- ];
1119
- Angulartics2Hubspot.ctorParameters = () => [
1120
- { type: Angulartics2 }
1121
- ];
1121
+ Angulartics2Hubspot.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Hubspot, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
1122
+ Angulartics2Hubspot.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Hubspot, providedIn: 'root' });
1123
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Hubspot, decorators: [{
1124
+ type: Injectable,
1125
+ args: [{ providedIn: 'root' }]
1126
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
1122
1127
 
1123
1128
  class Angulartics2Kissmetrics {
1124
1129
  constructor(angulartics2) {
@@ -1150,13 +1155,12 @@ class Angulartics2Kissmetrics {
1150
1155
  _kmq.push(['set', properties]);
1151
1156
  }
1152
1157
  }
1153
- Angulartics2Kissmetrics.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2Kissmetrics_Factory() { return new Angulartics2Kissmetrics(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2Kissmetrics, providedIn: "root" });
1154
- Angulartics2Kissmetrics.decorators = [
1155
- { type: Injectable, args: [{ providedIn: 'root' },] }
1156
- ];
1157
- Angulartics2Kissmetrics.ctorParameters = () => [
1158
- { type: Angulartics2 }
1159
- ];
1158
+ Angulartics2Kissmetrics.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Kissmetrics, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
1159
+ Angulartics2Kissmetrics.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Kissmetrics, providedIn: 'root' });
1160
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Kissmetrics, decorators: [{
1161
+ type: Injectable,
1162
+ args: [{ providedIn: 'root' }]
1163
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
1160
1164
 
1161
1165
  class Angulartics2LaunchByAdobe {
1162
1166
  constructor(angulartics2) {
@@ -1207,13 +1211,12 @@ class Angulartics2LaunchByAdobe {
1207
1211
  }
1208
1212
  }
1209
1213
  }
1210
- Angulartics2LaunchByAdobe.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2LaunchByAdobe_Factory() { return new Angulartics2LaunchByAdobe(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2LaunchByAdobe, providedIn: "root" });
1211
- Angulartics2LaunchByAdobe.decorators = [
1212
- { type: Injectable, args: [{ providedIn: 'root' },] }
1213
- ];
1214
- Angulartics2LaunchByAdobe.ctorParameters = () => [
1215
- { type: Angulartics2 }
1216
- ];
1214
+ Angulartics2LaunchByAdobe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2LaunchByAdobe, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
1215
+ Angulartics2LaunchByAdobe.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2LaunchByAdobe, providedIn: 'root' });
1216
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2LaunchByAdobe, decorators: [{
1217
+ type: Injectable,
1218
+ args: [{ providedIn: 'root' }]
1219
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
1217
1220
 
1218
1221
  class Angulartics2Mixpanel {
1219
1222
  constructor(angulartics2) {
@@ -1314,13 +1317,12 @@ class Angulartics2Mixpanel {
1314
1317
  }
1315
1318
  }
1316
1319
  }
1317
- Angulartics2Mixpanel.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2Mixpanel_Factory() { return new Angulartics2Mixpanel(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2Mixpanel, providedIn: "root" });
1318
- Angulartics2Mixpanel.decorators = [
1319
- { type: Injectable, args: [{ providedIn: 'root' },] }
1320
- ];
1321
- Angulartics2Mixpanel.ctorParameters = () => [
1322
- { type: Angulartics2 }
1323
- ];
1320
+ Angulartics2Mixpanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Mixpanel, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
1321
+ Angulartics2Mixpanel.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Mixpanel, providedIn: 'root' });
1322
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Mixpanel, decorators: [{
1323
+ type: Injectable,
1324
+ args: [{ providedIn: 'root' }]
1325
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
1324
1326
 
1325
1327
  class Angulartics2Pyze {
1326
1328
  constructor(angulartics2) {
@@ -1377,13 +1379,12 @@ class Angulartics2Pyze {
1377
1379
  }
1378
1380
  }
1379
1381
  }
1380
- Angulartics2Pyze.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2Pyze_Factory() { return new Angulartics2Pyze(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2Pyze, providedIn: "root" });
1381
- Angulartics2Pyze.decorators = [
1382
- { type: Injectable, args: [{ providedIn: 'root' },] }
1383
- ];
1384
- Angulartics2Pyze.ctorParameters = () => [
1385
- { type: Angulartics2 }
1386
- ];
1382
+ Angulartics2Pyze.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Pyze, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
1383
+ Angulartics2Pyze.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Pyze, providedIn: 'root' });
1384
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Pyze, decorators: [{
1385
+ type: Injectable,
1386
+ args: [{ providedIn: 'root' }]
1387
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
1387
1388
 
1388
1389
  class Angulartics2Matomo {
1389
1390
  constructor(angulartics2) {
@@ -1678,13 +1679,12 @@ class Angulartics2Matomo {
1678
1679
  return dimensions;
1679
1680
  }
1680
1681
  }
1681
- Angulartics2Matomo.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2Matomo_Factory() { return new Angulartics2Matomo(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2Matomo, providedIn: "root" });
1682
- Angulartics2Matomo.decorators = [
1683
- { type: Injectable, args: [{ providedIn: 'root' },] }
1684
- ];
1685
- Angulartics2Matomo.ctorParameters = () => [
1686
- { type: Angulartics2 }
1687
- ];
1682
+ Angulartics2Matomo.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Matomo, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
1683
+ Angulartics2Matomo.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Matomo, providedIn: 'root' });
1684
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Matomo, decorators: [{
1685
+ type: Injectable,
1686
+ args: [{ providedIn: 'root' }]
1687
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
1688
1688
 
1689
1689
  class Angulartics2Segment {
1690
1690
  constructor(angulartics2) {
@@ -1776,13 +1776,12 @@ class Angulartics2Segment {
1776
1776
  }
1777
1777
  }
1778
1778
  }
1779
- Angulartics2Segment.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2Segment_Factory() { return new Angulartics2Segment(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2Segment, providedIn: "root" });
1780
- Angulartics2Segment.decorators = [
1781
- { type: Injectable, args: [{ providedIn: 'root' },] }
1782
- ];
1783
- Angulartics2Segment.ctorParameters = () => [
1784
- { type: Angulartics2 }
1785
- ];
1779
+ Angulartics2Segment.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Segment, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
1780
+ Angulartics2Segment.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Segment, providedIn: 'root' });
1781
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Segment, decorators: [{
1782
+ type: Injectable,
1783
+ args: [{ providedIn: 'root' }]
1784
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
1786
1785
 
1787
1786
  class Angulartics2Intercom {
1788
1787
  constructor(angulartics2) {
@@ -1834,13 +1833,12 @@ class Angulartics2Intercom {
1834
1833
  }
1835
1834
  }
1836
1835
  }
1837
- Angulartics2Intercom.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2Intercom_Factory() { return new Angulartics2Intercom(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2Intercom, providedIn: "root" });
1838
- Angulartics2Intercom.decorators = [
1839
- { type: Injectable, args: [{ providedIn: 'root' },] }
1840
- ];
1841
- Angulartics2Intercom.ctorParameters = () => [
1842
- { type: Angulartics2 }
1843
- ];
1836
+ Angulartics2Intercom.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Intercom, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
1837
+ Angulartics2Intercom.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Intercom, providedIn: 'root' });
1838
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Intercom, decorators: [{
1839
+ type: Injectable,
1840
+ args: [{ providedIn: 'root' }]
1841
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
1844
1842
 
1845
1843
  class Angulartics2Woopra {
1846
1844
  constructor(angulartics2) {
@@ -1893,13 +1891,12 @@ class Angulartics2Woopra {
1893
1891
  }
1894
1892
  }
1895
1893
  }
1896
- Angulartics2Woopra.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2Woopra_Factory() { return new Angulartics2Woopra(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2Woopra, providedIn: "root" });
1897
- Angulartics2Woopra.decorators = [
1898
- { type: Injectable, args: [{ providedIn: 'root' },] }
1899
- ];
1900
- Angulartics2Woopra.ctorParameters = () => [
1901
- { type: Angulartics2 }
1902
- ];
1894
+ Angulartics2Woopra.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Woopra, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
1895
+ Angulartics2Woopra.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Woopra, providedIn: 'root' });
1896
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Woopra, decorators: [{
1897
+ type: Injectable,
1898
+ args: [{ providedIn: 'root' }]
1899
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
1903
1900
 
1904
1901
  class Angulartics2Clicky {
1905
1902
  constructor(angulartics2, titleService) {
@@ -1954,14 +1951,12 @@ class Angulartics2Clicky {
1954
1951
  return EventType.indexOf(type) > -1 ? type : 'pageview';
1955
1952
  }
1956
1953
  }
1957
- Angulartics2Clicky.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2Clicky_Factory() { return new Angulartics2Clicky(i0.ɵɵinject(Angulartics2), i0.ɵɵinject(i2$1.Title)); }, token: Angulartics2Clicky, providedIn: "root" });
1958
- Angulartics2Clicky.decorators = [
1959
- { type: Injectable, args: [{ providedIn: 'root' },] }
1960
- ];
1961
- Angulartics2Clicky.ctorParameters = () => [
1962
- { type: Angulartics2 },
1963
- { type: Title }
1964
- ];
1954
+ Angulartics2Clicky.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Clicky, deps: [{ token: Angulartics2 }, { token: i2$1.Title }], target: i0.ɵɵFactoryTarget.Injectable });
1955
+ Angulartics2Clicky.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Clicky, providedIn: 'root' });
1956
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Clicky, decorators: [{
1957
+ type: Injectable,
1958
+ args: [{ providedIn: 'root' }]
1959
+ }], ctorParameters: function () { return [{ type: Angulartics2 }, { type: i2$1.Title }]; } });
1965
1960
 
1966
1961
  class Angulartics2Amplitude {
1967
1962
  constructor(angulartics2) {
@@ -2021,13 +2016,12 @@ class Angulartics2Amplitude {
2021
2016
  }
2022
2017
  }
2023
2018
  }
2024
- Angulartics2Amplitude.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2Amplitude_Factory() { return new Angulartics2Amplitude(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2Amplitude, providedIn: "root" });
2025
- Angulartics2Amplitude.decorators = [
2026
- { type: Injectable, args: [{ providedIn: 'root' },] }
2027
- ];
2028
- Angulartics2Amplitude.ctorParameters = () => [
2029
- { type: Angulartics2 }
2030
- ];
2019
+ Angulartics2Amplitude.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Amplitude, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
2020
+ Angulartics2Amplitude.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Amplitude, providedIn: 'root' });
2021
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Amplitude, decorators: [{
2022
+ type: Injectable,
2023
+ args: [{ providedIn: 'root' }]
2024
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
2031
2025
 
2032
2026
  class Angulartics2Splunk {
2033
2027
  constructor(angulartics2) {
@@ -2065,13 +2059,12 @@ class Angulartics2Splunk {
2065
2059
  }
2066
2060
  }
2067
2061
  }
2068
- Angulartics2Splunk.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2Splunk_Factory() { return new Angulartics2Splunk(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2Splunk, providedIn: "root" });
2069
- Angulartics2Splunk.decorators = [
2070
- { type: Injectable, args: [{ providedIn: 'root' },] }
2071
- ];
2072
- Angulartics2Splunk.ctorParameters = () => [
2073
- { type: Angulartics2 }
2074
- ];
2062
+ Angulartics2Splunk.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Splunk, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
2063
+ Angulartics2Splunk.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Splunk, providedIn: 'root' });
2064
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2Splunk, decorators: [{
2065
+ type: Injectable,
2066
+ args: [{ providedIn: 'root' }]
2067
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
2075
2068
 
2076
2069
  class Angulartics2IBMDigitalAnalytics {
2077
2070
  constructor(angulartics2) {
@@ -2188,13 +2181,12 @@ class Angulartics2IBMDigitalAnalytics {
2188
2181
  }
2189
2182
  }
2190
2183
  }
2191
- Angulartics2IBMDigitalAnalytics.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2IBMDigitalAnalytics_Factory() { return new Angulartics2IBMDigitalAnalytics(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2IBMDigitalAnalytics, providedIn: "root" });
2192
- Angulartics2IBMDigitalAnalytics.decorators = [
2193
- { type: Injectable, args: [{ providedIn: 'root' },] }
2194
- ];
2195
- Angulartics2IBMDigitalAnalytics.ctorParameters = () => [
2196
- { type: Angulartics2 }
2197
- ];
2184
+ Angulartics2IBMDigitalAnalytics.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2IBMDigitalAnalytics, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
2185
+ Angulartics2IBMDigitalAnalytics.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2IBMDigitalAnalytics, providedIn: 'root' });
2186
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2IBMDigitalAnalytics, decorators: [{
2187
+ type: Injectable,
2188
+ args: [{ providedIn: 'root' }]
2189
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
2198
2190
 
2199
2191
  class Angulartics2GoSquared {
2200
2192
  constructor(angulartics2) {
@@ -2241,17 +2233,16 @@ class Angulartics2GoSquared {
2241
2233
  }
2242
2234
  }
2243
2235
  }
2244
- Angulartics2GoSquared.ɵprov = i0.ɵɵdefineInjectable({ factory: function Angulartics2GoSquared_Factory() { return new Angulartics2GoSquared(i0.ɵɵinject(Angulartics2)); }, token: Angulartics2GoSquared, providedIn: "root" });
2245
- Angulartics2GoSquared.decorators = [
2246
- { type: Injectable, args: [{ providedIn: 'root' },] }
2247
- ];
2248
- Angulartics2GoSquared.ctorParameters = () => [
2249
- { type: Angulartics2 }
2250
- ];
2236
+ Angulartics2GoSquared.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2GoSquared, deps: [{ token: Angulartics2 }], target: i0.ɵɵFactoryTarget.Injectable });
2237
+ Angulartics2GoSquared.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2GoSquared, providedIn: 'root' });
2238
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Angulartics2GoSquared, decorators: [{
2239
+ type: Injectable,
2240
+ args: [{ providedIn: 'root' }]
2241
+ }], ctorParameters: function () { return [{ type: Angulartics2 }]; } });
2251
2242
 
2252
2243
  /**
2253
2244
  * Generated bundle index. Do not edit.
2254
2245
  */
2255
2246
 
2256
2247
  export { ANGULARTICS2_TOKEN, AngularRouterTracking, Angulartics2, Angulartics2AdobeAnalytics, Angulartics2Amplitude, Angulartics2AppInsights, Angulartics2BaiduAnalytics, Angulartics2Clicky, Angulartics2Facebook, Angulartics2GoSquared, Angulartics2GoogleAnalytics, Angulartics2GoogleAnalyticsEnhancedEcommerce, Angulartics2GoogleGlobalSiteTag, Angulartics2GoogleTagManager, Angulartics2Hubspot, Angulartics2IBMDigitalAnalytics, Angulartics2Intercom, Angulartics2Kissmetrics, Angulartics2LaunchByAdobe, Angulartics2Matomo, Angulartics2Mixpanel, Angulartics2Module, Angulartics2On, Angulartics2OnModule, Angulartics2Pyze, Angulartics2RouterlessModule, Angulartics2Segment, Angulartics2Splunk, Angulartics2Woopra, AppInsightsDefaults, DefaultConfig, GoogleAnalyticsDefaults, GoogleGlobalSiteTagDefaults, GoogleTagManagerDefaults, RouterlessTracking };
2257
- //# sourceMappingURL=angulartics2.js.map
2248
+ //# sourceMappingURL=angulartics2.mjs.map