@artisan-commerce/analytics-rn 0.3.0-canary.70 → 0.3.0-canary.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bundle.d.ts CHANGED
@@ -4,13 +4,13 @@ import { Account, Vendor, Store, Catalogue, ArtisnPlatform, CurrencyCodes, Produ
4
4
  * Analytics providers configurable options.
5
5
  *
6
6
  * @typedef ArtisnPlatform
7
- * @since 0.5.14
7
+ * @since 0.1.0
8
8
  */
9
9
  /**
10
10
  * Analytics event metadata to be included in every sent event.
11
11
  *
12
12
  * @interface ArtisnPlatform
13
- * @since 0.5.14
13
+ * @since 0.1.0
14
14
  * @property {number} accountId the id of the account it is running on
15
15
  * @property {number} vendorId the id of the active vendor
16
16
  * @property {string} vendorName the name of the active vendor
@@ -40,14 +40,14 @@ interface AnalyticsMeta {
40
40
  * Analytics supported providers.
41
41
  *
42
42
  * @typedef ArtisnPlatform
43
- * @since 0.5.14
43
+ * @since 0.1.0
44
44
  */
45
45
  declare type SupportedProviders = "GOOGLE_ANALYTICS" | "FACEBOOK_PIXEL" | "SEGMENT";
46
46
  /**
47
47
  * Supported auth providers methods.
48
48
  *
49
49
  * @typedef AuthProviderMethods
50
- * @since 0.5.14
50
+ * @since 0.1.0
51
51
  */
52
52
  declare type AuthProviderMethods = "Google" | "Facebook" | "Apple" | "Email and Password" | "Phone";
53
53
 
@@ -55,7 +55,7 @@ declare type AuthProviderMethods = "Google" | "Facebook" | "Apple" | "Email and
55
55
  * Analytics Provider base intance config.
56
56
  *
57
57
  * @interface AnalyticsProviderConstructor
58
- * @since 0.5.14
58
+ * @since 0.1.0
59
59
  * @property {SupportedProviders} type Type of analytics provider
60
60
  * @property {string} name Analytics provider name
61
61
  * @property {number[]} vendors List of vendors that can emit this provider events if active (defaults to all vendors)
@@ -69,7 +69,7 @@ interface AnalyticsProviderConstructor {
69
69
  * AnalyticsProvider Class interface.
70
70
  *
71
71
  * @interface IAnaliticsProvider
72
- * @since 0.5.14
72
+ * @since 0.1.0
73
73
  * @property {Function} init Initializes the provider connection
74
74
  * @property {Function} updateConfig Updates the initial config of the provider
75
75
  * @property {number[]} vendors The provider selected vendors ids
@@ -84,7 +84,7 @@ interface IAnaliticsProvider {
84
84
  * Represents the base properties all AnalyticsProviders have.
85
85
  *
86
86
  * @abstract
87
- * @since 0.5.14
87
+ * @since 0.1.0
88
88
  */
89
89
  declare abstract class AnalyticsProvider implements IAnaliticsProvider {
90
90
  private initialized;
@@ -95,27 +95,27 @@ declare abstract class AnalyticsProvider implements IAnaliticsProvider {
95
95
  * Representation of a Customer Account
96
96
  *
97
97
  * @constructs
98
- * @since 0.5.14
98
+ * @since 0.1.0
99
99
  * @param {Config} config artisn's account unique identifier.
100
100
  */
101
101
  constructor(config: AnalyticsProviderConstructor);
102
102
  /**
103
103
  * Gets the allowed vendors of the Analytics Provider.
104
104
  *
105
- * @since 0.5.14
105
+ * @since 0.1.0
106
106
  * @returns Analytics Provider vendors, if not specified it fallsback to the global vendors
107
107
  */
108
- get vendors(): number[] | undefined;
108
+ get vendors(): string[] | undefined;
109
109
  /**
110
110
  * Runs any specific platform script to initialize the SDK.
111
111
  *
112
- * @since 0.5.14
112
+ * @since 0.1.0
113
113
  */
114
114
  init(): void;
115
115
  /**
116
116
  * Updates the provider instance config for the next events.
117
117
  *
118
- * @since 0.5.14
118
+ * @since 0.1.0
119
119
  * @param {Partial<unknown>} config Analyticis provider configurable options
120
120
  */
121
121
  updateConfig(config: Partial<unknown>): void;
@@ -125,7 +125,7 @@ declare abstract class AnalyticsProvider implements IAnaliticsProvider {
125
125
  * Google Analytics Provider constructor configuration,
126
126
  *
127
127
  * @interface GoogleAnalyticsProvider
128
- * @since 0.5.14
128
+ * @since 0.1.0
129
129
  * @implements {AnalyticsProviderConstructor}
130
130
  * @implements {GoogleAnalyticsProviderConfig}
131
131
  * @property {number} sampleRate how many users get use in the sample (default to 100%)
@@ -137,7 +137,7 @@ interface GoogleAnalyticsProvider extends Omit<AnalyticsProviderConstructor, "ty
137
137
  * Google Analytics Provider after instantiated configurable options.
138
138
  *
139
139
  * @interface GoogleAnalyticsProviderConfig
140
- * @since 0.5.14
140
+ * @since 0.1.0
141
141
  * @property {string} userId the users unique identifier between devices
142
142
  * @property {CurrencyCodes} currency user's country monetary code
143
143
  * @property {string} language the language of the customer
@@ -151,7 +151,7 @@ interface GoogleAnalyticsProviderConfig {
151
151
  * Google Analytics event shared parameters.
152
152
  *
153
153
  * @interface GoogleAnalyticsCommonEventParams
154
- * @since 0.5.14
154
+ * @since 0.1.0
155
155
  * @extends EventCommonParams
156
156
  */
157
157
  interface GoogleAnalyticsCommonEventParams extends EventCommonParams {
@@ -160,7 +160,7 @@ interface GoogleAnalyticsCommonEventParams extends EventCommonParams {
160
160
  * Google Analytics custom event shared parameters.
161
161
  *
162
162
  * @interface GoogleAnalyticsCustomEventParams
163
- * @since 0.5.14
163
+ * @since 0.1.0
164
164
  */
165
165
  interface GoogleAnalyticsCustomEventParams {
166
166
  [key: string]: any;
@@ -191,7 +191,7 @@ declare namespace Gtag {
191
191
  * Segment Provider constructor configuration,
192
192
  *
193
193
  * @interface SegmentProvider
194
- * @since 0.5.14
194
+ * @since 0.1.0
195
195
  * @implements {AnalyticsProviderConstructor}
196
196
  * @implements {SegmentProviderConfig}
197
197
  * @property {number} writeKey Unique identifier for the app.
@@ -203,7 +203,7 @@ interface SegmentProvider extends Omit<AnalyticsProviderConstructor, "type">, Se
203
203
  * Segment Provider after instantiated configurable options.
204
204
  *
205
205
  * @interface SegmentProviderConfig
206
- * @since 0.5.14
206
+ * @since 0.1.0
207
207
  */
208
208
  interface SegmentProviderConfig {
209
209
  currency?: CurrencyCodes;
@@ -212,7 +212,7 @@ interface SegmentProviderConfig {
212
212
  * Segment event shared parameters.
213
213
  *
214
214
  * @interface SegmentCommonEventParams
215
- * @since 0.5.14
215
+ * @since 0.1.0
216
216
  * @extends EventCommonParams
217
217
  */
218
218
  interface SegmentCommonEventParams extends EventCommonParams {
@@ -221,7 +221,7 @@ interface SegmentCommonEventParams extends EventCommonParams {
221
221
  * Segment custom event shared parameters.
222
222
  *
223
223
  * @interface SegmentCustomEventParams
224
- * @since 0.5.14
224
+ * @since 0.1.0
225
225
  */
226
226
  interface SegmentCustomEventParams {
227
227
  [key: string]: any;
@@ -283,7 +283,7 @@ declare namespace Segment$1 {
283
283
  * Shared params across every event.
284
284
  *
285
285
  * @interface EventCommonParams
286
- * @since 0.5.14
286
+ * @since 0.1.0
287
287
  * @property {string} userId The unique identifier of a user across platforms
288
288
  * @property {boolean} isAnonymous Whether the user is registered or not
289
289
  * @property {CurrencyCodes} currency user's country monetary code
@@ -298,7 +298,7 @@ interface EventCommonParams {
298
298
  * Facebook Pixel Provider constructor configuration.
299
299
  *
300
300
  * @interface FacebookPixelProvider
301
- * @since 0.5.14
301
+ * @since 0.1.0
302
302
  * @implements AnalyticsProviderConstructor, FacebookPixelProviderConfig
303
303
  * @property {string} version Facebook Pixel SDK version
304
304
  */
@@ -310,7 +310,7 @@ interface FacebookPixelProvider extends Omit<AnalyticsProviderConstructor, "type
310
310
  * Facebook Pixel Provider after instantiated configurable options.
311
311
  *
312
312
  * @interface FacebookPixelProvider
313
- * @since 0.5.14
313
+ * @since 0.1.0
314
314
  * @property {CurrencyCodes} currency user's country monetary code
315
315
  */
316
316
  interface FacebookPixelProviderConfig {
@@ -320,7 +320,7 @@ interface FacebookPixelProviderConfig {
320
320
  * Facebook Pixel event shared parameters.
321
321
  *
322
322
  * @interface FacebookPixelCommonEventParams
323
- * @since 0.5.14
323
+ * @since 0.1.0
324
324
  * @extends EventCommonParams
325
325
  */
326
326
  interface FacebookPixelCommonEventParams extends EventCommonParams {
@@ -329,7 +329,7 @@ interface FacebookPixelCommonEventParams extends EventCommonParams {
329
329
  * Facebook Pixel custom event shared parameters.
330
330
  *
331
331
  * @interface FacebookPixelCustomEventParams
332
- * @since 0.5.14
332
+ * @since 0.1.0
333
333
  */
334
334
  interface FacebookPixelCustomEventParams {
335
335
  [key: string]: any;
@@ -339,7 +339,7 @@ interface FacebookPixelCustomEventParams {
339
339
  * Create a Facebook Pixel provider instance.
340
340
  *
341
341
  * @class
342
- * @since 0.5.14
342
+ * @since 0.1.0
343
343
  * @extends AnalyticsProvider
344
344
  */
345
345
  declare class FacebookPixel extends AnalyticsProvider {
@@ -350,7 +350,7 @@ declare class FacebookPixel extends AnalyticsProvider {
350
350
  * Contructs a Facebook Pixel Provider
351
351
  *
352
352
  * @constructs
353
- * @since 0.5.14
353
+ * @since 0.1.0
354
354
  * @param {Config} config provider configuration
355
355
  */
356
356
  constructor(config: FacebookPixelProvider);
@@ -360,7 +360,7 @@ declare class FacebookPixel extends AnalyticsProvider {
360
360
  get initializeIOSSDK(): FacebookPixelProvider["initializeIOSSDK"];
361
361
  /**
362
362
  * @override
363
- * @since 0.5.14
363
+ * @since 0.1.0
364
364
  */
365
365
  updateConfig(config?: Partial<FacebookPixelProviderConfig>): void;
366
366
  }
@@ -369,7 +369,7 @@ declare class FacebookPixel extends AnalyticsProvider {
369
369
  * Create a Google Analytics provider instance
370
370
  *
371
371
  * @class
372
- * @since 0.5.14
372
+ * @since 0.1.0
373
373
  * @extends AnalyticsProvider
374
374
  */
375
375
  declare class GoogleAnalytics extends AnalyticsProvider {
@@ -381,7 +381,7 @@ declare class GoogleAnalytics extends AnalyticsProvider {
381
381
  * Contructs a Google Analytics Provider
382
382
  *
383
383
  * @constructs
384
- * @since 0.5.14
384
+ * @since 0.1.0
385
385
  * @param {Config} config provider configuration
386
386
  */
387
387
  constructor(config: GoogleAnalyticsProvider);
@@ -391,7 +391,7 @@ declare class GoogleAnalytics extends AnalyticsProvider {
391
391
  get currency(): GoogleAnalyticsProvider["currency"];
392
392
  /**
393
393
  * @override
394
- * @since 0.5.14
394
+ * @since 0.1.0
395
395
  */
396
396
  updateConfig(config?: Partial<GoogleAnalyticsProviderConfig>): void;
397
397
  }
@@ -400,7 +400,7 @@ declare class GoogleAnalytics extends AnalyticsProvider {
400
400
  * Create a Segment provider instance
401
401
  *
402
402
  * @class
403
- * @since 0.5.14
403
+ * @since 0.1.0
404
404
  * @extends AnalyticsProvider
405
405
  */
406
406
  declare class Segment extends AnalyticsProvider {
@@ -410,18 +410,18 @@ declare class Segment extends AnalyticsProvider {
410
410
  * Contructs a Segment Provider
411
411
  *
412
412
  * @constructs
413
- * @since 0.5.14
413
+ * @since 0.1.0
414
414
  * @param {Config} config provider configuration
415
415
  */
416
416
  constructor(config: SegmentProvider);
417
417
  /**
418
418
  * @override
419
- * @since 0.5.14
419
+ * @since 0.1.0
420
420
  */
421
421
  init(): Promise<void>;
422
422
  /**
423
423
  * @override
424
- * @since 0.5.14
424
+ * @since 0.1.0
425
425
  */
426
426
  updateConfig(config?: Partial<SegmentProviderConfig>): void;
427
427
  }
@@ -436,7 +436,7 @@ declare const Providers: {
436
436
  * Initial configuration that can be passed to initAnalytics method.
437
437
  *
438
438
  * @interface InitAnalyticsConfig
439
- * @since 0.5.14
439
+ * @since 0.1.0
440
440
  * @property {AnalyticsProviderTypes[]} providers Analytics providers instances that can be targeted to emit events
441
441
  * @property {number} activeVendor The vendor that will emit the events
442
442
  * @property {number[]|undefined} vendors List of vendors that can emit events if active
@@ -454,7 +454,7 @@ interface InitAnalyticsConfig {
454
454
  * Commerce's metadata
455
455
  *
456
456
  * @interface InitAnalyticsConfigMeta
457
- * @since 0.5.14
457
+ * @since 0.1.0
458
458
  * @extends AnalyticsMeta
459
459
  * @property {string} vendorName The name of the active vendor
460
460
  * @property {number} storeId The id of the active store
@@ -473,7 +473,7 @@ interface InitAnalyticsConfigMeta extends Omit<AnalyticsMeta, "vendorId" | "vers
473
473
  /**
474
474
  * Initializes the analytics module, connects to every provider.
475
475
  *
476
- * @since 0.5.14
476
+ * @since 0.1.0
477
477
  * @param {InitAnalyticsConfig} config Initialization configuration.
478
478
  */
479
479
  declare const initAnalytics: (config: InitAnalyticsConfig) => void;
@@ -482,7 +482,7 @@ declare const initAnalytics: (config: InitAnalyticsConfig) => void;
482
482
  * Event allowed parameters.
483
483
  *
484
484
  * @interface UpdateWorkflowParams
485
- * @since 0.5.14
485
+ * @since 0.1.0
486
486
  * @extends GoogleAnalyticsCommonEventParams
487
487
  * @extends GoogleAnalyticsCustomEventParams
488
488
  * @extends UpdateWorkflowCommonParams
@@ -494,7 +494,7 @@ interface UpdateWorkflowParams$3 extends GoogleAnalyticsCommonEventParams, Googl
494
494
  * Event allowed parameters.
495
495
  *
496
496
  * @interface UpdateWorkflowParams
497
- * @since 0.5.14
497
+ * @since 0.1.0
498
498
  * @extends FacebookPixelCommonEventParams
499
499
  * @extends FacebookPixelCustomEventParams
500
500
  * @extends UpdateWorkflowCommonParams
@@ -506,7 +506,7 @@ interface UpdateWorkflowParams$2 extends FacebookPixelCommonEventParams, Faceboo
506
506
  * Event allowed parameters.
507
507
  *
508
508
  * @interface UpdateWorkflowParams
509
- * @since 0.5.14
509
+ * @since 0.1.0
510
510
  * @extends SegmentCommonEventParams
511
511
  * @extends SegmentCustomEventParams
512
512
  * @extends UpdateWorkflowCommonParams
@@ -533,7 +533,7 @@ declare type PaymentType = "Cash" | "Card" | "Dataphone" | "Other";
533
533
  * updateWorkflow event interface.
534
534
  *
535
535
  * @interface UpdateWorkflowCommonParams
536
- * @since 0.5.14
536
+ * @since 0.1.0
537
537
  * @property {Workflow} previousWorkflow The previous selected workflow name (e.g. Delivery)
538
538
  * @property {Workflow} nextWorkflow The next workflow name (e.g. Delivery)
539
539
  */
@@ -545,7 +545,7 @@ interface UpdateWorkflowCommonParams {
545
545
  * updateWorkflow event params.
546
546
  *
547
547
  * @typedef UpdateWorkflowParams
548
- * @since 0.5.14
548
+ * @since 0.1.0
549
549
  */
550
550
  declare type UpdateWorkflowParams = UpdateWorkflowParams$3 & UpdateWorkflowParams$2 & UpdateWorkflowParams$1;
551
551
 
@@ -553,7 +553,7 @@ declare type UpdateWorkflowParams = UpdateWorkflowParams$3 & UpdateWorkflowParam
553
553
  * Event allowed parameters.
554
554
  *
555
555
  * @interface SelectWorkflowParams
556
- * @since 0.5.14
556
+ * @since 0.1.0
557
557
  * @extends GoogleAnalyticsCommonEventParams
558
558
  * @extends GoogleAnalyticsCustomEventParams
559
559
  * @extends SelectWorkflowCommonParams
@@ -565,7 +565,7 @@ interface SelectWorkflowParams$3 extends GoogleAnalyticsCommonEventParams, Googl
565
565
  * Event allowed parameters.
566
566
  *
567
567
  * @interface SelectWorkflowParams
568
- * @since 0.5.14
568
+ * @since 0.1.0
569
569
  * @extends FacebookPixelCommonEventParams
570
570
  * @extends FacebookPixelCustomEventParams
571
571
  * @extends SelectWorkflowCommonParams
@@ -577,7 +577,7 @@ interface SelectWorkflowParams$2 extends FacebookPixelCommonEventParams, Faceboo
577
577
  * Event allowed parameters.
578
578
  *
579
579
  * @interface SelectWorkflowParams
580
- * @since 0.5.14
580
+ * @since 0.1.0
581
581
  * @extends SegmentCommonEventParams
582
582
  * @extends SegmentCustomEventParams
583
583
  * @extends SelectWorkflowCommonParams
@@ -589,7 +589,7 @@ interface SelectWorkflowParams$1 extends SegmentCommonEventParams, SegmentCustom
589
589
  * selectWorkflow event interface.
590
590
  *
591
591
  * @interface SelectWorkflowCommonParams
592
- * @since 0.5.14
592
+ * @since 0.1.0
593
593
  * @property {Workflow} workflow The workflow name (e.g. Delivery)
594
594
  */
595
595
  interface SelectWorkflowCommonParams {
@@ -599,7 +599,7 @@ interface SelectWorkflowCommonParams {
599
599
  * selectWorkflow event params.
600
600
  *
601
601
  * @typedef SelectWorkflowParams
602
- * @since 0.5.14
602
+ * @since 0.1.0
603
603
  */
604
604
  declare type SelectWorkflowParams = SelectWorkflowParams$3 & SelectWorkflowParams$2 & SelectWorkflowParams$1;
605
605
 
@@ -607,7 +607,7 @@ declare type SelectWorkflowParams = SelectWorkflowParams$3 & SelectWorkflowParam
607
607
  * Event allowed parameters.
608
608
  *
609
609
  * @interface SetVendorParams
610
- * @since 0.5.14
610
+ * @since 0.1.0
611
611
  * @extends GoogleAnalyticsCommonEventParams
612
612
  * @extends GoogleAnalyticsCustomEventParams
613
613
  * @extends SetVendorCommonParams
@@ -619,7 +619,7 @@ interface SetVendorParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnal
619
619
  * Event allowed parameters.
620
620
  *
621
621
  * @interface SetVendorParams
622
- * @since 0.5.14
622
+ * @since 0.1.0
623
623
  * @extends FacebookPixelCommonEventParams
624
624
  * @extends FacebookPixelCustomEventParams
625
625
  * @extends SetVendorCommonParams
@@ -631,7 +631,7 @@ interface SetVendorParams$2 extends FacebookPixelCommonEventParams, FacebookPixe
631
631
  * Event allowed parameters.
632
632
  *
633
633
  * @interface SetVendorParams
634
- * @since 0.5.14
634
+ * @since 0.1.0
635
635
  * @extends SegmentCommonEventParams
636
636
  * @extends SegmentCustomEventParams
637
637
  * @extends SetVendorCommonParams
@@ -643,19 +643,19 @@ interface SetVendorParams$1 extends SegmentCommonEventParams, SegmentCustomEvent
643
643
  * setVendor event interface.
644
644
  *
645
645
  * @interface SetVendorCommonParams
646
- * @since 0.5.14
647
- * @property {number} vendorId The new set vendor identifier
646
+ * @since 0.1.0
647
+ * @property {string | -1} vendorId The new set vendor identifier
648
648
  * @property {string} vendorName The new set vendor name
649
649
  */
650
650
  interface SetVendorCommonParams {
651
- vendorId: Vendor["id"];
651
+ vendorId: Vendor["id"] | -1;
652
652
  vendorName?: Vendor["name"];
653
653
  }
654
654
  /**
655
655
  * setVendor event params.
656
656
  *
657
657
  * @typedef SetVendorParams
658
- * @since 0.5.14
658
+ * @since 0.1.0
659
659
  */
660
660
  declare type SetVendorParams = SetVendorParams$3 & SetVendorParams$2 & SetVendorParams$1;
661
661
 
@@ -663,7 +663,7 @@ declare type SetVendorParams = SetVendorParams$3 & SetVendorParams$2 & SetVendor
663
663
  * Event allowed parameters.
664
664
  *
665
665
  * @interface ChangeVendorParams
666
- * @since 0.5.14
666
+ * @since 0.1.0
667
667
  * @extends GoogleAnalyticsCommonEventParams
668
668
  * @extends GoogleAnalyticsCustomEventParams
669
669
  * @extends ChangeVendorCommonParams
@@ -675,7 +675,7 @@ interface ChangeVendorParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
675
675
  * Event allowed parameters.
676
676
  *
677
677
  * @interface ChangeVendorParams
678
- * @since 0.5.14
678
+ * @since 0.1.0
679
679
  * @extends FacebookPixelCommonEventParams
680
680
  * @extends FacebookPixelCustomEventParams
681
681
  * @extends ChangeVendorCommonParams
@@ -687,7 +687,7 @@ interface ChangeVendorParams$2 extends FacebookPixelCommonEventParams, FacebookP
687
687
  * Event allowed parameters.
688
688
  *
689
689
  * @interface ChangeVendorParams
690
- * @since 0.5.14
690
+ * @since 0.1.0
691
691
  * @extends SegmentCommonEventParams
692
692
  * @extends SegmentCustomEventParams
693
693
  * @extends ChangeVendorCommonParams
@@ -699,23 +699,23 @@ interface ChangeVendorParams$1 extends SegmentCommonEventParams, SegmentCustomEv
699
699
  * changeVendor event interface.
700
700
  *
701
701
  * @interface ChangeVendorCommonParams
702
- * @since 0.5.14
703
- * @property {number} previousVendorId The vendor identifier that was selected
702
+ * @since 0.1.0
703
+ * @property {string | -1} previousVendorId The vendor identifier that was selected
704
704
  * @property {string} previousVendorName The vendor name that was selected
705
- * @property {number} nextVendorId The new selected vendor identifier
705
+ * @property {string | -1} nextVendorId The new selected vendor identifier
706
706
  * @property {string} nextVendorName The new selected vendor name
707
707
  */
708
708
  interface ChangeVendorCommonParams {
709
- previousVendorId: Vendor["id"];
709
+ previousVendorId: Vendor["id"] | -1;
710
710
  previousVendorName?: Vendor["name"];
711
- nextVendorId: Vendor["id"];
711
+ nextVendorId: Vendor["id"] | -1;
712
712
  nextVendorName?: Vendor["name"];
713
713
  }
714
714
  /**
715
715
  * changeVendor event params.
716
716
  *
717
717
  * @typedef ChangeVendorParams
718
- * @since 0.5.14
718
+ * @since 0.1.0
719
719
  */
720
720
  declare type ChangeVendorParams = ChangeVendorParams$3 & ChangeVendorParams$2 & ChangeVendorParams$1;
721
721
 
@@ -723,7 +723,7 @@ declare type ChangeVendorParams = ChangeVendorParams$3 & ChangeVendorParams$2 &
723
723
  * Event allowed parameters.
724
724
  *
725
725
  * @interface UpdateUserInfoParams
726
- * @since 0.5.14
726
+ * @since 0.1.0
727
727
  * @extends GoogleAnalyticsCommonEventParams
728
728
  * @extends GoogleAnalyticsCustomEventParams
729
729
  * @extends UpdateUserInfoCommonParams
@@ -737,7 +737,7 @@ interface UpdateUserInfoParams$3 extends GoogleAnalyticsCommonEventParams, Googl
737
737
  * Event allowed parameters.
738
738
  *
739
739
  * @interface UpdateUserInfoParams
740
- * @since 0.5.14
740
+ * @since 0.1.0
741
741
  * @extends FacebookPixelCommonEventParams
742
742
  * @extends FacebookPixelCustomEventParams
743
743
  * @extends UpdateUserInfoCommonParams
@@ -749,7 +749,7 @@ interface UpdateUserInfoParams$2 extends FacebookPixelCommonEventParams, Faceboo
749
749
  * Event allowed parameters.
750
750
  *
751
751
  * @interface UpdateUserInfoParams
752
- * @since 0.5.14
752
+ * @since 0.1.0
753
753
  * @extends SegmentCommonEventParams
754
754
  * @extends SegmentCustomEventParams
755
755
  * @extends UpdateUserInfoCommonParams
@@ -763,7 +763,7 @@ interface UpdateUserInfoParams$1 extends SegmentCommonEventParams, SegmentCustom
763
763
  * updateUserInfo event interface.
764
764
  *
765
765
  * @interface UpdateUserInfoCommonParams
766
- * @since 0.5.14
766
+ * @since 0.1.0
767
767
  * @property {string[]} fields The updated fields names
768
768
  */
769
769
  interface UpdateUserInfoCommonParams {
@@ -773,7 +773,7 @@ interface UpdateUserInfoCommonParams {
773
773
  * updateUserInfo event params.
774
774
  *
775
775
  * @typedef UpdateUserInfoParams
776
- * @since 0.5.14
776
+ * @since 0.1.0
777
777
  */
778
778
  declare type UpdateUserInfoParams = UpdateUserInfoParams$3 & UpdateUserInfoParams$2 & UpdateUserInfoParams$1;
779
779
 
@@ -781,7 +781,7 @@ declare type UpdateUserInfoParams = UpdateUserInfoParams$3 & UpdateUserInfoParam
781
781
  * Event allowed parameters.
782
782
  *
783
783
  * @interface SetUserInfoParams
784
- * @since 0.5.14
784
+ * @since 0.1.0
785
785
  * @extends GoogleAnalyticsCommonEventParams
786
786
  * @extends GoogleAnalyticsCustomEventParams
787
787
  * @extends SetUserInfoCommonParams
@@ -795,7 +795,7 @@ interface SetUserInfoParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
795
795
  * Event allowed parameters.
796
796
  *
797
797
  * @interface SetUserInfoParams
798
- * @since 0.5.14
798
+ * @since 0.1.0
799
799
  * @extends FacebookPixelCommonEventParams
800
800
  * @extends FacebookPixelCustomEventParams
801
801
  * @extends SetUserInfoCommonParams
@@ -807,7 +807,7 @@ interface SetUserInfoParams$2 extends FacebookPixelCommonEventParams, FacebookPi
807
807
  * Event allowed parameters.
808
808
  *
809
809
  * @interface SetUserInfoParams
810
- * @since 0.5.14
810
+ * @since 0.1.0
811
811
  * @extends SegmentCommonEventParams
812
812
  * @extends SegmentCustomEventParams
813
813
  * @extends SetUserInfoCommonParams
@@ -821,7 +821,7 @@ interface SetUserInfoParams$1 extends SegmentCommonEventParams, SegmentCustomEve
821
821
  * setUserInfo event interface.
822
822
  *
823
823
  * @interface SetUserInfoCommonParams
824
- * @since 0.5.14
824
+ * @since 0.1.0
825
825
  */
826
826
  interface SetUserInfoCommonParams {
827
827
  }
@@ -829,7 +829,7 @@ interface SetUserInfoCommonParams {
829
829
  * setUserInfo event params.
830
830
  *
831
831
  * @typedef SetUserInfoParams
832
- * @since 0.5.14
832
+ * @since 0.1.0
833
833
  */
834
834
  declare type SetUserInfoParams = SetUserInfoParams$3 & SetUserInfoParams$2 & SetUserInfoParams$1;
835
835
 
@@ -837,7 +837,7 @@ declare type SetUserInfoParams = SetUserInfoParams$3 & SetUserInfoParams$2 & Set
837
837
  * Event allowed parameters.
838
838
  *
839
839
  * @interface SetStoreParams
840
- * @since 0.5.14
840
+ * @since 0.1.0
841
841
  * @extends GoogleAnalyticsCommonEventParams
842
842
  * @extends GoogleAnalyticsCustomEventParams
843
843
  * @extends SetStoreCommonParams
@@ -849,7 +849,7 @@ interface SetStoreParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnaly
849
849
  * Event allowed parameters.
850
850
  *
851
851
  * @interface SetStoreParams
852
- * @since 0.5.14
852
+ * @since 0.1.0
853
853
  * @extends FacebookPixelCommonEventParams
854
854
  * @extends FacebookPixelCustomEventParams
855
855
  * @extends SetStoreCommonParams
@@ -861,7 +861,7 @@ interface SetStoreParams$2 extends FacebookPixelCommonEventParams, FacebookPixel
861
861
  * Event allowed parameters.
862
862
  *
863
863
  * @interface SetStoreParams
864
- * @since 0.5.14
864
+ * @since 0.1.0
865
865
  * @extends SegmentCommonEventParams
866
866
  * @extends SegmentCustomEventParams
867
867
  * @extends SetStoreCommonParams
@@ -873,7 +873,7 @@ interface SetStoreParams$1 extends SegmentCommonEventParams, SegmentCustomEventP
873
873
  * setStore event interface.
874
874
  *
875
875
  * @interface SetStoreCommonParams
876
- * @since 0.5.14
876
+ * @since 0.1.0
877
877
  * @property {Store} store The new current store
878
878
  */
879
879
  interface SetStoreCommonParams {
@@ -883,7 +883,7 @@ interface SetStoreCommonParams {
883
883
  * setStore event params.
884
884
  *
885
885
  * @typedef SetStoreParams
886
- * @since 0.5.14
886
+ * @since 0.1.0
887
887
  */
888
888
  declare type SetStoreParams = SetStoreParams$3 & SetStoreParams$2 & SetStoreParams$1;
889
889
 
@@ -891,7 +891,7 @@ declare type SetStoreParams = SetStoreParams$3 & SetStoreParams$2 & SetStorePara
891
891
  * Event allowed parameters.
892
892
  *
893
893
  * @interface ChangeStoreParams
894
- * @since 0.5.14
894
+ * @since 0.1.0
895
895
  * @extends GoogleAnalyticsCommonEventParams
896
896
  * @extends GoogleAnalyticsCustomEventParams
897
897
  * @extends ChangeStoreCommonParams
@@ -903,7 +903,7 @@ interface ChangeStoreParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
903
903
  * Event allowed parameters.
904
904
  *
905
905
  * @interface ChangeStoreParams
906
- * @since 0.5.14
906
+ * @since 0.1.0
907
907
  * @extends FacebookPixelCommonEventParams
908
908
  * @extends FacebookPixelCustomEventParams
909
909
  * @extends ChangeStoreCommonParams
@@ -915,7 +915,7 @@ interface ChangeStoreParams$2 extends FacebookPixelCommonEventParams, FacebookPi
915
915
  * Event allowed parameters.
916
916
  *
917
917
  * @interface ChangeStoreParams
918
- * @since 0.5.14
918
+ * @since 0.1.0
919
919
  * @extends SegmentCommonEventParams
920
920
  * @extends SegmentCustomEventParams
921
921
  * @extends ChangeStoreCommonParams
@@ -927,7 +927,7 @@ interface ChangeStoreParams$1 extends SegmentCommonEventParams, SegmentCustomEve
927
927
  * changeStore event interface
928
928
  *
929
929
  * @interface ChangeStoreCommonParams
930
- * @since 0.5.14
930
+ * @since 0.1.0
931
931
  * @property {Store} previousStore The store that was selected
932
932
  * @property {Store} nextStore The new current store
933
933
  */
@@ -939,7 +939,7 @@ interface ChangeStoreCommonParams {
939
939
  * changeStore event params.
940
940
  *
941
941
  * @typedef ChangeStoreParams
942
- * @since 0.5.14
942
+ * @since 0.1.0
943
943
  */
944
944
  declare type ChangeStoreParams = ChangeStoreParams$3 & ChangeStoreParams$2 & ChangeStoreParams$1;
945
945
 
@@ -947,7 +947,7 @@ declare type ChangeStoreParams = ChangeStoreParams$3 & ChangeStoreParams$2 & Cha
947
947
  * Event allowed parameters.
948
948
  *
949
949
  * @interface ShareParams
950
- * @since 0.5.14
950
+ * @since 0.1.0
951
951
  * @extends GoogleAnalyticsCommonEventParams
952
952
  * @extends GoogleAnalyticsCustomEventParams
953
953
  * @extends ShareCommonParams
@@ -961,7 +961,7 @@ interface ShareParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnalytic
961
961
  * Event allowed parameters.
962
962
  *
963
963
  * @interface ShareParams
964
- * @since 0.5.14
964
+ * @since 0.1.0
965
965
  * @extends FacebookPixelCommonEventParams
966
966
  * @extends FacebookPixelCustomEventParams
967
967
  * @extends ShareCommonParams
@@ -973,7 +973,7 @@ interface ShareParams$2 extends FacebookPixelCommonEventParams, FacebookPixelCus
973
973
  * Event allowed parameters.
974
974
  *
975
975
  * @interface ShareParams
976
- * @since 0.5.14
976
+ * @since 0.1.0
977
977
  * @extends SegmentCommonEventParams
978
978
  * @extends SegmentCustomEventParams
979
979
  * @extends ShareCommonParams
@@ -985,7 +985,7 @@ interface ShareParams$1 extends SegmentCommonEventParams, SegmentCustomEventPara
985
985
  * share event interface
986
986
  *
987
987
  * @interface ShareCommonParams
988
- * @since 0.5.14
988
+ * @since 0.1.0
989
989
  * @property {string} shareTarget The mean or platform by which the user will share some content (e.g. link, Facebook)
990
990
  * @property {string|number} itemId The identifier of the content to be shared
991
991
  * @property {string} itemName The name of the content to be shared
@@ -999,7 +999,7 @@ interface ShareCommonParams {
999
999
  * share event params.
1000
1000
  *
1001
1001
  * @typedef ShareParams
1002
- * @since 0.5.14
1002
+ * @since 0.1.0
1003
1003
  */
1004
1004
  declare type ShareParams = ShareParams$3 & ShareParams$2 & ShareParams$1;
1005
1005
 
@@ -1007,7 +1007,7 @@ declare type ShareParams = ShareParams$3 & ShareParams$2 & ShareParams$1;
1007
1007
  * Event allowed parameters.
1008
1008
  *
1009
1009
  * @interface ViewCartParams
1010
- * @since 0.5.14
1010
+ * @since 0.1.0
1011
1011
  * @extends GoogleAnalyticsCommonEventParams
1012
1012
  * @extends GoogleAnalyticsCustomEventParams
1013
1013
  * @extends ViewCartCommonParams
@@ -1019,7 +1019,7 @@ interface ViewCartParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnaly
1019
1019
  * Event allowed parameters.
1020
1020
  *
1021
1021
  * @interface ViewCartParams
1022
- * @since 0.5.14
1022
+ * @since 0.1.0
1023
1023
  * @extends FacebookPixelCommonEventParams
1024
1024
  * @extends FacebookPixelCustomEventParams
1025
1025
  * @extends ViewCartCommonParams
@@ -1033,7 +1033,7 @@ interface ViewCartParams$2 extends FacebookPixelCommonEventParams, FacebookPixel
1033
1033
  * Event allowed parameters.
1034
1034
  *
1035
1035
  * @interface ViewCartParams
1036
- * @since 0.5.14
1036
+ * @since 0.1.0
1037
1037
  * @extends SegmentCommonEventParams
1038
1038
  * @extends SegmentCustomEventParams
1039
1039
  * @extends ViewCartCommonParams
@@ -1047,7 +1047,7 @@ interface ViewCartParams$1 extends SegmentCommonEventParams, SegmentCustomEventP
1047
1047
  * viewCart event interface
1048
1048
  *
1049
1049
  * @interface ViewCartCommonParams
1050
- * @since 0.5.14
1050
+ * @since 0.1.0
1051
1051
  * @property {string} cartId Shopping cart identifier
1052
1052
  * @property {string} cartName Shopping cart name
1053
1053
  */
@@ -1059,7 +1059,7 @@ interface ViewCartCommonParams {
1059
1059
  * viewCart event params.
1060
1060
  *
1061
1061
  * @typedef ViewCartParams
1062
- * @since 0.5.14
1062
+ * @since 0.1.0
1063
1063
  */
1064
1064
  declare type ViewCartParams = ViewCartParams$3 & ViewCartParams$2 & ViewCartParams$1;
1065
1065
 
@@ -1067,7 +1067,7 @@ declare type ViewCartParams = ViewCartParams$3 & ViewCartParams$2 & ViewCartPara
1067
1067
  * Event allowed parameters.
1068
1068
  *
1069
1069
  * @interface UpdateProductInWishlistParams
1070
- * @since 0.5.14
1070
+ * @since 0.1.0
1071
1071
  * @extends GoogleAnalyticsCommonEventParams
1072
1072
  * @extends GoogleAnalyticsCustomEventParams
1073
1073
  * @extends UpdateProductInWishlistCommonParams
@@ -1079,7 +1079,7 @@ interface UpdateProductInWishlistParams$3 extends GoogleAnalyticsCommonEventPara
1079
1079
  * Event allowed parameters.
1080
1080
  *
1081
1081
  * @interface UpdateProductInWishlistParams
1082
- * @since 0.5.14
1082
+ * @since 0.1.0
1083
1083
  * @extends FacebookPixelCommonEventParams
1084
1084
  * @extends FacebookPixelCustomEventParams
1085
1085
  * @extends UpdateProductInWishlistCommonParams
@@ -1093,7 +1093,7 @@ interface UpdateProductInWishlistParams$2 extends FacebookPixelCommonEventParams
1093
1093
  * Event allowed parameters.
1094
1094
  *
1095
1095
  * @interface UpdateProductInWishlistParams
1096
- * @since 0.5.14
1096
+ * @since 0.1.0
1097
1097
  * @extends SegmentCommonEventParams
1098
1098
  * @extends SegmentCustomEventParams
1099
1099
  * @extends UpdateProductInWishlistCommonParams
@@ -1105,7 +1105,7 @@ interface UpdateProductInWishlistParams$1 extends SegmentCommonEventParams, Segm
1105
1105
  * updateProductInWishlist event interface.
1106
1106
  *
1107
1107
  * @interface UpdateProductInWishlistCommonParams
1108
- * @since 0.5.14
1108
+ * @since 0.1.0
1109
1109
  * @property {CartProduct} product The product in the wishlist that was updated
1110
1110
  * @property {string} cartId Shopping cart identifier
1111
1111
  * @property {string[]} fields The updated fields names
@@ -1121,7 +1121,7 @@ interface UpdateProductInWishlistCommonParams {
1121
1121
  * updateProductInWishlist event params.
1122
1122
  *
1123
1123
  * @typedef UpdateProductInWishlistParams
1124
- * @since 0.5.14
1124
+ * @since 0.1.0
1125
1125
  */
1126
1126
  declare type UpdateProductInWishlistParams = UpdateProductInWishlistParams$3 & UpdateProductInWishlistParams$2 & UpdateProductInWishlistParams$1;
1127
1127
 
@@ -1129,7 +1129,7 @@ declare type UpdateProductInWishlistParams = UpdateProductInWishlistParams$3 & U
1129
1129
  * Event allowed parameters.
1130
1130
  *
1131
1131
  * @interface UpdateProductInCartParams
1132
- * @since 0.5.14
1132
+ * @since 0.1.0
1133
1133
  * @extends GoogleAnalyticsCommonEventParams
1134
1134
  * @extends GoogleAnalyticsCustomEventParams
1135
1135
  * @extends UpdateProductInCartCommonParams
@@ -1141,7 +1141,7 @@ interface UpdateProductInCartParams$3 extends GoogleAnalyticsCommonEventParams,
1141
1141
  * Event allowed parameters.
1142
1142
  *
1143
1143
  * @interface UpdateProductInCartParams
1144
- * @since 0.5.14
1144
+ * @since 0.1.0
1145
1145
  * @extends FacebookPixelCommonEventParams
1146
1146
  * @extends FacebookPixelCustomEventParams
1147
1147
  * @extends UpdateProductInCartCommonParams
@@ -1155,7 +1155,7 @@ interface UpdateProductInCartParams$2 extends FacebookPixelCommonEventParams, Fa
1155
1155
  * Event allowed parameters.
1156
1156
  *
1157
1157
  * @interface UpdateProductInCartParams
1158
- * @since 0.5.14
1158
+ * @since 0.1.0
1159
1159
  * @extends SegmentCommonEventParams
1160
1160
  * @extends SegmentCustomEventParams
1161
1161
  * @extends UpdateProductInCartCommonParams
@@ -1167,7 +1167,7 @@ interface UpdateProductInCartParams$1 extends SegmentCommonEventParams, SegmentC
1167
1167
  * updateProductInCart event interface
1168
1168
  *
1169
1169
  * @interface UpdateProductInCartCommonParams
1170
- * @since 0.5.14
1170
+ * @since 0.1.0
1171
1171
  * @property {CartProduct} product The product in the cart that was updated
1172
1172
  * @property {string} cartId Shopping cart identifier
1173
1173
  * @property {string} cartName Shopping cart name
@@ -1187,7 +1187,7 @@ interface UpdateProductInCartCommonParams {
1187
1187
  * updateProductInCart event params.
1188
1188
  *
1189
1189
  * @typedef UpdateProductInCartParams
1190
- * @since 0.5.14
1190
+ * @since 0.1.0
1191
1191
  */
1192
1192
  declare type UpdateProductInCartParams = UpdateProductInCartParams$3 & UpdateProductInCartParams$2 & UpdateProductInCartParams$1;
1193
1193
 
@@ -1195,7 +1195,7 @@ declare type UpdateProductInCartParams = UpdateProductInCartParams$3 & UpdatePro
1195
1195
  * Event allowed parameters.
1196
1196
  *
1197
1197
  * @interface RemoveProductFromWishlistParams
1198
- * @since 0.5.14
1198
+ * @since 0.1.0
1199
1199
  * @extends GoogleAnalyticsCommonEventParams
1200
1200
  * @extends GoogleAnalyticsCustomEventParams
1201
1201
  * @extends RemoveProductFromWishlistCommonParams
@@ -1207,7 +1207,7 @@ interface RemoveProductFromWishlistParams$3 extends GoogleAnalyticsCommonEventPa
1207
1207
  * Event allowed parameters.
1208
1208
  *
1209
1209
  * @interface RemoveProductFromWishlistParams
1210
- * @since 0.5.14
1210
+ * @since 0.1.0
1211
1211
  * @extends FacebookPixelCommonEventParams
1212
1212
  * @extends FacebookPixelCustomEventParams
1213
1213
  * @extends RemoveProductFromWishlistCommonParams
@@ -1221,7 +1221,7 @@ interface RemoveProductFromWishlistParams$2 extends FacebookPixelCommonEventPara
1221
1221
  * Event allowed parameters.
1222
1222
  *
1223
1223
  * @interface RemoveProductFromWishlistParams
1224
- * @since 0.5.14
1224
+ * @since 0.1.0
1225
1225
  * @extends SegmentCommonEventParams
1226
1226
  * @extends SegmentCustomEventParams
1227
1227
  * @extends RemoveProductFromWishlistCommonParams
@@ -1233,7 +1233,7 @@ interface RemoveProductFromWishlistParams$1 extends SegmentCommonEventParams, Se
1233
1233
  * removeProductFromWishlist event interface
1234
1234
  *
1235
1235
  * @interface RemoveProductFromWishlistCommonParams
1236
- * @since 0.5.14
1236
+ * @since 0.1.0
1237
1237
  * @property {CartProduct} product The product that was removed from the wishlist
1238
1238
  * @property {string} cartId Shopping cart identifier
1239
1239
  * @property {PriceCategoryType} priceCategory The product price category identifier
@@ -1247,7 +1247,7 @@ interface RemoveProductFromWishlistCommonParams {
1247
1247
  * removeProductFromWishlist event params.
1248
1248
  *
1249
1249
  * @typedef RemoveProductFromWishlistParams
1250
- * @since 0.5.14
1250
+ * @since 0.1.0
1251
1251
  */
1252
1252
  declare type RemoveProductFromWishlistParams = RemoveProductFromWishlistParams$3 & RemoveProductFromWishlistParams$2 & RemoveProductFromWishlistParams$1;
1253
1253
 
@@ -1255,7 +1255,7 @@ declare type RemoveProductFromWishlistParams = RemoveProductFromWishlistParams$3
1255
1255
  * Event allowed parameters.
1256
1256
  *
1257
1257
  * @interface RemoveProductFromCartParams
1258
- * @since 0.5.14
1258
+ * @since 0.1.0
1259
1259
  * @extends GoogleAnalyticsCommonEventParams
1260
1260
  * @extends GoogleAnalyticsCustomEventParams
1261
1261
  * @extends RemoveProductFromCartCommonParams
@@ -1267,7 +1267,7 @@ interface RemoveProductFromCartParams$3 extends GoogleAnalyticsCommonEventParams
1267
1267
  * Event allowed parameters.
1268
1268
  *
1269
1269
  * @interface RemoveProductFromCartParams
1270
- * @since 0.5.14
1270
+ * @since 0.1.0
1271
1271
  * @extends FacebookPixelCommonEventParams
1272
1272
  * @extends FacebookPixelCustomEventParams
1273
1273
  * @extends RemoveProductFromCartCommonParams
@@ -1281,7 +1281,7 @@ interface RemoveProductFromCartParams$2 extends FacebookPixelCommonEventParams,
1281
1281
  * Event allowed parameters.
1282
1282
  *
1283
1283
  * @interface RemoveProductFromCartParams
1284
- * @since 0.5.14
1284
+ * @since 0.1.0
1285
1285
  * @extends SegmentCommonEventParams
1286
1286
  * @extends SegmentCustomEventParams
1287
1287
  * @extends RemoveProductFromCartCommonParams
@@ -1293,7 +1293,7 @@ interface RemoveProductFromCartParams$1 extends SegmentCommonEventParams, Segmen
1293
1293
  * removeProductFromCart event interface
1294
1294
  *
1295
1295
  * @interface RemoveProductFromCartCommonParams
1296
- * @since 0.5.14
1296
+ * @since 0.1.0
1297
1297
  * @property {CartProduct} product The product that was removed to the cart
1298
1298
  * @property {string} cartId Shopping cart identifier
1299
1299
  * @property {string} cartName Shopping cart name
@@ -1311,7 +1311,7 @@ interface RemoveProductFromCartCommonParams {
1311
1311
  * removeProductFromCart event params.
1312
1312
  *
1313
1313
  * @typedef RemoveProductFromCartParams
1314
- * @since 0.5.14
1314
+ * @since 0.1.0
1315
1315
  */
1316
1316
  declare type RemoveProductFromCartParams = RemoveProductFromCartParams$3 & RemoveProductFromCartParams$2 & RemoveProductFromCartParams$1;
1317
1317
 
@@ -1319,7 +1319,7 @@ declare type RemoveProductFromCartParams = RemoveProductFromCartParams$3 & Remov
1319
1319
  * Event allowed parameters.
1320
1320
  *
1321
1321
  * @interface ClearCartParams
1322
- * @since 0.5.14
1322
+ * @since 0.1.0
1323
1323
  * @extends GoogleAnalyticsCommonEventParams
1324
1324
  * @extends GoogleAnalyticsCustomEventParams
1325
1325
  * @extends ClearCartCommonParams
@@ -1331,7 +1331,7 @@ interface ClearCartParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnal
1331
1331
  * Event allowed parameters.
1332
1332
  *
1333
1333
  * @interface ClearCartParams
1334
- * @since 0.5.14
1334
+ * @since 0.1.0
1335
1335
  * @extends FacebookPixelCommonEventParams
1336
1336
  * @extends FacebookPixelCustomEventParams
1337
1337
  * @extends ClearCartCommonParams
@@ -1345,7 +1345,7 @@ interface ClearCartParams$2 extends FacebookPixelCommonEventParams, FacebookPixe
1345
1345
  * Event allowed parameters.
1346
1346
  *
1347
1347
  * @interface ClearCartParams
1348
- * @since 0.5.14
1348
+ * @since 0.1.0
1349
1349
  * @extends SegmentCommonEventParams
1350
1350
  * @extends SegmentCustomEventParams
1351
1351
  * @extends ClearCartCommonParams
@@ -1357,7 +1357,7 @@ interface ClearCartParams$1 extends SegmentCommonEventParams, SegmentCustomEvent
1357
1357
  * clearCart event interface
1358
1358
  *
1359
1359
  * @interface ClearCartCommonParams
1360
- * @since 0.5.14
1360
+ * @since 0.1.0
1361
1361
  * @property {string} cartId Shopping cart identifier
1362
1362
  * @property {string} cartName Shopping cart name
1363
1363
  */
@@ -1369,7 +1369,7 @@ interface ClearCartCommonParams {
1369
1369
  * clearCart event params.
1370
1370
  *
1371
1371
  * @typedef ClearCartParams
1372
- * @since 0.5.14
1372
+ * @since 0.1.0
1373
1373
  */
1374
1374
  declare type ClearCartParams = ClearCartParams$3 & ClearCartParams$2 & ClearCartParams$1;
1375
1375
 
@@ -1377,7 +1377,7 @@ declare type ClearCartParams = ClearCartParams$3 & ClearCartParams$2 & ClearCart
1377
1377
  * Event allowed parameters.
1378
1378
  *
1379
1379
  * @interface AddProductToWishlistParams
1380
- * @since 0.5.14
1380
+ * @since 0.1.0
1381
1381
  * @extends GoogleAnalyticsCommonEventParams
1382
1382
  * @extends GoogleAnalyticsCustomEventParams
1383
1383
  * @extends AddProductToWishlistCommonParams
@@ -1389,7 +1389,7 @@ interface AddProductToWishlistParams$3 extends GoogleAnalyticsCommonEventParams,
1389
1389
  * Event allowed parameters.
1390
1390
  *
1391
1391
  * @interface AddProductToWishlistParams
1392
- * @since 0.5.14
1392
+ * @since 0.1.0
1393
1393
  * @extends FacebookPixelCommonEventParams
1394
1394
  * @extends FacebookPixelCustomEventParams
1395
1395
  * @extends AddProductToWishlistCommonParams
@@ -1403,7 +1403,7 @@ interface AddProductToWishlistParams$2 extends FacebookPixelCommonEventParams, F
1403
1403
  * Event allowed parameters.
1404
1404
  *
1405
1405
  * @interface AddProductToWishlistParams
1406
- * @since 0.5.14
1406
+ * @since 0.1.0
1407
1407
  * @extends SegmentCommonEventParams
1408
1408
  * @extends SegmentCustomEventParams
1409
1409
  * @extends AddProductToWishlistCommonParams
@@ -1415,7 +1415,7 @@ interface AddProductToWishlistParams$1 extends SegmentCommonEventParams, Segment
1415
1415
  * addProductToWishlist event interface
1416
1416
  *
1417
1417
  * @interface AddProductToWishlistCommonParams
1418
- * @since 0.5.14
1418
+ * @since 0.1.0
1419
1419
  * @property {CartProduct} product The product that was added to the wishlist
1420
1420
  * @property {string} cartId Shopping cart identifier
1421
1421
  * @property {PriceCategoryType} priceCategory The product price category identifier
@@ -1429,7 +1429,7 @@ interface AddProductToWishlistCommonParams {
1429
1429
  * addProductToWishlist event params.
1430
1430
  *
1431
1431
  * @typedef AddProductToWishlistParams
1432
- * @since 0.5.14
1432
+ * @since 0.1.0
1433
1433
  */
1434
1434
  declare type AddProductToWishlistParams = AddProductToWishlistParams$3 & AddProductToWishlistParams$2 & AddProductToWishlistParams$1;
1435
1435
 
@@ -1437,7 +1437,7 @@ declare type AddProductToWishlistParams = AddProductToWishlistParams$3 & AddProd
1437
1437
  * Event allowed parameters.
1438
1438
  *
1439
1439
  * @interface AddProductToCartParams
1440
- * @since 0.5.14
1440
+ * @since 0.1.0
1441
1441
  * @extends GoogleAnalyticsCommonEventParams
1442
1442
  * @extends GoogleAnalyticsCustomEventParams
1443
1443
  * @extends AddProductToCartCommonParams
@@ -1449,7 +1449,7 @@ interface AddProductToCartParams$3 extends GoogleAnalyticsCommonEventParams, Goo
1449
1449
  * Event allowed parameters.
1450
1450
  *
1451
1451
  * @interface AddProductToCartParams
1452
- * @since 0.5.14
1452
+ * @since 0.1.0
1453
1453
  * @extends FacebookPixelCommonEventParams
1454
1454
  * @extends FacebookPixelCustomEventParams
1455
1455
  * @extends AddProductToCartCommonParams
@@ -1463,7 +1463,7 @@ interface AddProductToCartParams$2 extends FacebookPixelCommonEventParams, Faceb
1463
1463
  * Event allowed parameters.
1464
1464
  *
1465
1465
  * @interface AddProductToCartParams
1466
- * @since 0.5.14
1466
+ * @since 0.1.0
1467
1467
  * @extends SegmentCommonEventParams
1468
1468
  * @extends SegmentCustomEventParams
1469
1469
  * @extends AddProductToCartCommonParams
@@ -1475,7 +1475,7 @@ interface AddProductToCartParams$1 extends SegmentCommonEventParams, SegmentCust
1475
1475
  * addProductToCart event interface.
1476
1476
  *
1477
1477
  * @interface AddProductToCartCommonParams
1478
- * @since 0.5.14
1478
+ * @since 0.1.0
1479
1479
  * @property {CartProduct} product The product that was added to the cart
1480
1480
  * @property {string} cartId Shopping cart identifier
1481
1481
  * @property {string} cartName Shopping cart name
@@ -1493,7 +1493,7 @@ interface AddProductToCartCommonParams {
1493
1493
  * addProductToCart event params.
1494
1494
  *
1495
1495
  * @typedef AddProductToCartParams
1496
- * @since 0.5.14
1496
+ * @since 0.1.0
1497
1497
  */
1498
1498
  declare type AddProductToCartParams = AddProductToCartParams$3 & AddProductToCartParams$2 & AddProductToCartParams$1;
1499
1499
 
@@ -1501,7 +1501,7 @@ declare type AddProductToCartParams = AddProductToCartParams$3 & AddProductToCar
1501
1501
  * Event allowed parameters.
1502
1502
  *
1503
1503
  * @interface UpdateShippingAddressParams
1504
- * @since 0.5.14
1504
+ * @since 0.1.0
1505
1505
  * @extends GoogleAnalyticsCommonEventParams
1506
1506
  * @extends GoogleAnalyticsCustomEventParams
1507
1507
  * @extends UpdateShippingAddressCommonParams
@@ -1513,7 +1513,7 @@ interface UpdateShippingAddressParams$3 extends GoogleAnalyticsCommonEventParams
1513
1513
  * Event allowed parameters.
1514
1514
  *
1515
1515
  * @interface UpdateShippingAddressParams
1516
- * @since 0.5.14
1516
+ * @since 0.1.0
1517
1517
  * @extends FacebookPixelCommonEventParams
1518
1518
  * @extends FacebookPixelCustomEventParams
1519
1519
  * @extends UpdateShippingAddressCommonParams
@@ -1525,7 +1525,7 @@ interface UpdateShippingAddressParams$2 extends FacebookPixelCommonEventParams,
1525
1525
  * Event allowed parameters.
1526
1526
  *
1527
1527
  * @interface UpdateShippingAddressParams
1528
- * @since 0.5.14
1528
+ * @since 0.1.0
1529
1529
  * @extends SegmentCommonEventParams
1530
1530
  * @extends SegmentCustomEventParams
1531
1531
  * @extends UpdateShippingAddressCommonParams
@@ -1539,7 +1539,7 @@ interface UpdateShippingAddressParams$1 extends SegmentCommonEventParams, Segmen
1539
1539
  * updateShippingAddress event interface
1540
1540
  *
1541
1541
  * @interface UpdateShippingAddressCommonParams
1542
- * @since 0.5.14
1542
+ * @since 0.1.0
1543
1543
  * @property {number} addressId The address identifier
1544
1544
  * @property {string} address The new full address
1545
1545
  * @property {string[]} fields The updated fields names
@@ -1553,7 +1553,7 @@ interface UpdateShippingAddressCommonParams {
1553
1553
  * updateShippingAddress event params.
1554
1554
  *
1555
1555
  * @typedef UpdateShippingAddressParams
1556
- * @since 0.5.14
1556
+ * @since 0.1.0
1557
1557
  */
1558
1558
  declare type UpdateShippingAddressParams = UpdateShippingAddressParams$3 & UpdateShippingAddressParams$2 & UpdateShippingAddressParams$1;
1559
1559
 
@@ -1561,7 +1561,7 @@ declare type UpdateShippingAddressParams = UpdateShippingAddressParams$3 & Updat
1561
1561
  * Event allowed parameters.
1562
1562
  *
1563
1563
  * @interface SelectShippingAddressParams
1564
- * @since 0.5.14
1564
+ * @since 0.1.0
1565
1565
  * @extends GoogleAnalyticsCommonEventParams
1566
1566
  * @extends GoogleAnalyticsCustomEventParams
1567
1567
  * @extends SelectShippingAddressCommonParams
@@ -1573,7 +1573,7 @@ interface SelectShippingAddressParams$3 extends GoogleAnalyticsCommonEventParams
1573
1573
  * Event allowed parameters.
1574
1574
  *
1575
1575
  * @interface SelectShippingAddressParams
1576
- * @since 0.5.14
1576
+ * @since 0.1.0
1577
1577
  * @extends FacebookPixelCommonEventParams
1578
1578
  * @extends FacebookPixelCustomEventParams
1579
1579
  * @extends SelectShippingAddressCommonParams
@@ -1585,7 +1585,7 @@ interface SelectShippingAddressParams$2 extends FacebookPixelCommonEventParams,
1585
1585
  * Event allowed parameters.
1586
1586
  *
1587
1587
  * @interface SelectShippingAddressParams
1588
- * @since 0.5.14
1588
+ * @since 0.1.0
1589
1589
  * @extends SegmentCommonEventParams
1590
1590
  * @extends SegmentCustomEventParams
1591
1591
  * @extends SelectShippingAddressCommonParams
@@ -1599,7 +1599,7 @@ interface SelectShippingAddressParams$1 extends SegmentCommonEventParams, Segmen
1599
1599
  * selectShippingAddress event interface
1600
1600
  *
1601
1601
  * @interface SelectShippingAddressCommonParams
1602
- * @since 0.5.14
1602
+ * @since 0.1.0
1603
1603
  * @property {number} addressId The address identifier
1604
1604
  * @property {number} position The position in a list where the address is
1605
1605
  * @property {number} lat The address latitude
@@ -1619,7 +1619,7 @@ interface SelectShippingAddressCommonParams {
1619
1619
  * selectShippingAddress event params.
1620
1620
  *
1621
1621
  * @typedef SelectShippingAddressParams
1622
- * @since 0.5.14
1622
+ * @since 0.1.0
1623
1623
  */
1624
1624
  declare type SelectShippingAddressParams = SelectShippingAddressParams$3 & SelectShippingAddressParams$2 & SelectShippingAddressParams$1;
1625
1625
 
@@ -1627,7 +1627,7 @@ declare type SelectShippingAddressParams = SelectShippingAddressParams$3 & Selec
1627
1627
  * Event allowed parameters.
1628
1628
  *
1629
1629
  * @interface AddShippingAddressParams
1630
- * @since 0.5.14
1630
+ * @since 0.1.0
1631
1631
  * @extends GoogleAnalyticsCommonEventParams
1632
1632
  * @extends GoogleAnalyticsCustomEventParams
1633
1633
  * @extends AddShippingAddressCommonParams
@@ -1639,7 +1639,7 @@ interface AddShippingAddressParams$3 extends GoogleAnalyticsCommonEventParams, G
1639
1639
  * Event allowed parameters.
1640
1640
  *
1641
1641
  * @interface AddShippingAddressParams
1642
- * @since 0.5.14
1642
+ * @since 0.1.0
1643
1643
  * @extends FacebookPixelCommonEventParams
1644
1644
  * @extends FacebookPixelCustomEventParams
1645
1645
  * @extends AddShippingAddressCommonParams
@@ -1651,7 +1651,7 @@ interface AddShippingAddressParams$2 extends FacebookPixelCommonEventParams, Fac
1651
1651
  * Event allowed parameters.
1652
1652
  *
1653
1653
  * @interface AddShippingAddressParams
1654
- * @since 0.5.14
1654
+ * @since 0.1.0
1655
1655
  * @extends SegmentCommonEventParams
1656
1656
  * @extends SegmentCustomEventParams
1657
1657
  * @extends AddShippingAddressCommonParams
@@ -1665,7 +1665,7 @@ interface AddShippingAddressParams$1 extends SegmentCommonEventParams, SegmentCu
1665
1665
  * addShippingAddress event interface.
1666
1666
  *
1667
1667
  * @interface AddShippingAddressCommonParams
1668
- * @since 0.5.14
1668
+ * @since 0.1.0
1669
1669
  * @property {number} lat The address latitude
1670
1670
  * @property {number} lng The address longitude
1671
1671
  * @property {string} alias The address alias or name
@@ -1681,7 +1681,7 @@ interface AddShippingAddressCommonParams {
1681
1681
  * addShippingAddress event params.
1682
1682
  *
1683
1683
  * @typedef AddShippingAddressParams
1684
- * @since 0.5.14
1684
+ * @since 0.1.0
1685
1685
  */
1686
1686
  declare type AddShippingAddressParams = AddShippingAddressParams$3 & AddShippingAddressParams$2 & AddShippingAddressParams$1;
1687
1687
 
@@ -1689,7 +1689,7 @@ declare type AddShippingAddressParams = AddShippingAddressParams$3 & AddShipping
1689
1689
  * Event allowed parameters.
1690
1690
  *
1691
1691
  * @interface ViewSettingsParams
1692
- * @since 0.5.14
1692
+ * @since 0.1.0
1693
1693
  * @extends GoogleAnalyticsCommonEventParams
1694
1694
  * @extends GoogleAnalyticsCustomEventParams
1695
1695
  * @extends ViewSettingsCommonParams
@@ -1701,7 +1701,7 @@ interface ViewSettingsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
1701
1701
  * Event allowed parameters.
1702
1702
  *
1703
1703
  * @interface ViewSettingsParams
1704
- * @since 0.5.14
1704
+ * @since 0.1.0
1705
1705
  * @extends FacebookPixelCommonEventParams
1706
1706
  * @extends FacebookPixelCustomEventParams
1707
1707
  * @extends ViewSettingsCommonParams
@@ -1713,7 +1713,7 @@ interface ViewSettingsParams$2 extends FacebookPixelCommonEventParams, FacebookP
1713
1713
  * Event allowed parameters.
1714
1714
  *
1715
1715
  * @interface ViewSettingsParams
1716
- * @since 0.5.14
1716
+ * @since 0.1.0
1717
1717
  * @extends SegmentCommonEventParams
1718
1718
  * @extends SegmentCustomEventParams
1719
1719
  * @extends ViewSettingsCommonParams
@@ -1725,7 +1725,7 @@ interface ViewSettingsParams$1 extends SegmentCommonEventParams, SegmentCustomEv
1725
1725
  * viewSettings event interface.
1726
1726
  *
1727
1727
  * @interface ViewSettingsCommonParams
1728
- * @since 0.5.14
1728
+ * @since 0.1.0
1729
1729
  */
1730
1730
  interface ViewSettingsCommonParams {
1731
1731
  }
@@ -1733,7 +1733,7 @@ interface ViewSettingsCommonParams {
1733
1733
  * viewSettings event params.
1734
1734
  *
1735
1735
  * @typedef ViewSettingsParams
1736
- * @since 0.5.14
1736
+ * @since 0.1.0
1737
1737
  */
1738
1738
  declare type ViewSettingsParams = ViewSettingsParams$3 & ViewSettingsParams$2 & ViewSettingsParams$1;
1739
1739
 
@@ -1741,7 +1741,7 @@ declare type ViewSettingsParams = ViewSettingsParams$3 & ViewSettingsParams$2 &
1741
1741
  * Event allowed parameters.
1742
1742
  *
1743
1743
  * @interface PurchaseSuccessParams
1744
- * @since 0.5.14
1744
+ * @since 0.1.0
1745
1745
  * @extends GoogleAnalyticsCommonEventParams
1746
1746
  * @extends GoogleAnalyticsCustomEventParams
1747
1747
  * @extends PurchaseSuccessCommonParams
@@ -1753,7 +1753,7 @@ interface PurchaseSuccessParams$3 extends GoogleAnalyticsCommonEventParams, Goog
1753
1753
  * Event allowed parameters.
1754
1754
  *
1755
1755
  * @interface PurchaseSuccessParams
1756
- * @since 0.5.14
1756
+ * @since 0.1.0
1757
1757
  * @extends FacebookPixelCommonEventParams
1758
1758
  * @extends FacebookPixelCustomEventParams
1759
1759
  * @extends PurchaseSuccessCommonParams
@@ -1767,7 +1767,7 @@ interface PurchaseSuccessParams$2 extends FacebookPixelCommonEventParams, Facebo
1767
1767
  * Event allowed parameters.
1768
1768
  *
1769
1769
  * @interface PurchaseSuccessParams
1770
- * @since 0.5.14
1770
+ * @since 0.1.0
1771
1771
  * @extends SegmentCommonEventParams
1772
1772
  * @extends SegmentCustomEventParams
1773
1773
  * @extends PurchaseSuccessCommonParams
@@ -1809,7 +1809,7 @@ declare type PurchaseSuccessParams = PurchaseSuccessParams$3 & PurchaseSuccessPa
1809
1809
  * Event allowed parameters.
1810
1810
  *
1811
1811
  * @interface PurchaseFailParams
1812
- * @since 0.5.14
1812
+ * @since 0.1.0
1813
1813
  * @extends GoogleAnalyticsCommonEventParams
1814
1814
  * @extends GoogleAnalyticsCustomEventParams
1815
1815
  * @extends PurchaseFailCommonParams
@@ -1821,7 +1821,7 @@ interface PurchaseFailParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
1821
1821
  * Event allowed parameters.
1822
1822
  *
1823
1823
  * @interface PurchaseFailParams
1824
- * @since 0.5.14
1824
+ * @since 0.1.0
1825
1825
  * @extends FacebookPixelCommonEventParams
1826
1826
  * @extends FacebookPixelCustomEventParams
1827
1827
  * @extends PurchaseFailCommonParams
@@ -1835,7 +1835,7 @@ interface PurchaseFailParams$2 extends FacebookPixelCommonEventParams, FacebookP
1835
1835
  * Event allowed parameters.
1836
1836
  *
1837
1837
  * @interface PurchaseFailParams
1838
- * @since 0.5.14
1838
+ * @since 0.1.0
1839
1839
  * @extends SegmentCommonEventParams
1840
1840
  * @extends SegmentCustomEventParams
1841
1841
  * @extends PurchaseFailCommonParams
@@ -1879,7 +1879,7 @@ declare type PurchaseFailParams = PurchaseFailParams$3 & PurchaseFailParams$2 &
1879
1879
  * Event allowed parameters.
1880
1880
  *
1881
1881
  * @interface PurchaseAttemptParams
1882
- * @since 0.5.14
1882
+ * @since 0.1.0
1883
1883
  * @extends GoogleAnalyticsCommonEventParams
1884
1884
  * @extends GoogleAnalyticsCustomEventParams
1885
1885
  * @extends PurchaseAttemptCommonParams
@@ -1891,7 +1891,7 @@ interface PurchaseAttemptParams$3 extends GoogleAnalyticsCommonEventParams, Goog
1891
1891
  * Event allowed parameters.
1892
1892
  *
1893
1893
  * @interface PurchaseAttemptParams
1894
- * @since 0.5.14
1894
+ * @since 0.1.0
1895
1895
  * @extends FacebookPixelCommonEventParams
1896
1896
  * @extends FacebookPixelCustomEventParams
1897
1897
  * @extends PurchaseAttemptCommonParams
@@ -1905,7 +1905,7 @@ interface PurchaseAttemptParams$2 extends FacebookPixelCommonEventParams, Facebo
1905
1905
  * Event allowed parameters.
1906
1906
  *
1907
1907
  * @interface PurchaseAttemptParams
1908
- * @since 0.5.14
1908
+ * @since 0.1.0
1909
1909
  * @extends SegmentCommonEventParams
1910
1910
  * @extends SegmentCustomEventParams
1911
1911
  * @extends PurchaseAttemptCommonParams
@@ -1917,7 +1917,7 @@ interface PurchaseAttemptParams$1 extends SegmentCommonEventParams, SegmentCusto
1917
1917
  * purchaseAttempt event interface.
1918
1918
  *
1919
1919
  * @interface PurchaseAttemptCommonParams
1920
- * @since 0.5.14
1920
+ * @since 0.1.0
1921
1921
  * @property {ShoppingCart} shoppingCart The order shopping cart
1922
1922
  * @property {PaymentType} selectedPaymentType The selected payment type (e.g. Cash, Credit, Debit)
1923
1923
  * @property {Workflow} fulfillmentType The workflow name (e.g. Delivery)
@@ -1937,7 +1937,7 @@ interface PurchaseAttemptCommonParams {
1937
1937
  * purchaseAttempt event params.
1938
1938
  *
1939
1939
  * @typedef PurchaseAttemptParams
1940
- * @since 0.5.14
1940
+ * @since 0.1.0
1941
1941
  */
1942
1942
  declare type PurchaseAttemptParams = PurchaseAttemptParams$3 & PurchaseAttemptParams$2 & PurchaseAttemptParams$1;
1943
1943
 
@@ -1945,7 +1945,7 @@ declare type PurchaseAttemptParams = PurchaseAttemptParams$3 & PurchaseAttemptPa
1945
1945
  * Event allowed parameters.
1946
1946
  *
1947
1947
  * @interface ViewProductDetailsParams
1948
- * @since 0.5.14
1948
+ * @since 0.1.0
1949
1949
  * @extends GoogleAnalyticsCommonEventParams
1950
1950
  * @extends GoogleAnalyticsCustomEventParams
1951
1951
  * @extends ViewProductDetailsCommonParams
@@ -1957,7 +1957,7 @@ interface ViewProductDetailsParams$3 extends GoogleAnalyticsCommonEventParams, G
1957
1957
  * Event allowed parameters.
1958
1958
  *
1959
1959
  * @interface ViewProductDetailsParams
1960
- * @since 0.5.14
1960
+ * @since 0.1.0
1961
1961
  * @extends FacebookPixelCommonEventParams
1962
1962
  * @extends FacebookPixelCustomEventParams
1963
1963
  * @property {string} contentType The type of products being sold (e.g. food)
@@ -1970,7 +1970,7 @@ interface ViewProductDetailsParams$2 extends FacebookPixelCommonEventParams, Fac
1970
1970
  * Event allowed parameters.
1971
1971
  *
1972
1972
  * @interface ViewProductDetailsParams
1973
- * @since 0.5.14
1973
+ * @since 0.1.0
1974
1974
  * @extends SegmentCommonEventParams
1975
1975
  * @extends SegmentCustomEventParams
1976
1976
  */
@@ -1981,7 +1981,7 @@ interface ViewProductDetailsParams$1 extends SegmentCommonEventParams, SegmentCu
1981
1981
  * viewProductDetails event interface
1982
1982
  *
1983
1983
  * @interface ViewProductDetailsCommonParams
1984
- * @since 0.5.14
1984
+ * @since 0.1.0
1985
1985
  * @property {Product} product the product that the details are being viewed
1986
1986
  * @property {string} categoryId if the user came from a category list, the category id
1987
1987
  */
@@ -1993,7 +1993,7 @@ interface ViewProductDetailsCommonParams {
1993
1993
  * viewProductDetails event params.
1994
1994
  *
1995
1995
  * @typedef ViewProductDetailsParams
1996
- * @since 0.5.14
1996
+ * @since 0.1.0
1997
1997
  */
1998
1998
  declare type ViewProductDetailsParams = ViewProductDetailsParams$3 & ViewProductDetailsParams$2 & ViewProductDetailsParams$1;
1999
1999
 
@@ -2001,7 +2001,7 @@ declare type ViewProductDetailsParams = ViewProductDetailsParams$3 & ViewProduct
2001
2001
  * Event allowed parameters.
2002
2002
  *
2003
2003
  * @interface SortProductsParams
2004
- * @since 0.5.14
2004
+ * @since 0.1.0
2005
2005
  * @extends GoogleAnalyticsCommonEventParams
2006
2006
  * @extends GoogleAnalyticsCustomEventParams
2007
2007
  * @extends SortProductsCommonParams
@@ -2013,7 +2013,7 @@ interface SortProductsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
2013
2013
  * Event allowed parameters.
2014
2014
  *
2015
2015
  * @interface SortProductsParams
2016
- * @since 0.5.14
2016
+ * @since 0.1.0
2017
2017
  * @extends FacebookPixelCommonEventParams
2018
2018
  * @extends FacebookPixelCustomEventParams
2019
2019
  * @extends SortProductsCommonParams
@@ -2027,7 +2027,7 @@ interface SortProductsParams$2 extends FacebookPixelCommonEventParams, FacebookP
2027
2027
  * Event allowed parameters.
2028
2028
  *
2029
2029
  * @interface SortProductsParams
2030
- * @since 0.5.14
2030
+ * @since 0.1.0
2031
2031
  * @extends SegmentCommonEventParams
2032
2032
  * @extends SegmentCustomEventParams
2033
2033
  * @extends SortProductsCommonParams
@@ -2039,7 +2039,7 @@ interface SortProductsParams$1 extends SegmentCommonEventParams, SegmentCustomEv
2039
2039
  * sortProducts event interface
2040
2040
  *
2041
2041
  * @interface SortProductsCommonParams
2042
- * @since 0.5.14
2042
+ * @since 0.1.0
2043
2043
  * @property {string} list the name of the list of products to sort
2044
2044
  * @property {string} sortBy sort attribute by (e.g. alphabetical)
2045
2045
  * @property {string} sortMethod method used to sort (e.g. asc)
@@ -2055,7 +2055,7 @@ interface SortProductsCommonParams {
2055
2055
  * sortProducts event params.
2056
2056
  *
2057
2057
  * @typedef SortProductsParams
2058
- * @since 0.5.14
2058
+ * @since 0.1.0
2059
2059
  */
2060
2060
  declare type SortProductsParams = SortProductsParams$3 & SortProductsParams$2 & SortProductsParams$1;
2061
2061
 
@@ -2063,7 +2063,7 @@ declare type SortProductsParams = SortProductsParams$3 & SortProductsParams$2 &
2063
2063
  * Event allowed parameters.
2064
2064
  *
2065
2065
  * @interface SelectProductParams
2066
- * @since 0.5.14
2066
+ * @since 0.1.0
2067
2067
  * @extends GoogleAnalyticsCommonEventParams
2068
2068
  * @extends GoogleAnalyticsCustomEventParams
2069
2069
  * @extends SelectProductCommonParams
@@ -2075,7 +2075,7 @@ interface SelectProductParams$3 extends GoogleAnalyticsCommonEventParams, Google
2075
2075
  * Event allowed parameters.
2076
2076
  *
2077
2077
  * @interface SelectProductParams
2078
- * @since 0.5.14
2078
+ * @since 0.1.0
2079
2079
  * @extends FacebookPixelCommonEventParams
2080
2080
  * @extends FacebookPixelCustomEventParams
2081
2081
  * @property {string} contentType The type of products being sold (e.g. food)
@@ -2088,7 +2088,7 @@ interface SelectProductParams$2 extends FacebookPixelCommonEventParams, Facebook
2088
2088
  * Event allowed parameters.
2089
2089
  *
2090
2090
  * @interface SelectProductParams
2091
- * @since 0.5.14
2091
+ * @since 0.1.0
2092
2092
  * @extends SegmentCommonEventParams
2093
2093
  * @extends SegmentCustomEventParams
2094
2094
  */
@@ -2099,7 +2099,7 @@ interface SelectProductParams$1 extends SegmentCommonEventParams, SegmentCustomE
2099
2099
  * selectProduct event interface
2100
2100
  *
2101
2101
  * @interface SelectProductCommonParams
2102
- * @since 0.5.14
2102
+ * @since 0.1.0
2103
2103
  * @property {Product} query the selected product
2104
2104
  * @property {string} list the name of the list where the product is
2105
2105
  * @property {number} position the position in a list where the product is
@@ -2113,7 +2113,7 @@ interface SelectProductCommonParams {
2113
2113
  * selectProduct event params.
2114
2114
  *
2115
2115
  * @typedef SelectProductParams
2116
- * @since 0.5.14
2116
+ * @since 0.1.0
2117
2117
  */
2118
2118
  declare type SelectProductParams = SelectProductParams$3 & SelectProductParams$2 & SelectProductParams$1;
2119
2119
 
@@ -2121,7 +2121,7 @@ declare type SelectProductParams = SelectProductParams$3 & SelectProductParams$2
2121
2121
  * Event allowed parameters.
2122
2122
  *
2123
2123
  * @interface SearchProductNotFoundParams
2124
- * @since 0.5.14
2124
+ * @since 0.1.0
2125
2125
  * @extends GoogleAnalyticsCommonEventParams
2126
2126
  * @extends GoogleAnalyticsCustomEventParams
2127
2127
  * @extends SearchProductNotFoundCommonParams
@@ -2133,7 +2133,7 @@ interface SearchProductNotFoundParams$3 extends GoogleAnalyticsCommonEventParams
2133
2133
  * Event allowed parameters.
2134
2134
  *
2135
2135
  * @interface SearchProductNotFoundParams
2136
- * @since 0.5.14
2136
+ * @since 0.1.0
2137
2137
  * @extends FacebookPixelCommonEventParams
2138
2138
  * @extends FacebookPixelCustomEventParams
2139
2139
  * @extends SearchProductNotFoundCommonParams
@@ -2147,7 +2147,7 @@ interface SearchProductNotFoundParams$2 extends FacebookPixelCommonEventParams,
2147
2147
  * Event allowed parameters.
2148
2148
  *
2149
2149
  * @interface SearchProductNotFoundParams
2150
- * @since 0.5.14
2150
+ * @since 0.1.0
2151
2151
  * @extends SegmentCommonEventParams
2152
2152
  * @extends SegmentCustomEventParams
2153
2153
  * @extends SearchProductNotFoundCommonParams
@@ -2159,7 +2159,7 @@ interface SearchProductNotFoundParams$1 extends SegmentCommonEventParams, Segmen
2159
2159
  * searchProductNotFound event interface
2160
2160
  *
2161
2161
  * @interface SearchProductNotFoundCommonParams
2162
- * @since 0.5.14
2162
+ * @since 0.1.0
2163
2163
  * @property {string} query the searched text
2164
2164
  */
2165
2165
  interface SearchProductNotFoundCommonParams {
@@ -2169,7 +2169,7 @@ interface SearchProductNotFoundCommonParams {
2169
2169
  * searchProductNotFound event params.
2170
2170
  *
2171
2171
  * @typedef SearchProductNotFoundParams
2172
- * @since 0.5.14
2172
+ * @since 0.1.0
2173
2173
  */
2174
2174
  declare type SearchProductNotFoundParams = SearchProductNotFoundParams$3 & SearchProductNotFoundParams$2 & SearchProductNotFoundParams$1;
2175
2175
 
@@ -2177,7 +2177,7 @@ declare type SearchProductNotFoundParams = SearchProductNotFoundParams$3 & Searc
2177
2177
  * Event allowed parameters.
2178
2178
  *
2179
2179
  * @interface SearchProductAttemptParams
2180
- * @since 0.5.14
2180
+ * @since 0.1.0
2181
2181
  * @extends GoogleAnalyticsCommonEventParams
2182
2182
  * @extends GoogleAnalyticsCustomEventParams
2183
2183
  * @extends SearchProductAttemptCommonParams
@@ -2189,7 +2189,7 @@ interface SearchProductAttemptParams$3 extends GoogleAnalyticsCommonEventParams,
2189
2189
  * Event allowed parameters.
2190
2190
  *
2191
2191
  * @interface SearchProductAttemptParams
2192
- * @since 0.5.14
2192
+ * @since 0.1.0
2193
2193
  * @extends FacebookPixelCommonEventParams
2194
2194
  * @extends FacebookPixelCustomEventParams
2195
2195
  * @extends SearchProductAttemptCommonParams
@@ -2203,7 +2203,7 @@ interface SearchProductAttemptParams$2 extends FacebookPixelCommonEventParams, F
2203
2203
  * Event allowed parameters.
2204
2204
  *
2205
2205
  * @interface SearchProductAttemptParams
2206
- * @since 0.5.14
2206
+ * @since 0.1.0
2207
2207
  * @extends SegmentCommonEventParams
2208
2208
  * @extends SegmentCustomEventParams
2209
2209
  * @extends SearchProductAttemptCommonParams
@@ -2215,7 +2215,7 @@ interface SearchProductAttemptParams$1 extends SegmentCommonEventParams, Segment
2215
2215
  * searchProductAttempt event interface
2216
2216
  *
2217
2217
  * @interface SearchProductAttemptCommonParams
2218
- * @since 0.5.14
2218
+ * @since 0.1.0
2219
2219
  * @property {string} query the searched text
2220
2220
  */
2221
2221
  interface SearchProductAttemptCommonParams {
@@ -2225,7 +2225,7 @@ interface SearchProductAttemptCommonParams {
2225
2225
  * searchProductAttempt event params.
2226
2226
  *
2227
2227
  * @typedef SearchProductAttemptParams
2228
- * @since 0.5.14
2228
+ * @since 0.1.0
2229
2229
  */
2230
2230
  declare type SearchProductAttemptParams = SearchProductAttemptParams$3 & SearchProductAttemptParams$2 & SearchProductAttemptParams$1;
2231
2231
 
@@ -2233,7 +2233,7 @@ declare type SearchProductAttemptParams = SearchProductAttemptParams$3 & SearchP
2233
2233
  * Event allowed parameters.
2234
2234
  *
2235
2235
  * @interface SearchProductSuccessParams
2236
- * @since 0.5.14
2236
+ * @since 0.1.0
2237
2237
  * @extends GoogleAnalyticsCommonEventParams
2238
2238
  * @extends GoogleAnalyticsCustomEventParams
2239
2239
  * @extends SearchProductSuccessCommonParams
@@ -2245,7 +2245,7 @@ interface SearchProductSuccessParams$3 extends GoogleAnalyticsCommonEventParams,
2245
2245
  * Event allowed parameters.
2246
2246
  *
2247
2247
  * @interface SearchProductSuccessParams
2248
- * @since 0.5.14
2248
+ * @since 0.1.0
2249
2249
  * @extends FacebookPixelCommonEventParams
2250
2250
  * @extends FacebookPixelCustomEventParams
2251
2251
  * @extends SearchProductSuccessCommonParams
@@ -2259,7 +2259,7 @@ interface SearchProductSuccessParams$2 extends FacebookPixelCommonEventParams, F
2259
2259
  * Event allowed parameters.
2260
2260
  *
2261
2261
  * @interface SearchProductSuccessParams
2262
- * @since 0.5.14
2262
+ * @since 0.1.0
2263
2263
  * @extends SegmentCommonEventParams
2264
2264
  * @extends SegmentCustomEventParams
2265
2265
  * @extends SearchProductSuccessCommonParams
@@ -2271,7 +2271,7 @@ interface SearchProductSuccessParams$1 extends SegmentCommonEventParams, Segment
2271
2271
  * searchProductSuccess event interface
2272
2272
  *
2273
2273
  * @interface SearchProductSuccessCommonParams
2274
- * @since 0.5.14
2274
+ * @since 0.1.0
2275
2275
  * @property {string} query the searched text
2276
2276
  */
2277
2277
  interface SearchProductSuccessCommonParams {
@@ -2281,7 +2281,7 @@ interface SearchProductSuccessCommonParams {
2281
2281
  * searchProductSuccess event params.
2282
2282
  *
2283
2283
  * @typedef SearchProductSuccessParams
2284
- * @since 0.5.14
2284
+ * @since 0.1.0
2285
2285
  */
2286
2286
  declare type SearchProductSuccessParams = SearchProductSuccessParams$3 & SearchProductSuccessParams$2 & SearchProductSuccessParams$1;
2287
2287
 
@@ -2289,7 +2289,7 @@ declare type SearchProductSuccessParams = SearchProductSuccessParams$3 & SearchP
2289
2289
  * Event allowed parameters.
2290
2290
  *
2291
2291
  * @interface ProductImpressionParams
2292
- * @since 0.5.14
2292
+ * @since 0.1.0
2293
2293
  * @extends GoogleAnalyticsCommonEventParams
2294
2294
  * @extends GoogleAnalyticsCustomEventParams
2295
2295
  * @extends ProductImpressionCommonParams
@@ -2301,7 +2301,7 @@ interface ProductImpressionParams$3 extends GoogleAnalyticsCommonEventParams, Go
2301
2301
  * Event allowed parameters.
2302
2302
  *
2303
2303
  * @interface ProductImpressionParams
2304
- * @since 0.5.14
2304
+ * @since 0.1.0
2305
2305
  * @extends FacebookPixelCommonEventParams
2306
2306
  * @extends FacebookPixelCustomEventParams
2307
2307
  * @property {string} contentType The type of product the user had an impression on (e.g. food)
@@ -2314,7 +2314,7 @@ interface ProductImpressionParams$2 extends FacebookPixelCommonEventParams, Face
2314
2314
  * Event allowed parameters.
2315
2315
  *
2316
2316
  * @interface ProductImpressionParams
2317
- * @since 0.5.14
2317
+ * @since 0.1.0
2318
2318
  * @extends SegmentCommonEventParams
2319
2319
  * @extends SegmentCustomEventParams
2320
2320
  */
@@ -2325,7 +2325,7 @@ interface ProductImpressionParams$1 extends SegmentCommonEventParams, SegmentCus
2325
2325
  * productImpression event interface
2326
2326
  *
2327
2327
  * @interface ProductImpressionCommonParams
2328
- * @since 0.5.14
2328
+ * @since 0.1.0
2329
2329
  * @property {Product} product the product a user had an impression on
2330
2330
  * @property {string} list the name of the list where the product is
2331
2331
  * @property {number} position the position in a list where the product is
@@ -2341,7 +2341,7 @@ interface ProductImpressionCommonParams {
2341
2341
  * productImpression event params.
2342
2342
  *
2343
2343
  * @typedef ProductImpressionParams
2344
- * @since 0.5.14
2344
+ * @since 0.1.0
2345
2345
  */
2346
2346
  declare type ProductImpressionParams = ProductImpressionParams$3 & ProductImpressionParams$2 & ProductImpressionParams$1;
2347
2347
 
@@ -2349,7 +2349,7 @@ declare type ProductImpressionParams = ProductImpressionParams$3 & ProductImpres
2349
2349
  * Event allowed parameters.
2350
2350
  *
2351
2351
  * @interface FilterProductsParams
2352
- * @since 0.5.14
2352
+ * @since 0.1.0
2353
2353
  * @extends GoogleAnalyticsCommonEventParams
2354
2354
  * @extends GoogleAnalyticsCustomEventParams
2355
2355
  * @extends FilterProductsCommonParams
@@ -2361,7 +2361,7 @@ interface FilterProductsParams$3 extends GoogleAnalyticsCommonEventParams, Googl
2361
2361
  * Event allowed parameters.
2362
2362
  *
2363
2363
  * @interface FilterProductsParams
2364
- * @since 0.5.14
2364
+ * @since 0.1.0
2365
2365
  * @extends FacebookPixelCommonEventParams
2366
2366
  * @extends FacebookPixelCustomEventParams
2367
2367
  * @extends FilterProductsCommonParams
@@ -2375,7 +2375,7 @@ interface FilterProductsParams$2 extends FacebookPixelCommonEventParams, Faceboo
2375
2375
  * Event allowed parameters.
2376
2376
  *
2377
2377
  * @interface FilterProductsParams
2378
- * @since 0.5.14
2378
+ * @since 0.1.0
2379
2379
  * @extends SegmentCommonEventParams
2380
2380
  * @extends SegmentCustomEventParams
2381
2381
  * @extends FilterProductsCommonParams
@@ -2387,7 +2387,7 @@ interface FilterProductsParams$1 extends SegmentCommonEventParams, SegmentCustom
2387
2387
  * filterProducts event interface
2388
2388
  *
2389
2389
  * @interface FilterProductsCommonParams
2390
- * @since 0.5.14
2390
+ * @since 0.1.0
2391
2391
  * @property {string} list the name of the list of products to filter
2392
2392
  * @property {string} filterBy key:value list of filters e.g. ["brand:Artisn"]
2393
2393
  * @property {string} categoryId if the list is an artisn category, the category id
@@ -2401,7 +2401,7 @@ interface FilterProductsCommonParams {
2401
2401
  * filterProducts event params.
2402
2402
  *
2403
2403
  * @typedef FilterProductsParams
2404
- * @since 0.5.14
2404
+ * @since 0.1.0
2405
2405
  */
2406
2406
  declare type FilterProductsParams = FilterProductsParams$3 & FilterProductsParams$2 & FilterProductsParams$1;
2407
2407
 
@@ -2409,7 +2409,7 @@ declare type FilterProductsParams = FilterProductsParams$3 & FilterProductsParam
2409
2409
  * Event allowed parameters.
2410
2410
  *
2411
2411
  * @interface CustomizeProductParams
2412
- * @since 0.5.14
2412
+ * @since 0.1.0
2413
2413
  * @extends GoogleAnalyticsCommonEventParams
2414
2414
  * @extends GoogleAnalyticsCustomEventParams
2415
2415
  * @extends CustomizeProductCommonParams
@@ -2421,7 +2421,7 @@ interface CustomizeProductParams$3 extends GoogleAnalyticsCommonEventParams, Goo
2421
2421
  * Event allowed parameters.
2422
2422
  *
2423
2423
  * @interface CustomizeProductParams
2424
- * @since 0.5.14
2424
+ * @since 0.1.0
2425
2425
  * @extends FacebookPixelCommonEventParams
2426
2426
  * @extends FacebookPixelCustomEventParams
2427
2427
  * @property {string} contentType The type of products being sold (e.g. food)
@@ -2434,7 +2434,7 @@ interface CustomizeProductParams$2 extends FacebookPixelCommonEventParams, Faceb
2434
2434
  * Event allowed parameters.
2435
2435
  *
2436
2436
  * @interface CustomizeProductParams
2437
- * @since 0.5.14
2437
+ * @since 0.1.0
2438
2438
  * @extends SegmentCommonEventParams
2439
2439
  * @extends SegmentCustomEventParams
2440
2440
  */
@@ -2445,7 +2445,7 @@ interface CustomizeProductParams$1 extends SegmentCommonEventParams, SegmentCust
2445
2445
  * customizeProduct event interface
2446
2446
  *
2447
2447
  * @interface CustomizeProductCommonParams
2448
- * @since 0.5.14
2448
+ * @since 0.1.0
2449
2449
  * @property {CartProduct} product the customized product
2450
2450
  */
2451
2451
  interface CustomizeProductCommonParams {
@@ -2455,7 +2455,7 @@ interface CustomizeProductCommonParams {
2455
2455
  * customizeProduct event params.
2456
2456
  *
2457
2457
  * @typedef CustomizeProductParams
2458
- * @since 0.5.14
2458
+ * @since 0.1.0
2459
2459
  */
2460
2460
  declare type CustomizeProductParams = CustomizeProductParams$3 & CustomizeProductParams$2 & CustomizeProductParams$1;
2461
2461
 
@@ -2463,7 +2463,7 @@ declare type CustomizeProductParams = CustomizeProductParams$3 & CustomizeProduc
2463
2463
  * Event allowed parameters.
2464
2464
  *
2465
2465
  * @interface SetPaymentInfoParams
2466
- * @since 0.5.14
2466
+ * @since 0.1.0
2467
2467
  * @extends GoogleAnalyticsCommonEventParams
2468
2468
  * @extends GoogleAnalyticsCustomEventParams
2469
2469
  * @extends SetPaymentInfoCommonParams
@@ -2475,7 +2475,7 @@ interface SetPaymentInfoParams$3 extends GoogleAnalyticsCommonEventParams, Googl
2475
2475
  * Event allowed parameters.
2476
2476
  *
2477
2477
  * @interface SetPaymentInfoParams
2478
- * @since 0.5.14
2478
+ * @since 0.1.0
2479
2479
  * @extends FacebookPixelCommonEventParams
2480
2480
  * @extends FacebookPixelCustomEventParams
2481
2481
  * @extends SetPaymentInfoCommonParams
@@ -2487,7 +2487,7 @@ interface SetPaymentInfoParams$2 extends FacebookPixelCommonEventParams, Faceboo
2487
2487
  * Event allowed parameters.
2488
2488
  *
2489
2489
  * @interface SetPaymentInfoParams
2490
- * @since 0.5.14
2490
+ * @since 0.1.0
2491
2491
  * @extends SegmentCommonEventParams
2492
2492
  * @extends SegmentCustomEventParams
2493
2493
  * @extends SetPaymentInfoCommonParams
@@ -2499,7 +2499,7 @@ interface SetPaymentInfoParams$1 extends SegmentCommonEventParams, SegmentCustom
2499
2499
  * setPaymentInfo event interface
2500
2500
  *
2501
2501
  * @interface SetPaymentInfoCommonParams
2502
- * @since 0.5.14
2502
+ * @since 0.1.0
2503
2503
  * @property {number} orderTotal The total cost of the order
2504
2504
  * @property {PaymentType} paymentType The new set payment type (e.g. Cash)
2505
2505
  * @property {string} cardType If paying with card, the card provider (e.g. visa)
@@ -2513,7 +2513,7 @@ interface SetPaymentInfoCommonParams {
2513
2513
  * setPaymentInfo event params.
2514
2514
  *
2515
2515
  * @typedef SetPaymentInfoParams
2516
- * @since 0.5.14
2516
+ * @since 0.1.0
2517
2517
  */
2518
2518
  declare type SetPaymentInfoParams = SetPaymentInfoParams$3 & SetPaymentInfoParams$2 & SetPaymentInfoParams$1;
2519
2519
 
@@ -2521,7 +2521,7 @@ declare type SetPaymentInfoParams = SetPaymentInfoParams$3 & SetPaymentInfoParam
2521
2521
  * Event allowed parameters.
2522
2522
  *
2523
2523
  * @interface SelectPaymentTypeParams
2524
- * @since 0.5.14
2524
+ * @since 0.1.0
2525
2525
  * @extends GoogleAnalyticsCommonEventParams
2526
2526
  * @extends GoogleAnalyticsCustomEventParams
2527
2527
  * @extends SelectPaymentTypeCommonParams
@@ -2533,7 +2533,7 @@ interface SelectPaymentTypeParams$3 extends GoogleAnalyticsCommonEventParams, Go
2533
2533
  * Event allowed parameters.
2534
2534
  *
2535
2535
  * @interface SelectPaymentTypeParams
2536
- * @since 0.5.14
2536
+ * @since 0.1.0
2537
2537
  * @extends FacebookPixelCommonEventParams
2538
2538
  * @extends FacebookPixelCustomEventParams
2539
2539
  * @extends SelectPaymentTypeCommonParams
@@ -2545,7 +2545,7 @@ interface SelectPaymentTypeParams$2 extends FacebookPixelCommonEventParams, Face
2545
2545
  * Event allowed parameters.
2546
2546
  *
2547
2547
  * @interface SelectPaymentTypeParams
2548
- * @since 0.5.14
2548
+ * @since 0.1.0
2549
2549
  * @extends SegmentCommonEventParams
2550
2550
  * @extends SegmentCustomEventParams
2551
2551
  * @extends SelectPaymentTypeCommonParams
@@ -2557,7 +2557,7 @@ interface SelectPaymentTypeParams$1 extends SegmentCommonEventParams, SegmentCus
2557
2557
  * selectPaymentType event interface
2558
2558
  *
2559
2559
  * @interface SelectPaymentTypeCommonParams
2560
- * @since 0.5.14
2560
+ * @since 0.1.0
2561
2561
  * @property {PaymentType} paymentType The new set payment type (e.g. Cash)
2562
2562
  * @property {number} orderTotal The total cost of the order
2563
2563
  */
@@ -2569,7 +2569,7 @@ interface SelectPaymentTypeCommonParams {
2569
2569
  * selectPaymentType event params.
2570
2570
  *
2571
2571
  * @typedef SelectPaymentTypeParams
2572
- * @since 0.5.14
2572
+ * @since 0.1.0
2573
2573
  */
2574
2574
  declare type SelectPaymentTypeParams = SelectPaymentTypeParams$3 & SelectPaymentTypeParams$2 & SelectPaymentTypeParams$1;
2575
2575
 
@@ -2577,7 +2577,7 @@ declare type SelectPaymentTypeParams = SelectPaymentTypeParams$3 & SelectPayment
2577
2577
  * Event allowed parameters.
2578
2578
  *
2579
2579
  * @interface ChangePaymentTypeParams
2580
- * @since 0.5.14
2580
+ * @since 0.1.0
2581
2581
  * @extends GoogleAnalyticsCommonEventParams
2582
2582
  * @extends GoogleAnalyticsCustomEventParams
2583
2583
  * @extends ChangePaymentTypeCommonParams
@@ -2589,7 +2589,7 @@ interface ChangePaymentTypeParams$3 extends GoogleAnalyticsCommonEventParams, Go
2589
2589
  * Event allowed parameters.
2590
2590
  *
2591
2591
  * @interface ChangePaymentTypeParams
2592
- * @since 0.5.14
2592
+ * @since 0.1.0
2593
2593
  * @extends FacebookPixelCommonEventParams
2594
2594
  * @extends FacebookPixelCustomEventParams
2595
2595
  * @extends ChangePaymentTypeCommonParams
@@ -2601,7 +2601,7 @@ interface ChangePaymentTypeParams$2 extends FacebookPixelCommonEventParams, Face
2601
2601
  * Event allowed parameters.
2602
2602
  *
2603
2603
  * @interface ChangePaymentTypeParams
2604
- * @since 0.5.14
2604
+ * @since 0.1.0
2605
2605
  * @extends SegmentCommonEventParams
2606
2606
  * @extends SegmentCustomEventParams
2607
2607
  * @extends ChangePaymentTypeCommonParams
@@ -2613,7 +2613,7 @@ interface ChangePaymentTypeParams$1 extends SegmentCommonEventParams, SegmentCus
2613
2613
  * changePaymentType event interface
2614
2614
  *
2615
2615
  * @interface ChangePaymentTypeCommonParams
2616
- * @since 0.5.14
2616
+ * @since 0.1.0
2617
2617
  * @property {PaymentType} previousPaymentType The previously set payment type
2618
2618
  * @property {string} previousCardType If was paying with card, the previously set card provider (e.g. visa)
2619
2619
  * @property {PaymentType} nextPaymentType The new set payment type
@@ -2631,7 +2631,7 @@ interface ChangePaymentTypeCommonParams {
2631
2631
  * changePaymentType event params.
2632
2632
  *
2633
2633
  * @typedef ChangePaymentTypeParams
2634
- * @since 0.5.14
2634
+ * @since 0.1.0
2635
2635
  */
2636
2636
  declare type ChangePaymentTypeParams = ChangePaymentTypeParams$3 & ChangePaymentTypeParams$2 & ChangePaymentTypeParams$1;
2637
2637
 
@@ -2639,7 +2639,7 @@ declare type ChangePaymentTypeParams = ChangePaymentTypeParams$3 & ChangePayment
2639
2639
  * Event allowed parameters.
2640
2640
  *
2641
2641
  * @interface SearchPageContentParams
2642
- * @since 0.5.14
2642
+ * @since 0.1.0
2643
2643
  * @extends GoogleAnalyticsCommonEventParams
2644
2644
  * @extends GoogleAnalyticsCustomEventParams
2645
2645
  * @extends SearchPageContentCommonParams
@@ -2651,7 +2651,7 @@ interface SearchPageContentParams$3 extends GoogleAnalyticsCommonEventParams, Go
2651
2651
  * Event allowed parameters.
2652
2652
  *
2653
2653
  * @interface SearchPageContentParams
2654
- * @since 0.5.14
2654
+ * @since 0.1.0
2655
2655
  * @extends FacebookPixelCommonEventParams
2656
2656
  * @extends FacebookPixelCustomEventParams
2657
2657
  * @extends SearchPageContentCommonParams
@@ -2665,7 +2665,7 @@ interface SearchPageContentParams$2 extends FacebookPixelCommonEventParams, Face
2665
2665
  * Event allowed parameters.
2666
2666
  *
2667
2667
  * @interface SearchPageContentParams
2668
- * @since 0.5.14
2668
+ * @since 0.1.0
2669
2669
  * @extends SegmentCommonEventParams
2670
2670
  * @extends SegmentCustomEventParams
2671
2671
  * @extends SearchPageContentCommonParams
@@ -2677,7 +2677,7 @@ interface SearchPageContentParams$1 extends SegmentCommonEventParams, SegmentCus
2677
2677
  * searchPageContent event interface
2678
2678
  *
2679
2679
  * @interface SearchPageContentCommonParams
2680
- * @since 0.5.14
2680
+ * @since 0.1.0
2681
2681
  * @property {string} query The searched text
2682
2682
  */
2683
2683
  interface SearchPageContentCommonParams {
@@ -2687,14 +2687,14 @@ interface SearchPageContentCommonParams {
2687
2687
  * searchPageContent event params.
2688
2688
  *
2689
2689
  * @typedef SearchPageContentParams
2690
- * @since 0.5.14
2690
+ * @since 0.1.0
2691
2691
  */
2692
2692
  declare type SearchPageContentParams = SearchPageContentParams$3 & SearchPageContentParams$2 & SearchPageContentParams$1;
2693
2693
 
2694
2694
  /**
2695
2695
  * screenView event interface
2696
2696
  *
2697
- * @since 0.5.14
2697
+ * @since 0.1.0
2698
2698
  * @extends GoogleAnalyticsCommonEventParams
2699
2699
  * @extends GoogleAnalyticsCustomEventParams
2700
2700
  * @extends ScreenViewCommonParams
@@ -2706,7 +2706,7 @@ interface ScreenViewParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAna
2706
2706
  * Event allowed parameters.
2707
2707
  *
2708
2708
  * @interface ScreenViewParams
2709
- * @since 0.5.14
2709
+ * @since 0.1.0
2710
2710
  * @extends FacebookPixelCommonEventParams
2711
2711
  * @extends FacebookPixelCustomEventParams
2712
2712
  */
@@ -2716,7 +2716,7 @@ interface ScreenViewParams$2 extends FacebookPixelCommonEventParams, FacebookPix
2716
2716
  /**
2717
2717
  * screenView event interface
2718
2718
  *
2719
- * @since 0.5.14
2719
+ * @since 0.1.0
2720
2720
  * @extends SegmentCommonEventParams
2721
2721
  * @extends SegmentCustomEventParams
2722
2722
  * @extends ScreenViewCommonParams
@@ -2729,7 +2729,7 @@ interface ScreenViewParams$1 extends SegmentCommonEventParams, SegmentCustomEven
2729
2729
  * screenView event interface.
2730
2730
  *
2731
2731
  * @interface ScreenViewCommonParams
2732
- * @since 0.5.14
2732
+ * @since 0.1.0
2733
2733
  * @property {string} screenName Screen name the user is currently viewing
2734
2734
  * @property {string} screenClass Current class associated with the view the user is currently viewing
2735
2735
  */
@@ -2741,7 +2741,7 @@ interface ScreenViewCommonParams {
2741
2741
  * screenView event params.
2742
2742
  *
2743
2743
  * @typedef ScreenViewParams
2744
- * @since 0.5.14
2744
+ * @since 0.1.0
2745
2745
  */
2746
2746
  declare type ScreenViewParams = ScreenViewParams$3 & ScreenViewParams$2 & ScreenViewParams$1;
2747
2747
 
@@ -2749,7 +2749,7 @@ declare type ScreenViewParams = ScreenViewParams$3 & ScreenViewParams$2 & Screen
2749
2749
  * Event allowed parameters.
2750
2750
  *
2751
2751
  * @interface GenerateLeadParams
2752
- * @since 0.5.14
2752
+ * @since 0.1.0
2753
2753
  * @extends GoogleAnalyticsCommonEventParams
2754
2754
  * @extends GoogleAnalyticsCustomEventParams
2755
2755
  * @extends GenerateLeadCommonParams
@@ -2761,7 +2761,7 @@ interface GenerateLeadParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
2761
2761
  * Event allowed parameters.
2762
2762
  *
2763
2763
  * @interface GenerateLeadParams
2764
- * @since 0.5.14
2764
+ * @since 0.1.0
2765
2765
  * @extends FacebookPixelCommonEventParams
2766
2766
  * @extends FacebookPixelCustomEventParams
2767
2767
  * @extends GenerateLeadCommonParams
@@ -2773,7 +2773,7 @@ interface GenerateLeadParams$2 extends FacebookPixelCommonEventParams, FacebookP
2773
2773
  * Event allowed parameters.
2774
2774
  *
2775
2775
  * @interface GenerateLeadParams
2776
- * @since 0.5.14
2776
+ * @since 0.1.0
2777
2777
  * @extends SegmentCommonEventParams
2778
2778
  * @extends SegmentCustomEventParams
2779
2779
  * @extends GenerateLeadCommonParams
@@ -2785,7 +2785,7 @@ interface GenerateLeadParams$1 extends SegmentCommonEventParams, SegmentCustomEv
2785
2785
  * generateLead event interface
2786
2786
  *
2787
2787
  * @interface GenerateLeadCommonParams
2788
- * @since 0.5.14
2788
+ * @since 0.1.0
2789
2789
  */
2790
2790
  interface GenerateLeadCommonParams {
2791
2791
  }
@@ -2793,7 +2793,7 @@ interface GenerateLeadCommonParams {
2793
2793
  * generateLead event params.
2794
2794
  *
2795
2795
  * @typedef GenerateLeadParams
2796
- * @since 0.5.14
2796
+ * @since 0.1.0
2797
2797
  */
2798
2798
  declare type GenerateLeadParams = GenerateLeadParams$3 & GenerateLeadParams$2 & GenerateLeadParams$1;
2799
2799
 
@@ -2801,7 +2801,7 @@ declare type GenerateLeadParams = GenerateLeadParams$3 & GenerateLeadParams$2 &
2801
2801
  * Event allowed parameters.
2802
2802
  *
2803
2803
  * @interface RequestRefundParams
2804
- * @since 0.5.14
2804
+ * @since 0.1.0
2805
2805
  * @extends GoogleAnalyticsCommonEventParams
2806
2806
  * @extends GoogleAnalyticsCustomEventParams
2807
2807
  * @extends RequestRefundCommonParams
@@ -2815,7 +2815,7 @@ interface RequestRefundParams$3 extends GoogleAnalyticsCommonEventParams, Google
2815
2815
  * Event allowed parameters.
2816
2816
  *
2817
2817
  * @interface RequestRefundParams
2818
- * @since 0.5.14
2818
+ * @since 0.1.0
2819
2819
  * @extends FacebookPixelCommonEventParams
2820
2820
  * @extends FacebookPixelCustomEventParams
2821
2821
  * @extends RequestRefundCommonParams
@@ -2827,7 +2827,7 @@ interface RequestRefundParams$2 extends FacebookPixelCommonEventParams, Facebook
2827
2827
  * Event allowed parameters.
2828
2828
  *
2829
2829
  * @interface RequestRefundParams
2830
- * @since 0.5.14
2830
+ * @since 0.1.0
2831
2831
  * @extends SegmentCommonEventParams
2832
2832
  * @extends SegmentCustomEventParams
2833
2833
  * @extends RequestRefundCommonParams
@@ -2841,7 +2841,7 @@ interface RequestRefundParams$1 extends SegmentCommonEventParams, SegmentCustomE
2841
2841
  * requestRefund event interface
2842
2842
  *
2843
2843
  * @interface RequestRefundCommonParams
2844
- * @since 0.5.14
2844
+ * @since 0.1.0
2845
2845
  * @property {string} orderId The orders unique identifier
2846
2846
  * @property {number} orderTotal The total cost of the order
2847
2847
  * @property {string} reason The reason by which the user is requesting a refund of the order
@@ -2855,7 +2855,7 @@ interface RequestRefundCommonParams {
2855
2855
  * requestRefund event params.
2856
2856
  *
2857
2857
  * @typedef RequestRefundParams
2858
- * @since 0.5.14
2858
+ * @since 0.1.0
2859
2859
  */
2860
2860
  declare type RequestRefundParams = RequestRefundParams$3 & RequestRefundParams$2 & RequestRefundParams$1;
2861
2861
 
@@ -2863,7 +2863,7 @@ declare type RequestRefundParams = RequestRefundParams$3 & RequestRefundParams$2
2863
2863
  * Event allowed parameters.
2864
2864
  *
2865
2865
  * @interface RateOrderParams
2866
- * @since 0.5.14
2866
+ * @since 0.1.0
2867
2867
  * @extends GoogleAnalyticsCommonEventParams
2868
2868
  * @extends GoogleAnalyticsCustomEventParams
2869
2869
  * @extends RateOrderCommonParams
@@ -2875,7 +2875,7 @@ interface RateOrderParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnal
2875
2875
  * Event allowed parameters.
2876
2876
  *
2877
2877
  * @interface RateOrderParams
2878
- * @since 0.5.14
2878
+ * @since 0.1.0
2879
2879
  * @extends FacebookPixelCommonEventParams
2880
2880
  * @extends FacebookPixelCustomEventParams
2881
2881
  * @extends RateOrderCommonParams
@@ -2889,7 +2889,7 @@ interface RateOrderParams$2 extends FacebookPixelCommonEventParams, FacebookPixe
2889
2889
  * Event allowed parameters.
2890
2890
  *
2891
2891
  * @interface RateOrderParams
2892
- * @since 0.5.14
2892
+ * @since 0.1.0
2893
2893
  * @extends SegmentCommonEventParams
2894
2894
  * @extends SegmentCustomEventParams
2895
2895
  * @extends RateOrderCommonParams
@@ -2901,7 +2901,7 @@ interface RateOrderParams$1 extends SegmentCommonEventParams, SegmentCustomEvent
2901
2901
  * rateOrder event interface
2902
2902
  *
2903
2903
  * @interface RateOrderCommonParams
2904
- * @since 0.5.14
2904
+ * @since 0.1.0
2905
2905
  * @property {string} orderId The order's unique identifier
2906
2906
  * @property {number} score The score user gave to the order
2907
2907
  * @property {number} minScore The min score the user could give to an order
@@ -2917,7 +2917,7 @@ interface RateOrderCommonParams {
2917
2917
  * rateOrder event params.
2918
2918
  *
2919
2919
  * @typedef RateOrderParams
2920
- * @since 0.5.14
2920
+ * @since 0.1.0
2921
2921
  */
2922
2922
  declare type RateOrderParams = RateOrderParams$3 & RateOrderParams$2 & RateOrderParams$1;
2923
2923
 
@@ -2925,7 +2925,7 @@ declare type RateOrderParams = RateOrderParams$3 & RateOrderParams$2 & RateOrder
2925
2925
  * Event allowed parameters.
2926
2926
  *
2927
2927
  * @interface CancelOrderParams
2928
- * @since 0.5.14
2928
+ * @since 0.1.0
2929
2929
  * @extends GoogleAnalyticsCommonEventParams
2930
2930
  * @extends GoogleAnalyticsCustomEventParams
2931
2931
  * @extends CancelOrderCommonParams
@@ -2937,7 +2937,7 @@ interface CancelOrderParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
2937
2937
  * Event allowed parameters.
2938
2938
  *
2939
2939
  * @interface CancelOrderParams
2940
- * @since 0.5.14
2940
+ * @since 0.1.0
2941
2941
  * @extends FacebookPixelCommonEventParams
2942
2942
  * @extends FacebookPixelCustomEventParams
2943
2943
  * @extends CancelOrderCommonParams
@@ -2949,7 +2949,7 @@ interface CancelOrderParams$2 extends FacebookPixelCommonEventParams, FacebookPi
2949
2949
  * Event allowed parameters.
2950
2950
  *
2951
2951
  * @interface CancelOrderParams
2952
- * @since 0.5.14
2952
+ * @since 0.1.0
2953
2953
  * @extends SegmentCommonEventParams
2954
2954
  * @extends SegmentCustomEventParams
2955
2955
  * @extends CancelOrderCommonParams
@@ -2965,7 +2965,7 @@ interface CancelOrderParams$1 extends SegmentCommonEventParams, SegmentCustomEve
2965
2965
  * cancelOrder event interface
2966
2966
  *
2967
2967
  * @interface CancelOrderCommonParams
2968
- * @since 0.5.14
2968
+ * @since 0.1.0
2969
2969
  * @property {string} orderId The orders unique identifier
2970
2970
  * @property {string} reason The reason by which the user canceled the order
2971
2971
  */
@@ -2977,7 +2977,7 @@ interface CancelOrderCommonParams {
2977
2977
  * cancelOrder event params.
2978
2978
  *
2979
2979
  * @typedef CancelOrderParams
2980
- * @since 0.5.14
2980
+ * @since 0.1.0
2981
2981
  */
2982
2982
  declare type CancelOrderParams = CancelOrderParams$3 & CancelOrderParams$2 & CancelOrderParams$1;
2983
2983
 
@@ -2985,7 +2985,7 @@ declare type CancelOrderParams = CancelOrderParams$3 & CancelOrderParams$2 & Can
2985
2985
  * Event allowed parameters.
2986
2986
  *
2987
2987
  * @interface ViewLoyaltyLevelParams
2988
- * @since 0.5.14
2988
+ * @since 0.1.0
2989
2989
  * @extends GoogleAnalyticsCommonEventParams
2990
2990
  * @extends GoogleAnalyticsCustomEventParams
2991
2991
  * @extends ViewLoyaltyLevelCommonParams
@@ -2999,7 +2999,7 @@ interface ViewLoyaltyLevelParams$3 extends GoogleAnalyticsCommonEventParams, Goo
2999
2999
  * Event allowed parameters.
3000
3000
  *
3001
3001
  * @interface ViewLoyaltyLevelParams
3002
- * @since 0.5.14
3002
+ * @since 0.1.0
3003
3003
  * @extends FacebookPixelCommonEventParams
3004
3004
  * @extends FacebookPixelCustomEventParams
3005
3005
  * @extends ViewLoyaltyLevelCommonParams
@@ -3011,7 +3011,7 @@ interface ViewLoyaltyLevelParams$2 extends FacebookPixelCommonEventParams, Faceb
3011
3011
  * Event allowed parameters.
3012
3012
  *
3013
3013
  * @interface ViewLoyaltyLevelParams
3014
- * @since 0.5.14
3014
+ * @since 0.1.0
3015
3015
  * @extends SegmentCommonEventParams
3016
3016
  * @extends SegmentCustomEventParams
3017
3017
  * @extends ViewLoyaltyLevelCommonParams
@@ -3023,7 +3023,7 @@ interface ViewLoyaltyLevelParams$1 extends SegmentCommonEventParams, SegmentCust
3023
3023
  * viewLoyaltyLevel event interface.
3024
3024
  *
3025
3025
  * @interface ViewLoyaltyLevelCommonParams
3026
- * @since 0.5.14
3026
+ * @since 0.1.0
3027
3027
  * @property {string} level The loyalty level name
3028
3028
  */
3029
3029
  interface ViewLoyaltyLevelCommonParams {
@@ -3033,7 +3033,7 @@ interface ViewLoyaltyLevelCommonParams {
3033
3033
  * viewLoyaltyLevel event params.
3034
3034
  *
3035
3035
  * @typedef ViewLoyaltyLevelParams
3036
- * @since 0.5.14
3036
+ * @since 0.1.0
3037
3037
  */
3038
3038
  declare type ViewLoyaltyLevelParams = ViewLoyaltyLevelParams$3 & ViewLoyaltyLevelParams$2 & ViewLoyaltyLevelParams$1;
3039
3039
 
@@ -3041,7 +3041,7 @@ declare type ViewLoyaltyLevelParams = ViewLoyaltyLevelParams$3 & ViewLoyaltyLeve
3041
3041
  * Event allowed parameters.
3042
3042
  *
3043
3043
  * @interface SpendPointsParams
3044
- * @since 0.5.14
3044
+ * @since 0.1.0
3045
3045
  * @extends GoogleAnalyticsCommonEventParams
3046
3046
  * @extends GoogleAnalyticsCustomEventParams
3047
3047
  * @extends SpendPointsCommonParams
@@ -3057,7 +3057,7 @@ interface SpendPointsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
3057
3057
  * Event allowed parameters.
3058
3058
  *
3059
3059
  * @interface SpendPointsParams
3060
- * @since 0.5.14
3060
+ * @since 0.1.0
3061
3061
  * @extends FacebookPixelCommonEventParams
3062
3062
  * @extends FacebookPixelCustomEventParams
3063
3063
  * @extends SpendPointsCommonParams
@@ -3071,7 +3071,7 @@ interface SpendPointsParams$2 extends FacebookPixelCommonEventParams, FacebookPi
3071
3071
  * Event allowed parameters.
3072
3072
  *
3073
3073
  * @interface SpendPointsParams
3074
- * @since 0.5.14
3074
+ * @since 0.1.0
3075
3075
  * @extends SegmentCommonEventParams
3076
3076
  * @extends SegmentCustomEventParams
3077
3077
  * @extends SpendPointsCommonParams
@@ -3083,7 +3083,7 @@ interface SpendPointsParams$1 extends SegmentCommonEventParams, SegmentCustomEve
3083
3083
  * spendPoints event interface
3084
3084
  *
3085
3085
  * @interface SpendPointsCommonParams
3086
- * @since 0.5.14
3086
+ * @since 0.1.0
3087
3087
  * @property {number} amount The amount of spent points
3088
3088
  */
3089
3089
  interface SpendPointsCommonParams {
@@ -3093,7 +3093,7 @@ interface SpendPointsCommonParams {
3093
3093
  * spendPoints event params.
3094
3094
  *
3095
3095
  * @typedef SpendPointsParams
3096
- * @since 0.5.14
3096
+ * @since 0.1.0
3097
3097
  */
3098
3098
  declare type SpendPointsParams = SpendPointsParams$3 & SpendPointsParams$2 & SpendPointsParams$1;
3099
3099
 
@@ -3101,7 +3101,7 @@ declare type SpendPointsParams = SpendPointsParams$3 & SpendPointsParams$2 & Spe
3101
3101
  * Event allowed parameters.
3102
3102
  *
3103
3103
  * @interface SharePointsParams
3104
- * @since 0.5.14
3104
+ * @since 0.1.0
3105
3105
  * @extends GoogleAnalyticsCommonEventParams
3106
3106
  * @extends GoogleAnalyticsCustomEventParams
3107
3107
  * @extends SharePointsCommonParams
@@ -3117,7 +3117,7 @@ interface SharePointsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
3117
3117
  * Event allowed parameters.
3118
3118
  *
3119
3119
  * @interface SharePointsParams
3120
- * @since 0.5.14
3120
+ * @since 0.1.0
3121
3121
  * @extends FacebookPixelCommonEventParams
3122
3122
  * @extends FacebookPixelCustomEventParams
3123
3123
  * @extends SharePointsCommonParams
@@ -3129,7 +3129,7 @@ interface SharePointsParams$2 extends FacebookPixelCommonEventParams, FacebookPi
3129
3129
  * Event allowed parameters.
3130
3130
  *
3131
3131
  * @interface SharePointsParams
3132
- * @since 0.5.14
3132
+ * @since 0.1.0
3133
3133
  * @extends SegmentCommonEventParams
3134
3134
  * @extends SegmentCustomEventParams
3135
3135
  * @extends SharePointsCommonParams
@@ -3141,7 +3141,7 @@ interface SharePointsParams$1 extends SegmentCommonEventParams, SegmentCustomEve
3141
3141
  * sharePoints event interface.
3142
3142
  *
3143
3143
  * @interface SharePointsCommonParams
3144
- * @since 0.5.14
3144
+ * @since 0.1.0
3145
3145
  * @property {number} amount Amount of points sent
3146
3146
  */
3147
3147
  interface SharePointsCommonParams {
@@ -3151,7 +3151,7 @@ interface SharePointsCommonParams {
3151
3151
  * sharePoints event params.
3152
3152
  *
3153
3153
  * @typedef SharePointsParams
3154
- * @since 0.5.14
3154
+ * @since 0.1.0
3155
3155
  */
3156
3156
  declare type SharePointsParams = SharePointsParams$3 & SharePointsParams$2 & SharePointsParams$1;
3157
3157
 
@@ -3159,7 +3159,7 @@ declare type SharePointsParams = SharePointsParams$3 & SharePointsParams$2 & Sha
3159
3159
  * Event allowed parameters.
3160
3160
  *
3161
3161
  * @interface EarnPointsParams
3162
- * @since 0.5.14
3162
+ * @since 0.1.0
3163
3163
  * @extends GoogleAnalyticsCommonEventParams
3164
3164
  * @extends GoogleAnalyticsCustomEventParams
3165
3165
  * @extends EarnPointsCommonParams
@@ -3175,7 +3175,7 @@ interface EarnPointsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAna
3175
3175
  * Event allowed parameters.
3176
3176
  *
3177
3177
  * @interface EarnPointsParams
3178
- * @since 0.5.14
3178
+ * @since 0.1.0
3179
3179
  * @extends FacebookPixelCommonEventParams
3180
3180
  * @extends FacebookPixelCustomEventParams
3181
3181
  * @extends EarnPointsCommonParams
@@ -3187,7 +3187,7 @@ interface EarnPointsParams$2 extends FacebookPixelCommonEventParams, FacebookPix
3187
3187
  * Event allowed parameters.
3188
3188
  *
3189
3189
  * @interface EarnPointsParams
3190
- * @since 0.5.14
3190
+ * @since 0.1.0
3191
3191
  * @extends SegmentCommonEventParams
3192
3192
  * @extends SegmentCustomEventParams
3193
3193
  * @extends EarnPointsCommonParams
@@ -3199,7 +3199,7 @@ interface EarnPointsParams$1 extends SegmentCommonEventParams, SegmentCustomEven
3199
3199
  * earnPoints event interface.
3200
3200
  *
3201
3201
  * @interface EarnPointsCommonParams
3202
- * @since 0.5.14
3202
+ * @since 0.1.0
3203
3203
  * @property {number} amount The amount of latest earned points
3204
3204
  *
3205
3205
  */
@@ -3210,7 +3210,7 @@ interface EarnPointsCommonParams {
3210
3210
  * earnPoints event params.
3211
3211
  *
3212
3212
  * @typedef EarnPointsParams
3213
- * @since 0.5.14
3213
+ * @since 0.1.0
3214
3214
  */
3215
3215
  declare type EarnPointsParams = EarnPointsParams$3 & EarnPointsParams$2 & EarnPointsParams$1;
3216
3216
 
@@ -3218,7 +3218,7 @@ declare type EarnPointsParams = EarnPointsParams$3 & EarnPointsParams$2 & EarnPo
3218
3218
  * Event allowed parameters.
3219
3219
  *
3220
3220
  * @interface CustomEventParams
3221
- * @since 0.5.14
3221
+ * @since 0.1.0
3222
3222
  * @extends GoogleAnalyticsCommonEventParams
3223
3223
  * @extends GoogleAnalyticsCustomEventParams
3224
3224
  * @extends CustomEventCommonParams
@@ -3230,7 +3230,7 @@ interface CustomEventParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
3230
3230
  * Event allowed parameters.
3231
3231
  *
3232
3232
  * @interface CustomEventParams
3233
- * @since 0.5.14
3233
+ * @since 0.1.0
3234
3234
  * @extends FacebookPixelCommonEventParams
3235
3235
  * @extends FacebookPixelCustomEventParams
3236
3236
  * @extends CustomEventCommonParams
@@ -3242,7 +3242,7 @@ interface CustomEventParams$2 extends FacebookPixelCommonEventParams, FacebookPi
3242
3242
  * Event allowed parameters.
3243
3243
  *
3244
3244
  * @interface CustomEventParams
3245
- * @since 0.5.14
3245
+ * @since 0.1.0
3246
3246
  * @extends SegmentCommonEventParams
3247
3247
  * @extends SegmentCustomEventParams
3248
3248
  * @extends CustomEventCommonParams
@@ -3254,7 +3254,7 @@ interface CustomEventParams$1 extends SegmentCommonEventParams, SegmentCustomEve
3254
3254
  * customEvent event interface
3255
3255
  *
3256
3256
  * @interface CustomEventCommonParams
3257
- * @since 0.5.14
3257
+ * @since 0.1.0
3258
3258
  */
3259
3259
  interface CustomEventCommonParams {
3260
3260
  [key: string]: string | number;
@@ -3263,7 +3263,7 @@ interface CustomEventCommonParams {
3263
3263
  * customEvent event params.
3264
3264
  *
3265
3265
  * @typedef CustomEventParams
3266
- * @since 0.5.14
3266
+ * @since 0.1.0
3267
3267
  */
3268
3268
  declare type CustomEventParams = CustomEventParams$3 & CustomEventParams$2 & CustomEventParams$1;
3269
3269
 
@@ -3271,7 +3271,7 @@ declare type CustomEventParams = CustomEventParams$3 & CustomEventParams$2 & Cus
3271
3271
  * Event allowed parameters.
3272
3272
  *
3273
3273
  * @interface RequestAssistanceParams
3274
- * @since 0.5.14
3274
+ * @since 0.1.0
3275
3275
  * @extends GoogleAnalyticsCommonEventParams
3276
3276
  * @extends GoogleAnalyticsCustomEventParams
3277
3277
  * @extends RequestAssistanceCommonParams
@@ -3283,7 +3283,7 @@ interface RequestAssistanceParams$3 extends GoogleAnalyticsCommonEventParams, Go
3283
3283
  * Event allowed parameters.
3284
3284
  *
3285
3285
  * @interface RequestAssistanceParams
3286
- * @since 0.5.14
3286
+ * @since 0.1.0
3287
3287
  * @extends FacebookPixelCommonEventParams
3288
3288
  * @extends FacebookPixelCustomEventParams
3289
3289
  * @extends RequestAssistanceCommonParams
@@ -3295,7 +3295,7 @@ interface RequestAssistanceParams$2 extends FacebookPixelCommonEventParams, Face
3295
3295
  * Event allowed parameters.
3296
3296
  *
3297
3297
  * @interface RequestAssistanceParams
3298
- * @since 0.5.14
3298
+ * @since 0.1.0
3299
3299
  * @extends SegmentCommonEventParams
3300
3300
  * @extends SegmentCustomEventParams
3301
3301
  * @extends RequestAssistanceCommonParams
@@ -3307,7 +3307,7 @@ interface RequestAssistanceParams$1 extends SegmentCommonEventParams, SegmentCus
3307
3307
  * requestAssistance event interface
3308
3308
  *
3309
3309
  * @interface RequestAssistanceCommonParams
3310
- * @since 0.5.14
3310
+ * @since 0.1.0
3311
3311
  * @property {string} issue The summary of the issue
3312
3312
  */
3313
3313
  interface RequestAssistanceCommonParams {
@@ -3317,7 +3317,7 @@ interface RequestAssistanceCommonParams {
3317
3317
  * requestAssistance event params.
3318
3318
  *
3319
3319
  * @typedef RequestAssistanceParams
3320
- * @since 0.5.14
3320
+ * @since 0.1.0
3321
3321
  */
3322
3322
  declare type RequestAssistanceParams = RequestAssistanceParams$3 & RequestAssistanceParams$2 & RequestAssistanceParams$1;
3323
3323
 
@@ -3325,7 +3325,7 @@ declare type RequestAssistanceParams = RequestAssistanceParams$3 & RequestAssist
3325
3325
  * Event allowed parameters.
3326
3326
  *
3327
3327
  * @interface SetLocationParams
3328
- * @since 0.5.14
3328
+ * @since 0.1.0
3329
3329
  * @extends GoogleAnalyticsCommonEventParams
3330
3330
  * @extends GoogleAnalyticsCustomEventParams
3331
3331
  * @extends SetLocationCommonParams
@@ -3337,7 +3337,7 @@ interface SetLocationParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
3337
3337
  * Event allowed parameters.
3338
3338
  *
3339
3339
  * @interface SetLocationParams
3340
- * @since 0.5.14
3340
+ * @since 0.1.0
3341
3341
  * @extends FacebookPixelCommonEventParams
3342
3342
  * @extends FacebookPixelCustomEventParams
3343
3343
  * @extends SetLocationCommonParams
@@ -3349,7 +3349,7 @@ interface SetLocationParams$2 extends FacebookPixelCommonEventParams, FacebookPi
3349
3349
  * Event allowed parameters.
3350
3350
  *
3351
3351
  * @interface SetLocationParams
3352
- * @since 0.5.14
3352
+ * @since 0.1.0
3353
3353
  * @extends SegmentCommonEventParams
3354
3354
  * @extends SegmentCustomEventParams
3355
3355
  * @extends SetLocationCommonParams
@@ -3361,7 +3361,7 @@ interface SetLocationParams$1 extends SegmentCommonEventParams, SegmentCustomEve
3361
3361
  * setLocation event interface
3362
3362
  *
3363
3363
  * @interface SetLocationCommonParams
3364
- * @since 0.5.14
3364
+ * @since 0.1.0
3365
3365
  * @property {number} lat the new set latitude
3366
3366
  * @property {number} lng the new set longitude
3367
3367
  */
@@ -3373,7 +3373,7 @@ interface SetLocationCommonParams {
3373
3373
  * setLocation event params.
3374
3374
  *
3375
3375
  * @typedef SetLocationParams
3376
- * @since 0.5.14
3376
+ * @since 0.1.0
3377
3377
  */
3378
3378
  declare type SetLocationParams = SetLocationParams$3 & SetLocationParams$2 & SetLocationParams$1;
3379
3379
 
@@ -3381,7 +3381,7 @@ declare type SetLocationParams = SetLocationParams$3 & SetLocationParams$2 & Set
3381
3381
  * Event allowed parameters.
3382
3382
  *
3383
3383
  * @interface OutOfCoverageParams
3384
- * @since 0.5.14
3384
+ * @since 0.1.0
3385
3385
  * @extends GoogleAnalyticsCommonEventParams
3386
3386
  * @extends GoogleAnalyticsCustomEventParams
3387
3387
  * @extends OutOfCoverageCommonParams
@@ -3393,7 +3393,7 @@ interface OutOfCoverageParams$3 extends GoogleAnalyticsCommonEventParams, Google
3393
3393
  * Event allowed parameters.
3394
3394
  *
3395
3395
  * @interface OutOfCoverageParams
3396
- * @since 0.5.14
3396
+ * @since 0.1.0
3397
3397
  * @extends FacebookPixelCommonEventParams
3398
3398
  * @extends FacebookPixelCustomEventParams
3399
3399
  * @extends OutOfCoverageCommonParams
@@ -3405,7 +3405,7 @@ interface OutOfCoverageParams$2 extends FacebookPixelCommonEventParams, Facebook
3405
3405
  * Event allowed parameters.
3406
3406
  *
3407
3407
  * @interface OutOfCoverageParams
3408
- * @since 0.5.14
3408
+ * @since 0.1.0
3409
3409
  * @extends SegmentCommonEventParams
3410
3410
  * @extends SegmentCustomEventParams
3411
3411
  * @extends OutOfCoverageCommonParams
@@ -3417,7 +3417,7 @@ interface OutOfCoverageParams$1 extends SegmentCommonEventParams, SegmentCustomE
3417
3417
  * outOfCoverage event interface
3418
3418
  *
3419
3419
  * @interface OutOfCoverageCommonParams
3420
- * @since 0.5.14
3420
+ * @since 0.1.0
3421
3421
  * @property {number} lat latitude being searched
3422
3422
  * @property {number} lng longitude being searched
3423
3423
  */
@@ -3429,7 +3429,7 @@ interface OutOfCoverageCommonParams {
3429
3429
  * outOfCoverage event params.
3430
3430
  *
3431
3431
  * @typedef OutOfCoverageParams
3432
- * @since 0.5.14
3432
+ * @since 0.1.0
3433
3433
  */
3434
3434
  declare type OutOfCoverageParams = OutOfCoverageParams$3 & OutOfCoverageParams$2 & OutOfCoverageParams$1;
3435
3435
 
@@ -3437,7 +3437,7 @@ declare type OutOfCoverageParams = OutOfCoverageParams$3 & OutOfCoverageParams$2
3437
3437
  * Event allowed parameters.
3438
3438
  *
3439
3439
  * @interface FindLocationParams
3440
- * @since 0.5.14
3440
+ * @since 0.1.0
3441
3441
  * @extends GoogleAnalyticsCommonEventParams
3442
3442
  * @extends GoogleAnalyticsCustomEventParams
3443
3443
  * @extends FindLocationCommonParams
@@ -3449,7 +3449,7 @@ interface FindLocationParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
3449
3449
  * Event allowed parameters.
3450
3450
  *
3451
3451
  * @interface FindLocationParams
3452
- * @since 0.5.14
3452
+ * @since 0.1.0
3453
3453
  * @extends FacebookPixelCommonEventParams
3454
3454
  * @extends FacebookPixelCustomEventParams
3455
3455
  * @extends FindLocationCommonParams
@@ -3461,7 +3461,7 @@ interface FindLocationParams$2 extends FacebookPixelCommonEventParams, FacebookP
3461
3461
  * Event allowed parameters.
3462
3462
  *
3463
3463
  * @interface FindLocationParams
3464
- * @since 0.5.14
3464
+ * @since 0.1.0
3465
3465
  * @extends SegmentCommonEventParams
3466
3466
  * @extends SegmentCustomEventParams
3467
3467
  * @extends FindLocationCommonParams
@@ -3473,7 +3473,7 @@ interface FindLocationParams$1 extends SegmentCommonEventParams, SegmentCustomEv
3473
3473
  * findLocation event interface
3474
3474
  *
3475
3475
  * @interface FindLocationCommonParams
3476
- * @since 0.5.14
3476
+ * @since 0.1.0
3477
3477
  * @property {number} lat latitude being searched
3478
3478
  * @property {number} lng longitude being searched
3479
3479
  */
@@ -3485,7 +3485,7 @@ interface FindLocationCommonParams {
3485
3485
  * findLocation event params.
3486
3486
  *
3487
3487
  * @typedef FindLocationParams
3488
- * @since 0.5.14
3488
+ * @since 0.1.0
3489
3489
  */
3490
3490
  declare type FindLocationParams = FindLocationParams$3 & FindLocationParams$2 & FindLocationParams$1;
3491
3491
 
@@ -3493,7 +3493,7 @@ declare type FindLocationParams = FindLocationParams$3 & FindLocationParams$2 &
3493
3493
  * Event allowed parameters.
3494
3494
  *
3495
3495
  * @interface ChangeLocationParams
3496
- * @since 0.5.14
3496
+ * @since 0.1.0
3497
3497
  * @extends GoogleAnalyticsCommonEventParams
3498
3498
  * @extends GoogleAnalyticsCustomEventParams
3499
3499
  * @extends ChangeLocationCommonParams
@@ -3505,7 +3505,7 @@ interface ChangeLocationParams$3 extends GoogleAnalyticsCommonEventParams, Googl
3505
3505
  * Event allowed parameters.
3506
3506
  *
3507
3507
  * @interface ChangeLocationParams
3508
- * @since 0.5.14
3508
+ * @since 0.1.0
3509
3509
  * @extends FacebookPixelCommonEventParams
3510
3510
  * @extends FacebookPixelCustomEventParams
3511
3511
  * @extends ChangeLocationCommonParams
@@ -3517,7 +3517,7 @@ interface ChangeLocationParams$2 extends FacebookPixelCommonEventParams, Faceboo
3517
3517
  * Event allowed parameters.
3518
3518
  *
3519
3519
  * @interface ChangeLocationParams
3520
- * @since 0.5.14
3520
+ * @since 0.1.0
3521
3521
  * @extends SegmentCommonEventParams
3522
3522
  * @extends SegmentCustomEventParams
3523
3523
  * @extends ChangeLocationCommonParams
@@ -3529,7 +3529,7 @@ interface ChangeLocationParams$1 extends SegmentCommonEventParams, SegmentCustom
3529
3529
  * changeLocation event interface
3530
3530
  *
3531
3531
  * @interface ChangeLocationCommonParams
3532
- * @since 0.5.14
3532
+ * @since 0.1.0
3533
3533
  * @property {number} previousLat Previously set user's latitude
3534
3534
  * @property {number} previousLng Previously set user's longitude
3535
3535
  * @property {number} nextLat New user's latitude
@@ -3545,7 +3545,7 @@ interface ChangeLocationCommonParams {
3545
3545
  * changeLocation event params.
3546
3546
  *
3547
3547
  * @typedef ChangeLocationParams
3548
- * @since 0.5.14
3548
+ * @since 0.1.0
3549
3549
  */
3550
3550
  declare type ChangeLocationParams = ChangeLocationParams$3 & ChangeLocationParams$2 & ChangeLocationParams$1;
3551
3551
 
@@ -3553,7 +3553,7 @@ declare type ChangeLocationParams = ChangeLocationParams$3 & ChangeLocationParam
3553
3553
  * Event allowed parameters.
3554
3554
  *
3555
3555
  * @interface ViewTrackingParams
3556
- * @since 0.5.14
3556
+ * @since 0.1.0
3557
3557
  * @extends GoogleAnalyticsCommonEventParams
3558
3558
  * @extends GoogleAnalyticsCustomEventParams
3559
3559
  * @extends ViewTrackingCommonParams
@@ -3565,7 +3565,7 @@ interface ViewTrackingParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
3565
3565
  * Event allowed parameters.
3566
3566
  *
3567
3567
  * @interface ViewTrackingParams
3568
- * @since 0.5.14
3568
+ * @since 0.1.0
3569
3569
  * @extends FacebookPixelCommonEventParams
3570
3570
  * @extends FacebookPixelCustomEventParams
3571
3571
  * @extends ViewTrackingCommonParams
@@ -3577,7 +3577,7 @@ interface ViewTrackingParams$2 extends FacebookPixelCommonEventParams, FacebookP
3577
3577
  * Event allowed parameters.
3578
3578
  *
3579
3579
  * @interface ViewTrackingParams
3580
- * @since 0.5.14
3580
+ * @since 0.1.0
3581
3581
  * @extends SegmentCommonEventParams
3582
3582
  * @extends SegmentCustomEventParams
3583
3583
  * @extends ViewTrackingCommonParams
@@ -3589,7 +3589,7 @@ interface ViewTrackingParams$1 extends SegmentCommonEventParams, SegmentCustomEv
3589
3589
  * viewTracking event interface
3590
3590
  *
3591
3591
  * @interface ViewTrackingCommonParams
3592
- * @since 0.5.14
3592
+ * @since 0.1.0
3593
3593
  * @property {string} orderId The order unique identifier
3594
3594
  */
3595
3595
  interface ViewTrackingCommonParams {
@@ -3599,7 +3599,7 @@ interface ViewTrackingCommonParams {
3599
3599
  * viewTracking event params.
3600
3600
  *
3601
3601
  * @typedef ViewTrackingParams
3602
- * @since 0.5.14
3602
+ * @since 0.1.0
3603
3603
  */
3604
3604
  declare type ViewTrackingParams = ViewTrackingParams$3 & ViewTrackingParams$2 & ViewTrackingParams$1;
3605
3605
 
@@ -3607,7 +3607,7 @@ declare type ViewTrackingParams = ViewTrackingParams$3 & ViewTrackingParams$2 &
3607
3607
  * Event allowed parameters.
3608
3608
  *
3609
3609
  * @interface ViewFulfillmentStepParams
3610
- * @since 0.5.14
3610
+ * @since 0.1.0
3611
3611
  * @extends GoogleAnalyticsCommonEventParams
3612
3612
  * @extends GoogleAnalyticsCustomEventParams
3613
3613
  * @extends ViewFulfillmentStepCommonParams
@@ -3619,7 +3619,7 @@ interface ViewFulfillmentStepParams$3 extends GoogleAnalyticsCommonEventParams,
3619
3619
  * Event allowed parameters.
3620
3620
  *
3621
3621
  * @interface ViewFulfillmentStepParams
3622
- * @since 0.5.14
3622
+ * @since 0.1.0
3623
3623
  * @extends FacebookPixelCommonEventParams
3624
3624
  * @extends FacebookPixelCustomEventParams
3625
3625
  * @extends ViewFulfillmentStepCommonParams
@@ -3631,7 +3631,7 @@ interface ViewFulfillmentStepParams$2 extends FacebookPixelCommonEventParams, Fa
3631
3631
  * Event allowed parameters.
3632
3632
  *
3633
3633
  * @interface ViewFulfillmentStepParams
3634
- * @since 0.5.14
3634
+ * @since 0.1.0
3635
3635
  * @extends SegmentCommonEventParams
3636
3636
  * @extends SegmentCustomEventParams
3637
3637
  * @extends ViewFulfillmentStepCommonParams
@@ -3643,7 +3643,7 @@ interface ViewFulfillmentStepParams$1 extends SegmentCommonEventParams, SegmentC
3643
3643
  * viewFulfillmentStep event interface
3644
3644
  *
3645
3645
  * @interface ViewFulfillmentStepCommonParams
3646
- * @since 0.5.14
3646
+ * @since 0.1.0
3647
3647
  * @property {string} stepName The name of the observed step (e.g. Preparing)
3648
3648
  */
3649
3649
  interface ViewFulfillmentStepCommonParams {
@@ -3653,7 +3653,7 @@ interface ViewFulfillmentStepCommonParams {
3653
3653
  * viewFulfillmentStep event params.
3654
3654
  *
3655
3655
  * @typedef ViewFulfillmentStepParams
3656
- * @since 0.5.14
3656
+ * @since 0.1.0
3657
3657
  */
3658
3658
  declare type ViewFulfillmentStepParams = ViewFulfillmentStepParams$3 & ViewFulfillmentStepParams$2 & ViewFulfillmentStepParams$1;
3659
3659
 
@@ -3661,7 +3661,7 @@ declare type ViewFulfillmentStepParams = ViewFulfillmentStepParams$3 & ViewFulfi
3661
3661
  * Event allowed parameters.
3662
3662
  *
3663
3663
  * @interface ViewCreditsParams
3664
- * @since 0.5.14
3664
+ * @since 0.1.0
3665
3665
  * @extends GoogleAnalyticsCommonEventParams
3666
3666
  * @extends GoogleAnalyticsCustomEventParams
3667
3667
  * @extends ViewCreditsCommonParams
@@ -3675,7 +3675,7 @@ interface ViewCreditsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
3675
3675
  * Event allowed parameters.
3676
3676
  *
3677
3677
  * @interface ViewCreditsParams
3678
- * @since 0.5.14
3678
+ * @since 0.1.0
3679
3679
  * @extends FacebookPixelCommonEventParams
3680
3680
  * @extends FacebookPixelCustomEventParams
3681
3681
  * @extends ViewCreditsCommonParams
@@ -3687,7 +3687,7 @@ interface ViewCreditsParams$2 extends FacebookPixelCommonEventParams, FacebookPi
3687
3687
  * Event allowed parameters.
3688
3688
  *
3689
3689
  * @interface ViewCreditsParams
3690
- * @since 0.5.14
3690
+ * @since 0.1.0
3691
3691
  * @extends SegmentCommonEventParams
3692
3692
  * @extends SegmentCustomEventParams
3693
3693
  * @extends ViewCreditsCommonParams
@@ -3699,7 +3699,7 @@ interface ViewCreditsParams$1 extends SegmentCommonEventParams, SegmentCustomEve
3699
3699
  * viewCredits event interface
3700
3700
  *
3701
3701
  * @interface ViewCreditsCommonParams
3702
- * @since 0.5.14
3702
+ * @since 0.1.0
3703
3703
  */
3704
3704
  interface ViewCreditsCommonParams {
3705
3705
  }
@@ -3707,7 +3707,7 @@ interface ViewCreditsCommonParams {
3707
3707
  * viewCredits event params.
3708
3708
  *
3709
3709
  * @typedef ViewCreditsParams
3710
- * @since 0.5.14
3710
+ * @since 0.1.0
3711
3711
  */
3712
3712
  declare type ViewCreditsParams = ViewCreditsParams$3 & ViewCreditsParams$2 & ViewCreditsParams$1;
3713
3713
 
@@ -3715,7 +3715,7 @@ declare type ViewCreditsParams = ViewCreditsParams$3 & ViewCreditsParams$2 & Vie
3715
3715
  * Event allowed parameters.
3716
3716
  *
3717
3717
  * @interface SpendCreditsParams
3718
- * @since 0.5.14
3718
+ * @since 0.1.0
3719
3719
  * @extends GoogleAnalyticsCommonEventParams
3720
3720
  * @extends GoogleAnalyticsCustomEventParams
3721
3721
  * @extends SpendCreditsCommonParams
@@ -3729,7 +3729,7 @@ interface SpendCreditsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
3729
3729
  * Event allowed parameters.
3730
3730
  *
3731
3731
  * @interface SpendCreditsParams
3732
- * @since 0.5.14
3732
+ * @since 0.1.0
3733
3733
  * @extends FacebookPixelCommonEventParams
3734
3734
  * @extends FacebookPixelCustomEventParams
3735
3735
  * @extends SpendCreditsCommonParams
@@ -3741,7 +3741,7 @@ interface SpendCreditsParams$2 extends FacebookPixelCommonEventParams, FacebookP
3741
3741
  * Event allowed parameters.
3742
3742
  *
3743
3743
  * @interface SpendCreditsParams
3744
- * @since 0.5.14
3744
+ * @since 0.1.0
3745
3745
  * @extends SegmentCommonEventParams
3746
3746
  * @extends SegmentCustomEventParams
3747
3747
  * @extends SpendCreditsCommonParams
@@ -3753,7 +3753,7 @@ interface SpendCreditsParams$1 extends SegmentCommonEventParams, SegmentCustomEv
3753
3753
  * spendCredits event interface
3754
3754
  *
3755
3755
  * @interface SpendCreditsCommonParams
3756
- * @since 0.5.14
3756
+ * @since 0.1.0
3757
3757
  * @property {number} amount The amount of credits spent
3758
3758
  */
3759
3759
  interface SpendCreditsCommonParams {
@@ -3763,7 +3763,7 @@ interface SpendCreditsCommonParams {
3763
3763
  * spendCredits event params.
3764
3764
  *
3765
3765
  * @typedef SpendCreditsParams
3766
- * @since 0.5.14
3766
+ * @since 0.1.0
3767
3767
  */
3768
3768
  declare type SpendCreditsParams = SpendCreditsParams$3 & SpendCreditsParams$2 & SpendCreditsParams$1;
3769
3769
 
@@ -3771,7 +3771,7 @@ declare type SpendCreditsParams = SpendCreditsParams$3 & SpendCreditsParams$2 &
3771
3771
  * Event allowed parameters.
3772
3772
  *
3773
3773
  * @interface AddCreditsParams
3774
- * @since 0.5.14
3774
+ * @since 0.1.0
3775
3775
  * @extends GoogleAnalyticsCommonEventParams
3776
3776
  * @extends GoogleAnalyticsCustomEventParams
3777
3777
  * @extends AddCreditsCommonParams
@@ -3785,7 +3785,7 @@ interface AddCreditsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAna
3785
3785
  * Event allowed parameters.
3786
3786
  *
3787
3787
  * @interface AddCreditsParams
3788
- * @since 0.5.14
3788
+ * @since 0.1.0
3789
3789
  * @extends FacebookPixelCommonEventParams
3790
3790
  * @extends FacebookPixelCustomEventParams
3791
3791
  * @extends AddCreditsCommonParams
@@ -3797,7 +3797,7 @@ interface AddCreditsParams$2 extends FacebookPixelCommonEventParams, FacebookPix
3797
3797
  * Event allowed parameters.
3798
3798
  *
3799
3799
  * @interface AddCreditsParams
3800
- * @since 0.5.14
3800
+ * @since 0.1.0
3801
3801
  * @extends SegmentCommonEventParams
3802
3802
  * @extends SegmentCustomEventParams
3803
3803
  * @extends AddCreditsCommonParams
@@ -3809,7 +3809,7 @@ interface AddCreditsParams$1 extends SegmentCommonEventParams, SegmentCustomEven
3809
3809
  * addCredits event interface
3810
3810
  *
3811
3811
  * @interface AddCreditsCommonParams
3812
- * @since 0.5.14
3812
+ * @since 0.1.0
3813
3813
  * @property {number} amount The amount of credits to add
3814
3814
  */
3815
3815
  interface AddCreditsCommonParams {
@@ -3819,7 +3819,7 @@ interface AddCreditsCommonParams {
3819
3819
  * addCredits event params.
3820
3820
  *
3821
3821
  * @typedef AddCreditsParams
3822
- * @since 0.5.14
3822
+ * @since 0.1.0
3823
3823
  */
3824
3824
  declare type AddCreditsParams = AddCreditsParams$3 & AddCreditsParams$2 & AddCreditsParams$1;
3825
3825
 
@@ -3827,7 +3827,7 @@ declare type AddCreditsParams = AddCreditsParams$3 & AddCreditsParams$2 & AddCre
3827
3827
  * Event allowed parameters.
3828
3828
  *
3829
3829
  * @interface ViewQRStoreCouponParams
3830
- * @since 0.5.14
3830
+ * @since 0.1.0
3831
3831
  * @extends GoogleAnalyticsCommonEventParams
3832
3832
  * @extends GoogleAnalyticsCustomEventParams
3833
3833
  * @extends ViewQRStoreCouponCommonParams
@@ -3839,7 +3839,7 @@ interface ViewQRStoreCouponParams$3 extends GoogleAnalyticsCommonEventParams, Go
3839
3839
  * Event allowed parameters.
3840
3840
  *
3841
3841
  * @interface ViewQRStoreCouponParams
3842
- * @since 0.5.14
3842
+ * @since 0.1.0
3843
3843
  * @extends FacebookPixelCommonEventParams
3844
3844
  * @extends FacebookPixelCustomEventParams
3845
3845
  * @extends ViewQRStoreCouponCommonParams
@@ -3851,7 +3851,7 @@ interface ViewQRStoreCouponParams$2 extends FacebookPixelCommonEventParams, Face
3851
3851
  * Event allowed parameters.
3852
3852
  *
3853
3853
  * @interface ViewQRStoreCouponParams
3854
- * @since 0.5.14
3854
+ * @since 0.1.0
3855
3855
  * @extends SegmentCommonEventParams
3856
3856
  * @extends SegmentCustomEventParams
3857
3857
  * @extends ViewQRStoreCouponCommonParams
@@ -3863,7 +3863,7 @@ interface ViewQRStoreCouponParams$1 extends SegmentCommonEventParams, SegmentCus
3863
3863
  * viewQRStoreCoupon event interface
3864
3864
  *
3865
3865
  * @interface ViewQRStoreCouponCommonParams
3866
- * @since 0.5.14
3866
+ * @since 0.1.0
3867
3867
  */
3868
3868
  interface ViewQRStoreCouponCommonParams {
3869
3869
  }
@@ -3871,7 +3871,7 @@ interface ViewQRStoreCouponCommonParams {
3871
3871
  * viewQRStoreCoupon event params.
3872
3872
  *
3873
3873
  * @typedef ViewQRStoreCouponParams
3874
- * @since 0.5.14
3874
+ * @since 0.1.0
3875
3875
  */
3876
3876
  declare type ViewQRStoreCouponParams = ViewQRStoreCouponParams$3 & ViewQRStoreCouponParams$2 & ViewQRStoreCouponParams$1;
3877
3877
 
@@ -3879,7 +3879,7 @@ declare type ViewQRStoreCouponParams = ViewQRStoreCouponParams$3 & ViewQRStoreCo
3879
3879
  * Event allowed parameters.
3880
3880
  *
3881
3881
  * @interface ViewBenefitsWalletParams
3882
- * @since 0.5.14
3882
+ * @since 0.1.0
3883
3883
  * @extends GoogleAnalyticsCommonEventParams
3884
3884
  * @extends GoogleAnalyticsCustomEventParams
3885
3885
  * @extends ViewBenefitsWalletCommonParams
@@ -3893,7 +3893,7 @@ interface ViewBenefitsWalletParams$3 extends GoogleAnalyticsCommonEventParams, G
3893
3893
  * Event allowed parameters.
3894
3894
  *
3895
3895
  * @interface ViewBenefitsWalletParams
3896
- * @since 0.5.14
3896
+ * @since 0.1.0
3897
3897
  * @extends FacebookPixelCommonEventParams
3898
3898
  * @extends FacebookPixelCustomEventParams
3899
3899
  * @extends ViewBenefitsWalletCommonParams
@@ -3905,7 +3905,7 @@ interface ViewBenefitsWalletParams$2 extends FacebookPixelCommonEventParams, Fac
3905
3905
  * Event allowed parameters.
3906
3906
  *
3907
3907
  * @interface ViewBenefitsWalletParams
3908
- * @since 0.5.14
3908
+ * @since 0.1.0
3909
3909
  * @extends SegmentCommonEventParams
3910
3910
  * @extends SegmentCustomEventParams
3911
3911
  * @extends ViewBenefitsWalletCommonParams
@@ -3917,7 +3917,7 @@ interface ViewBenefitsWalletParams$1 extends SegmentCommonEventParams, SegmentCu
3917
3917
  * viewBenefitsWallet event interface
3918
3918
  *
3919
3919
  * @interface ViewBenefitsWalletCommonParams
3920
- * @since 0.5.14
3920
+ * @since 0.1.0
3921
3921
  * @property {string} walletId The benefits wallet identifier
3922
3922
  */
3923
3923
  interface ViewBenefitsWalletCommonParams {
@@ -3927,7 +3927,7 @@ interface ViewBenefitsWalletCommonParams {
3927
3927
  * viewBenefitsWallet event params.
3928
3928
  *
3929
3929
  * @typedef ViewBenefitsWalletParams
3930
- * @since 0.5.14
3930
+ * @since 0.1.0
3931
3931
  */
3932
3932
  declare type ViewBenefitsWalletParams = ViewBenefitsWalletParams$3 & ViewBenefitsWalletParams$2 & ViewBenefitsWalletParams$1;
3933
3933
 
@@ -3935,7 +3935,7 @@ declare type ViewBenefitsWalletParams = ViewBenefitsWalletParams$3 & ViewBenefit
3935
3935
  * Event allowed parameters.
3936
3936
  *
3937
3937
  * @interface ViewBenefitDetailsParams
3938
- * @since 0.5.14
3938
+ * @since 0.1.0
3939
3939
  * @extends GoogleAnalyticsCommonEventParams
3940
3940
  * @extends GoogleAnalyticsCustomEventParams
3941
3941
  * @extends ViewBenefitDetailsCommonParams
@@ -3947,7 +3947,7 @@ interface ViewBenefitDetailsParams$3 extends GoogleAnalyticsCommonEventParams, G
3947
3947
  * Event allowed parameters.
3948
3948
  *
3949
3949
  * @interface ViewBenefitDetailsParams
3950
- * @since 0.5.14
3950
+ * @since 0.1.0
3951
3951
  * @extends FacebookPixelCommonEventParams
3952
3952
  * @extends FacebookPixelCustomEventParams
3953
3953
  * @extends ViewBenefitDetailsCommonParams
@@ -3959,7 +3959,7 @@ interface ViewBenefitDetailsParams$2 extends FacebookPixelCommonEventParams, Fac
3959
3959
  * Event allowed parameters.
3960
3960
  *
3961
3961
  * @interface ViewBenefitDetailsParams
3962
- * @since 0.5.14
3962
+ * @since 0.1.0
3963
3963
  * @extends SegmentCommonEventParams
3964
3964
  * @extends SegmentCustomEventParams
3965
3965
  * @extends ViewBenefitDetailsCommonParams
@@ -3971,7 +3971,7 @@ interface ViewBenefitDetailsParams$1 extends SegmentCommonEventParams, SegmentCu
3971
3971
  * viewBenefitDetails event interface
3972
3972
  *
3973
3973
  * @interface ViewBenefitDetailsCommonParams
3974
- * @since 0.5.14
3974
+ * @since 0.1.0
3975
3975
  * @property {string} benefitId The benefit identifier
3976
3976
  * @property {string} benefitName The name of benefit
3977
3977
  * @property {string} discount The value of the discount (e.g 10%, FREE-SHIPPING)
@@ -3985,7 +3985,7 @@ interface ViewBenefitDetailsCommonParams {
3985
3985
  * viewBenefitDetails event params.
3986
3986
  *
3987
3987
  * @typedef ViewBenefitDetailsParams
3988
- * @since 0.5.14
3988
+ * @since 0.1.0
3989
3989
  */
3990
3990
  declare type ViewBenefitDetailsParams = ViewBenefitDetailsParams$3 & ViewBenefitDetailsParams$2 & ViewBenefitDetailsParams$1;
3991
3991
 
@@ -3993,7 +3993,7 @@ declare type ViewBenefitDetailsParams = ViewBenefitDetailsParams$3 & ViewBenefit
3993
3993
  * Event allowed parameters.
3994
3994
  *
3995
3995
  * @interface RemoveBenefitParams
3996
- * @since 0.5.14
3996
+ * @since 0.1.0
3997
3997
  * @extends GoogleAnalyticsCommonEventParams
3998
3998
  * @extends GoogleAnalyticsCustomEventParams
3999
3999
  * @extends RemoveBenefitCommonParams
@@ -4005,7 +4005,7 @@ interface RemoveBenefitParams$3 extends GoogleAnalyticsCommonEventParams, Google
4005
4005
  * Event allowed parameters.
4006
4006
  *
4007
4007
  * @interface RemoveBenefitParams
4008
- * @since 0.5.14
4008
+ * @since 0.1.0
4009
4009
  * @extends FacebookPixelCommonEventParams
4010
4010
  * @extends FacebookPixelCustomEventParams
4011
4011
  * @extends RemoveBenefitCommonParams
@@ -4017,7 +4017,7 @@ interface RemoveBenefitParams$2 extends FacebookPixelCommonEventParams, Facebook
4017
4017
  * Event allowed parameters.
4018
4018
  *
4019
4019
  * @interface RemoveBenefitParams
4020
- * @since 0.5.14
4020
+ * @since 0.1.0
4021
4021
  * @extends SegmentCommonEventParams
4022
4022
  * @extends SegmentCustomEventParams
4023
4023
  * @extends RemoveBenefitCommonParams
@@ -4029,7 +4029,7 @@ interface RemoveBenefitParams$1 extends SegmentCommonEventParams, SegmentCustomE
4029
4029
  * removeBenefit event interface
4030
4030
  *
4031
4031
  * @interface RemoveBenefitCommonParams
4032
- * @since 0.5.14
4032
+ * @since 0.1.0
4033
4033
  * @property {string} benefitId The benefit identifier
4034
4034
  * @property {string} benefitName The name of benefit
4035
4035
  * @property {string} discount The value of the discount (e.g 10%, FREE-SHIPPING)
@@ -4043,7 +4043,7 @@ interface RemoveBenefitCommonParams {
4043
4043
  * removeBenefit event params.
4044
4044
  *
4045
4045
  * @typedef RemoveBenefitParams
4046
- * @since 0.5.14
4046
+ * @since 0.1.0
4047
4047
  */
4048
4048
  declare type RemoveBenefitParams = RemoveBenefitParams$3 & RemoveBenefitParams$2 & RemoveBenefitParams$1;
4049
4049
 
@@ -4051,7 +4051,7 @@ declare type RemoveBenefitParams = RemoveBenefitParams$3 & RemoveBenefitParams$2
4051
4051
  * Event allowed parameters.
4052
4052
  *
4053
4053
  * @interface RedeemCouponCodeParams
4054
- * @since 0.5.14
4054
+ * @since 0.1.0
4055
4055
  * @extends GoogleAnalyticsCommonEventParams
4056
4056
  * @extends GoogleAnalyticsCustomEventParams
4057
4057
  * @extends RedeemCouponCodeCommonParams
@@ -4063,7 +4063,7 @@ interface RedeemCouponCodeParams$3 extends GoogleAnalyticsCommonEventParams, Goo
4063
4063
  * Event allowed parameters.
4064
4064
  *
4065
4065
  * @interface RedeemCouponCodeParams
4066
- * @since 0.5.14
4066
+ * @since 0.1.0
4067
4067
  * @extends FacebookPixelCommonEventParams
4068
4068
  * @extends FacebookPixelCustomEventParams
4069
4069
  * @extends RedeemCouponCodeCommonParams
@@ -4075,7 +4075,7 @@ interface RedeemCouponCodeParams$2 extends FacebookPixelCommonEventParams, Faceb
4075
4075
  * Event allowed parameters.
4076
4076
  *
4077
4077
  * @interface RedeemCouponCodeParams
4078
- * @since 0.5.14
4078
+ * @since 0.1.0
4079
4079
  * @extends SegmentCommonEventParams
4080
4080
  * @extends SegmentCustomEventParams
4081
4081
  * @extends RedeemCouponCodeCommonParams
@@ -4087,7 +4087,7 @@ interface RedeemCouponCodeParams$1 extends SegmentCommonEventParams, SegmentCust
4087
4087
  * redeemCouponCode event interface
4088
4088
  *
4089
4089
  * @interface RedeemCouponCodeParams
4090
- * @since 0.5.14
4090
+ * @since 0.1.0
4091
4091
  * @extends GoogleRedeemCouponCodeParams
4092
4092
  * @extends FacebookRedeemCouponCodeParams
4093
4093
  * @property {string} code The code of the coupon
@@ -4099,7 +4099,7 @@ interface RedeemCouponCodeCommonParams {
4099
4099
  * redeemCouponCode event params
4100
4100
  *
4101
4101
  * @interface RedeemCouponCodeParams
4102
- * @since 0.5.14
4102
+ * @since 0.1.0
4103
4103
  * @extends GoogleRedeemCouponCodeParams
4104
4104
  * @extends FacebookRedeemCouponCodeParams
4105
4105
  */
@@ -4109,7 +4109,7 @@ declare type RedeemCouponCodeParams = RedeemCouponCodeParams$3 & RedeemCouponCod
4109
4109
  * Event allowed parameters.
4110
4110
  *
4111
4111
  * @interface CouponCodeErrorParams
4112
- * @since 0.5.14
4112
+ * @since 0.1.0
4113
4113
  * @extends GoogleAnalyticsCommonEventParams
4114
4114
  * @extends GoogleAnalyticsCustomEventParams
4115
4115
  * @extends CouponCodeErrorCommonParams
@@ -4121,7 +4121,7 @@ interface CouponCodeErrorParams$3 extends GoogleAnalyticsCommonEventParams, Goog
4121
4121
  * Event allowed parameters.
4122
4122
  *
4123
4123
  * @interface CouponCodeErrorParams
4124
- * @since 0.5.14
4124
+ * @since 0.1.0
4125
4125
  * @extends FacebookPixelCommonEventParams
4126
4126
  * @extends FacebookPixelCustomEventParams
4127
4127
  * @extends CouponCodeErrorCommonParams
@@ -4133,7 +4133,7 @@ interface CouponCodeErrorParams$2 extends FacebookPixelCommonEventParams, Facebo
4133
4133
  * Event allowed parameters.
4134
4134
  *
4135
4135
  * @interface CouponCodeErrorParams
4136
- * @since 0.5.14
4136
+ * @since 0.1.0
4137
4137
  * @extends SegmentCommonEventParams
4138
4138
  * @extends SegmentCustomEventParams
4139
4139
  * @extends CouponCodeErrorCommonParams
@@ -4145,7 +4145,7 @@ interface CouponCodeErrorParams$1 extends SegmentCommonEventParams, SegmentCusto
4145
4145
  * couponCodeError event interface
4146
4146
  *
4147
4147
  * @interface CouponCodeErrorCommonParams
4148
- * @since 0.5.14
4148
+ * @since 0.1.0
4149
4149
  * @property {string} code The code of the coupon
4150
4150
  * @property {string} message The response error message
4151
4151
  * @property {number} message The response status code
@@ -4159,7 +4159,7 @@ interface CouponCodeErrorCommonParams {
4159
4159
  * couponCodeError event params.
4160
4160
  *
4161
4161
  * @typedef CouponCodeErrorParams
4162
- * @since 0.5.14
4162
+ * @since 0.1.0
4163
4163
  */
4164
4164
  declare type CouponCodeErrorParams = CouponCodeErrorParams$3 & CouponCodeErrorParams$2 & CouponCodeErrorParams$1;
4165
4165
 
@@ -4167,7 +4167,7 @@ declare type CouponCodeErrorParams = CouponCodeErrorParams$3 & CouponCodeErrorPa
4167
4167
  * Event allowed parameters.
4168
4168
  *
4169
4169
  * @interface ApplyBenefitParams
4170
- * @since 0.5.14
4170
+ * @since 0.1.0
4171
4171
  * @extends GoogleAnalyticsCommonEventParams
4172
4172
  * @extends GoogleAnalyticsCustomEventParams
4173
4173
  * @extends ApplyBenefitCommonParams
@@ -4179,7 +4179,7 @@ interface ApplyBenefitParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
4179
4179
  * Event allowed parameters.
4180
4180
  *
4181
4181
  * @interface ApplyBenefitParams
4182
- * @since 0.5.14
4182
+ * @since 0.1.0
4183
4183
  * @extends FacebookPixelCommonEventParams
4184
4184
  * @extends FacebookPixelCustomEventParams
4185
4185
  * @extends ApplyBenefitCommonParams
@@ -4191,7 +4191,7 @@ interface ApplyBenefitParams$2 extends FacebookPixelCommonEventParams, FacebookP
4191
4191
  * Event allowed parameters.
4192
4192
  *
4193
4193
  * @interface ApplyBenefitParams
4194
- * @since 0.5.14
4194
+ * @since 0.1.0
4195
4195
  * @extends SegmentCommonEventParams
4196
4196
  * @extends SegmentCustomEventParams
4197
4197
  * @extends ApplyBenefitCommonParams
@@ -4203,7 +4203,7 @@ interface ApplyBenefitParams$1 extends SegmentCommonEventParams, SegmentCustomEv
4203
4203
  * applyBenefit event interface
4204
4204
  *
4205
4205
  * @interface ApplyBenefitCommonParams
4206
- * @since 0.5.14
4206
+ * @since 0.1.0
4207
4207
  * @property {string} benefitId The benefit identifier
4208
4208
  * @property {string} benefitName The name of benefit
4209
4209
  * @property {string} discount The value of the discount (e.g 10%, FREE-SHIPPING)
@@ -4217,7 +4217,7 @@ interface ApplyBenefitCommonParams {
4217
4217
  * applyBenefit event params.
4218
4218
  *
4219
4219
  * @typedef ApplyBenefitParams
4220
- * @since 0.5.14
4220
+ * @since 0.1.0
4221
4221
  */
4222
4222
  declare type ApplyBenefitParams = ApplyBenefitParams$3 & ApplyBenefitParams$2 & ApplyBenefitParams$1;
4223
4223
 
@@ -4225,7 +4225,7 @@ declare type ApplyBenefitParams = ApplyBenefitParams$3 & ApplyBenefitParams$2 &
4225
4225
  * Event allowed parameters.
4226
4226
  *
4227
4227
  * @interface InitiateCheckoutParams
4228
- * @since 0.5.14
4228
+ * @since 0.1.0
4229
4229
  * @extends GoogleAnalyticsCommonEventParams
4230
4230
  * @extends GoogleAnalyticsCustomEventParams
4231
4231
  */
@@ -4236,7 +4236,7 @@ interface InitiateCheckoutParams$3 extends GoogleAnalyticsCommonEventParams, Goo
4236
4236
  * Event allowed parameters.
4237
4237
  *
4238
4238
  * @interface InitiateCheckoutParams
4239
- * @since 0.5.14
4239
+ * @since 0.1.0
4240
4240
  * @extends FacebookPixelCommonEventParams
4241
4241
  * @extends FacebookPixelCustomEventParams
4242
4242
  * @extends InitiateCheckoutCommonParams
@@ -4250,7 +4250,7 @@ interface InitiateCheckoutParams$2 extends FacebookPixelCommonEventParams, Faceb
4250
4250
  * Event allowed parameters.
4251
4251
  *
4252
4252
  * @interface InitiateCheckoutParams
4253
- * @since 0.5.14
4253
+ * @since 0.1.0
4254
4254
  * @extends SegmentCommonEventParams
4255
4255
  * @extends SegmentCustomEventParams
4256
4256
  * @extends InitiateCheckoutCommonParams
@@ -4262,7 +4262,7 @@ interface InitiateCheckoutParams$1 extends SegmentCommonEventParams, SegmentCust
4262
4262
  * initiateCheckout event interface
4263
4263
  *
4264
4264
  * @interface InitiateCheckoutCommonParams
4265
- * @since 0.5.14
4265
+ * @since 0.1.0
4266
4266
  * @property {ShoppingCart} shoppingCart The order's shopping cart
4267
4267
  */
4268
4268
  interface InitiateCheckoutCommonParams {
@@ -4272,7 +4272,7 @@ interface InitiateCheckoutCommonParams {
4272
4272
  * initiateCheckout event params.
4273
4273
  *
4274
4274
  * @typedef InitiateCheckoutParams
4275
- * @since 0.5.14
4275
+ * @since 0.1.0
4276
4276
  */
4277
4277
  declare type InitiateCheckoutParams = InitiateCheckoutParams$3 & InitiateCheckoutParams$2 & InitiateCheckoutParams$1;
4278
4278
 
@@ -4280,7 +4280,7 @@ declare type InitiateCheckoutParams = InitiateCheckoutParams$3 & InitiateCheckou
4280
4280
  * Event allowed parameters.
4281
4281
  *
4282
4282
  * @interface CheckoutActionParams
4283
- * @since 0.5.14
4283
+ * @since 0.1.0
4284
4284
  * @extends GoogleAnalyticsCommonEventParams
4285
4285
  * @extends GoogleAnalyticsCustomEventParams
4286
4286
  * @extends CheckoutActionCommonParams
@@ -4292,7 +4292,7 @@ interface CheckoutActionParams$3 extends GoogleAnalyticsCommonEventParams, Googl
4292
4292
  * Event allowed parameters.
4293
4293
  *
4294
4294
  * @interface CheckoutActionParams
4295
- * @since 0.5.14
4295
+ * @since 0.1.0
4296
4296
  * @extends FacebookPixelCommonEventParams
4297
4297
  * @extends FacebookPixelCustomEventParams
4298
4298
  * @extends CheckoutActionCommonParams
@@ -4304,7 +4304,7 @@ interface CheckoutActionParams$2 extends FacebookPixelCommonEventParams, Faceboo
4304
4304
  * Event allowed parameters.
4305
4305
  *
4306
4306
  * @interface CheckoutActionParams
4307
- * @since 0.5.14
4307
+ * @since 0.1.0
4308
4308
  * @extends SegmentCommonEventParams
4309
4309
  * @extends SegmentCustomEventParams
4310
4310
  * @extends CheckoutActionCommonParams
@@ -4316,7 +4316,7 @@ interface CheckoutActionParams$1 extends SegmentCommonEventParams, SegmentCustom
4316
4316
  * checkoutAction event interface
4317
4317
  *
4318
4318
  * @interface CheckoutActionCommonParams
4319
- * @since 0.5.14
4319
+ * @since 0.1.0
4320
4320
  * @property {string} action The name of the checkout step (e.g "billing")
4321
4321
  * @property {string} progress The completeness of the checkout progress (e.g "1/3")
4322
4322
  */
@@ -4328,7 +4328,7 @@ interface CheckoutActionCommonParams {
4328
4328
  * checkoutAction event params.
4329
4329
  *
4330
4330
  * @typedef CheckoutActionParams
4331
- * @since 0.5.14
4331
+ * @since 0.1.0
4332
4332
  */
4333
4333
  declare type CheckoutActionParams = CheckoutActionParams$3 & CheckoutActionParams$2 & CheckoutActionParams$1;
4334
4334
 
@@ -4336,7 +4336,7 @@ declare type CheckoutActionParams = CheckoutActionParams$3 & CheckoutActionParam
4336
4336
  * Event allowed parameters.
4337
4337
  *
4338
4338
  * @interface ViewCategoryParams
4339
- * @since 0.5.14
4339
+ * @since 0.1.0
4340
4340
  * @extends GoogleAnalyticsCommonEventParams
4341
4341
  * @extends GoogleAnalyticsCustomEventParams
4342
4342
  * @extends ViewCategoryCommonParams
@@ -4348,7 +4348,7 @@ interface ViewCategoryParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
4348
4348
  * Event allowed parameters.
4349
4349
  *
4350
4350
  * @interface ViewCategoryParams
4351
- * @since 0.5.14
4351
+ * @since 0.1.0
4352
4352
  * @extends FacebookPixelCommonEventParams
4353
4353
  * @extends FacebookPixelCustomEventParams
4354
4354
  * @extends ViewCategoryCommonParams
@@ -4360,7 +4360,7 @@ interface ViewCategoryParams$2 extends FacebookPixelCommonEventParams, FacebookP
4360
4360
  * Event allowed parameters.
4361
4361
  *
4362
4362
  * @interface ViewCategoryParams
4363
- * @since 0.5.14
4363
+ * @since 0.1.0
4364
4364
  * @extends SegmentCommonEventParams
4365
4365
  * @extends SegmentCustomEventParams
4366
4366
  * @extends ViewCategoryCommonParams
@@ -4374,7 +4374,7 @@ interface ViewCategoryParams$1 extends SegmentCommonEventParams, SegmentCustomEv
4374
4374
  * viewCategory event interface
4375
4375
  *
4376
4376
  * @interface ViewCategoryCommonParams
4377
- * @since 0.5.14
4377
+ * @since 0.1.0
4378
4378
  * @property {Category} category the category that the details are being viewed
4379
4379
  */
4380
4380
  interface ViewCategoryCommonParams {
@@ -4384,7 +4384,7 @@ interface ViewCategoryCommonParams {
4384
4384
  * viewCategory event params.
4385
4385
  *
4386
4386
  * @typedef ViewCategoryParams
4387
- * @since 0.5.14
4387
+ * @since 0.1.0
4388
4388
  */
4389
4389
  declare type ViewCategoryParams = ViewCategoryParams$3 & ViewCategoryParams$2 & ViewCategoryParams$1;
4390
4390
 
@@ -4392,7 +4392,7 @@ declare type ViewCategoryParams = ViewCategoryParams$3 & ViewCategoryParams$2 &
4392
4392
  * Event allowed parameters.
4393
4393
  *
4394
4394
  * @interface SelectCategoryParams
4395
- * @since 0.5.14
4395
+ * @since 0.1.0
4396
4396
  * @extends GoogleAnalyticsCommonEventParams
4397
4397
  * @extends GoogleAnalyticsCustomEventParams
4398
4398
  * @property {Category} query the selected category
@@ -4406,7 +4406,7 @@ interface SelectCategoryParams$3 extends GoogleAnalyticsCommonEventParams, Googl
4406
4406
  * Event allowed parameters.
4407
4407
  *
4408
4408
  * @interface SelectCategoryParams
4409
- * @since 0.5.14
4409
+ * @since 0.1.0
4410
4410
  * @extends FacebookPixelCommonEventParams
4411
4411
  * @extends FacebookPixelCustomEventParams
4412
4412
  * @extends SelectCategoryCommonParams
@@ -4418,7 +4418,7 @@ interface SelectCategoryParams$2 extends FacebookPixelCommonEventParams, Faceboo
4418
4418
  * Event allowed parameters.
4419
4419
  *
4420
4420
  * @interface SelectCategoryParams
4421
- * @since 0.5.14
4421
+ * @since 0.1.0
4422
4422
  * @extends SegmentCommonEventParams
4423
4423
  * @extends SegmentCustomEventParams
4424
4424
  * @extends SelectCategoryCommonParams
@@ -4430,7 +4430,7 @@ interface SelectCategoryParams$1 extends SegmentCommonEventParams, SegmentCustom
4430
4430
  * selectCategory event interface
4431
4431
  *
4432
4432
  * @interface SelectCategoryCommonParams
4433
- * @since 0.5.14
4433
+ * @since 0.1.0
4434
4434
  * @property {Category} query the selected category
4435
4435
  * @property {string} list the name of the list where the category is
4436
4436
  * @property {number} position the position in a list where the category is
@@ -4444,7 +4444,7 @@ interface SelectCategoryCommonParams {
4444
4444
  * selectCategory event params.
4445
4445
  *
4446
4446
  * @typedef SelectCategoryParams
4447
- * @since 0.5.14
4447
+ * @since 0.1.0
4448
4448
  */
4449
4449
  declare type SelectCategoryParams = SelectCategoryParams$3 & SelectCategoryParams$2 & SelectCategoryParams$1;
4450
4450
 
@@ -4452,7 +4452,7 @@ declare type SelectCategoryParams = SelectCategoryParams$3 & SelectCategoryParam
4452
4452
  * Event allowed parameters.
4453
4453
  *
4454
4454
  * @interface SearchCategoryAttemptParams
4455
- * @since 0.5.14
4455
+ * @since 0.1.0
4456
4456
  * @extends GoogleAnalyticsCommonEventParams
4457
4457
  * @extends GoogleAnalyticsCustomEventParams
4458
4458
  * @extends SearchCategoryAttemptCommonParams
@@ -4464,7 +4464,7 @@ interface SearchCategoryAttemptParams$3 extends GoogleAnalyticsCommonEventParams
4464
4464
  * Event allowed parameters.
4465
4465
  *
4466
4466
  * @interface SearchCategoryAttemptParams
4467
- * @since 0.5.14
4467
+ * @since 0.1.0
4468
4468
  * @extends FacebookPixelCommonEventParams
4469
4469
  * @extends FacebookPixelCustomEventParams
4470
4470
  * @extends SearchCategoryAttemptCommonParams
@@ -4478,7 +4478,7 @@ interface SearchCategoryAttemptParams$2 extends FacebookPixelCommonEventParams,
4478
4478
  * Event allowed parameters.
4479
4479
  *
4480
4480
  * @interface SearchCategoryAttemptParams
4481
- * @since 0.5.14
4481
+ * @since 0.1.0
4482
4482
  * @extends SegmentCommonEventParams
4483
4483
  * @extends SegmentCustomEventParams
4484
4484
  * @extends SearchCategoryAttemptCommonParams
@@ -4490,7 +4490,7 @@ interface SearchCategoryAttemptParams$1 extends SegmentCommonEventParams, Segmen
4490
4490
  * searchCategoryAttempt event interface
4491
4491
  *
4492
4492
  * @interface SearchCategoryAttemptCommonParams
4493
- * @since 0.5.14
4493
+ * @since 0.1.0
4494
4494
  * @property {string} query the searched text
4495
4495
  */
4496
4496
  interface SearchCategoryAttemptCommonParams {
@@ -4500,7 +4500,7 @@ interface SearchCategoryAttemptCommonParams {
4500
4500
  * SearchCategoryAttempt event params.
4501
4501
  *
4502
4502
  * @typedef SearchCategoryAttemptParams
4503
- * @since 0.5.14
4503
+ * @since 0.1.0
4504
4504
  */
4505
4505
  declare type SearchCategoryAttemptParams = SearchCategoryAttemptParams$3 & SearchCategoryAttemptParams$2 & SearchCategoryAttemptParams$1;
4506
4506
 
@@ -4508,7 +4508,7 @@ declare type SearchCategoryAttemptParams = SearchCategoryAttemptParams$3 & Searc
4508
4508
  * Event allowed parameters.
4509
4509
  *
4510
4510
  * @interface CategoryImpressionParams
4511
- * @since 0.5.14
4511
+ * @since 0.1.0
4512
4512
  * @extends GoogleAnalyticsCommonEventParams
4513
4513
  * @extends GoogleAnalyticsCustomEventParams
4514
4514
  * @property {string} itemBrand The item brand (e.g. El Español)
@@ -4521,7 +4521,7 @@ interface CategoryImpressionParams$3 extends GoogleAnalyticsCommonEventParams, G
4521
4521
  * Event allowed parameters.
4522
4522
  *
4523
4523
  * @interface CategoryImpressionParams
4524
- * @since 0.5.14
4524
+ * @since 0.1.0
4525
4525
  * @extends FacebookPixelCommonEventParams
4526
4526
  * @extends FacebookPixelCustomEventParams
4527
4527
  * @extends CategoryImpressionCommonParams
@@ -4533,7 +4533,7 @@ interface CategoryImpressionParams$2 extends FacebookPixelCommonEventParams, Fac
4533
4533
  * Event allowed parameters.
4534
4534
  *
4535
4535
  * @interface CategoryImpressionParams
4536
- * @since 0.5.14
4536
+ * @since 0.1.0
4537
4537
  * @extends SegmentCommonEventParams
4538
4538
  * @extends SegmentCustomEventParams
4539
4539
  * @extends CategoryImpressionCommonParams
@@ -4545,7 +4545,7 @@ interface CategoryImpressionParams$1 extends SegmentCommonEventParams, SegmentCu
4545
4545
  * categoryImpression event interface
4546
4546
  *
4547
4547
  * @interface CategoryImpressionCommonParams
4548
- * @since 0.5.14
4548
+ * @since 0.1.0
4549
4549
  * @property {Category} category the category a user had an impression on
4550
4550
  * @property {string} list the name of the list where the category is
4551
4551
  * @property {number} position the position in a list where the category is
@@ -4561,7 +4561,7 @@ interface CategoryImpressionCommonParams {
4561
4561
  * categoryImpression event params.
4562
4562
  *
4563
4563
  * @typedef CategoryImpressionParams
4564
- * @since 0.5.14
4564
+ * @since 0.1.0
4565
4565
  */
4566
4566
  declare type CategoryImpressionParams = CategoryImpressionParams$3 & CategoryImpressionParams$2 & CategoryImpressionParams$1;
4567
4567
 
@@ -4569,7 +4569,7 @@ declare type CategoryImpressionParams = CategoryImpressionParams$3 & CategoryImp
4569
4569
  * Event allowed parameters.
4570
4570
  *
4571
4571
  * @interface BookAppointmentParams
4572
- * @since 0.5.14
4572
+ * @since 0.1.0
4573
4573
  * @extends GoogleAnalyticsCommonEventParams
4574
4574
  * @extends GoogleAnalyticsCustomEventParams
4575
4575
  * @extends BookAppointmentCommonParams
@@ -4581,7 +4581,7 @@ interface BookAppointmentParams$3 extends GoogleAnalyticsCommonEventParams, Goog
4581
4581
  * Event allowed parameters.
4582
4582
  *
4583
4583
  * @interface BookAppointmentParams
4584
- * @since 0.5.14
4584
+ * @since 0.1.0
4585
4585
  * @extends FacebookPixelCommonEventParams
4586
4586
  * @extends FacebookPixelCustomEventParams
4587
4587
  * @extends BookAppointmentCommonParams
@@ -4593,7 +4593,7 @@ interface BookAppointmentParams$2 extends FacebookPixelCommonEventParams, Facebo
4593
4593
  * Event allowed parameters.
4594
4594
  *
4595
4595
  * @interface BookAppointmentParams
4596
- * @since 0.5.14
4596
+ * @since 0.1.0
4597
4597
  * @extends SegmentCommonEventParams
4598
4598
  * @extends SegmentCustomEventParams
4599
4599
  * @extends BookAppointmentCommonParams
@@ -4605,7 +4605,7 @@ interface BookAppointmentParams$1 extends SegmentCommonEventParams, SegmentCusto
4605
4605
  * bookAppointment event interface
4606
4606
  *
4607
4607
  * @interface BookAppointmentCommonParams
4608
- * @since 0.5.14
4608
+ * @since 0.1.0
4609
4609
  * @property {string} appointmentId The id of the booked appointment
4610
4610
  * @property {string} start The start time of the appointment (e.g. 15:30)
4611
4611
  * @property {string} end The end time of the appointment (e.g. 16:00)
@@ -4623,7 +4623,7 @@ interface BookAppointmentCommonParams {
4623
4623
  * bookAppointment event params.
4624
4624
  *
4625
4625
  * @typedef BookAppointmentParams
4626
- * @since 0.5.14
4626
+ * @since 0.1.0
4627
4627
  */
4628
4628
  declare type BookAppointmentParams = BookAppointmentParams$3 & BookAppointmentParams$2 & BookAppointmentParams$1;
4629
4629
 
@@ -4631,7 +4631,7 @@ declare type BookAppointmentParams = BookAppointmentParams$3 & BookAppointmentPa
4631
4631
  * Event allowed parameters.
4632
4632
  *
4633
4633
  * @interface UpdateBillingInfoParams
4634
- * @since 0.5.14
4634
+ * @since 0.1.0
4635
4635
  * @extends GoogleAnalyticsCommonEventParams
4636
4636
  * @extends GoogleAnalyticsCustomEventParams
4637
4637
  * @extends UpdateBillingInfoCommonParams
@@ -4643,7 +4643,7 @@ interface UpdateBillingInfoParams$3 extends GoogleAnalyticsCommonEventParams, Go
4643
4643
  * Event allowed parameters.
4644
4644
  *
4645
4645
  * @interface UpdateBillingInfoParams
4646
- * @since 0.5.14
4646
+ * @since 0.1.0
4647
4647
  * @extends FacebookPixelCommonEventParams
4648
4648
  * @extends FacebookPixelCustomEventParams
4649
4649
  * @extends UpdateBillingInfoCommonParams
@@ -4655,7 +4655,7 @@ interface UpdateBillingInfoParams$2 extends FacebookPixelCommonEventParams, Face
4655
4655
  * Event allowed parameters.
4656
4656
  *
4657
4657
  * @interface UpdateBillingInfoParams
4658
- * @since 0.5.14
4658
+ * @since 0.1.0
4659
4659
  * @extends SegmentCommonEventParams
4660
4660
  * @extends SegmentCustomEventParams
4661
4661
  * @extends UpdateBillingInfoCommonParams
@@ -4667,7 +4667,7 @@ interface UpdateBillingInfoParams$1 extends SegmentCommonEventParams, SegmentCus
4667
4667
  * updateBillingInfo event interface
4668
4668
  *
4669
4669
  * @interface UpdateBillingInfoCommonParams
4670
- * @since 0.5.14
4670
+ * @since 0.1.0
4671
4671
  * @property {string} alias The name of the new billing information data
4672
4672
  * @property {number} position The position in a list where the billing information data is
4673
4673
  * @property {string[]} fields The updated fields names
@@ -4681,7 +4681,7 @@ interface UpdateBillingInfoCommonParams {
4681
4681
  * updateBillingInfo event params.
4682
4682
  *
4683
4683
  * @typedef UpdateBillingInfoParams
4684
- * @since 0.5.14
4684
+ * @since 0.1.0
4685
4685
  */
4686
4686
  declare type UpdateBillingInfoParams = UpdateBillingInfoParams$3 & UpdateBillingInfoParams$2 & UpdateBillingInfoParams$1;
4687
4687
 
@@ -4689,7 +4689,7 @@ declare type UpdateBillingInfoParams = UpdateBillingInfoParams$3 & UpdateBilling
4689
4689
  * Event allowed parameters.
4690
4690
  *
4691
4691
  * @interface SelectBillingInfoParams
4692
- * @since 0.5.14
4692
+ * @since 0.1.0
4693
4693
  * @extends GoogleAnalyticsCommonEventParams
4694
4694
  * @extends GoogleAnalyticsCustomEventParams
4695
4695
  * @extends SelectBillingInfoCommonParams
@@ -4701,7 +4701,7 @@ interface SelectBillingInfoParams$3 extends GoogleAnalyticsCommonEventParams, Go
4701
4701
  * Event allowed parameters.
4702
4702
  *
4703
4703
  * @interface SelectBillingInfoParams
4704
- * @since 0.5.14
4704
+ * @since 0.1.0
4705
4705
  * @extends FacebookPixelCommonEventParams
4706
4706
  * @extends FacebookPixelCustomEventParams
4707
4707
  * @extends SelectBillingInfoCommonParams
@@ -4713,7 +4713,7 @@ interface SelectBillingInfoParams$2 extends FacebookPixelCommonEventParams, Face
4713
4713
  * Event allowed parameters.
4714
4714
  *
4715
4715
  * @interface SelectBillingInfoParams
4716
- * @since 0.5.14
4716
+ * @since 0.1.0
4717
4717
  * @extends SegmentCommonEventParams
4718
4718
  * @extends SegmentCustomEventParams
4719
4719
  * @extends SelectBillingInfoCommonParams
@@ -4725,7 +4725,7 @@ interface SelectBillingInfoParams$1 extends SegmentCommonEventParams, SegmentCus
4725
4725
  * selectBillingInfo event interface
4726
4726
  *
4727
4727
  * @interface SelectBillingInfoCommonParams
4728
- * @since 0.5.14
4728
+ * @since 0.1.0
4729
4729
  * @property {string} alias The name of the new billing information data
4730
4730
  * @property {number} position The position in a list where the billing information data is
4731
4731
  */
@@ -4737,7 +4737,7 @@ interface SelectBillingInfoCommonParams {
4737
4737
  * selectBillingInfo event params.
4738
4738
  *
4739
4739
  * @typedef SelectBillingInfoParams
4740
- * @since 0.5.14
4740
+ * @since 0.1.0
4741
4741
  */
4742
4742
  declare type SelectBillingInfoParams = SelectBillingInfoParams$3 & SelectBillingInfoParams$2 & SelectBillingInfoParams$1;
4743
4743
 
@@ -4745,7 +4745,7 @@ declare type SelectBillingInfoParams = SelectBillingInfoParams$3 & SelectBilling
4745
4745
  * Event allowed parameters.
4746
4746
  *
4747
4747
  * @interface AddBillingInfoParams
4748
- * @since 0.5.14
4748
+ * @since 0.1.0
4749
4749
  * @extends GoogleAnalyticsCommonEventParams
4750
4750
  * @extends GoogleAnalyticsCustomEventParams
4751
4751
  * @extends AddBillingInfoCommonParams
@@ -4757,7 +4757,7 @@ interface AddBillingInfoParams$3 extends GoogleAnalyticsCommonEventParams, Googl
4757
4757
  * Event allowed parameters.
4758
4758
  *
4759
4759
  * @interface AddBillingInfoParams
4760
- * @since 0.5.14
4760
+ * @since 0.1.0
4761
4761
  * @extends FacebookPixelCommonEventParams
4762
4762
  * @extends FacebookPixelCustomEventParams
4763
4763
  * @extends AddBillingInfoCommonParams
@@ -4769,7 +4769,7 @@ interface AddBillingInfoParams$2 extends FacebookPixelCommonEventParams, Faceboo
4769
4769
  * Event allowed parameters.
4770
4770
  *
4771
4771
  * @interface AddBillingInfoParams
4772
- * @since 0.5.14
4772
+ * @since 0.1.0
4773
4773
  * @extends SegmentCommonEventParams
4774
4774
  * @extends SegmentCustomEventParams
4775
4775
  * @extends AddBillingInfoCommonParams
@@ -4781,7 +4781,7 @@ interface AddBillingInfoParams$1 extends SegmentCommonEventParams, SegmentCustom
4781
4781
  * addBillingInfo event interface
4782
4782
  *
4783
4783
  * @interface AddBillingInfoCommonParams
4784
- * @since 0.5.14
4784
+ * @since 0.1.0
4785
4785
  * @property {string} alias The name of the new billing information data
4786
4786
  */
4787
4787
  interface AddBillingInfoCommonParams {
@@ -4791,7 +4791,7 @@ interface AddBillingInfoCommonParams {
4791
4791
  * addBillingInfo event params.
4792
4792
  *
4793
4793
  * @typedef AddBillingInfoParams
4794
- * @since 0.5.14
4794
+ * @since 0.1.0
4795
4795
  */
4796
4796
  declare type AddBillingInfoParams = AddBillingInfoParams$3 & AddBillingInfoParams$2 & AddBillingInfoParams$1;
4797
4797
 
@@ -4799,7 +4799,7 @@ declare type AddBillingInfoParams = AddBillingInfoParams$3 & AddBillingInfoParam
4799
4799
  * Event allowed parameters.
4800
4800
  *
4801
4801
  * @interface SelectBannerParams
4802
- * @since 0.5.14
4802
+ * @since 0.1.0
4803
4803
  * @extends GoogleAnalyticsCommonEventParams
4804
4804
  * @extends GoogleAnalyticsCustomEventParams
4805
4805
  * @extends SelectBannerCommonParams
@@ -4811,7 +4811,7 @@ interface SelectBannerParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
4811
4811
  * Event allowed parameters.
4812
4812
  *
4813
4813
  * @interface SelectBannerParams
4814
- * @since 0.5.14
4814
+ * @since 0.1.0
4815
4815
  * @extends FacebookPixelCommonEventParams
4816
4816
  * @extends FacebookPixelCustomEventParams
4817
4817
  * @extends SelectBannerCommonParams
@@ -4823,7 +4823,7 @@ interface SelectBannerParams$2 extends FacebookPixelCommonEventParams, FacebookP
4823
4823
  * Event allowed parameters.
4824
4824
  *
4825
4825
  * @interface SelectBannerParams
4826
- * @since 0.5.14
4826
+ * @since 0.1.0
4827
4827
  * @extends SegmentCommonEventParams
4828
4828
  * @extends SegmentCustomEventParams
4829
4829
  * @extends SelectBannerCommonParams
@@ -4835,7 +4835,7 @@ interface SelectBannerParams$1 extends SegmentCommonEventParams, SegmentCustomEv
4835
4835
  * selectBanner event interface
4836
4836
  *
4837
4837
  * @interface SelectBannerCommonParams
4838
- * @since 0.5.14
4838
+ * @since 0.1.0
4839
4839
  * @property {string} url The url of the selected banner
4840
4840
  * @property {string} name The name of the selected banner
4841
4841
  * @property {string} list the name of the list where the banner is
@@ -4851,7 +4851,7 @@ interface SelectBannerCommonParams {
4851
4851
  * selectBanner event params.
4852
4852
  *
4853
4853
  * @typedef SelectBannerParams
4854
- * @since 0.5.14
4854
+ * @since 0.1.0
4855
4855
  */
4856
4856
  declare type SelectBannerParams = SelectBannerParams$3 & SelectBannerParams$2 & SelectBannerParams$1;
4857
4857
 
@@ -4859,7 +4859,7 @@ declare type SelectBannerParams = SelectBannerParams$3 & SelectBannerParams$2 &
4859
4859
  * Event allowed parameters.
4860
4860
  *
4861
4861
  * @interface BannerImpressionParams
4862
- * @since 0.5.14
4862
+ * @since 0.1.0
4863
4863
  * @extends GoogleAnalyticsCommonEventParams
4864
4864
  * @extends GoogleAnalyticsCustomEventParams
4865
4865
  * @extends BannerImpressionCommonParams
@@ -4871,7 +4871,7 @@ interface BannerImpressionParams$3 extends GoogleAnalyticsCommonEventParams, Goo
4871
4871
  * Event allowed parameters.
4872
4872
  *
4873
4873
  * @interface BannerImpressionParams
4874
- * @since 0.5.14
4874
+ * @since 0.1.0
4875
4875
  * @extends FacebookPixelCommonEventParams
4876
4876
  * @extends FacebookPixelCustomEventParams
4877
4877
  * @extends BannerImpressionCommonParams
@@ -4883,7 +4883,7 @@ interface BannerImpressionParams$2 extends FacebookPixelCommonEventParams, Faceb
4883
4883
  * Event allowed parameters.
4884
4884
  *
4885
4885
  * @interface BannerImpressionParams
4886
- * @since 0.5.14
4886
+ * @since 0.1.0
4887
4887
  * @extends SegmentCommonEventParams
4888
4888
  * @extends SegmentCustomEventParams
4889
4889
  * @extends BannerImpressionCommonParams
@@ -4895,7 +4895,7 @@ interface BannerImpressionParams$1 extends SegmentCommonEventParams, SegmentCust
4895
4895
  * bannerImpression event interface
4896
4896
  *
4897
4897
  * @interface BannerImpressionCommonParams
4898
- * @since 0.5.14
4898
+ * @since 0.1.0
4899
4899
  * @property {string} url The URL of a banner a user had an impression on
4900
4900
  * @property {string} name The name of a banner a user had an impression on
4901
4901
  * @property {string} list The name of the list where the banner is
@@ -4913,7 +4913,7 @@ interface BannerImpressionCommonParams {
4913
4913
  * bannerImpression event params.
4914
4914
  *
4915
4915
  * @typedef BannerImpressionParams
4916
- * @since 0.5.14
4916
+ * @since 0.1.0
4917
4917
  */
4918
4918
  declare type BannerImpressionParams = BannerImpressionParams$3 & BannerImpressionParams$2 & BannerImpressionParams$1;
4919
4919
 
@@ -4921,7 +4921,7 @@ declare type BannerImpressionParams = BannerImpressionParams$3 & BannerImpressio
4921
4921
  * Event allowed parameters.
4922
4922
  *
4923
4923
  * @interface SignUpParams
4924
- * @since 0.5.14
4924
+ * @since 0.1.0
4925
4925
  * @extends GoogleAnalyticsCommonEventParams
4926
4926
  * @extends GoogleAnalyticsCustomEventParams
4927
4927
  * @extends SignUpCommonParams
@@ -4933,7 +4933,7 @@ interface SignUpParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnalyti
4933
4933
  * Event allowed parameters.
4934
4934
  *
4935
4935
  * @interface SignUpParams
4936
- * @since 0.5.14
4936
+ * @since 0.1.0
4937
4937
  * @extends FacebookPixelCommonEventParams
4938
4938
  * @extends FacebookPixelCustomEventParams
4939
4939
  * @extends SignUpCommonParams
@@ -4945,7 +4945,7 @@ interface SignUpParams$2 extends FacebookPixelCommonEventParams, FacebookPixelCu
4945
4945
  * Event allowed parameters.
4946
4946
  *
4947
4947
  * @interface SignUpParams
4948
- * @since 0.5.14
4948
+ * @since 0.1.0
4949
4949
  * @extends SegmentCommonEventParams
4950
4950
  * @extends SegmentCustomEventParams
4951
4951
  * @extends SignUpCommonParams
@@ -4963,7 +4963,7 @@ interface SignUpParams$1 extends SegmentCommonEventParams, SegmentCustomEventPar
4963
4963
  * signUp event interface
4964
4964
  *
4965
4965
  * @interface SignUpCommonParams
4966
- * @since 0.5.14
4966
+ * @since 0.1.0
4967
4967
  * @property {AuthProviderMethods} method Supported auth providers methods
4968
4968
  */
4969
4969
  interface SignUpCommonParams {
@@ -4973,7 +4973,7 @@ interface SignUpCommonParams {
4973
4973
  * signUp event params.
4974
4974
  *
4975
4975
  * @typedef SignUpParams
4976
- * @since 0.5.14
4976
+ * @since 0.1.0
4977
4977
  */
4978
4978
  declare type SignUpParams = SignUpParams$3 & SignUpParams$2 & SignUpParams$1;
4979
4979
 
@@ -4981,7 +4981,7 @@ declare type SignUpParams = SignUpParams$3 & SignUpParams$2 & SignUpParams$1;
4981
4981
  * Event allowed parameters.
4982
4982
  *
4983
4983
  * @interface SignOutParams
4984
- * @since 0.5.14
4984
+ * @since 0.1.0
4985
4985
  * @extends GoogleAnalyticsCommonEventParams
4986
4986
  * @extends GoogleAnalyticsCustomEventParams
4987
4987
  * @extends SignOutCommonParams
@@ -4995,7 +4995,7 @@ interface SignOutParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnalyt
4995
4995
  * Event allowed parameters.
4996
4996
  *
4997
4997
  * @interface SignOutParams
4998
- * @since 0.5.14
4998
+ * @since 0.1.0
4999
4999
  * @extends FacebookPixelCommonEventParams
5000
5000
  * @extends FacebookPixelCustomEventParams
5001
5001
  * @extends SignOutCommonParams
@@ -5007,7 +5007,7 @@ interface SignOutParams$2 extends FacebookPixelCommonEventParams, FacebookPixelC
5007
5007
  * Event allowed parameters.
5008
5008
  *
5009
5009
  * @interface SignOutParams
5010
- * @since 0.5.14
5010
+ * @since 0.1.0
5011
5011
  * @extends SegmentCommonEventParams
5012
5012
  * @extends SegmentCustomEventParams
5013
5013
  * @extends SignOutCommonParams
@@ -5021,7 +5021,7 @@ interface SignOutParams$1 extends SegmentCommonEventParams, SegmentCustomEventPa
5021
5021
  * signOut event interface
5022
5022
  *
5023
5023
  * @interface SignOutCommonParams
5024
- * @since 0.5.14
5024
+ * @since 0.1.0
5025
5025
  */
5026
5026
  interface SignOutCommonParams {
5027
5027
  }
@@ -5029,7 +5029,7 @@ interface SignOutCommonParams {
5029
5029
  * signOut event params.
5030
5030
  *
5031
5031
  * @typedef SignOutParams
5032
- * @since 0.5.14
5032
+ * @since 0.1.0
5033
5033
  */
5034
5034
  declare type SignOutParams = SignOutParams$3 & SignOutParams$2 & SignOutParams$1;
5035
5035
 
@@ -5037,7 +5037,7 @@ declare type SignOutParams = SignOutParams$3 & SignOutParams$2 & SignOutParams$1
5037
5037
  * Event allowed parameters.
5038
5038
  *
5039
5039
  * @interface SignInParams
5040
- * @since 0.5.14
5040
+ * @since 0.1.0
5041
5041
  * @extends GoogleAnalyticsCommonEventParams
5042
5042
  * @extends GoogleAnalyticsCustomEventParams
5043
5043
  * @extends SignInCommonParams
@@ -5049,7 +5049,7 @@ interface SignInParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnalyti
5049
5049
  * Event allowed parameters.
5050
5050
  *
5051
5051
  * @interface SignInParams
5052
- * @since 0.5.14
5052
+ * @since 0.1.0
5053
5053
  * @extends FacebookPixelCommonEventParams
5054
5054
  * @extends FacebookPixelCustomEventParams
5055
5055
  * @extends SignInCommonParams
@@ -5061,7 +5061,7 @@ interface SignInParams$2 extends FacebookPixelCommonEventParams, FacebookPixelCu
5061
5061
  * Event allowed parameters.
5062
5062
  *
5063
5063
  * @interface SignInParams
5064
- * @since 0.5.14
5064
+ * @since 0.1.0
5065
5065
  * @extends SegmentCommonEventParams
5066
5066
  * @extends SegmentCustomEventParams
5067
5067
  * @extends SignInCommonParams
@@ -5077,7 +5077,7 @@ interface SignInParams$1 extends SegmentCommonEventParams, SegmentCustomEventPar
5077
5077
  * signIn event interface
5078
5078
  *
5079
5079
  * @interface SignInCommonParams
5080
- * @since 0.5.14
5080
+ * @since 0.1.0
5081
5081
  * @property {AuthProviderMethods} method Supported auth providers methods
5082
5082
  */
5083
5083
  interface SignInCommonParams {
@@ -5087,7 +5087,7 @@ interface SignInCommonParams {
5087
5087
  * signIn event params.
5088
5088
  *
5089
5089
  * @typedef SignInParams
5090
- * @since 0.5.14
5090
+ * @since 0.1.0
5091
5091
  */
5092
5092
  declare type SignInParams = SignInParams$3 & SignInParams$2 & SignInParams$1;
5093
5093
 
@@ -5095,7 +5095,7 @@ declare type SignInParams = SignInParams$3 & SignInParams$2 & SignInParams$1;
5095
5095
  * Event allowed parameters.
5096
5096
  *
5097
5097
  * @interface ChangePasswordSuccessParams
5098
- * @since 0.5.14
5098
+ * @since 0.1.0
5099
5099
  * @extends GoogleAnalyticsCommonEventParams
5100
5100
  * @extends GoogleAnalyticsCustomEventParams
5101
5101
  * @extends ChangePasswordSuccessCommonParams
@@ -5109,7 +5109,7 @@ interface ChangePasswordSuccessParams$3 extends GoogleAnalyticsCommonEventParams
5109
5109
  * Event allowed parameters.
5110
5110
  *
5111
5111
  * @interface ChangePasswordSuccessParams
5112
- * @since 0.5.14
5112
+ * @since 0.1.0
5113
5113
  * @extends FacebookPixelCommonEventParams
5114
5114
  * @extends FacebookPixelCustomEventParams
5115
5115
  * @extends ChangePasswordSuccessCommonParams
@@ -5121,7 +5121,7 @@ interface ChangePasswordSuccessParams$2 extends FacebookPixelCommonEventParams,
5121
5121
  * Event allowed parameters.
5122
5122
  *
5123
5123
  * @interface ChangePasswordSuccessParams
5124
- * @since 0.5.14
5124
+ * @since 0.1.0
5125
5125
  * @extends SegmentCommonEventParams
5126
5126
  * @extends SegmentCustomEventParams
5127
5127
  * @extends ChangePasswordSuccessCommonParams
@@ -5133,7 +5133,7 @@ interface ChangePasswordSuccessParams$1 extends SegmentCommonEventParams, Segmen
5133
5133
  * changePasswordSuccess event interface
5134
5134
  *
5135
5135
  * @interface ChangePasswordSuccessCommonParams
5136
- * @since 0.5.14
5136
+ * @since 0.1.0
5137
5137
  */
5138
5138
  interface ChangePasswordSuccessCommonParams {
5139
5139
  }
@@ -5141,7 +5141,7 @@ interface ChangePasswordSuccessCommonParams {
5141
5141
  * changePasswordSuccess event params.
5142
5142
  *
5143
5143
  * @typedef ChangePasswordSuccessParams
5144
- * @since 0.5.14
5144
+ * @since 0.1.0
5145
5145
  */
5146
5146
  declare type ChangePasswordSuccessParams = ChangePasswordSuccessParams$3 & ChangePasswordSuccessParams$2 & ChangePasswordSuccessParams$1;
5147
5147
 
@@ -5149,7 +5149,7 @@ declare type ChangePasswordSuccessParams = ChangePasswordSuccessParams$3 & Chang
5149
5149
  * Event allowed parameters.
5150
5150
  *
5151
5151
  * @interface ChangePasswordFailParams
5152
- * @since 0.5.14
5152
+ * @since 0.1.0
5153
5153
  * @extends GoogleAnalyticsCommonEventParams
5154
5154
  * @extends GoogleAnalyticsCustomEventParams
5155
5155
  * @extends ChangePasswordFailCommonParams
@@ -5163,7 +5163,7 @@ interface ChangePasswordFailParams$3 extends GoogleAnalyticsCommonEventParams, G
5163
5163
  * Event allowed parameters.
5164
5164
  *
5165
5165
  * @interface ChangePasswordFailParams
5166
- * @since 0.5.14
5166
+ * @since 0.1.0
5167
5167
  * @extends FacebookPixelCommonEventParams
5168
5168
  * @extends FacebookPixelCustomEventParams
5169
5169
  * @extends ChangePasswordFailCommonParams
@@ -5175,7 +5175,7 @@ interface ChangePasswordFailParams$2 extends FacebookPixelCommonEventParams, Fac
5175
5175
  * Event allowed parameters.
5176
5176
  *
5177
5177
  * @interface ChangePasswordFailParams
5178
- * @since 0.5.14
5178
+ * @since 0.1.0
5179
5179
  * @extends SegmentCommonEventParams
5180
5180
  * @extends SegmentCustomEventParams
5181
5181
  * @extends ChangePasswordFailCommonParams
@@ -5187,7 +5187,7 @@ interface ChangePasswordFailParams$1 extends SegmentCommonEventParams, SegmentCu
5187
5187
  * changePasswordFail event interface
5188
5188
  *
5189
5189
  * @interface ChangePasswordFailCommonParams
5190
- * @since 0.5.14
5190
+ * @since 0.1.0
5191
5191
  * @property {string} errorMessage Server error message
5192
5192
  * @property {number} statusCode Server response status code
5193
5193
  */
@@ -5199,7 +5199,7 @@ interface ChangePasswordFailCommonParams {
5199
5199
  * changePasswordFail event params.
5200
5200
  *
5201
5201
  * @typedef ChangePasswordFailParams
5202
- * @since 0.5.14
5202
+ * @since 0.1.0
5203
5203
  */
5204
5204
  declare type ChangePasswordFailParams = ChangePasswordFailParams$3 & ChangePasswordFailParams$2 & ChangePasswordFailParams$1;
5205
5205
 
@@ -5207,7 +5207,7 @@ declare type ChangePasswordFailParams = ChangePasswordFailParams$3 & ChangePassw
5207
5207
  * Event allowed parameters.
5208
5208
  *
5209
5209
  * @interface SignUpAttemptParams
5210
- * @since 0.5.14
5210
+ * @since 0.1.0
5211
5211
  * @extends GoogleAnalyticsCommonEventParams
5212
5212
  * @extends GoogleAnalyticsCustomEventParams
5213
5213
  * @extends SignUpAttemptCommonParams
@@ -5219,7 +5219,7 @@ interface SignUpAttemptParams$3 extends GoogleAnalyticsCommonEventParams, Google
5219
5219
  * Event allowed parameters.
5220
5220
  *
5221
5221
  * @interface SignUpAttemptParams
5222
- * @since 0.5.14
5222
+ * @since 0.1.0
5223
5223
  * @extends FacebookPixelCommonEventParams
5224
5224
  * @extends FacebookPixelCustomEventParams
5225
5225
  * @extends SignUpAttemptCommonParams
@@ -5231,7 +5231,7 @@ interface SignUpAttemptParams$2 extends FacebookPixelCommonEventParams, Facebook
5231
5231
  * Event allowed parameters.
5232
5232
  *
5233
5233
  * @interface SignUpAttemptParams
5234
- * @since 0.5.14
5234
+ * @since 0.1.0
5235
5235
  * @extends SegmentCommonEventParams
5236
5236
  * @extends SegmentCustomEventParams
5237
5237
  * @extends SignUpAttemptCommonParams
@@ -5243,7 +5243,7 @@ interface SignUpAttemptParams$1 extends SegmentCommonEventParams, SegmentCustomE
5243
5243
  * signUpAttempt event interface
5244
5244
  *
5245
5245
  * @interface SignUpAttemptCommonParams
5246
- * @since 0.5.14
5246
+ * @since 0.1.0
5247
5247
  * @property {AuthProviderMethods} method Supported auth providers methods
5248
5248
  */
5249
5249
  interface SignUpAttemptCommonParams {
@@ -5253,7 +5253,7 @@ interface SignUpAttemptCommonParams {
5253
5253
  * signUpAttempt event params.
5254
5254
  *
5255
5255
  * @typedef SignUpAttemptParams
5256
- * @since 0.5.14
5256
+ * @since 0.1.0
5257
5257
  */
5258
5258
  declare type SignUpAttemptParams = SignUpAttemptParams$3 & SignUpAttemptParams$2 & SignUpAttemptParams$1;
5259
5259
 
@@ -5261,7 +5261,7 @@ declare type SignUpAttemptParams = SignUpAttemptParams$3 & SignUpAttemptParams$2
5261
5261
  * Event allowed parameters.
5262
5262
  *
5263
5263
  * @interface ChangePasswordAttemptParams
5264
- * @since 0.5.14
5264
+ * @since 0.1.0
5265
5265
  * @extends GoogleAnalyticsCommonEventParams
5266
5266
  * @extends GoogleAnalyticsCustomEventParams
5267
5267
  * @extends ChangePasswordAttemptCommonParams
@@ -5275,7 +5275,7 @@ interface ChangePasswordAttemptParams$3 extends GoogleAnalyticsCommonEventParams
5275
5275
  * Event allowed parameters.
5276
5276
  *
5277
5277
  * @interface ChangePasswordAttemptParams
5278
- * @since 0.5.14
5278
+ * @since 0.1.0
5279
5279
  * @extends FacebookPixelCommonEventParams
5280
5280
  * @extends FacebookPixelCustomEventParams
5281
5281
  * @extends ChangePasswordAttemptCommonParams
@@ -5287,7 +5287,7 @@ interface ChangePasswordAttemptParams$2 extends FacebookPixelCommonEventParams,
5287
5287
  * Event allowed parameters.
5288
5288
  *
5289
5289
  * @interface ChangePasswordAttemptParams
5290
- * @since 0.5.14
5290
+ * @since 0.1.0
5291
5291
  * @extends SegmentCommonEventParams
5292
5292
  * @extends SegmentCustomEventParams
5293
5293
  * @extends ChangePasswordAttemptCommonParams
@@ -5299,7 +5299,7 @@ interface ChangePasswordAttemptParams$1 extends SegmentCommonEventParams, Segmen
5299
5299
  * ChangePasswordAttempt event interface
5300
5300
  *
5301
5301
  * @interface ChangePasswordAttemptCommonParams
5302
- * @since 0.5.14
5302
+ * @since 0.1.0
5303
5303
  *
5304
5304
  */
5305
5305
  interface ChangePasswordAttemptCommonParams {
@@ -5308,7 +5308,7 @@ interface ChangePasswordAttemptCommonParams {
5308
5308
  * ChangePasswordAttempt event params.
5309
5309
  *
5310
5310
  * @typedef ChangePasswordAttemptParams
5311
- * @since 0.5.14
5311
+ * @since 0.1.0
5312
5312
  */
5313
5313
  declare type ChangePasswordAttemptParams = ChangePasswordAttemptParams$3 & ChangePasswordAttemptParams$2 & ChangePasswordAttemptParams$1;
5314
5314
 
@@ -5451,15 +5451,15 @@ declare const events: {
5451
5451
  /**
5452
5452
  * Utility function to update the active vendor.
5453
5453
  *
5454
- * @since 0.5.14
5454
+ * @since 0.1.0
5455
5455
  * @param {Vendor|number} vendor New active vendor
5456
5456
  */
5457
- declare const updateActiveVendor: (vendor: Vendor | Vendor["id"] | undefined) => void;
5457
+ declare const updateActiveVendor: (vendor: Vendor | Vendor["id"] | -1 | undefined) => void;
5458
5458
 
5459
5459
  /**
5460
5460
  * Utility function to identify a user across Segment destinations.
5461
5461
  *
5462
- * @since 0.5.14
5462
+ * @since 0.1.0
5463
5463
  * @param {Segment.Traits} identify Pieces of information you know about a user that are included in an identify call
5464
5464
  */
5465
5465
  declare const identifyUser: (identify: Segment$1.Traits) => void;