@artisan-commerce/analytics-web 0.2.0-canary.69 → 0.2.0-canary.70
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/CHANGELOG.md +9 -0
- package/dist/bundle.cjs.js +7 -7
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.d.ts +467 -467
- package/dist/bundle.esm.js +7 -7
- package/dist/bundle.esm.js.map +1 -1
- package/dist/bundle.umd.js +7 -7
- package/dist/bundle.umd.js.map +1 -1
- package/package.json +5 -5
package/dist/bundle.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { CurrencyCodes, Account, Vendor, Store, Catalogue, ArtisnPlatform, Produ
|
|
|
4
4
|
* Google Analytics Provider constructor configuration,
|
|
5
5
|
*
|
|
6
6
|
* @interface GoogleAnalyticsProvider
|
|
7
|
-
* @since 0.
|
|
7
|
+
* @since 0.1.0
|
|
8
8
|
* @implements {AnalyticsProviderConstructor}
|
|
9
9
|
* @implements {GoogleAnalyticsProviderConfig}
|
|
10
10
|
* @property {number} sampleRate how many users get use in the sample (default to 100%)
|
|
@@ -16,7 +16,7 @@ interface GoogleAnalyticsProvider extends Omit<AnalyticsProviderConstructor, "ty
|
|
|
16
16
|
* Google Analytics Provider after instantiated configurable options.
|
|
17
17
|
*
|
|
18
18
|
* @interface GoogleAnalyticsProviderConfig
|
|
19
|
-
* @since 0.
|
|
19
|
+
* @since 0.1.0
|
|
20
20
|
* @property {string} userId the users unique identifier between devices
|
|
21
21
|
* @property {CurrencyCodes} currency user's country monetary code
|
|
22
22
|
* @property {string} language the language of the customer
|
|
@@ -30,7 +30,7 @@ interface GoogleAnalyticsProviderConfig {
|
|
|
30
30
|
* Google Analytics event shared parameters.
|
|
31
31
|
*
|
|
32
32
|
* @interface GoogleAnalyticsCommonEventParams
|
|
33
|
-
* @since 0.
|
|
33
|
+
* @since 0.1.0
|
|
34
34
|
* @extends EventCommonParams
|
|
35
35
|
* @property {Function} callback Fired when event is resolved
|
|
36
36
|
*/
|
|
@@ -41,7 +41,7 @@ interface GoogleAnalyticsCommonEventParams extends EventCommonParams {
|
|
|
41
41
|
* Google Analytics custom event shared parameters.
|
|
42
42
|
*
|
|
43
43
|
* @interface GoogleAnalyticsCustomEventParams
|
|
44
|
-
* @since 0.
|
|
44
|
+
* @since 0.1.0
|
|
45
45
|
*/
|
|
46
46
|
interface GoogleAnalyticsCustomEventParams {
|
|
47
47
|
[key: string]: any;
|
|
@@ -116,7 +116,7 @@ declare namespace Gtag {
|
|
|
116
116
|
* Create a Global Provider provider instance
|
|
117
117
|
*
|
|
118
118
|
* @class
|
|
119
|
-
* @since 0.
|
|
119
|
+
* @since 0.1.0
|
|
120
120
|
* @extends AnalyticsProvider
|
|
121
121
|
*/
|
|
122
122
|
declare class GlobalProvider {
|
|
@@ -135,7 +135,7 @@ declare class GlobalProvider {
|
|
|
135
135
|
*
|
|
136
136
|
* @private
|
|
137
137
|
* @constructs
|
|
138
|
-
* @since 0.
|
|
138
|
+
* @since 0.1.0
|
|
139
139
|
*/
|
|
140
140
|
private constructor();
|
|
141
141
|
get type(): SupportedProviders;
|
|
@@ -149,19 +149,19 @@ declare class GlobalProvider {
|
|
|
149
149
|
/**
|
|
150
150
|
* Gets the allowed vendors of the Analytics Provider.
|
|
151
151
|
*
|
|
152
|
-
* @since 0.
|
|
152
|
+
* @since 0.1.0
|
|
153
153
|
* @returns Analytics Provider vendors, if not specified it fallsback to the global vendors
|
|
154
154
|
*/
|
|
155
|
-
get vendors():
|
|
155
|
+
get vendors(): string[] | undefined;
|
|
156
156
|
setVendors(vendors: GoogleAnalyticsProvider["vendors"]): void;
|
|
157
157
|
/**
|
|
158
158
|
* @override
|
|
159
|
-
* @since 0.
|
|
159
|
+
* @since 0.1.0
|
|
160
160
|
*/
|
|
161
161
|
init(): void;
|
|
162
162
|
/**
|
|
163
163
|
* @override
|
|
164
|
-
* @since 0.
|
|
164
|
+
* @since 0.1.0
|
|
165
165
|
*/
|
|
166
166
|
updateConfig(config?: Partial<GoogleAnalyticsProviderConfig>): void;
|
|
167
167
|
}
|
|
@@ -170,7 +170,7 @@ declare class GlobalProvider {
|
|
|
170
170
|
* Segment Provider constructor configuration,
|
|
171
171
|
*
|
|
172
172
|
* @interface SegmentProvider
|
|
173
|
-
* @since 0.
|
|
173
|
+
* @since 0.1.0
|
|
174
174
|
* @implements {AnalyticsProviderConstructor}
|
|
175
175
|
* @implements {SegmentProviderConfig}
|
|
176
176
|
* @property {number} writeKey Unique identifier for the app.
|
|
@@ -182,7 +182,7 @@ interface SegmentProvider extends Omit<AnalyticsProviderConstructor, "type">, Se
|
|
|
182
182
|
* Segment Provider after instantiated configurable options.
|
|
183
183
|
*
|
|
184
184
|
* @interface SegmentProviderConfig
|
|
185
|
-
* @since 0.
|
|
185
|
+
* @since 0.1.0
|
|
186
186
|
*/
|
|
187
187
|
interface SegmentProviderConfig {
|
|
188
188
|
currency?: CurrencyCodes;
|
|
@@ -191,7 +191,7 @@ interface SegmentProviderConfig {
|
|
|
191
191
|
* Segment event shared parameters.
|
|
192
192
|
*
|
|
193
193
|
* @interface SegmentCommonEventParams
|
|
194
|
-
* @since 0.
|
|
194
|
+
* @since 0.1.0
|
|
195
195
|
* @extends EventCommonParams
|
|
196
196
|
*/
|
|
197
197
|
interface SegmentCommonEventParams extends EventCommonParams {
|
|
@@ -200,7 +200,7 @@ interface SegmentCommonEventParams extends EventCommonParams {
|
|
|
200
200
|
* Segment custom event shared parameters.
|
|
201
201
|
*
|
|
202
202
|
* @interface SegmentCustomEventParams
|
|
203
|
-
* @since 0.
|
|
203
|
+
* @since 0.1.0
|
|
204
204
|
*/
|
|
205
205
|
interface SegmentCustomEventParams {
|
|
206
206
|
[key: string]: any;
|
|
@@ -397,14 +397,14 @@ declare namespace Segment$1 {
|
|
|
397
397
|
* Types of artisn analytics providers
|
|
398
398
|
*
|
|
399
399
|
* @typedef AnalyticsProviderTypes
|
|
400
|
-
* @since 0.
|
|
400
|
+
* @since 0.1.0
|
|
401
401
|
*/
|
|
402
402
|
declare type AnalyticsProviderTypes = AnalyticsProvider | GlobalProvider;
|
|
403
403
|
/**
|
|
404
404
|
* Shared params across every event.
|
|
405
405
|
*
|
|
406
406
|
* @interface EventCommonParams
|
|
407
|
-
* @since 0.
|
|
407
|
+
* @since 0.1.0
|
|
408
408
|
* @property {string} userId The unique identifier of a user across platforms
|
|
409
409
|
* @property {boolean} isAnonymous Whether the user is registered or not
|
|
410
410
|
* @property {CurrencyCodes} currency user's country monetary code
|
|
@@ -419,7 +419,7 @@ interface EventCommonParams {
|
|
|
419
419
|
* Facebook Pixel Provider constructor configuration.
|
|
420
420
|
*
|
|
421
421
|
* @interface FacebookPixelProvider
|
|
422
|
-
* @since 0.
|
|
422
|
+
* @since 0.1.0
|
|
423
423
|
* @implements AnalyticsProviderConstructor, FacebookPixelProviderConfig
|
|
424
424
|
* @property {string} version Facebook Pixel SDK version
|
|
425
425
|
*/
|
|
@@ -430,7 +430,7 @@ interface FacebookPixelProvider extends Omit<AnalyticsProviderConstructor, "type
|
|
|
430
430
|
* Facebook Pixel Provider after instantiated configurable options.
|
|
431
431
|
*
|
|
432
432
|
* @interface FacebookPixelProvider
|
|
433
|
-
* @since 0.
|
|
433
|
+
* @since 0.1.0
|
|
434
434
|
* @property {CurrencyCodes} currency user's country monetary code
|
|
435
435
|
*/
|
|
436
436
|
interface FacebookPixelProviderConfig {
|
|
@@ -440,7 +440,7 @@ interface FacebookPixelProviderConfig {
|
|
|
440
440
|
* Facebook Pixel event shared parameters.
|
|
441
441
|
*
|
|
442
442
|
* @interface FacebookPixelCommonEventParams
|
|
443
|
-
* @since 0.
|
|
443
|
+
* @since 0.1.0
|
|
444
444
|
* @extends EventCommonParams
|
|
445
445
|
*/
|
|
446
446
|
interface FacebookPixelCommonEventParams extends EventCommonParams {
|
|
@@ -449,7 +449,7 @@ interface FacebookPixelCommonEventParams extends EventCommonParams {
|
|
|
449
449
|
* Facebook Pixel custom event shared parameters.
|
|
450
450
|
*
|
|
451
451
|
* @interface FacebookPixelCustomEventParams
|
|
452
|
-
* @since 0.
|
|
452
|
+
* @since 0.1.0
|
|
453
453
|
*/
|
|
454
454
|
interface FacebookPixelCustomEventParams {
|
|
455
455
|
[key: string]: any;
|
|
@@ -475,14 +475,14 @@ declare namespace Fbq {
|
|
|
475
475
|
* Analytics providers configurable options.
|
|
476
476
|
*
|
|
477
477
|
* @typedef ArtisnPlatform
|
|
478
|
-
* @since 0.
|
|
478
|
+
* @since 0.1.0
|
|
479
479
|
*/
|
|
480
480
|
declare type AnalyticsProvidersConfigs = Partial<GoogleAnalyticsProviderConfig> | Partial<FacebookPixelProviderConfig>;
|
|
481
481
|
/**
|
|
482
482
|
* Analytics event metadata to be included in every sent event.
|
|
483
483
|
*
|
|
484
484
|
* @interface ArtisnPlatform
|
|
485
|
-
* @since 0.
|
|
485
|
+
* @since 0.1.0
|
|
486
486
|
* @property {number} accountId the id of the account it is running on
|
|
487
487
|
* @property {number} vendorId the id of the active vendor
|
|
488
488
|
* @property {string} vendorName the name of the active vendor
|
|
@@ -512,14 +512,14 @@ interface AnalyticsMeta {
|
|
|
512
512
|
* Analytics supported providers.
|
|
513
513
|
*
|
|
514
514
|
* @typedef ArtisnPlatform
|
|
515
|
-
* @since 0.
|
|
515
|
+
* @since 0.1.0
|
|
516
516
|
*/
|
|
517
517
|
declare type SupportedProviders = "GOOGLE_ANALYTICS" | "FACEBOOK_PIXEL" | "SEGMENT";
|
|
518
518
|
/**
|
|
519
519
|
* Supported auth providers methods.
|
|
520
520
|
*
|
|
521
521
|
* @typedef AuthProviderMethods
|
|
522
|
-
* @since 0.
|
|
522
|
+
* @since 0.1.0
|
|
523
523
|
*/
|
|
524
524
|
declare type AuthProviderMethods = "Google" | "Facebook" | "Apple" | "Email and Password" | "Phone";
|
|
525
525
|
|
|
@@ -527,7 +527,7 @@ declare type AuthProviderMethods = "Google" | "Facebook" | "Apple" | "Email and
|
|
|
527
527
|
* Analytics Provider base intance config.
|
|
528
528
|
*
|
|
529
529
|
* @interface AnalyticsProviderConstructor
|
|
530
|
-
* @since 0.
|
|
530
|
+
* @since 0.1.0
|
|
531
531
|
* @property {SupportedProviders} type Type of analytics provider
|
|
532
532
|
* @property {string} name Analytics provider name
|
|
533
533
|
* @property {string} trackingId Analytics provider tracking id
|
|
@@ -543,7 +543,7 @@ interface AnalyticsProviderConstructor {
|
|
|
543
543
|
* AnalyticsProvider Class interface.
|
|
544
544
|
*
|
|
545
545
|
* @interface IAnaliticsProvider
|
|
546
|
-
* @since 0.
|
|
546
|
+
* @since 0.1.0
|
|
547
547
|
* @property {Function} init Initializes the provider connection
|
|
548
548
|
* @property {Function} updateConfig Updates the initial config of the provider
|
|
549
549
|
* @property {number[]} vendors The provider selected vendors ids
|
|
@@ -558,7 +558,7 @@ interface IAnaliticsProvider {
|
|
|
558
558
|
* Represents the base properties all AnalyticsProviders have.
|
|
559
559
|
*
|
|
560
560
|
* @abstract
|
|
561
|
-
* @since 0.
|
|
561
|
+
* @since 0.1.0
|
|
562
562
|
*/
|
|
563
563
|
declare abstract class AnalyticsProvider implements IAnaliticsProvider {
|
|
564
564
|
private initialized;
|
|
@@ -570,27 +570,27 @@ declare abstract class AnalyticsProvider implements IAnaliticsProvider {
|
|
|
570
570
|
* Representation of a Customer Account
|
|
571
571
|
*
|
|
572
572
|
* @constructs
|
|
573
|
-
* @since 0.
|
|
573
|
+
* @since 0.1.0
|
|
574
574
|
* @param {Config} config artisn's account unique identifier.
|
|
575
575
|
*/
|
|
576
576
|
constructor(config: AnalyticsProviderConstructor);
|
|
577
577
|
/**
|
|
578
578
|
* Gets the allowed vendors of the Analytics Provider.
|
|
579
579
|
*
|
|
580
|
-
* @since 0.
|
|
580
|
+
* @since 0.1.0
|
|
581
581
|
* @returns Analytics Provider vendors, if not specified it fallsback to the global vendors
|
|
582
582
|
*/
|
|
583
|
-
get vendors():
|
|
583
|
+
get vendors(): string[] | undefined;
|
|
584
584
|
/**
|
|
585
585
|
* Inserts the initialization script to the body of the document.
|
|
586
586
|
*
|
|
587
|
-
* @since 0.
|
|
587
|
+
* @since 0.1.0
|
|
588
588
|
*/
|
|
589
589
|
init(): void;
|
|
590
590
|
/**
|
|
591
591
|
* Updates the provider instance config for the next events.
|
|
592
592
|
*
|
|
593
|
-
* @since 0.
|
|
593
|
+
* @since 0.1.0
|
|
594
594
|
* @param {Partial<unknown>} config Analyticis provider configurable options
|
|
595
595
|
*/
|
|
596
596
|
updateConfig(config: Partial<unknown>): void;
|
|
@@ -600,7 +600,7 @@ declare abstract class AnalyticsProvider implements IAnaliticsProvider {
|
|
|
600
600
|
* Create a Facebook Pixel provider instance.
|
|
601
601
|
*
|
|
602
602
|
* @class
|
|
603
|
-
* @since 0.
|
|
603
|
+
* @since 0.1.0
|
|
604
604
|
* @extends AnalyticsProvider
|
|
605
605
|
*/
|
|
606
606
|
declare class FacebookPixel extends AnalyticsProvider {
|
|
@@ -610,7 +610,7 @@ declare class FacebookPixel extends AnalyticsProvider {
|
|
|
610
610
|
* Contructs a Facebook Pixel Provider
|
|
611
611
|
*
|
|
612
612
|
* @constructs
|
|
613
|
-
* @since 0.
|
|
613
|
+
* @since 0.1.0
|
|
614
614
|
* @param {Config} config provider configuration
|
|
615
615
|
*/
|
|
616
616
|
constructor(config: FacebookPixelProvider);
|
|
@@ -618,12 +618,12 @@ declare class FacebookPixel extends AnalyticsProvider {
|
|
|
618
618
|
get currency(): FacebookPixelProvider["currency"];
|
|
619
619
|
/**
|
|
620
620
|
* @override
|
|
621
|
-
* @since 0.
|
|
621
|
+
* @since 0.1.0
|
|
622
622
|
*/
|
|
623
623
|
init(): void;
|
|
624
624
|
/**
|
|
625
625
|
* @override
|
|
626
|
-
* @since 0.
|
|
626
|
+
* @since 0.1.0
|
|
627
627
|
*/
|
|
628
628
|
updateConfig(config?: Partial<FacebookPixelProviderConfig>): void;
|
|
629
629
|
}
|
|
@@ -632,7 +632,7 @@ declare class FacebookPixel extends AnalyticsProvider {
|
|
|
632
632
|
* Create a Google Analytics provider instance
|
|
633
633
|
*
|
|
634
634
|
* @class
|
|
635
|
-
* @since 0.
|
|
635
|
+
* @since 0.1.0
|
|
636
636
|
* @extends AnalyticsProvider
|
|
637
637
|
*/
|
|
638
638
|
declare class GoogleAnalytics extends AnalyticsProvider {
|
|
@@ -644,7 +644,7 @@ declare class GoogleAnalytics extends AnalyticsProvider {
|
|
|
644
644
|
* Contructs a Google Analytics Provider
|
|
645
645
|
*
|
|
646
646
|
* @constructs
|
|
647
|
-
* @since 0.
|
|
647
|
+
* @since 0.1.0
|
|
648
648
|
* @param {Config} config provider configuration
|
|
649
649
|
*/
|
|
650
650
|
constructor(config: GoogleAnalyticsProvider);
|
|
@@ -654,12 +654,12 @@ declare class GoogleAnalytics extends AnalyticsProvider {
|
|
|
654
654
|
get currency(): GoogleAnalyticsProvider["currency"];
|
|
655
655
|
/**
|
|
656
656
|
* @override
|
|
657
|
-
* @since 0.
|
|
657
|
+
* @since 0.1.0
|
|
658
658
|
*/
|
|
659
659
|
init(): void;
|
|
660
660
|
/**
|
|
661
661
|
* @override
|
|
662
|
-
* @since 0.
|
|
662
|
+
* @since 0.1.0
|
|
663
663
|
*/
|
|
664
664
|
updateConfig(config?: Partial<GoogleAnalyticsProviderConfig>): void;
|
|
665
665
|
}
|
|
@@ -668,7 +668,7 @@ declare class GoogleAnalytics extends AnalyticsProvider {
|
|
|
668
668
|
* Create a Segment provider instance
|
|
669
669
|
*
|
|
670
670
|
* @class
|
|
671
|
-
* @since 0.
|
|
671
|
+
* @since 0.1.0
|
|
672
672
|
* @extends AnalyticsProvider
|
|
673
673
|
*/
|
|
674
674
|
declare class Segment extends AnalyticsProvider {
|
|
@@ -678,18 +678,18 @@ declare class Segment extends AnalyticsProvider {
|
|
|
678
678
|
* Contructs a Segment Provider
|
|
679
679
|
*
|
|
680
680
|
* @constructs
|
|
681
|
-
* @since 0.
|
|
681
|
+
* @since 0.1.0
|
|
682
682
|
* @param {Config} config provider configuration
|
|
683
683
|
*/
|
|
684
684
|
constructor(config: SegmentProvider);
|
|
685
685
|
/**
|
|
686
686
|
* @override
|
|
687
|
-
* @since 0.
|
|
687
|
+
* @since 0.1.0
|
|
688
688
|
*/
|
|
689
689
|
init(): Promise<void>;
|
|
690
690
|
/**
|
|
691
691
|
* @override
|
|
692
|
-
* @since 0.
|
|
692
|
+
* @since 0.1.0
|
|
693
693
|
*/
|
|
694
694
|
updateConfig(config?: Partial<SegmentProviderConfig>): void;
|
|
695
695
|
}
|
|
@@ -704,7 +704,7 @@ declare const Providers: {
|
|
|
704
704
|
* Initial configuration that can be passed to initAnalytics method.
|
|
705
705
|
*
|
|
706
706
|
* @interface InitAnalyticsConfig
|
|
707
|
-
* @since 0.
|
|
707
|
+
* @since 0.1.0
|
|
708
708
|
* @property {AnalyticsProviderTypes[]} providers Analytics providers instances that can be targeted to emit events
|
|
709
709
|
* @property {number} activeVendor The vendor that will emit the events
|
|
710
710
|
* @property {number[]|undefined} vendors List of vendors that can emit events if active
|
|
@@ -724,7 +724,7 @@ interface InitAnalyticsConfig {
|
|
|
724
724
|
* Commerce's metadata
|
|
725
725
|
*
|
|
726
726
|
* @interface InitAnalyticsConfigMeta
|
|
727
|
-
* @since 0.
|
|
727
|
+
* @since 0.1.0
|
|
728
728
|
* @extends AnalyticsMeta
|
|
729
729
|
* @property {string} vendorName The name of the active vendor
|
|
730
730
|
* @property {number} storeId The id of the active store
|
|
@@ -745,7 +745,7 @@ interface InitAnalyticsConfigMeta extends Omit<AnalyticsMeta, "vendorId" | "vers
|
|
|
745
745
|
/**
|
|
746
746
|
* Initializes the analytics module, connects to every provider.
|
|
747
747
|
*
|
|
748
|
-
* @since 0.
|
|
748
|
+
* @since 0.1.0
|
|
749
749
|
* @param {InitAnalyticsConfig} config Initialization configuration.
|
|
750
750
|
*/
|
|
751
751
|
declare const initAnalytics: (config: InitAnalyticsConfig) => void;
|
|
@@ -754,7 +754,7 @@ declare const initAnalytics: (config: InitAnalyticsConfig) => void;
|
|
|
754
754
|
* Event allowed parameters.
|
|
755
755
|
*
|
|
756
756
|
* @interface UpdateWorkflowParams
|
|
757
|
-
* @since 0.
|
|
757
|
+
* @since 0.1.0
|
|
758
758
|
* @extends GoogleAnalyticsCommonEventParams
|
|
759
759
|
* @extends GoogleAnalyticsCustomEventParams
|
|
760
760
|
* @extends UpdateWorkflowCommonParams
|
|
@@ -766,7 +766,7 @@ interface UpdateWorkflowParams$3 extends GoogleAnalyticsCommonEventParams, Googl
|
|
|
766
766
|
* Event allowed parameters.
|
|
767
767
|
*
|
|
768
768
|
* @interface UpdateWorkflowParams
|
|
769
|
-
* @since 0.
|
|
769
|
+
* @since 0.1.0
|
|
770
770
|
* @extends FacebookPixelCommonEventParams
|
|
771
771
|
* @extends FacebookPixelCustomEventParams
|
|
772
772
|
* @extends UpdateWorkflowCommonParams
|
|
@@ -778,7 +778,7 @@ interface UpdateWorkflowParams$2 extends FacebookPixelCommonEventParams, Faceboo
|
|
|
778
778
|
* Event allowed parameters.
|
|
779
779
|
*
|
|
780
780
|
* @interface UpdateWorkflowParams
|
|
781
|
-
* @since 0.
|
|
781
|
+
* @since 0.1.0
|
|
782
782
|
* @extends SegmentCommonEventParams
|
|
783
783
|
* @extends SegmentCustomEventParams
|
|
784
784
|
* @extends UpdateWorkflowCommonParams
|
|
@@ -805,7 +805,7 @@ declare type PaymentType = "Cash" | "Card" | "Dataphone" | "Other";
|
|
|
805
805
|
* updateWorkflow event interface.
|
|
806
806
|
*
|
|
807
807
|
* @interface UpdateWorkflowCommonParams
|
|
808
|
-
* @since 0.
|
|
808
|
+
* @since 0.1.0
|
|
809
809
|
* @property {Workflow} previousWorkflow The previous selected workflow name (e.g. Delivery)
|
|
810
810
|
* @property {Workflow} nextWorkflow The next workflow name (e.g. Delivery)
|
|
811
811
|
*/
|
|
@@ -817,7 +817,7 @@ interface UpdateWorkflowCommonParams {
|
|
|
817
817
|
* updateWorkflow event params.
|
|
818
818
|
*
|
|
819
819
|
* @typedef UpdateWorkflowParams
|
|
820
|
-
* @since 0.
|
|
820
|
+
* @since 0.1.0
|
|
821
821
|
*/
|
|
822
822
|
declare type UpdateWorkflowParams = UpdateWorkflowParams$3 & UpdateWorkflowParams$2 & UpdateWorkflowParams$1;
|
|
823
823
|
|
|
@@ -825,7 +825,7 @@ declare type UpdateWorkflowParams = UpdateWorkflowParams$3 & UpdateWorkflowParam
|
|
|
825
825
|
* Event allowed parameters.
|
|
826
826
|
*
|
|
827
827
|
* @interface SelectWorkflowParams
|
|
828
|
-
* @since 0.
|
|
828
|
+
* @since 0.1.0
|
|
829
829
|
* @extends GoogleAnalyticsCommonEventParams
|
|
830
830
|
* @extends GoogleAnalyticsCustomEventParams
|
|
831
831
|
* @extends SelectWorkflowCommonParams
|
|
@@ -837,7 +837,7 @@ interface SelectWorkflowParams$3 extends GoogleAnalyticsCommonEventParams, Googl
|
|
|
837
837
|
* Event allowed parameters.
|
|
838
838
|
*
|
|
839
839
|
* @interface SelectWorkflowParams
|
|
840
|
-
* @since 0.
|
|
840
|
+
* @since 0.1.0
|
|
841
841
|
* @extends FacebookPixelCommonEventParams
|
|
842
842
|
* @extends FacebookPixelCustomEventParams
|
|
843
843
|
* @extends SelectWorkflowCommonParams
|
|
@@ -849,7 +849,7 @@ interface SelectWorkflowParams$2 extends FacebookPixelCommonEventParams, Faceboo
|
|
|
849
849
|
* Event allowed parameters.
|
|
850
850
|
*
|
|
851
851
|
* @interface SelectWorkflowParams
|
|
852
|
-
* @since 0.
|
|
852
|
+
* @since 0.1.0
|
|
853
853
|
* @extends SegmentCommonEventParams
|
|
854
854
|
* @extends SegmentCustomEventParams
|
|
855
855
|
* @extends SelectWorkflowCommonParams
|
|
@@ -861,7 +861,7 @@ interface SelectWorkflowParams$1 extends SegmentCommonEventParams, SegmentCustom
|
|
|
861
861
|
* selectWorkflow event interface.
|
|
862
862
|
*
|
|
863
863
|
* @interface SelectWorkflowCommonParams
|
|
864
|
-
* @since 0.
|
|
864
|
+
* @since 0.1.0
|
|
865
865
|
* @property {Workflow} workflow The workflow name (e.g. Delivery)
|
|
866
866
|
*/
|
|
867
867
|
interface SelectWorkflowCommonParams {
|
|
@@ -871,7 +871,7 @@ interface SelectWorkflowCommonParams {
|
|
|
871
871
|
* selectWorkflow event params.
|
|
872
872
|
*
|
|
873
873
|
* @typedef SelectWorkflowParams
|
|
874
|
-
* @since 0.
|
|
874
|
+
* @since 0.1.0
|
|
875
875
|
*/
|
|
876
876
|
declare type SelectWorkflowParams = SelectWorkflowParams$3 & SelectWorkflowParams$2 & SelectWorkflowParams$1;
|
|
877
877
|
|
|
@@ -879,7 +879,7 @@ declare type SelectWorkflowParams = SelectWorkflowParams$3 & SelectWorkflowParam
|
|
|
879
879
|
* Event allowed parameters.
|
|
880
880
|
*
|
|
881
881
|
* @interface SetVendorParams
|
|
882
|
-
* @since 0.
|
|
882
|
+
* @since 0.1.0
|
|
883
883
|
* @extends GoogleAnalyticsCommonEventParams
|
|
884
884
|
* @extends GoogleAnalyticsCustomEventParams
|
|
885
885
|
* @extends SetVendorCommonParams
|
|
@@ -891,7 +891,7 @@ interface SetVendorParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnal
|
|
|
891
891
|
* Event allowed parameters.
|
|
892
892
|
*
|
|
893
893
|
* @interface SetVendorParams
|
|
894
|
-
* @since 0.
|
|
894
|
+
* @since 0.1.0
|
|
895
895
|
* @extends FacebookPixelCommonEventParams
|
|
896
896
|
* @extends FacebookPixelCustomEventParams
|
|
897
897
|
* @extends SetVendorCommonParams
|
|
@@ -903,7 +903,7 @@ interface SetVendorParams$2 extends FacebookPixelCommonEventParams, FacebookPixe
|
|
|
903
903
|
* Event allowed parameters.
|
|
904
904
|
*
|
|
905
905
|
* @interface SetVendorParams
|
|
906
|
-
* @since 0.
|
|
906
|
+
* @since 0.1.0
|
|
907
907
|
* @extends SegmentCommonEventParams
|
|
908
908
|
* @extends SegmentCustomEventParams
|
|
909
909
|
* @extends SetVendorCommonParams
|
|
@@ -915,19 +915,19 @@ interface SetVendorParams$1 extends SegmentCommonEventParams, SegmentCustomEvent
|
|
|
915
915
|
* setVendor event interface.
|
|
916
916
|
*
|
|
917
917
|
* @interface SetVendorCommonParams
|
|
918
|
-
* @since 0.
|
|
919
|
-
* @property {
|
|
918
|
+
* @since 0.1.0
|
|
919
|
+
* @property {string | -1} vendorId The new set vendor identifier
|
|
920
920
|
* @property {string} vendorName The new set vendor name
|
|
921
921
|
*/
|
|
922
922
|
interface SetVendorCommonParams {
|
|
923
|
-
vendorId: Vendor["id"];
|
|
923
|
+
vendorId: Vendor["id"] | -1;
|
|
924
924
|
vendorName?: Vendor["name"];
|
|
925
925
|
}
|
|
926
926
|
/**
|
|
927
927
|
* setVendor event params.
|
|
928
928
|
*
|
|
929
929
|
* @typedef SetVendorParams
|
|
930
|
-
* @since 0.
|
|
930
|
+
* @since 0.1.0
|
|
931
931
|
*/
|
|
932
932
|
declare type SetVendorParams = SetVendorParams$3 & SetVendorParams$2 & SetVendorParams$1;
|
|
933
933
|
|
|
@@ -935,7 +935,7 @@ declare type SetVendorParams = SetVendorParams$3 & SetVendorParams$2 & SetVendor
|
|
|
935
935
|
* Event allowed parameters.
|
|
936
936
|
*
|
|
937
937
|
* @interface ChangeVendorParams
|
|
938
|
-
* @since 0.
|
|
938
|
+
* @since 0.1.0
|
|
939
939
|
* @extends GoogleAnalyticsCommonEventParams
|
|
940
940
|
* @extends GoogleAnalyticsCustomEventParams
|
|
941
941
|
* @extends ChangeVendorCommonParams
|
|
@@ -947,7 +947,7 @@ interface ChangeVendorParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
|
|
|
947
947
|
* Event allowed parameters.
|
|
948
948
|
*
|
|
949
949
|
* @interface ChangeVendorParams
|
|
950
|
-
* @since 0.
|
|
950
|
+
* @since 0.1.0
|
|
951
951
|
* @extends FacebookPixelCommonEventParams
|
|
952
952
|
* @extends FacebookPixelCustomEventParams
|
|
953
953
|
* @extends ChangeVendorCommonParams
|
|
@@ -959,7 +959,7 @@ interface ChangeVendorParams$2 extends FacebookPixelCommonEventParams, FacebookP
|
|
|
959
959
|
* Event allowed parameters.
|
|
960
960
|
*
|
|
961
961
|
* @interface ChangeVendorParams
|
|
962
|
-
* @since 0.
|
|
962
|
+
* @since 0.1.0
|
|
963
963
|
* @extends SegmentCommonEventParams
|
|
964
964
|
* @extends SegmentCustomEventParams
|
|
965
965
|
* @extends ChangeVendorCommonParams
|
|
@@ -971,23 +971,23 @@ interface ChangeVendorParams$1 extends SegmentCommonEventParams, SegmentCustomEv
|
|
|
971
971
|
* changeVendor event interface.
|
|
972
972
|
*
|
|
973
973
|
* @interface ChangeVendorCommonParams
|
|
974
|
-
* @since 0.
|
|
975
|
-
* @property {
|
|
974
|
+
* @since 0.1.0
|
|
975
|
+
* @property {string | -1} previousVendorId The vendor identifier that was selected
|
|
976
976
|
* @property {string} previousVendorName The vendor name that was selected
|
|
977
|
-
* @property {
|
|
977
|
+
* @property {string | -1} nextVendorId The new selected vendor identifier
|
|
978
978
|
* @property {string} nextVendorName The new selected vendor name
|
|
979
979
|
*/
|
|
980
980
|
interface ChangeVendorCommonParams {
|
|
981
|
-
previousVendorId: Vendor["id"];
|
|
981
|
+
previousVendorId: Vendor["id"] | -1;
|
|
982
982
|
previousVendorName?: Vendor["name"];
|
|
983
|
-
nextVendorId: Vendor["id"];
|
|
983
|
+
nextVendorId: Vendor["id"] | -1;
|
|
984
984
|
nextVendorName?: Vendor["name"];
|
|
985
985
|
}
|
|
986
986
|
/**
|
|
987
987
|
* changeVendor event params.
|
|
988
988
|
*
|
|
989
989
|
* @typedef ChangeVendorParams
|
|
990
|
-
* @since 0.
|
|
990
|
+
* @since 0.1.0
|
|
991
991
|
*/
|
|
992
992
|
declare type ChangeVendorParams = ChangeVendorParams$3 & ChangeVendorParams$2 & ChangeVendorParams$1;
|
|
993
993
|
|
|
@@ -995,7 +995,7 @@ declare type ChangeVendorParams = ChangeVendorParams$3 & ChangeVendorParams$2 &
|
|
|
995
995
|
* Event allowed parameters.
|
|
996
996
|
*
|
|
997
997
|
* @interface UpdateUserInfoParams
|
|
998
|
-
* @since 0.
|
|
998
|
+
* @since 0.1.0
|
|
999
999
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1000
1000
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1001
1001
|
* @extends UpdateUserInfoCommonParams
|
|
@@ -1009,7 +1009,7 @@ interface UpdateUserInfoParams$3 extends GoogleAnalyticsCommonEventParams, Googl
|
|
|
1009
1009
|
* Event allowed parameters.
|
|
1010
1010
|
*
|
|
1011
1011
|
* @interface UpdateUserInfoParams
|
|
1012
|
-
* @since 0.
|
|
1012
|
+
* @since 0.1.0
|
|
1013
1013
|
* @extends FacebookPixelCommonEventParams
|
|
1014
1014
|
* @extends FacebookPixelCustomEventParams
|
|
1015
1015
|
* @extends UpdateUserInfoCommonParams
|
|
@@ -1021,7 +1021,7 @@ interface UpdateUserInfoParams$2 extends FacebookPixelCommonEventParams, Faceboo
|
|
|
1021
1021
|
* Event allowed parameters.
|
|
1022
1022
|
*
|
|
1023
1023
|
* @interface UpdateUserInfoParams
|
|
1024
|
-
* @since 0.
|
|
1024
|
+
* @since 0.1.0
|
|
1025
1025
|
* @extends SegmentCommonEventParams
|
|
1026
1026
|
* @extends SegmentCustomEventParams
|
|
1027
1027
|
* @extends UpdateUserInfoCommonParams
|
|
@@ -1035,7 +1035,7 @@ interface UpdateUserInfoParams$1 extends SegmentCommonEventParams, SegmentCustom
|
|
|
1035
1035
|
* updateUserInfo event interface.
|
|
1036
1036
|
*
|
|
1037
1037
|
* @interface UpdateUserInfoCommonParams
|
|
1038
|
-
* @since 0.
|
|
1038
|
+
* @since 0.1.0
|
|
1039
1039
|
* @property {string[]} fields The updated fields names
|
|
1040
1040
|
*/
|
|
1041
1041
|
interface UpdateUserInfoCommonParams {
|
|
@@ -1045,7 +1045,7 @@ interface UpdateUserInfoCommonParams {
|
|
|
1045
1045
|
* updateUserInfo event params.
|
|
1046
1046
|
*
|
|
1047
1047
|
* @typedef UpdateUserInfoParams
|
|
1048
|
-
* @since 0.
|
|
1048
|
+
* @since 0.1.0
|
|
1049
1049
|
*/
|
|
1050
1050
|
declare type UpdateUserInfoParams = UpdateUserInfoParams$3 & UpdateUserInfoParams$2 & UpdateUserInfoParams$1;
|
|
1051
1051
|
|
|
@@ -1053,7 +1053,7 @@ declare type UpdateUserInfoParams = UpdateUserInfoParams$3 & UpdateUserInfoParam
|
|
|
1053
1053
|
* Event allowed parameters.
|
|
1054
1054
|
*
|
|
1055
1055
|
* @interface SetUserInfoParams
|
|
1056
|
-
* @since 0.
|
|
1056
|
+
* @since 0.1.0
|
|
1057
1057
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1058
1058
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1059
1059
|
* @extends SetUserInfoCommonParams
|
|
@@ -1067,7 +1067,7 @@ interface SetUserInfoParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
|
|
|
1067
1067
|
* Event allowed parameters.
|
|
1068
1068
|
*
|
|
1069
1069
|
* @interface SetUserInfoParams
|
|
1070
|
-
* @since 0.
|
|
1070
|
+
* @since 0.1.0
|
|
1071
1071
|
* @extends FacebookPixelCommonEventParams
|
|
1072
1072
|
* @extends FacebookPixelCustomEventParams
|
|
1073
1073
|
* @extends SetUserInfoCommonParams
|
|
@@ -1079,7 +1079,7 @@ interface SetUserInfoParams$2 extends FacebookPixelCommonEventParams, FacebookPi
|
|
|
1079
1079
|
* Event allowed parameters.
|
|
1080
1080
|
*
|
|
1081
1081
|
* @interface SetUserInfoParams
|
|
1082
|
-
* @since 0.
|
|
1082
|
+
* @since 0.1.0
|
|
1083
1083
|
* @extends SegmentCommonEventParams
|
|
1084
1084
|
* @extends SegmentCustomEventParams
|
|
1085
1085
|
* @extends SetUserInfoCommonParams
|
|
@@ -1093,7 +1093,7 @@ interface SetUserInfoParams$1 extends SegmentCommonEventParams, SegmentCustomEve
|
|
|
1093
1093
|
* setUserInfo event interface.
|
|
1094
1094
|
*
|
|
1095
1095
|
* @interface SetUserInfoCommonParams
|
|
1096
|
-
* @since 0.
|
|
1096
|
+
* @since 0.1.0
|
|
1097
1097
|
*/
|
|
1098
1098
|
interface SetUserInfoCommonParams {
|
|
1099
1099
|
}
|
|
@@ -1101,7 +1101,7 @@ interface SetUserInfoCommonParams {
|
|
|
1101
1101
|
* setUserInfo event params.
|
|
1102
1102
|
*
|
|
1103
1103
|
* @typedef SetUserInfoParams
|
|
1104
|
-
* @since 0.
|
|
1104
|
+
* @since 0.1.0
|
|
1105
1105
|
*/
|
|
1106
1106
|
declare type SetUserInfoParams = SetUserInfoParams$3 & SetUserInfoParams$2 & SetUserInfoParams$1;
|
|
1107
1107
|
|
|
@@ -1109,7 +1109,7 @@ declare type SetUserInfoParams = SetUserInfoParams$3 & SetUserInfoParams$2 & Set
|
|
|
1109
1109
|
* Event allowed parameters.
|
|
1110
1110
|
*
|
|
1111
1111
|
* @interface SetStoreParams
|
|
1112
|
-
* @since 0.
|
|
1112
|
+
* @since 0.1.0
|
|
1113
1113
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1114
1114
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1115
1115
|
* @extends SetStoreCommonParams
|
|
@@ -1121,7 +1121,7 @@ interface SetStoreParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnaly
|
|
|
1121
1121
|
* Event allowed parameters.
|
|
1122
1122
|
*
|
|
1123
1123
|
* @interface SetStoreParams
|
|
1124
|
-
* @since 0.
|
|
1124
|
+
* @since 0.1.0
|
|
1125
1125
|
* @extends FacebookPixelCommonEventParams
|
|
1126
1126
|
* @extends FacebookPixelCustomEventParams
|
|
1127
1127
|
* @extends SetStoreCommonParams
|
|
@@ -1133,7 +1133,7 @@ interface SetStoreParams$2 extends FacebookPixelCommonEventParams, FacebookPixel
|
|
|
1133
1133
|
* Event allowed parameters.
|
|
1134
1134
|
*
|
|
1135
1135
|
* @interface SetStoreParams
|
|
1136
|
-
* @since 0.
|
|
1136
|
+
* @since 0.1.0
|
|
1137
1137
|
* @extends SegmentCommonEventParams
|
|
1138
1138
|
* @extends SegmentCustomEventParams
|
|
1139
1139
|
* @extends SetStoreCommonParams
|
|
@@ -1145,7 +1145,7 @@ interface SetStoreParams$1 extends SegmentCommonEventParams, SegmentCustomEventP
|
|
|
1145
1145
|
* setStore event interface.
|
|
1146
1146
|
*
|
|
1147
1147
|
* @interface SetStoreCommonParams
|
|
1148
|
-
* @since 0.
|
|
1148
|
+
* @since 0.1.0
|
|
1149
1149
|
* @property {Store} store The new current store
|
|
1150
1150
|
*/
|
|
1151
1151
|
interface SetStoreCommonParams {
|
|
@@ -1155,7 +1155,7 @@ interface SetStoreCommonParams {
|
|
|
1155
1155
|
* setStore event params.
|
|
1156
1156
|
*
|
|
1157
1157
|
* @typedef SetStoreParams
|
|
1158
|
-
* @since 0.
|
|
1158
|
+
* @since 0.1.0
|
|
1159
1159
|
*/
|
|
1160
1160
|
declare type SetStoreParams = SetStoreParams$3 & SetStoreParams$2 & SetStoreParams$1;
|
|
1161
1161
|
|
|
@@ -1163,7 +1163,7 @@ declare type SetStoreParams = SetStoreParams$3 & SetStoreParams$2 & SetStorePara
|
|
|
1163
1163
|
* Event allowed parameters.
|
|
1164
1164
|
*
|
|
1165
1165
|
* @interface ChangeStoreParams
|
|
1166
|
-
* @since 0.
|
|
1166
|
+
* @since 0.1.0
|
|
1167
1167
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1168
1168
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1169
1169
|
* @extends ChangeStoreCommonParams
|
|
@@ -1175,7 +1175,7 @@ interface ChangeStoreParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
|
|
|
1175
1175
|
* Event allowed parameters.
|
|
1176
1176
|
*
|
|
1177
1177
|
* @interface ChangeStoreParams
|
|
1178
|
-
* @since 0.
|
|
1178
|
+
* @since 0.1.0
|
|
1179
1179
|
* @extends FacebookPixelCommonEventParams
|
|
1180
1180
|
* @extends FacebookPixelCustomEventParams
|
|
1181
1181
|
* @extends ChangeStoreCommonParams
|
|
@@ -1187,7 +1187,7 @@ interface ChangeStoreParams$2 extends FacebookPixelCommonEventParams, FacebookPi
|
|
|
1187
1187
|
* Event allowed parameters.
|
|
1188
1188
|
*
|
|
1189
1189
|
* @interface ChangeStoreParams
|
|
1190
|
-
* @since 0.
|
|
1190
|
+
* @since 0.1.0
|
|
1191
1191
|
* @extends SegmentCommonEventParams
|
|
1192
1192
|
* @extends SegmentCustomEventParams
|
|
1193
1193
|
* @extends ChangeStoreCommonParams
|
|
@@ -1199,7 +1199,7 @@ interface ChangeStoreParams$1 extends SegmentCommonEventParams, SegmentCustomEve
|
|
|
1199
1199
|
* changeStore event interface
|
|
1200
1200
|
*
|
|
1201
1201
|
* @interface ChangeStoreCommonParams
|
|
1202
|
-
* @since 0.
|
|
1202
|
+
* @since 0.1.0
|
|
1203
1203
|
* @property {Store} previousStore The store that was selected
|
|
1204
1204
|
* @property {Store} nextStore The new current store
|
|
1205
1205
|
*/
|
|
@@ -1211,7 +1211,7 @@ interface ChangeStoreCommonParams {
|
|
|
1211
1211
|
* changeStore event params.
|
|
1212
1212
|
*
|
|
1213
1213
|
* @typedef ChangeStoreParams
|
|
1214
|
-
* @since 0.
|
|
1214
|
+
* @since 0.1.0
|
|
1215
1215
|
*/
|
|
1216
1216
|
declare type ChangeStoreParams = ChangeStoreParams$3 & ChangeStoreParams$2 & ChangeStoreParams$1;
|
|
1217
1217
|
|
|
@@ -1219,7 +1219,7 @@ declare type ChangeStoreParams = ChangeStoreParams$3 & ChangeStoreParams$2 & Cha
|
|
|
1219
1219
|
* Event allowed parameters.
|
|
1220
1220
|
*
|
|
1221
1221
|
* @interface ShareParams
|
|
1222
|
-
* @since 0.
|
|
1222
|
+
* @since 0.1.0
|
|
1223
1223
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1224
1224
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1225
1225
|
* @extends ShareCommonParams
|
|
@@ -1233,7 +1233,7 @@ interface ShareParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnalytic
|
|
|
1233
1233
|
* Event allowed parameters.
|
|
1234
1234
|
*
|
|
1235
1235
|
* @interface ShareParams
|
|
1236
|
-
* @since 0.
|
|
1236
|
+
* @since 0.1.0
|
|
1237
1237
|
* @extends FacebookPixelCommonEventParams
|
|
1238
1238
|
* @extends FacebookPixelCustomEventParams
|
|
1239
1239
|
* @extends ShareCommonParams
|
|
@@ -1245,7 +1245,7 @@ interface ShareParams$2 extends FacebookPixelCommonEventParams, FacebookPixelCus
|
|
|
1245
1245
|
* Event allowed parameters.
|
|
1246
1246
|
*
|
|
1247
1247
|
* @interface ShareParams
|
|
1248
|
-
* @since 0.
|
|
1248
|
+
* @since 0.1.0
|
|
1249
1249
|
* @extends SegmentCommonEventParams
|
|
1250
1250
|
* @extends SegmentCustomEventParams
|
|
1251
1251
|
* @extends ShareCommonParams
|
|
@@ -1257,7 +1257,7 @@ interface ShareParams$1 extends SegmentCommonEventParams, SegmentCustomEventPara
|
|
|
1257
1257
|
* share event interface
|
|
1258
1258
|
*
|
|
1259
1259
|
* @interface ShareCommonParams
|
|
1260
|
-
* @since 0.
|
|
1260
|
+
* @since 0.1.0
|
|
1261
1261
|
* @property {string} shareTarget The mean or platform by which the user will share some content (e.g. link, Facebook)
|
|
1262
1262
|
* @property {string|number} itemId The identifier of the content to be shared
|
|
1263
1263
|
* @property {string} itemName The name of the content to be shared
|
|
@@ -1271,7 +1271,7 @@ interface ShareCommonParams {
|
|
|
1271
1271
|
* share event params.
|
|
1272
1272
|
*
|
|
1273
1273
|
* @typedef ShareParams
|
|
1274
|
-
* @since 0.
|
|
1274
|
+
* @since 0.1.0
|
|
1275
1275
|
*/
|
|
1276
1276
|
declare type ShareParams = ShareParams$3 & ShareParams$2 & ShareParams$1;
|
|
1277
1277
|
|
|
@@ -1279,7 +1279,7 @@ declare type ShareParams = ShareParams$3 & ShareParams$2 & ShareParams$1;
|
|
|
1279
1279
|
* Event allowed parameters.
|
|
1280
1280
|
*
|
|
1281
1281
|
* @interface ViewCartParams
|
|
1282
|
-
* @since 0.
|
|
1282
|
+
* @since 0.1.0
|
|
1283
1283
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1284
1284
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1285
1285
|
* @extends ViewCartCommonParams
|
|
@@ -1291,7 +1291,7 @@ interface ViewCartParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnaly
|
|
|
1291
1291
|
* Event allowed parameters.
|
|
1292
1292
|
*
|
|
1293
1293
|
* @interface ViewCartParams
|
|
1294
|
-
* @since 0.
|
|
1294
|
+
* @since 0.1.0
|
|
1295
1295
|
* @extends FacebookPixelCommonEventParams
|
|
1296
1296
|
* @extends FacebookPixelCustomEventParams
|
|
1297
1297
|
* @extends ViewCartCommonParams
|
|
@@ -1305,7 +1305,7 @@ interface ViewCartParams$2 extends FacebookPixelCommonEventParams, FacebookPixel
|
|
|
1305
1305
|
* Event allowed parameters.
|
|
1306
1306
|
*
|
|
1307
1307
|
* @interface ViewCartParams
|
|
1308
|
-
* @since 0.
|
|
1308
|
+
* @since 0.1.0
|
|
1309
1309
|
* @extends SegmentCommonEventParams
|
|
1310
1310
|
* @extends SegmentCustomEventParams
|
|
1311
1311
|
* @extends ViewCartCommonParams
|
|
@@ -1319,7 +1319,7 @@ interface ViewCartParams$1 extends SegmentCommonEventParams, SegmentCustomEventP
|
|
|
1319
1319
|
* viewCart event interface
|
|
1320
1320
|
*
|
|
1321
1321
|
* @interface ViewCartCommonParams
|
|
1322
|
-
* @since 0.
|
|
1322
|
+
* @since 0.1.0
|
|
1323
1323
|
* @property {string} cartId Shopping cart identifier
|
|
1324
1324
|
* @property {string} cartName Shopping cart name
|
|
1325
1325
|
*/
|
|
@@ -1331,7 +1331,7 @@ interface ViewCartCommonParams {
|
|
|
1331
1331
|
* viewCart event params.
|
|
1332
1332
|
*
|
|
1333
1333
|
* @typedef ViewCartParams
|
|
1334
|
-
* @since 0.
|
|
1334
|
+
* @since 0.1.0
|
|
1335
1335
|
*/
|
|
1336
1336
|
declare type ViewCartParams = ViewCartParams$3 & ViewCartParams$2 & ViewCartParams$1;
|
|
1337
1337
|
|
|
@@ -1339,7 +1339,7 @@ declare type ViewCartParams = ViewCartParams$3 & ViewCartParams$2 & ViewCartPara
|
|
|
1339
1339
|
* Event allowed parameters.
|
|
1340
1340
|
*
|
|
1341
1341
|
* @interface UpdateProductInWishlistParams
|
|
1342
|
-
* @since 0.
|
|
1342
|
+
* @since 0.1.0
|
|
1343
1343
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1344
1344
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1345
1345
|
* @extends UpdateProductInWishlistCommonParams
|
|
@@ -1351,7 +1351,7 @@ interface UpdateProductInWishlistParams$3 extends GoogleAnalyticsCommonEventPara
|
|
|
1351
1351
|
* Event allowed parameters.
|
|
1352
1352
|
*
|
|
1353
1353
|
* @interface UpdateProductInWishlistParams
|
|
1354
|
-
* @since 0.
|
|
1354
|
+
* @since 0.1.0
|
|
1355
1355
|
* @extends FacebookPixelCommonEventParams
|
|
1356
1356
|
* @extends FacebookPixelCustomEventParams
|
|
1357
1357
|
* @extends UpdateProductInWishlistCommonParams
|
|
@@ -1365,7 +1365,7 @@ interface UpdateProductInWishlistParams$2 extends FacebookPixelCommonEventParams
|
|
|
1365
1365
|
* Event allowed parameters.
|
|
1366
1366
|
*
|
|
1367
1367
|
* @interface UpdateProductInWishlistParams
|
|
1368
|
-
* @since 0.
|
|
1368
|
+
* @since 0.1.0
|
|
1369
1369
|
* @extends SegmentCommonEventParams
|
|
1370
1370
|
* @extends SegmentCustomEventParams
|
|
1371
1371
|
* @extends UpdateProductInWishlistCommonParams
|
|
@@ -1377,7 +1377,7 @@ interface UpdateProductInWishlistParams$1 extends SegmentCommonEventParams, Segm
|
|
|
1377
1377
|
* updateProductInWishlist event interface.
|
|
1378
1378
|
*
|
|
1379
1379
|
* @interface UpdateProductInWishlistCommonParams
|
|
1380
|
-
* @since 0.
|
|
1380
|
+
* @since 0.1.0
|
|
1381
1381
|
* @property {CartProduct} product The product in the wishlist that was updated
|
|
1382
1382
|
* @property {string} cartId Shopping cart identifier
|
|
1383
1383
|
* @property {string[]} fields The updated fields names
|
|
@@ -1393,7 +1393,7 @@ interface UpdateProductInWishlistCommonParams {
|
|
|
1393
1393
|
* updateProductInWishlist event params.
|
|
1394
1394
|
*
|
|
1395
1395
|
* @typedef UpdateProductInWishlistParams
|
|
1396
|
-
* @since 0.
|
|
1396
|
+
* @since 0.1.0
|
|
1397
1397
|
*/
|
|
1398
1398
|
declare type UpdateProductInWishlistParams = UpdateProductInWishlistParams$3 & UpdateProductInWishlistParams$2 & UpdateProductInWishlistParams$1;
|
|
1399
1399
|
|
|
@@ -1401,7 +1401,7 @@ declare type UpdateProductInWishlistParams = UpdateProductInWishlistParams$3 & U
|
|
|
1401
1401
|
* Event allowed parameters.
|
|
1402
1402
|
*
|
|
1403
1403
|
* @interface UpdateProductInCartParams
|
|
1404
|
-
* @since 0.
|
|
1404
|
+
* @since 0.1.0
|
|
1405
1405
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1406
1406
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1407
1407
|
* @extends UpdateProductInCartCommonParams
|
|
@@ -1413,7 +1413,7 @@ interface UpdateProductInCartParams$3 extends GoogleAnalyticsCommonEventParams,
|
|
|
1413
1413
|
* Event allowed parameters.
|
|
1414
1414
|
*
|
|
1415
1415
|
* @interface UpdateProductInCartParams
|
|
1416
|
-
* @since 0.
|
|
1416
|
+
* @since 0.1.0
|
|
1417
1417
|
* @extends FacebookPixelCommonEventParams
|
|
1418
1418
|
* @extends FacebookPixelCustomEventParams
|
|
1419
1419
|
* @extends UpdateProductInCartCommonParams
|
|
@@ -1427,7 +1427,7 @@ interface UpdateProductInCartParams$2 extends FacebookPixelCommonEventParams, Fa
|
|
|
1427
1427
|
* Event allowed parameters.
|
|
1428
1428
|
*
|
|
1429
1429
|
* @interface UpdateProductInCartParams
|
|
1430
|
-
* @since 0.
|
|
1430
|
+
* @since 0.1.0
|
|
1431
1431
|
* @extends SegmentCommonEventParams
|
|
1432
1432
|
* @extends SegmentCustomEventParams
|
|
1433
1433
|
* @extends UpdateProductInCartCommonParams
|
|
@@ -1439,7 +1439,7 @@ interface UpdateProductInCartParams$1 extends SegmentCommonEventParams, SegmentC
|
|
|
1439
1439
|
* updateProductInCart event interface
|
|
1440
1440
|
*
|
|
1441
1441
|
* @interface UpdateProductInCartCommonParams
|
|
1442
|
-
* @since 0.
|
|
1442
|
+
* @since 0.1.0
|
|
1443
1443
|
* @property {CartProduct} product The product in the cart that was updated
|
|
1444
1444
|
* @property {string} cartId Shopping cart identifier
|
|
1445
1445
|
* @property {string} cartName Shopping cart name
|
|
@@ -1459,7 +1459,7 @@ interface UpdateProductInCartCommonParams {
|
|
|
1459
1459
|
* updateProductInCart event params.
|
|
1460
1460
|
*
|
|
1461
1461
|
* @typedef UpdateProductInCartParams
|
|
1462
|
-
* @since 0.
|
|
1462
|
+
* @since 0.1.0
|
|
1463
1463
|
*/
|
|
1464
1464
|
declare type UpdateProductInCartParams = UpdateProductInCartParams$3 & UpdateProductInCartParams$2 & UpdateProductInCartParams$1;
|
|
1465
1465
|
|
|
@@ -1467,7 +1467,7 @@ declare type UpdateProductInCartParams = UpdateProductInCartParams$3 & UpdatePro
|
|
|
1467
1467
|
* Event allowed parameters.
|
|
1468
1468
|
*
|
|
1469
1469
|
* @interface RemoveProductFromWishlistParams
|
|
1470
|
-
* @since 0.
|
|
1470
|
+
* @since 0.1.0
|
|
1471
1471
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1472
1472
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1473
1473
|
* @extends RemoveProductFromWishlistCommonParams
|
|
@@ -1479,7 +1479,7 @@ interface RemoveProductFromWishlistParams$3 extends GoogleAnalyticsCommonEventPa
|
|
|
1479
1479
|
* Event allowed parameters.
|
|
1480
1480
|
*
|
|
1481
1481
|
* @interface RemoveProductFromWishlistParams
|
|
1482
|
-
* @since 0.
|
|
1482
|
+
* @since 0.1.0
|
|
1483
1483
|
* @extends FacebookPixelCommonEventParams
|
|
1484
1484
|
* @extends FacebookPixelCustomEventParams
|
|
1485
1485
|
* @extends RemoveProductFromWishlistCommonParams
|
|
@@ -1493,7 +1493,7 @@ interface RemoveProductFromWishlistParams$2 extends FacebookPixelCommonEventPara
|
|
|
1493
1493
|
* Event allowed parameters.
|
|
1494
1494
|
*
|
|
1495
1495
|
* @interface RemoveProductFromWishlistParams
|
|
1496
|
-
* @since 0.
|
|
1496
|
+
* @since 0.1.0
|
|
1497
1497
|
* @extends SegmentCommonEventParams
|
|
1498
1498
|
* @extends SegmentCustomEventParams
|
|
1499
1499
|
* @extends RemoveProductFromWishlistCommonParams
|
|
@@ -1505,7 +1505,7 @@ interface RemoveProductFromWishlistParams$1 extends SegmentCommonEventParams, Se
|
|
|
1505
1505
|
* removeProductFromWishlist event interface
|
|
1506
1506
|
*
|
|
1507
1507
|
* @interface RemoveProductFromWishlistCommonParams
|
|
1508
|
-
* @since 0.
|
|
1508
|
+
* @since 0.1.0
|
|
1509
1509
|
* @property {CartProduct} product The product that was removed from the wishlist
|
|
1510
1510
|
* @property {string} cartId Shopping cart identifier
|
|
1511
1511
|
* @property {PriceCategoryType} priceCategory The product price category identifier
|
|
@@ -1519,7 +1519,7 @@ interface RemoveProductFromWishlistCommonParams {
|
|
|
1519
1519
|
* removeProductFromWishlist event params.
|
|
1520
1520
|
*
|
|
1521
1521
|
* @typedef RemoveProductFromWishlistParams
|
|
1522
|
-
* @since 0.
|
|
1522
|
+
* @since 0.1.0
|
|
1523
1523
|
*/
|
|
1524
1524
|
declare type RemoveProductFromWishlistParams = RemoveProductFromWishlistParams$3 & RemoveProductFromWishlistParams$2 & RemoveProductFromWishlistParams$1;
|
|
1525
1525
|
|
|
@@ -1527,7 +1527,7 @@ declare type RemoveProductFromWishlistParams = RemoveProductFromWishlistParams$3
|
|
|
1527
1527
|
* Event allowed parameters.
|
|
1528
1528
|
*
|
|
1529
1529
|
* @interface RemoveProductFromCartParams
|
|
1530
|
-
* @since 0.
|
|
1530
|
+
* @since 0.1.0
|
|
1531
1531
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1532
1532
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1533
1533
|
* @extends RemoveProductFromCartCommonParams
|
|
@@ -1539,7 +1539,7 @@ interface RemoveProductFromCartParams$3 extends GoogleAnalyticsCommonEventParams
|
|
|
1539
1539
|
* Event allowed parameters.
|
|
1540
1540
|
*
|
|
1541
1541
|
* @interface RemoveProductFromCartParams
|
|
1542
|
-
* @since 0.
|
|
1542
|
+
* @since 0.1.0
|
|
1543
1543
|
* @extends FacebookPixelCommonEventParams
|
|
1544
1544
|
* @extends FacebookPixelCustomEventParams
|
|
1545
1545
|
* @extends RemoveProductFromCartCommonParams
|
|
@@ -1553,7 +1553,7 @@ interface RemoveProductFromCartParams$2 extends FacebookPixelCommonEventParams,
|
|
|
1553
1553
|
* Event allowed parameters.
|
|
1554
1554
|
*
|
|
1555
1555
|
* @interface RemoveProductFromCartParams
|
|
1556
|
-
* @since 0.
|
|
1556
|
+
* @since 0.1.0
|
|
1557
1557
|
* @extends SegmentCommonEventParams
|
|
1558
1558
|
* @extends SegmentCustomEventParams
|
|
1559
1559
|
* @extends RemoveProductFromCartCommonParams
|
|
@@ -1565,7 +1565,7 @@ interface RemoveProductFromCartParams$1 extends SegmentCommonEventParams, Segmen
|
|
|
1565
1565
|
* removeProductFromCart event interface
|
|
1566
1566
|
*
|
|
1567
1567
|
* @interface RemoveProductFromCartCommonParams
|
|
1568
|
-
* @since 0.
|
|
1568
|
+
* @since 0.1.0
|
|
1569
1569
|
* @property {CartProduct} product The product that was removed to the cart
|
|
1570
1570
|
* @property {string} cartId Shopping cart identifier
|
|
1571
1571
|
* @property {string} cartName Shopping cart name
|
|
@@ -1583,7 +1583,7 @@ interface RemoveProductFromCartCommonParams {
|
|
|
1583
1583
|
* removeProductFromCart event params.
|
|
1584
1584
|
*
|
|
1585
1585
|
* @typedef RemoveProductFromCartParams
|
|
1586
|
-
* @since 0.
|
|
1586
|
+
* @since 0.1.0
|
|
1587
1587
|
*/
|
|
1588
1588
|
declare type RemoveProductFromCartParams = RemoveProductFromCartParams$3 & RemoveProductFromCartParams$2 & RemoveProductFromCartParams$1;
|
|
1589
1589
|
|
|
@@ -1591,7 +1591,7 @@ declare type RemoveProductFromCartParams = RemoveProductFromCartParams$3 & Remov
|
|
|
1591
1591
|
* Event allowed parameters.
|
|
1592
1592
|
*
|
|
1593
1593
|
* @interface ClearCartParams
|
|
1594
|
-
* @since 0.
|
|
1594
|
+
* @since 0.1.0
|
|
1595
1595
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1596
1596
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1597
1597
|
* @extends ClearCartCommonParams
|
|
@@ -1603,7 +1603,7 @@ interface ClearCartParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnal
|
|
|
1603
1603
|
* Event allowed parameters.
|
|
1604
1604
|
*
|
|
1605
1605
|
* @interface ClearCartParams
|
|
1606
|
-
* @since 0.
|
|
1606
|
+
* @since 0.1.0
|
|
1607
1607
|
* @extends FacebookPixelCommonEventParams
|
|
1608
1608
|
* @extends FacebookPixelCustomEventParams
|
|
1609
1609
|
* @extends ClearCartCommonParams
|
|
@@ -1617,7 +1617,7 @@ interface ClearCartParams$2 extends FacebookPixelCommonEventParams, FacebookPixe
|
|
|
1617
1617
|
* Event allowed parameters.
|
|
1618
1618
|
*
|
|
1619
1619
|
* @interface ClearCartParams
|
|
1620
|
-
* @since 0.
|
|
1620
|
+
* @since 0.1.0
|
|
1621
1621
|
* @extends SegmentCommonEventParams
|
|
1622
1622
|
* @extends SegmentCustomEventParams
|
|
1623
1623
|
* @extends ClearCartCommonParams
|
|
@@ -1629,7 +1629,7 @@ interface ClearCartParams$1 extends SegmentCommonEventParams, SegmentCustomEvent
|
|
|
1629
1629
|
* clearCart event interface
|
|
1630
1630
|
*
|
|
1631
1631
|
* @interface ClearCartCommonParams
|
|
1632
|
-
* @since 0.
|
|
1632
|
+
* @since 0.1.0
|
|
1633
1633
|
* @property {string} cartId Shopping cart identifier
|
|
1634
1634
|
* @property {string} cartName Shopping cart name
|
|
1635
1635
|
*/
|
|
@@ -1641,7 +1641,7 @@ interface ClearCartCommonParams {
|
|
|
1641
1641
|
* clearCart event params.
|
|
1642
1642
|
*
|
|
1643
1643
|
* @typedef ClearCartParams
|
|
1644
|
-
* @since 0.
|
|
1644
|
+
* @since 0.1.0
|
|
1645
1645
|
*/
|
|
1646
1646
|
declare type ClearCartParams = ClearCartParams$3 & ClearCartParams$2 & ClearCartParams$1;
|
|
1647
1647
|
|
|
@@ -1649,7 +1649,7 @@ declare type ClearCartParams = ClearCartParams$3 & ClearCartParams$2 & ClearCart
|
|
|
1649
1649
|
* Event allowed parameters.
|
|
1650
1650
|
*
|
|
1651
1651
|
* @interface AddProductToWishlistParams
|
|
1652
|
-
* @since 0.
|
|
1652
|
+
* @since 0.1.0
|
|
1653
1653
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1654
1654
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1655
1655
|
* @extends AddProductToWishlistCommonParams
|
|
@@ -1661,7 +1661,7 @@ interface AddProductToWishlistParams$3 extends GoogleAnalyticsCommonEventParams,
|
|
|
1661
1661
|
* Event allowed parameters.
|
|
1662
1662
|
*
|
|
1663
1663
|
* @interface AddProductToWishlistParams
|
|
1664
|
-
* @since 0.
|
|
1664
|
+
* @since 0.1.0
|
|
1665
1665
|
* @extends FacebookPixelCommonEventParams
|
|
1666
1666
|
* @extends FacebookPixelCustomEventParams
|
|
1667
1667
|
* @extends AddProductToWishlistCommonParams
|
|
@@ -1675,7 +1675,7 @@ interface AddProductToWishlistParams$2 extends FacebookPixelCommonEventParams, F
|
|
|
1675
1675
|
* Event allowed parameters.
|
|
1676
1676
|
*
|
|
1677
1677
|
* @interface AddProductToWishlistParams
|
|
1678
|
-
* @since 0.
|
|
1678
|
+
* @since 0.1.0
|
|
1679
1679
|
* @extends SegmentCommonEventParams
|
|
1680
1680
|
* @extends SegmentCustomEventParams
|
|
1681
1681
|
* @extends AddProductToWishlistCommonParams
|
|
@@ -1687,7 +1687,7 @@ interface AddProductToWishlistParams$1 extends SegmentCommonEventParams, Segment
|
|
|
1687
1687
|
* addProductToWishlist event interface
|
|
1688
1688
|
*
|
|
1689
1689
|
* @interface AddProductToWishlistCommonParams
|
|
1690
|
-
* @since 0.
|
|
1690
|
+
* @since 0.1.0
|
|
1691
1691
|
* @property {CartProduct} product The product that was added to the wishlist
|
|
1692
1692
|
* @property {string} cartId Shopping cart identifier
|
|
1693
1693
|
* @property {PriceCategoryType} priceCategory The product price category identifier
|
|
@@ -1701,7 +1701,7 @@ interface AddProductToWishlistCommonParams {
|
|
|
1701
1701
|
* addProductToWishlist event params.
|
|
1702
1702
|
*
|
|
1703
1703
|
* @typedef AddProductToWishlistParams
|
|
1704
|
-
* @since 0.
|
|
1704
|
+
* @since 0.1.0
|
|
1705
1705
|
*/
|
|
1706
1706
|
declare type AddProductToWishlistParams = AddProductToWishlistParams$3 & AddProductToWishlistParams$2 & AddProductToWishlistParams$1;
|
|
1707
1707
|
|
|
@@ -1709,7 +1709,7 @@ declare type AddProductToWishlistParams = AddProductToWishlistParams$3 & AddProd
|
|
|
1709
1709
|
* Event allowed parameters.
|
|
1710
1710
|
*
|
|
1711
1711
|
* @interface AddProductToCartParams
|
|
1712
|
-
* @since 0.
|
|
1712
|
+
* @since 0.1.0
|
|
1713
1713
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1714
1714
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1715
1715
|
* @extends AddProductToCartCommonParams
|
|
@@ -1721,7 +1721,7 @@ interface AddProductToCartParams$3 extends GoogleAnalyticsCommonEventParams, Goo
|
|
|
1721
1721
|
* Event allowed parameters.
|
|
1722
1722
|
*
|
|
1723
1723
|
* @interface AddProductToCartParams
|
|
1724
|
-
* @since 0.
|
|
1724
|
+
* @since 0.1.0
|
|
1725
1725
|
* @extends FacebookPixelCommonEventParams
|
|
1726
1726
|
* @extends FacebookPixelCustomEventParams
|
|
1727
1727
|
* @extends AddProductToCartCommonParams
|
|
@@ -1735,7 +1735,7 @@ interface AddProductToCartParams$2 extends FacebookPixelCommonEventParams, Faceb
|
|
|
1735
1735
|
* Event allowed parameters.
|
|
1736
1736
|
*
|
|
1737
1737
|
* @interface AddProductToCartParams
|
|
1738
|
-
* @since 0.
|
|
1738
|
+
* @since 0.1.0
|
|
1739
1739
|
* @extends SegmentCommonEventParams
|
|
1740
1740
|
* @extends SegmentCustomEventParams
|
|
1741
1741
|
* @extends AddProductToCartCommonParams
|
|
@@ -1747,7 +1747,7 @@ interface AddProductToCartParams$1 extends SegmentCommonEventParams, SegmentCust
|
|
|
1747
1747
|
* addProductToCart event interface.
|
|
1748
1748
|
*
|
|
1749
1749
|
* @interface AddProductToCartCommonParams
|
|
1750
|
-
* @since 0.
|
|
1750
|
+
* @since 0.1.0
|
|
1751
1751
|
* @property {CartProduct} product The product that was added to the cart
|
|
1752
1752
|
* @property {string} cartId Shopping cart identifier
|
|
1753
1753
|
* @property {string} cartName Shopping cart name
|
|
@@ -1765,7 +1765,7 @@ interface AddProductToCartCommonParams {
|
|
|
1765
1765
|
* addProductToCart event params.
|
|
1766
1766
|
*
|
|
1767
1767
|
* @typedef AddProductToCartParams
|
|
1768
|
-
* @since 0.
|
|
1768
|
+
* @since 0.1.0
|
|
1769
1769
|
*/
|
|
1770
1770
|
declare type AddProductToCartParams = AddProductToCartParams$3 & AddProductToCartParams$2 & AddProductToCartParams$1;
|
|
1771
1771
|
|
|
@@ -1773,7 +1773,7 @@ declare type AddProductToCartParams = AddProductToCartParams$3 & AddProductToCar
|
|
|
1773
1773
|
* Event allowed parameters.
|
|
1774
1774
|
*
|
|
1775
1775
|
* @interface UpdateShippingAddressParams
|
|
1776
|
-
* @since 0.
|
|
1776
|
+
* @since 0.1.0
|
|
1777
1777
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1778
1778
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1779
1779
|
* @extends UpdateShippingAddressCommonParams
|
|
@@ -1785,7 +1785,7 @@ interface UpdateShippingAddressParams$3 extends GoogleAnalyticsCommonEventParams
|
|
|
1785
1785
|
* Event allowed parameters.
|
|
1786
1786
|
*
|
|
1787
1787
|
* @interface UpdateShippingAddressParams
|
|
1788
|
-
* @since 0.
|
|
1788
|
+
* @since 0.1.0
|
|
1789
1789
|
* @extends FacebookPixelCommonEventParams
|
|
1790
1790
|
* @extends FacebookPixelCustomEventParams
|
|
1791
1791
|
* @extends UpdateShippingAddressCommonParams
|
|
@@ -1797,7 +1797,7 @@ interface UpdateShippingAddressParams$2 extends FacebookPixelCommonEventParams,
|
|
|
1797
1797
|
* Event allowed parameters.
|
|
1798
1798
|
*
|
|
1799
1799
|
* @interface UpdateShippingAddressParams
|
|
1800
|
-
* @since 0.
|
|
1800
|
+
* @since 0.1.0
|
|
1801
1801
|
* @extends SegmentCommonEventParams
|
|
1802
1802
|
* @extends SegmentCustomEventParams
|
|
1803
1803
|
* @extends UpdateShippingAddressCommonParams
|
|
@@ -1811,7 +1811,7 @@ interface UpdateShippingAddressParams$1 extends SegmentCommonEventParams, Segmen
|
|
|
1811
1811
|
* updateShippingAddress event interface
|
|
1812
1812
|
*
|
|
1813
1813
|
* @interface UpdateShippingAddressCommonParams
|
|
1814
|
-
* @since 0.
|
|
1814
|
+
* @since 0.1.0
|
|
1815
1815
|
* @property {number} addressId The address identifier
|
|
1816
1816
|
* @property {string} address The new full address
|
|
1817
1817
|
* @property {string[]} fields The updated fields names
|
|
@@ -1825,7 +1825,7 @@ interface UpdateShippingAddressCommonParams {
|
|
|
1825
1825
|
* updateShippingAddress event params.
|
|
1826
1826
|
*
|
|
1827
1827
|
* @typedef UpdateShippingAddressParams
|
|
1828
|
-
* @since 0.
|
|
1828
|
+
* @since 0.1.0
|
|
1829
1829
|
*/
|
|
1830
1830
|
declare type UpdateShippingAddressParams = UpdateShippingAddressParams$3 & UpdateShippingAddressParams$2 & UpdateShippingAddressParams$1;
|
|
1831
1831
|
|
|
@@ -1833,7 +1833,7 @@ declare type UpdateShippingAddressParams = UpdateShippingAddressParams$3 & Updat
|
|
|
1833
1833
|
* Event allowed parameters.
|
|
1834
1834
|
*
|
|
1835
1835
|
* @interface SelectShippingAddressParams
|
|
1836
|
-
* @since 0.
|
|
1836
|
+
* @since 0.1.0
|
|
1837
1837
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1838
1838
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1839
1839
|
* @extends SelectShippingAddressCommonParams
|
|
@@ -1845,7 +1845,7 @@ interface SelectShippingAddressParams$3 extends GoogleAnalyticsCommonEventParams
|
|
|
1845
1845
|
* Event allowed parameters.
|
|
1846
1846
|
*
|
|
1847
1847
|
* @interface SelectShippingAddressParams
|
|
1848
|
-
* @since 0.
|
|
1848
|
+
* @since 0.1.0
|
|
1849
1849
|
* @extends FacebookPixelCommonEventParams
|
|
1850
1850
|
* @extends FacebookPixelCustomEventParams
|
|
1851
1851
|
* @extends SelectShippingAddressCommonParams
|
|
@@ -1857,7 +1857,7 @@ interface SelectShippingAddressParams$2 extends FacebookPixelCommonEventParams,
|
|
|
1857
1857
|
* Event allowed parameters.
|
|
1858
1858
|
*
|
|
1859
1859
|
* @interface SelectShippingAddressParams
|
|
1860
|
-
* @since 0.
|
|
1860
|
+
* @since 0.1.0
|
|
1861
1861
|
* @extends SegmentCommonEventParams
|
|
1862
1862
|
* @extends SegmentCustomEventParams
|
|
1863
1863
|
* @extends SelectShippingAddressCommonParams
|
|
@@ -1871,7 +1871,7 @@ interface SelectShippingAddressParams$1 extends SegmentCommonEventParams, Segmen
|
|
|
1871
1871
|
* selectShippingAddress event interface
|
|
1872
1872
|
*
|
|
1873
1873
|
* @interface SelectShippingAddressCommonParams
|
|
1874
|
-
* @since 0.
|
|
1874
|
+
* @since 0.1.0
|
|
1875
1875
|
* @property {number} addressId The address identifier
|
|
1876
1876
|
* @property {number} position The position in a list where the address is
|
|
1877
1877
|
* @property {number} lat The address latitude
|
|
@@ -1891,7 +1891,7 @@ interface SelectShippingAddressCommonParams {
|
|
|
1891
1891
|
* selectShippingAddress event params.
|
|
1892
1892
|
*
|
|
1893
1893
|
* @typedef SelectShippingAddressParams
|
|
1894
|
-
* @since 0.
|
|
1894
|
+
* @since 0.1.0
|
|
1895
1895
|
*/
|
|
1896
1896
|
declare type SelectShippingAddressParams = SelectShippingAddressParams$3 & SelectShippingAddressParams$2 & SelectShippingAddressParams$1;
|
|
1897
1897
|
|
|
@@ -1899,7 +1899,7 @@ declare type SelectShippingAddressParams = SelectShippingAddressParams$3 & Selec
|
|
|
1899
1899
|
* Event allowed parameters.
|
|
1900
1900
|
*
|
|
1901
1901
|
* @interface AddShippingAddressParams
|
|
1902
|
-
* @since 0.
|
|
1902
|
+
* @since 0.1.0
|
|
1903
1903
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1904
1904
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1905
1905
|
* @extends AddShippingAddressCommonParams
|
|
@@ -1911,7 +1911,7 @@ interface AddShippingAddressParams$3 extends GoogleAnalyticsCommonEventParams, G
|
|
|
1911
1911
|
* Event allowed parameters.
|
|
1912
1912
|
*
|
|
1913
1913
|
* @interface AddShippingAddressParams
|
|
1914
|
-
* @since 0.
|
|
1914
|
+
* @since 0.1.0
|
|
1915
1915
|
* @extends FacebookPixelCommonEventParams
|
|
1916
1916
|
* @extends FacebookPixelCustomEventParams
|
|
1917
1917
|
* @extends AddShippingAddressCommonParams
|
|
@@ -1923,7 +1923,7 @@ interface AddShippingAddressParams$2 extends FacebookPixelCommonEventParams, Fac
|
|
|
1923
1923
|
* Event allowed parameters.
|
|
1924
1924
|
*
|
|
1925
1925
|
* @interface AddShippingAddressParams
|
|
1926
|
-
* @since 0.
|
|
1926
|
+
* @since 0.1.0
|
|
1927
1927
|
* @extends SegmentCommonEventParams
|
|
1928
1928
|
* @extends SegmentCustomEventParams
|
|
1929
1929
|
* @extends AddShippingAddressCommonParams
|
|
@@ -1937,7 +1937,7 @@ interface AddShippingAddressParams$1 extends SegmentCommonEventParams, SegmentCu
|
|
|
1937
1937
|
* addShippingAddress event interface.
|
|
1938
1938
|
*
|
|
1939
1939
|
* @interface AddShippingAddressCommonParams
|
|
1940
|
-
* @since 0.
|
|
1940
|
+
* @since 0.1.0
|
|
1941
1941
|
* @property {number} lat The address latitude
|
|
1942
1942
|
* @property {number} lng The address longitude
|
|
1943
1943
|
* @property {string} alias The address alias or name
|
|
@@ -1953,7 +1953,7 @@ interface AddShippingAddressCommonParams {
|
|
|
1953
1953
|
* addShippingAddress event params.
|
|
1954
1954
|
*
|
|
1955
1955
|
* @typedef AddShippingAddressParams
|
|
1956
|
-
* @since 0.
|
|
1956
|
+
* @since 0.1.0
|
|
1957
1957
|
*/
|
|
1958
1958
|
declare type AddShippingAddressParams = AddShippingAddressParams$3 & AddShippingAddressParams$2 & AddShippingAddressParams$1;
|
|
1959
1959
|
|
|
@@ -1961,7 +1961,7 @@ declare type AddShippingAddressParams = AddShippingAddressParams$3 & AddShipping
|
|
|
1961
1961
|
* Event allowed parameters.
|
|
1962
1962
|
*
|
|
1963
1963
|
* @interface ViewSettingsParams
|
|
1964
|
-
* @since 0.
|
|
1964
|
+
* @since 0.1.0
|
|
1965
1965
|
* @extends GoogleAnalyticsCommonEventParams
|
|
1966
1966
|
* @extends GoogleAnalyticsCustomEventParams
|
|
1967
1967
|
* @extends ViewSettingsCommonParams
|
|
@@ -1973,7 +1973,7 @@ interface ViewSettingsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
|
|
|
1973
1973
|
* Event allowed parameters.
|
|
1974
1974
|
*
|
|
1975
1975
|
* @interface ViewSettingsParams
|
|
1976
|
-
* @since 0.
|
|
1976
|
+
* @since 0.1.0
|
|
1977
1977
|
* @extends FacebookPixelCommonEventParams
|
|
1978
1978
|
* @extends FacebookPixelCustomEventParams
|
|
1979
1979
|
* @extends ViewSettingsCommonParams
|
|
@@ -1985,7 +1985,7 @@ interface ViewSettingsParams$2 extends FacebookPixelCommonEventParams, FacebookP
|
|
|
1985
1985
|
* Event allowed parameters.
|
|
1986
1986
|
*
|
|
1987
1987
|
* @interface ViewSettingsParams
|
|
1988
|
-
* @since 0.
|
|
1988
|
+
* @since 0.1.0
|
|
1989
1989
|
* @extends SegmentCommonEventParams
|
|
1990
1990
|
* @extends SegmentCustomEventParams
|
|
1991
1991
|
* @extends ViewSettingsCommonParams
|
|
@@ -1997,7 +1997,7 @@ interface ViewSettingsParams$1 extends SegmentCommonEventParams, SegmentCustomEv
|
|
|
1997
1997
|
* viewSettings event interface.
|
|
1998
1998
|
*
|
|
1999
1999
|
* @interface ViewSettingsCommonParams
|
|
2000
|
-
* @since 0.
|
|
2000
|
+
* @since 0.1.0
|
|
2001
2001
|
*/
|
|
2002
2002
|
interface ViewSettingsCommonParams {
|
|
2003
2003
|
}
|
|
@@ -2005,7 +2005,7 @@ interface ViewSettingsCommonParams {
|
|
|
2005
2005
|
* viewSettings event params.
|
|
2006
2006
|
*
|
|
2007
2007
|
* @typedef ViewSettingsParams
|
|
2008
|
-
* @since 0.
|
|
2008
|
+
* @since 0.1.0
|
|
2009
2009
|
*/
|
|
2010
2010
|
declare type ViewSettingsParams = ViewSettingsParams$3 & ViewSettingsParams$2 & ViewSettingsParams$1;
|
|
2011
2011
|
|
|
@@ -2013,7 +2013,7 @@ declare type ViewSettingsParams = ViewSettingsParams$3 & ViewSettingsParams$2 &
|
|
|
2013
2013
|
* Event allowed parameters.
|
|
2014
2014
|
*
|
|
2015
2015
|
* @interface PurchaseSuccessParams
|
|
2016
|
-
* @since 0.
|
|
2016
|
+
* @since 0.1.0
|
|
2017
2017
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2018
2018
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2019
2019
|
* @extends PurchaseSuccessCommonParams
|
|
@@ -2025,7 +2025,7 @@ interface PurchaseSuccessParams$3 extends GoogleAnalyticsCommonEventParams, Goog
|
|
|
2025
2025
|
* Event allowed parameters.
|
|
2026
2026
|
*
|
|
2027
2027
|
* @interface PurchaseSuccessParams
|
|
2028
|
-
* @since 0.
|
|
2028
|
+
* @since 0.1.0
|
|
2029
2029
|
* @extends FacebookPixelCommonEventParams
|
|
2030
2030
|
* @extends FacebookPixelCustomEventParams
|
|
2031
2031
|
* @extends PurchaseSuccessCommonParams
|
|
@@ -2039,7 +2039,7 @@ interface PurchaseSuccessParams$2 extends FacebookPixelCommonEventParams, Facebo
|
|
|
2039
2039
|
* Event allowed parameters.
|
|
2040
2040
|
*
|
|
2041
2041
|
* @interface PurchaseSuccessParams
|
|
2042
|
-
* @since 0.
|
|
2042
|
+
* @since 0.1.0
|
|
2043
2043
|
* @extends SegmentCommonEventParams
|
|
2044
2044
|
* @extends SegmentCustomEventParams
|
|
2045
2045
|
* @extends PurchaseSuccessCommonParams
|
|
@@ -2081,7 +2081,7 @@ declare type PurchaseSuccessParams = PurchaseSuccessParams$3 & PurchaseSuccessPa
|
|
|
2081
2081
|
* Event allowed parameters.
|
|
2082
2082
|
*
|
|
2083
2083
|
* @interface PurchaseFailParams
|
|
2084
|
-
* @since 0.
|
|
2084
|
+
* @since 0.1.0
|
|
2085
2085
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2086
2086
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2087
2087
|
* @extends PurchaseFailCommonParams
|
|
@@ -2093,7 +2093,7 @@ interface PurchaseFailParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
|
|
|
2093
2093
|
* Event allowed parameters.
|
|
2094
2094
|
*
|
|
2095
2095
|
* @interface PurchaseFailParams
|
|
2096
|
-
* @since 0.
|
|
2096
|
+
* @since 0.1.0
|
|
2097
2097
|
* @extends FacebookPixelCommonEventParams
|
|
2098
2098
|
* @extends FacebookPixelCustomEventParams
|
|
2099
2099
|
* @extends PurchaseFailCommonParams
|
|
@@ -2107,7 +2107,7 @@ interface PurchaseFailParams$2 extends FacebookPixelCommonEventParams, FacebookP
|
|
|
2107
2107
|
* Event allowed parameters.
|
|
2108
2108
|
*
|
|
2109
2109
|
* @interface PurchaseFailParams
|
|
2110
|
-
* @since 0.
|
|
2110
|
+
* @since 0.1.0
|
|
2111
2111
|
* @extends SegmentCommonEventParams
|
|
2112
2112
|
* @extends SegmentCustomEventParams
|
|
2113
2113
|
* @extends PurchaseFailCommonParams
|
|
@@ -2151,7 +2151,7 @@ declare type PurchaseFailParams = PurchaseFailParams$3 & PurchaseFailParams$2 &
|
|
|
2151
2151
|
* Event allowed parameters.
|
|
2152
2152
|
*
|
|
2153
2153
|
* @interface PurchaseAttemptParams
|
|
2154
|
-
* @since 0.
|
|
2154
|
+
* @since 0.1.0
|
|
2155
2155
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2156
2156
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2157
2157
|
* @extends PurchaseAttemptCommonParams
|
|
@@ -2163,7 +2163,7 @@ interface PurchaseAttemptParams$3 extends GoogleAnalyticsCommonEventParams, Goog
|
|
|
2163
2163
|
* Event allowed parameters.
|
|
2164
2164
|
*
|
|
2165
2165
|
* @interface PurchaseAttemptParams
|
|
2166
|
-
* @since 0.
|
|
2166
|
+
* @since 0.1.0
|
|
2167
2167
|
* @extends FacebookPixelCommonEventParams
|
|
2168
2168
|
* @extends FacebookPixelCustomEventParams
|
|
2169
2169
|
* @extends PurchaseAttemptCommonParams
|
|
@@ -2177,7 +2177,7 @@ interface PurchaseAttemptParams$2 extends FacebookPixelCommonEventParams, Facebo
|
|
|
2177
2177
|
* Event allowed parameters.
|
|
2178
2178
|
*
|
|
2179
2179
|
* @interface PurchaseAttemptParams
|
|
2180
|
-
* @since 0.
|
|
2180
|
+
* @since 0.1.0
|
|
2181
2181
|
* @extends SegmentCommonEventParams
|
|
2182
2182
|
* @extends SegmentCustomEventParams
|
|
2183
2183
|
* @extends PurchaseAttemptCommonParams
|
|
@@ -2189,7 +2189,7 @@ interface PurchaseAttemptParams$1 extends SegmentCommonEventParams, SegmentCusto
|
|
|
2189
2189
|
* purchaseAttempt event interface.
|
|
2190
2190
|
*
|
|
2191
2191
|
* @interface PurchaseAttemptCommonParams
|
|
2192
|
-
* @since 0.
|
|
2192
|
+
* @since 0.1.0
|
|
2193
2193
|
* @property {ShoppingCart} shoppingCart The order shopping cart
|
|
2194
2194
|
* @property {PaymentType} selectedPaymentType The selected payment type (e.g. Cash, Credit, Debit)
|
|
2195
2195
|
* @property {Workflow} fulfillmentType The workflow name (e.g. Delivery)
|
|
@@ -2209,7 +2209,7 @@ interface PurchaseAttemptCommonParams {
|
|
|
2209
2209
|
* purchaseAttempt event params.
|
|
2210
2210
|
*
|
|
2211
2211
|
* @typedef PurchaseAttemptParams
|
|
2212
|
-
* @since 0.
|
|
2212
|
+
* @since 0.1.0
|
|
2213
2213
|
*/
|
|
2214
2214
|
declare type PurchaseAttemptParams = PurchaseAttemptParams$3 & PurchaseAttemptParams$2 & PurchaseAttemptParams$1;
|
|
2215
2215
|
|
|
@@ -2217,7 +2217,7 @@ declare type PurchaseAttemptParams = PurchaseAttemptParams$3 & PurchaseAttemptPa
|
|
|
2217
2217
|
* Event allowed parameters.
|
|
2218
2218
|
*
|
|
2219
2219
|
* @interface ViewProductDetailsParams
|
|
2220
|
-
* @since 0.
|
|
2220
|
+
* @since 0.1.0
|
|
2221
2221
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2222
2222
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2223
2223
|
* @extends ViewProductDetailsCommonParams
|
|
@@ -2229,7 +2229,7 @@ interface ViewProductDetailsParams$3 extends GoogleAnalyticsCommonEventParams, G
|
|
|
2229
2229
|
* Event allowed parameters.
|
|
2230
2230
|
*
|
|
2231
2231
|
* @interface ViewProductDetailsParams
|
|
2232
|
-
* @since 0.
|
|
2232
|
+
* @since 0.1.0
|
|
2233
2233
|
* @extends FacebookPixelCommonEventParams
|
|
2234
2234
|
* @extends FacebookPixelCustomEventParams
|
|
2235
2235
|
* @property {string} contentType The type of products being sold (e.g. food)
|
|
@@ -2242,7 +2242,7 @@ interface ViewProductDetailsParams$2 extends FacebookPixelCommonEventParams, Fac
|
|
|
2242
2242
|
* Event allowed parameters.
|
|
2243
2243
|
*
|
|
2244
2244
|
* @interface ViewProductDetailsParams
|
|
2245
|
-
* @since 0.
|
|
2245
|
+
* @since 0.1.0
|
|
2246
2246
|
* @extends SegmentCommonEventParams
|
|
2247
2247
|
* @extends SegmentCustomEventParams
|
|
2248
2248
|
*/
|
|
@@ -2253,7 +2253,7 @@ interface ViewProductDetailsParams$1 extends SegmentCommonEventParams, SegmentCu
|
|
|
2253
2253
|
* viewProductDetails event interface
|
|
2254
2254
|
*
|
|
2255
2255
|
* @interface ViewProductDetailsCommonParams
|
|
2256
|
-
* @since 0.
|
|
2256
|
+
* @since 0.1.0
|
|
2257
2257
|
* @property {Product} product the product that the details are being viewed
|
|
2258
2258
|
* @property {string} categoryId if the user came from a category list, the category id
|
|
2259
2259
|
*/
|
|
@@ -2265,7 +2265,7 @@ interface ViewProductDetailsCommonParams {
|
|
|
2265
2265
|
* viewProductDetails event params.
|
|
2266
2266
|
*
|
|
2267
2267
|
* @typedef ViewProductDetailsParams
|
|
2268
|
-
* @since 0.
|
|
2268
|
+
* @since 0.1.0
|
|
2269
2269
|
*/
|
|
2270
2270
|
declare type ViewProductDetailsParams = ViewProductDetailsParams$3 & ViewProductDetailsParams$2 & ViewProductDetailsParams$1;
|
|
2271
2271
|
|
|
@@ -2273,7 +2273,7 @@ declare type ViewProductDetailsParams = ViewProductDetailsParams$3 & ViewProduct
|
|
|
2273
2273
|
* Event allowed parameters.
|
|
2274
2274
|
*
|
|
2275
2275
|
* @interface SortProductsParams
|
|
2276
|
-
* @since 0.
|
|
2276
|
+
* @since 0.1.0
|
|
2277
2277
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2278
2278
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2279
2279
|
* @extends SortProductsCommonParams
|
|
@@ -2285,7 +2285,7 @@ interface SortProductsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
|
|
|
2285
2285
|
* Event allowed parameters.
|
|
2286
2286
|
*
|
|
2287
2287
|
* @interface SortProductsParams
|
|
2288
|
-
* @since 0.
|
|
2288
|
+
* @since 0.1.0
|
|
2289
2289
|
* @extends FacebookPixelCommonEventParams
|
|
2290
2290
|
* @extends FacebookPixelCustomEventParams
|
|
2291
2291
|
* @extends SortProductsCommonParams
|
|
@@ -2299,7 +2299,7 @@ interface SortProductsParams$2 extends FacebookPixelCommonEventParams, FacebookP
|
|
|
2299
2299
|
* Event allowed parameters.
|
|
2300
2300
|
*
|
|
2301
2301
|
* @interface SortProductsParams
|
|
2302
|
-
* @since 0.
|
|
2302
|
+
* @since 0.1.0
|
|
2303
2303
|
* @extends SegmentCommonEventParams
|
|
2304
2304
|
* @extends SegmentCustomEventParams
|
|
2305
2305
|
* @extends SortProductsCommonParams
|
|
@@ -2311,7 +2311,7 @@ interface SortProductsParams$1 extends SegmentCommonEventParams, SegmentCustomEv
|
|
|
2311
2311
|
* sortProducts event interface
|
|
2312
2312
|
*
|
|
2313
2313
|
* @interface SortProductsCommonParams
|
|
2314
|
-
* @since 0.
|
|
2314
|
+
* @since 0.1.0
|
|
2315
2315
|
* @property {string} list the name of the list of products to sort
|
|
2316
2316
|
* @property {string} sortBy sort attribute by (e.g. alphabetical)
|
|
2317
2317
|
* @property {string} sortMethod method used to sort (e.g. asc)
|
|
@@ -2327,7 +2327,7 @@ interface SortProductsCommonParams {
|
|
|
2327
2327
|
* sortProducts event params.
|
|
2328
2328
|
*
|
|
2329
2329
|
* @typedef SortProductsParams
|
|
2330
|
-
* @since 0.
|
|
2330
|
+
* @since 0.1.0
|
|
2331
2331
|
*/
|
|
2332
2332
|
declare type SortProductsParams = SortProductsParams$3 & SortProductsParams$2 & SortProductsParams$1;
|
|
2333
2333
|
|
|
@@ -2335,7 +2335,7 @@ declare type SortProductsParams = SortProductsParams$3 & SortProductsParams$2 &
|
|
|
2335
2335
|
* Event allowed parameters.
|
|
2336
2336
|
*
|
|
2337
2337
|
* @interface SelectProductParams
|
|
2338
|
-
* @since 0.
|
|
2338
|
+
* @since 0.1.0
|
|
2339
2339
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2340
2340
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2341
2341
|
* @extends SelectProductCommonParams
|
|
@@ -2347,7 +2347,7 @@ interface SelectProductParams$3 extends GoogleAnalyticsCommonEventParams, Google
|
|
|
2347
2347
|
* Event allowed parameters.
|
|
2348
2348
|
*
|
|
2349
2349
|
* @interface SelectProductParams
|
|
2350
|
-
* @since 0.
|
|
2350
|
+
* @since 0.1.0
|
|
2351
2351
|
* @extends FacebookPixelCommonEventParams
|
|
2352
2352
|
* @extends FacebookPixelCustomEventParams
|
|
2353
2353
|
* @property {string} contentType The type of products being sold (e.g. food)
|
|
@@ -2360,7 +2360,7 @@ interface SelectProductParams$2 extends FacebookPixelCommonEventParams, Facebook
|
|
|
2360
2360
|
* Event allowed parameters.
|
|
2361
2361
|
*
|
|
2362
2362
|
* @interface SelectProductParams
|
|
2363
|
-
* @since 0.
|
|
2363
|
+
* @since 0.1.0
|
|
2364
2364
|
* @extends SegmentCommonEventParams
|
|
2365
2365
|
* @extends SegmentCustomEventParams
|
|
2366
2366
|
*/
|
|
@@ -2371,7 +2371,7 @@ interface SelectProductParams$1 extends SegmentCommonEventParams, SegmentCustomE
|
|
|
2371
2371
|
* selectProduct event interface
|
|
2372
2372
|
*
|
|
2373
2373
|
* @interface SelectProductCommonParams
|
|
2374
|
-
* @since 0.
|
|
2374
|
+
* @since 0.1.0
|
|
2375
2375
|
* @property {Product} query the selected product
|
|
2376
2376
|
* @property {string} list the name of the list where the product is
|
|
2377
2377
|
* @property {number} position the position in a list where the product is
|
|
@@ -2385,7 +2385,7 @@ interface SelectProductCommonParams {
|
|
|
2385
2385
|
* selectProduct event params.
|
|
2386
2386
|
*
|
|
2387
2387
|
* @typedef SelectProductParams
|
|
2388
|
-
* @since 0.
|
|
2388
|
+
* @since 0.1.0
|
|
2389
2389
|
*/
|
|
2390
2390
|
declare type SelectProductParams = SelectProductParams$3 & SelectProductParams$2 & SelectProductParams$1;
|
|
2391
2391
|
|
|
@@ -2393,7 +2393,7 @@ declare type SelectProductParams = SelectProductParams$3 & SelectProductParams$2
|
|
|
2393
2393
|
* Event allowed parameters.
|
|
2394
2394
|
*
|
|
2395
2395
|
* @interface SearchProductNotFoundParams
|
|
2396
|
-
* @since 0.
|
|
2396
|
+
* @since 0.1.0
|
|
2397
2397
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2398
2398
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2399
2399
|
* @extends SearchProductNotFoundCommonParams
|
|
@@ -2405,7 +2405,7 @@ interface SearchProductNotFoundParams$3 extends GoogleAnalyticsCommonEventParams
|
|
|
2405
2405
|
* Event allowed parameters.
|
|
2406
2406
|
*
|
|
2407
2407
|
* @interface SearchProductNotFoundParams
|
|
2408
|
-
* @since 0.
|
|
2408
|
+
* @since 0.1.0
|
|
2409
2409
|
* @extends FacebookPixelCommonEventParams
|
|
2410
2410
|
* @extends FacebookPixelCustomEventParams
|
|
2411
2411
|
* @extends SearchProductNotFoundCommonParams
|
|
@@ -2419,7 +2419,7 @@ interface SearchProductNotFoundParams$2 extends FacebookPixelCommonEventParams,
|
|
|
2419
2419
|
* Event allowed parameters.
|
|
2420
2420
|
*
|
|
2421
2421
|
* @interface SearchProductNotFoundParams
|
|
2422
|
-
* @since 0.
|
|
2422
|
+
* @since 0.1.0
|
|
2423
2423
|
* @extends SegmentCommonEventParams
|
|
2424
2424
|
* @extends SegmentCustomEventParams
|
|
2425
2425
|
* @extends SearchProductNotFoundCommonParams
|
|
@@ -2431,7 +2431,7 @@ interface SearchProductNotFoundParams$1 extends SegmentCommonEventParams, Segmen
|
|
|
2431
2431
|
* searchProductNotFound event interface
|
|
2432
2432
|
*
|
|
2433
2433
|
* @interface SearchProductNotFoundCommonParams
|
|
2434
|
-
* @since 0.
|
|
2434
|
+
* @since 0.1.0
|
|
2435
2435
|
* @property {string} query the searched text
|
|
2436
2436
|
*/
|
|
2437
2437
|
interface SearchProductNotFoundCommonParams {
|
|
@@ -2441,7 +2441,7 @@ interface SearchProductNotFoundCommonParams {
|
|
|
2441
2441
|
* searchProductNotFound event params.
|
|
2442
2442
|
*
|
|
2443
2443
|
* @typedef SearchProductNotFoundParams
|
|
2444
|
-
* @since 0.
|
|
2444
|
+
* @since 0.1.0
|
|
2445
2445
|
*/
|
|
2446
2446
|
declare type SearchProductNotFoundParams = SearchProductNotFoundParams$3 & SearchProductNotFoundParams$2 & SearchProductNotFoundParams$1;
|
|
2447
2447
|
|
|
@@ -2449,7 +2449,7 @@ declare type SearchProductNotFoundParams = SearchProductNotFoundParams$3 & Searc
|
|
|
2449
2449
|
* Event allowed parameters.
|
|
2450
2450
|
*
|
|
2451
2451
|
* @interface SearchProductAttemptParams
|
|
2452
|
-
* @since 0.
|
|
2452
|
+
* @since 0.1.0
|
|
2453
2453
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2454
2454
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2455
2455
|
* @extends SearchProductAttemptCommonParams
|
|
@@ -2461,7 +2461,7 @@ interface SearchProductAttemptParams$3 extends GoogleAnalyticsCommonEventParams,
|
|
|
2461
2461
|
* Event allowed parameters.
|
|
2462
2462
|
*
|
|
2463
2463
|
* @interface SearchProductAttemptParams
|
|
2464
|
-
* @since 0.
|
|
2464
|
+
* @since 0.1.0
|
|
2465
2465
|
* @extends FacebookPixelCommonEventParams
|
|
2466
2466
|
* @extends FacebookPixelCustomEventParams
|
|
2467
2467
|
* @extends SearchProductAttemptCommonParams
|
|
@@ -2475,7 +2475,7 @@ interface SearchProductAttemptParams$2 extends FacebookPixelCommonEventParams, F
|
|
|
2475
2475
|
* Event allowed parameters.
|
|
2476
2476
|
*
|
|
2477
2477
|
* @interface SearchProductAttemptParams
|
|
2478
|
-
* @since 0.
|
|
2478
|
+
* @since 0.1.0
|
|
2479
2479
|
* @extends SegmentCommonEventParams
|
|
2480
2480
|
* @extends SegmentCustomEventParams
|
|
2481
2481
|
* @extends SearchProductAttemptCommonParams
|
|
@@ -2487,7 +2487,7 @@ interface SearchProductAttemptParams$1 extends SegmentCommonEventParams, Segment
|
|
|
2487
2487
|
* searchProductAttempt event interface
|
|
2488
2488
|
*
|
|
2489
2489
|
* @interface SearchProductAttemptCommonParams
|
|
2490
|
-
* @since 0.
|
|
2490
|
+
* @since 0.1.0
|
|
2491
2491
|
* @property {string} query the searched text
|
|
2492
2492
|
*/
|
|
2493
2493
|
interface SearchProductAttemptCommonParams {
|
|
@@ -2497,7 +2497,7 @@ interface SearchProductAttemptCommonParams {
|
|
|
2497
2497
|
* searchProductAttempt event params.
|
|
2498
2498
|
*
|
|
2499
2499
|
* @typedef SearchProductAttemptParams
|
|
2500
|
-
* @since 0.
|
|
2500
|
+
* @since 0.1.0
|
|
2501
2501
|
*/
|
|
2502
2502
|
declare type SearchProductAttemptParams = SearchProductAttemptParams$3 & SearchProductAttemptParams$2 & SearchProductAttemptParams$1;
|
|
2503
2503
|
|
|
@@ -2505,7 +2505,7 @@ declare type SearchProductAttemptParams = SearchProductAttemptParams$3 & SearchP
|
|
|
2505
2505
|
* Event allowed parameters.
|
|
2506
2506
|
*
|
|
2507
2507
|
* @interface SearchProductSuccessParams
|
|
2508
|
-
* @since 0.
|
|
2508
|
+
* @since 0.1.0
|
|
2509
2509
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2510
2510
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2511
2511
|
* @extends SearchProductSuccessCommonParams
|
|
@@ -2517,7 +2517,7 @@ interface SearchProductSuccessParams$3 extends GoogleAnalyticsCommonEventParams,
|
|
|
2517
2517
|
* Event allowed parameters.
|
|
2518
2518
|
*
|
|
2519
2519
|
* @interface SearchProductSuccessParams
|
|
2520
|
-
* @since 0.
|
|
2520
|
+
* @since 0.1.0
|
|
2521
2521
|
* @extends FacebookPixelCommonEventParams
|
|
2522
2522
|
* @extends FacebookPixelCustomEventParams
|
|
2523
2523
|
* @extends SearchProductSuccessCommonParams
|
|
@@ -2531,7 +2531,7 @@ interface SearchProductSuccessParams$2 extends FacebookPixelCommonEventParams, F
|
|
|
2531
2531
|
* Event allowed parameters.
|
|
2532
2532
|
*
|
|
2533
2533
|
* @interface SearchProductSuccessParams
|
|
2534
|
-
* @since 0.
|
|
2534
|
+
* @since 0.1.0
|
|
2535
2535
|
* @extends SegmentCommonEventParams
|
|
2536
2536
|
* @extends SegmentCustomEventParams
|
|
2537
2537
|
* @extends SearchProductSuccessCommonParams
|
|
@@ -2543,7 +2543,7 @@ interface SearchProductSuccessParams$1 extends SegmentCommonEventParams, Segment
|
|
|
2543
2543
|
* searchProductSuccess event interface
|
|
2544
2544
|
*
|
|
2545
2545
|
* @interface SearchProductSuccessCommonParams
|
|
2546
|
-
* @since 0.
|
|
2546
|
+
* @since 0.1.0
|
|
2547
2547
|
* @property {string} query the searched text
|
|
2548
2548
|
*/
|
|
2549
2549
|
interface SearchProductSuccessCommonParams {
|
|
@@ -2553,7 +2553,7 @@ interface SearchProductSuccessCommonParams {
|
|
|
2553
2553
|
* searchProductSuccess event params.
|
|
2554
2554
|
*
|
|
2555
2555
|
* @typedef SearchProductSuccessParams
|
|
2556
|
-
* @since 0.
|
|
2556
|
+
* @since 0.1.0
|
|
2557
2557
|
*/
|
|
2558
2558
|
declare type SearchProductSuccessParams = SearchProductSuccessParams$3 & SearchProductSuccessParams$2 & SearchProductSuccessParams$1;
|
|
2559
2559
|
|
|
@@ -2561,7 +2561,7 @@ declare type SearchProductSuccessParams = SearchProductSuccessParams$3 & SearchP
|
|
|
2561
2561
|
* Event allowed parameters.
|
|
2562
2562
|
*
|
|
2563
2563
|
* @interface ProductImpressionParams
|
|
2564
|
-
* @since 0.
|
|
2564
|
+
* @since 0.1.0
|
|
2565
2565
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2566
2566
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2567
2567
|
* @extends ProductImpressionCommonParams
|
|
@@ -2573,7 +2573,7 @@ interface ProductImpressionParams$3 extends GoogleAnalyticsCommonEventParams, Go
|
|
|
2573
2573
|
* Event allowed parameters.
|
|
2574
2574
|
*
|
|
2575
2575
|
* @interface ProductImpressionParams
|
|
2576
|
-
* @since 0.
|
|
2576
|
+
* @since 0.1.0
|
|
2577
2577
|
* @extends FacebookPixelCommonEventParams
|
|
2578
2578
|
* @extends FacebookPixelCustomEventParams
|
|
2579
2579
|
* @property {string} contentType The type of product the user had an impression on (e.g. food)
|
|
@@ -2586,7 +2586,7 @@ interface ProductImpressionParams$2 extends FacebookPixelCommonEventParams, Face
|
|
|
2586
2586
|
* Event allowed parameters.
|
|
2587
2587
|
*
|
|
2588
2588
|
* @interface ProductImpressionParams
|
|
2589
|
-
* @since 0.
|
|
2589
|
+
* @since 0.1.0
|
|
2590
2590
|
* @extends SegmentCommonEventParams
|
|
2591
2591
|
* @extends SegmentCustomEventParams
|
|
2592
2592
|
*/
|
|
@@ -2597,7 +2597,7 @@ interface ProductImpressionParams$1 extends SegmentCommonEventParams, SegmentCus
|
|
|
2597
2597
|
* productImpression event interface
|
|
2598
2598
|
*
|
|
2599
2599
|
* @interface ProductImpressionCommonParams
|
|
2600
|
-
* @since 0.
|
|
2600
|
+
* @since 0.1.0
|
|
2601
2601
|
* @property {Product} product the product a user had an impression on
|
|
2602
2602
|
* @property {string} list the name of the list where the product is
|
|
2603
2603
|
* @property {number} position the position in a list where the product is
|
|
@@ -2613,7 +2613,7 @@ interface ProductImpressionCommonParams {
|
|
|
2613
2613
|
* productImpression event params.
|
|
2614
2614
|
*
|
|
2615
2615
|
* @typedef ProductImpressionParams
|
|
2616
|
-
* @since 0.
|
|
2616
|
+
* @since 0.1.0
|
|
2617
2617
|
*/
|
|
2618
2618
|
declare type ProductImpressionParams = ProductImpressionParams$3 & ProductImpressionParams$2 & ProductImpressionParams$1;
|
|
2619
2619
|
|
|
@@ -2621,7 +2621,7 @@ declare type ProductImpressionParams = ProductImpressionParams$3 & ProductImpres
|
|
|
2621
2621
|
* Event allowed parameters.
|
|
2622
2622
|
*
|
|
2623
2623
|
* @interface FilterProductsParams
|
|
2624
|
-
* @since 0.
|
|
2624
|
+
* @since 0.1.0
|
|
2625
2625
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2626
2626
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2627
2627
|
* @extends FilterProductsCommonParams
|
|
@@ -2633,7 +2633,7 @@ interface FilterProductsParams$3 extends GoogleAnalyticsCommonEventParams, Googl
|
|
|
2633
2633
|
* Event allowed parameters.
|
|
2634
2634
|
*
|
|
2635
2635
|
* @interface FilterProductsParams
|
|
2636
|
-
* @since 0.
|
|
2636
|
+
* @since 0.1.0
|
|
2637
2637
|
* @extends FacebookPixelCommonEventParams
|
|
2638
2638
|
* @extends FacebookPixelCustomEventParams
|
|
2639
2639
|
* @extends FilterProductsCommonParams
|
|
@@ -2647,7 +2647,7 @@ interface FilterProductsParams$2 extends FacebookPixelCommonEventParams, Faceboo
|
|
|
2647
2647
|
* Event allowed parameters.
|
|
2648
2648
|
*
|
|
2649
2649
|
* @interface FilterProductsParams
|
|
2650
|
-
* @since 0.
|
|
2650
|
+
* @since 0.1.0
|
|
2651
2651
|
* @extends SegmentCommonEventParams
|
|
2652
2652
|
* @extends SegmentCustomEventParams
|
|
2653
2653
|
* @extends FilterProductsCommonParams
|
|
@@ -2659,7 +2659,7 @@ interface FilterProductsParams$1 extends SegmentCommonEventParams, SegmentCustom
|
|
|
2659
2659
|
* filterProducts event interface
|
|
2660
2660
|
*
|
|
2661
2661
|
* @interface FilterProductsCommonParams
|
|
2662
|
-
* @since 0.
|
|
2662
|
+
* @since 0.1.0
|
|
2663
2663
|
* @property {string} list the name of the list of products to filter
|
|
2664
2664
|
* @property {string} filterBy key:value list of filters e.g. ["brand:Artisn"]
|
|
2665
2665
|
* @property {string} categoryId if the list is an artisn category, the category id
|
|
@@ -2673,7 +2673,7 @@ interface FilterProductsCommonParams {
|
|
|
2673
2673
|
* filterProducts event params.
|
|
2674
2674
|
*
|
|
2675
2675
|
* @typedef FilterProductsParams
|
|
2676
|
-
* @since 0.
|
|
2676
|
+
* @since 0.1.0
|
|
2677
2677
|
*/
|
|
2678
2678
|
declare type FilterProductsParams = FilterProductsParams$3 & FilterProductsParams$2 & FilterProductsParams$1;
|
|
2679
2679
|
|
|
@@ -2681,7 +2681,7 @@ declare type FilterProductsParams = FilterProductsParams$3 & FilterProductsParam
|
|
|
2681
2681
|
* Event allowed parameters.
|
|
2682
2682
|
*
|
|
2683
2683
|
* @interface CustomizeProductParams
|
|
2684
|
-
* @since 0.
|
|
2684
|
+
* @since 0.1.0
|
|
2685
2685
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2686
2686
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2687
2687
|
* @extends CustomizeProductCommonParams
|
|
@@ -2693,7 +2693,7 @@ interface CustomizeProductParams$3 extends GoogleAnalyticsCommonEventParams, Goo
|
|
|
2693
2693
|
* Event allowed parameters.
|
|
2694
2694
|
*
|
|
2695
2695
|
* @interface CustomizeProductParams
|
|
2696
|
-
* @since 0.
|
|
2696
|
+
* @since 0.1.0
|
|
2697
2697
|
* @extends FacebookPixelCommonEventParams
|
|
2698
2698
|
* @extends FacebookPixelCustomEventParams
|
|
2699
2699
|
* @property {string} contentType The type of products being sold (e.g. food)
|
|
@@ -2706,7 +2706,7 @@ interface CustomizeProductParams$2 extends FacebookPixelCommonEventParams, Faceb
|
|
|
2706
2706
|
* Event allowed parameters.
|
|
2707
2707
|
*
|
|
2708
2708
|
* @interface CustomizeProductParams
|
|
2709
|
-
* @since 0.
|
|
2709
|
+
* @since 0.1.0
|
|
2710
2710
|
* @extends SegmentCommonEventParams
|
|
2711
2711
|
* @extends SegmentCustomEventParams
|
|
2712
2712
|
*/
|
|
@@ -2717,7 +2717,7 @@ interface CustomizeProductParams$1 extends SegmentCommonEventParams, SegmentCust
|
|
|
2717
2717
|
* customizeProduct event interface
|
|
2718
2718
|
*
|
|
2719
2719
|
* @interface CustomizeProductCommonParams
|
|
2720
|
-
* @since 0.
|
|
2720
|
+
* @since 0.1.0
|
|
2721
2721
|
* @property {CartProduct} product the customized product
|
|
2722
2722
|
*/
|
|
2723
2723
|
interface CustomizeProductCommonParams {
|
|
@@ -2727,7 +2727,7 @@ interface CustomizeProductCommonParams {
|
|
|
2727
2727
|
* customizeProduct event params.
|
|
2728
2728
|
*
|
|
2729
2729
|
* @typedef CustomizeProductParams
|
|
2730
|
-
* @since 0.
|
|
2730
|
+
* @since 0.1.0
|
|
2731
2731
|
*/
|
|
2732
2732
|
declare type CustomizeProductParams = CustomizeProductParams$3 & CustomizeProductParams$2 & CustomizeProductParams$1;
|
|
2733
2733
|
|
|
@@ -2735,7 +2735,7 @@ declare type CustomizeProductParams = CustomizeProductParams$3 & CustomizeProduc
|
|
|
2735
2735
|
* Event allowed parameters.
|
|
2736
2736
|
*
|
|
2737
2737
|
* @interface SetPaymentInfoParams
|
|
2738
|
-
* @since 0.
|
|
2738
|
+
* @since 0.1.0
|
|
2739
2739
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2740
2740
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2741
2741
|
* @extends SetPaymentInfoCommonParams
|
|
@@ -2747,7 +2747,7 @@ interface SetPaymentInfoParams$3 extends GoogleAnalyticsCommonEventParams, Googl
|
|
|
2747
2747
|
* Event allowed parameters.
|
|
2748
2748
|
*
|
|
2749
2749
|
* @interface SetPaymentInfoParams
|
|
2750
|
-
* @since 0.
|
|
2750
|
+
* @since 0.1.0
|
|
2751
2751
|
* @extends FacebookPixelCommonEventParams
|
|
2752
2752
|
* @extends FacebookPixelCustomEventParams
|
|
2753
2753
|
* @extends SetPaymentInfoCommonParams
|
|
@@ -2759,7 +2759,7 @@ interface SetPaymentInfoParams$2 extends FacebookPixelCommonEventParams, Faceboo
|
|
|
2759
2759
|
* Event allowed parameters.
|
|
2760
2760
|
*
|
|
2761
2761
|
* @interface SetPaymentInfoParams
|
|
2762
|
-
* @since 0.
|
|
2762
|
+
* @since 0.1.0
|
|
2763
2763
|
* @extends SegmentCommonEventParams
|
|
2764
2764
|
* @extends SegmentCustomEventParams
|
|
2765
2765
|
* @extends SetPaymentInfoCommonParams
|
|
@@ -2771,7 +2771,7 @@ interface SetPaymentInfoParams$1 extends SegmentCommonEventParams, SegmentCustom
|
|
|
2771
2771
|
* setPaymentInfo event interface
|
|
2772
2772
|
*
|
|
2773
2773
|
* @interface SetPaymentInfoCommonParams
|
|
2774
|
-
* @since 0.
|
|
2774
|
+
* @since 0.1.0
|
|
2775
2775
|
* @property {number} orderTotal The total cost of the order
|
|
2776
2776
|
* @property {PaymentType} paymentType The new set payment type (e.g. Cash)
|
|
2777
2777
|
* @property {string} cardType If paying with card, the card provider (e.g. visa)
|
|
@@ -2785,7 +2785,7 @@ interface SetPaymentInfoCommonParams {
|
|
|
2785
2785
|
* setPaymentInfo event params.
|
|
2786
2786
|
*
|
|
2787
2787
|
* @typedef SetPaymentInfoParams
|
|
2788
|
-
* @since 0.
|
|
2788
|
+
* @since 0.1.0
|
|
2789
2789
|
*/
|
|
2790
2790
|
declare type SetPaymentInfoParams = SetPaymentInfoParams$3 & SetPaymentInfoParams$2 & SetPaymentInfoParams$1;
|
|
2791
2791
|
|
|
@@ -2793,7 +2793,7 @@ declare type SetPaymentInfoParams = SetPaymentInfoParams$3 & SetPaymentInfoParam
|
|
|
2793
2793
|
* Event allowed parameters.
|
|
2794
2794
|
*
|
|
2795
2795
|
* @interface SelectPaymentTypeParams
|
|
2796
|
-
* @since 0.
|
|
2796
|
+
* @since 0.1.0
|
|
2797
2797
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2798
2798
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2799
2799
|
* @extends SelectPaymentTypeCommonParams
|
|
@@ -2805,7 +2805,7 @@ interface SelectPaymentTypeParams$3 extends GoogleAnalyticsCommonEventParams, Go
|
|
|
2805
2805
|
* Event allowed parameters.
|
|
2806
2806
|
*
|
|
2807
2807
|
* @interface SelectPaymentTypeParams
|
|
2808
|
-
* @since 0.
|
|
2808
|
+
* @since 0.1.0
|
|
2809
2809
|
* @extends FacebookPixelCommonEventParams
|
|
2810
2810
|
* @extends FacebookPixelCustomEventParams
|
|
2811
2811
|
* @extends SelectPaymentTypeCommonParams
|
|
@@ -2817,7 +2817,7 @@ interface SelectPaymentTypeParams$2 extends FacebookPixelCommonEventParams, Face
|
|
|
2817
2817
|
* Event allowed parameters.
|
|
2818
2818
|
*
|
|
2819
2819
|
* @interface SelectPaymentTypeParams
|
|
2820
|
-
* @since 0.
|
|
2820
|
+
* @since 0.1.0
|
|
2821
2821
|
* @extends SegmentCommonEventParams
|
|
2822
2822
|
* @extends SegmentCustomEventParams
|
|
2823
2823
|
* @extends SelectPaymentTypeCommonParams
|
|
@@ -2829,7 +2829,7 @@ interface SelectPaymentTypeParams$1 extends SegmentCommonEventParams, SegmentCus
|
|
|
2829
2829
|
* selectPaymentType event interface
|
|
2830
2830
|
*
|
|
2831
2831
|
* @interface SelectPaymentTypeCommonParams
|
|
2832
|
-
* @since 0.
|
|
2832
|
+
* @since 0.1.0
|
|
2833
2833
|
* @property {PaymentType} paymentType The new set payment type (e.g. Cash)
|
|
2834
2834
|
* @property {number} orderTotal The total cost of the order
|
|
2835
2835
|
*/
|
|
@@ -2841,7 +2841,7 @@ interface SelectPaymentTypeCommonParams {
|
|
|
2841
2841
|
* selectPaymentType event params.
|
|
2842
2842
|
*
|
|
2843
2843
|
* @typedef SelectPaymentTypeParams
|
|
2844
|
-
* @since 0.
|
|
2844
|
+
* @since 0.1.0
|
|
2845
2845
|
*/
|
|
2846
2846
|
declare type SelectPaymentTypeParams = SelectPaymentTypeParams$3 & SelectPaymentTypeParams$2 & SelectPaymentTypeParams$1;
|
|
2847
2847
|
|
|
@@ -2849,7 +2849,7 @@ declare type SelectPaymentTypeParams = SelectPaymentTypeParams$3 & SelectPayment
|
|
|
2849
2849
|
* Event allowed parameters.
|
|
2850
2850
|
*
|
|
2851
2851
|
* @interface ChangePaymentTypeParams
|
|
2852
|
-
* @since 0.
|
|
2852
|
+
* @since 0.1.0
|
|
2853
2853
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2854
2854
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2855
2855
|
* @extends ChangePaymentTypeCommonParams
|
|
@@ -2861,7 +2861,7 @@ interface ChangePaymentTypeParams$3 extends GoogleAnalyticsCommonEventParams, Go
|
|
|
2861
2861
|
* Event allowed parameters.
|
|
2862
2862
|
*
|
|
2863
2863
|
* @interface ChangePaymentTypeParams
|
|
2864
|
-
* @since 0.
|
|
2864
|
+
* @since 0.1.0
|
|
2865
2865
|
* @extends FacebookPixelCommonEventParams
|
|
2866
2866
|
* @extends FacebookPixelCustomEventParams
|
|
2867
2867
|
* @extends ChangePaymentTypeCommonParams
|
|
@@ -2873,7 +2873,7 @@ interface ChangePaymentTypeParams$2 extends FacebookPixelCommonEventParams, Face
|
|
|
2873
2873
|
* Event allowed parameters.
|
|
2874
2874
|
*
|
|
2875
2875
|
* @interface ChangePaymentTypeParams
|
|
2876
|
-
* @since 0.
|
|
2876
|
+
* @since 0.1.0
|
|
2877
2877
|
* @extends SegmentCommonEventParams
|
|
2878
2878
|
* @extends SegmentCustomEventParams
|
|
2879
2879
|
* @extends ChangePaymentTypeCommonParams
|
|
@@ -2885,7 +2885,7 @@ interface ChangePaymentTypeParams$1 extends SegmentCommonEventParams, SegmentCus
|
|
|
2885
2885
|
* changePaymentType event interface
|
|
2886
2886
|
*
|
|
2887
2887
|
* @interface ChangePaymentTypeCommonParams
|
|
2888
|
-
* @since 0.
|
|
2888
|
+
* @since 0.1.0
|
|
2889
2889
|
* @property {PaymentType} previousPaymentType The previously set payment type
|
|
2890
2890
|
* @property {string} previousCardType If was paying with card, the previously set card provider (e.g. visa)
|
|
2891
2891
|
* @property {PaymentType} nextPaymentType The new set payment type
|
|
@@ -2903,7 +2903,7 @@ interface ChangePaymentTypeCommonParams {
|
|
|
2903
2903
|
* changePaymentType event params.
|
|
2904
2904
|
*
|
|
2905
2905
|
* @typedef ChangePaymentTypeParams
|
|
2906
|
-
* @since 0.
|
|
2906
|
+
* @since 0.1.0
|
|
2907
2907
|
*/
|
|
2908
2908
|
declare type ChangePaymentTypeParams = ChangePaymentTypeParams$3 & ChangePaymentTypeParams$2 & ChangePaymentTypeParams$1;
|
|
2909
2909
|
|
|
@@ -2911,7 +2911,7 @@ declare type ChangePaymentTypeParams = ChangePaymentTypeParams$3 & ChangePayment
|
|
|
2911
2911
|
* Event allowed parameters.
|
|
2912
2912
|
*
|
|
2913
2913
|
* @interface SearchPageContentParams
|
|
2914
|
-
* @since 0.
|
|
2914
|
+
* @since 0.1.0
|
|
2915
2915
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2916
2916
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2917
2917
|
* @extends SearchPageContentCommonParams
|
|
@@ -2923,7 +2923,7 @@ interface SearchPageContentParams$3 extends GoogleAnalyticsCommonEventParams, Go
|
|
|
2923
2923
|
* Event allowed parameters.
|
|
2924
2924
|
*
|
|
2925
2925
|
* @interface SearchPageContentParams
|
|
2926
|
-
* @since 0.
|
|
2926
|
+
* @since 0.1.0
|
|
2927
2927
|
* @extends FacebookPixelCommonEventParams
|
|
2928
2928
|
* @extends FacebookPixelCustomEventParams
|
|
2929
2929
|
* @extends SearchPageContentCommonParams
|
|
@@ -2937,7 +2937,7 @@ interface SearchPageContentParams$2 extends FacebookPixelCommonEventParams, Face
|
|
|
2937
2937
|
* Event allowed parameters.
|
|
2938
2938
|
*
|
|
2939
2939
|
* @interface SearchPageContentParams
|
|
2940
|
-
* @since 0.
|
|
2940
|
+
* @since 0.1.0
|
|
2941
2941
|
* @extends SegmentCommonEventParams
|
|
2942
2942
|
* @extends SegmentCustomEventParams
|
|
2943
2943
|
* @extends SearchPageContentCommonParams
|
|
@@ -2949,7 +2949,7 @@ interface SearchPageContentParams$1 extends SegmentCommonEventParams, SegmentCus
|
|
|
2949
2949
|
* searchPageContent event interface
|
|
2950
2950
|
*
|
|
2951
2951
|
* @interface SearchPageContentCommonParams
|
|
2952
|
-
* @since 0.
|
|
2952
|
+
* @since 0.1.0
|
|
2953
2953
|
* @property {string} query The searched text
|
|
2954
2954
|
*/
|
|
2955
2955
|
interface SearchPageContentCommonParams {
|
|
@@ -2959,14 +2959,14 @@ interface SearchPageContentCommonParams {
|
|
|
2959
2959
|
* searchPageContent event params.
|
|
2960
2960
|
*
|
|
2961
2961
|
* @typedef SearchPageContentParams
|
|
2962
|
-
* @since 0.
|
|
2962
|
+
* @since 0.1.0
|
|
2963
2963
|
*/
|
|
2964
2964
|
declare type SearchPageContentParams = SearchPageContentParams$3 & SearchPageContentParams$2 & SearchPageContentParams$1;
|
|
2965
2965
|
|
|
2966
2966
|
/**
|
|
2967
2967
|
* pageView event interface
|
|
2968
2968
|
*
|
|
2969
|
-
* @since 0.
|
|
2969
|
+
* @since 0.1.0
|
|
2970
2970
|
* @extends GoogleAnalyticsCommonEventParams
|
|
2971
2971
|
* @extends GoogleAnalyticsCustomEventParams
|
|
2972
2972
|
* @extends PageViewCommonParams
|
|
@@ -2978,7 +2978,7 @@ interface PageViewParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnaly
|
|
|
2978
2978
|
* Event allowed parameters.
|
|
2979
2979
|
*
|
|
2980
2980
|
* @interface PageViewParams
|
|
2981
|
-
* @since 0.
|
|
2981
|
+
* @since 0.1.0
|
|
2982
2982
|
* @extends FacebookPixelCommonEventParams
|
|
2983
2983
|
* @extends FacebookPixelCustomEventParams
|
|
2984
2984
|
*/
|
|
@@ -2988,7 +2988,7 @@ interface PageViewParams$2 extends FacebookPixelCommonEventParams, FacebookPixel
|
|
|
2988
2988
|
/**
|
|
2989
2989
|
* screenView event interface
|
|
2990
2990
|
*
|
|
2991
|
-
* @since 0.
|
|
2991
|
+
* @since 0.1.0
|
|
2992
2992
|
* @extends SegmentCommonEventParams
|
|
2993
2993
|
* @extends SegmentCustomEventParams
|
|
2994
2994
|
* @extends PageiewCommonParams
|
|
@@ -3001,7 +3001,7 @@ interface PageViewParams$1 extends SegmentCommonEventParams, SegmentCustomEventP
|
|
|
3001
3001
|
* pageView event interface.
|
|
3002
3002
|
*
|
|
3003
3003
|
* @interface PageViewCommonParams
|
|
3004
|
-
* @since 0.
|
|
3004
|
+
* @since 0.1.0
|
|
3005
3005
|
* @property {string} pathname The name of the visited path, this value must start with a / character
|
|
3006
3006
|
* @property {string} name The title of the page
|
|
3007
3007
|
*/
|
|
@@ -3013,7 +3013,7 @@ interface PageViewCommonParams {
|
|
|
3013
3013
|
* pageView event params.
|
|
3014
3014
|
*
|
|
3015
3015
|
* @typedef PageViewParams
|
|
3016
|
-
* @since 0.
|
|
3016
|
+
* @since 0.1.0
|
|
3017
3017
|
*/
|
|
3018
3018
|
declare type PageViewParams = PageViewParams$3 & PageViewParams$2 & PageViewParams$1;
|
|
3019
3019
|
|
|
@@ -3021,7 +3021,7 @@ declare type PageViewParams = PageViewParams$3 & PageViewParams$2 & PageViewPara
|
|
|
3021
3021
|
* Event allowed parameters.
|
|
3022
3022
|
*
|
|
3023
3023
|
* @interface GenerateLeadParams
|
|
3024
|
-
* @since 0.
|
|
3024
|
+
* @since 0.1.0
|
|
3025
3025
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3026
3026
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3027
3027
|
* @extends GenerateLeadCommonParams
|
|
@@ -3033,7 +3033,7 @@ interface GenerateLeadParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
|
|
|
3033
3033
|
* Event allowed parameters.
|
|
3034
3034
|
*
|
|
3035
3035
|
* @interface GenerateLeadParams
|
|
3036
|
-
* @since 0.
|
|
3036
|
+
* @since 0.1.0
|
|
3037
3037
|
* @extends FacebookPixelCommonEventParams
|
|
3038
3038
|
* @extends FacebookPixelCustomEventParams
|
|
3039
3039
|
* @extends GenerateLeadCommonParams
|
|
@@ -3045,7 +3045,7 @@ interface GenerateLeadParams$2 extends FacebookPixelCommonEventParams, FacebookP
|
|
|
3045
3045
|
* Event allowed parameters.
|
|
3046
3046
|
*
|
|
3047
3047
|
* @interface GenerateLeadParams
|
|
3048
|
-
* @since 0.
|
|
3048
|
+
* @since 0.1.0
|
|
3049
3049
|
* @extends SegmentCommonEventParams
|
|
3050
3050
|
* @extends SegmentCustomEventParams
|
|
3051
3051
|
* @extends GenerateLeadCommonParams
|
|
@@ -3057,7 +3057,7 @@ interface GenerateLeadParams$1 extends SegmentCommonEventParams, SegmentCustomEv
|
|
|
3057
3057
|
* generateLead event interface
|
|
3058
3058
|
*
|
|
3059
3059
|
* @interface GenerateLeadCommonParams
|
|
3060
|
-
* @since 0.
|
|
3060
|
+
* @since 0.1.0
|
|
3061
3061
|
*/
|
|
3062
3062
|
interface GenerateLeadCommonParams {
|
|
3063
3063
|
}
|
|
@@ -3065,7 +3065,7 @@ interface GenerateLeadCommonParams {
|
|
|
3065
3065
|
* generateLead event params.
|
|
3066
3066
|
*
|
|
3067
3067
|
* @typedef GenerateLeadParams
|
|
3068
|
-
* @since 0.
|
|
3068
|
+
* @since 0.1.0
|
|
3069
3069
|
*/
|
|
3070
3070
|
declare type GenerateLeadParams = GenerateLeadParams$3 & GenerateLeadParams$2 & GenerateLeadParams$1;
|
|
3071
3071
|
|
|
@@ -3073,7 +3073,7 @@ declare type GenerateLeadParams = GenerateLeadParams$3 & GenerateLeadParams$2 &
|
|
|
3073
3073
|
* Event allowed parameters.
|
|
3074
3074
|
*
|
|
3075
3075
|
* @interface RequestRefundParams
|
|
3076
|
-
* @since 0.
|
|
3076
|
+
* @since 0.1.0
|
|
3077
3077
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3078
3078
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3079
3079
|
* @extends RequestRefundCommonParams
|
|
@@ -3087,7 +3087,7 @@ interface RequestRefundParams$3 extends GoogleAnalyticsCommonEventParams, Google
|
|
|
3087
3087
|
* Event allowed parameters.
|
|
3088
3088
|
*
|
|
3089
3089
|
* @interface RequestRefundParams
|
|
3090
|
-
* @since 0.
|
|
3090
|
+
* @since 0.1.0
|
|
3091
3091
|
* @extends FacebookPixelCommonEventParams
|
|
3092
3092
|
* @extends FacebookPixelCustomEventParams
|
|
3093
3093
|
* @extends RequestRefundCommonParams
|
|
@@ -3099,7 +3099,7 @@ interface RequestRefundParams$2 extends FacebookPixelCommonEventParams, Facebook
|
|
|
3099
3099
|
* Event allowed parameters.
|
|
3100
3100
|
*
|
|
3101
3101
|
* @interface RequestRefundParams
|
|
3102
|
-
* @since 0.
|
|
3102
|
+
* @since 0.1.0
|
|
3103
3103
|
* @extends SegmentCommonEventParams
|
|
3104
3104
|
* @extends SegmentCustomEventParams
|
|
3105
3105
|
* @extends RequestRefundCommonParams
|
|
@@ -3113,7 +3113,7 @@ interface RequestRefundParams$1 extends SegmentCommonEventParams, SegmentCustomE
|
|
|
3113
3113
|
* requestRefund event interface
|
|
3114
3114
|
*
|
|
3115
3115
|
* @interface RequestRefundCommonParams
|
|
3116
|
-
* @since 0.
|
|
3116
|
+
* @since 0.1.0
|
|
3117
3117
|
* @property {string} orderId The orders unique identifier
|
|
3118
3118
|
* @property {number} orderTotal The total cost of the order
|
|
3119
3119
|
* @property {string} reason The reason by which the user is requesting a refund of the order
|
|
@@ -3127,7 +3127,7 @@ interface RequestRefundCommonParams {
|
|
|
3127
3127
|
* requestRefund event params.
|
|
3128
3128
|
*
|
|
3129
3129
|
* @typedef RequestRefundParams
|
|
3130
|
-
* @since 0.
|
|
3130
|
+
* @since 0.1.0
|
|
3131
3131
|
*/
|
|
3132
3132
|
declare type RequestRefundParams = RequestRefundParams$3 & RequestRefundParams$2 & RequestRefundParams$1;
|
|
3133
3133
|
|
|
@@ -3135,7 +3135,7 @@ declare type RequestRefundParams = RequestRefundParams$3 & RequestRefundParams$2
|
|
|
3135
3135
|
* Event allowed parameters.
|
|
3136
3136
|
*
|
|
3137
3137
|
* @interface RateOrderParams
|
|
3138
|
-
* @since 0.
|
|
3138
|
+
* @since 0.1.0
|
|
3139
3139
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3140
3140
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3141
3141
|
* @extends RateOrderCommonParams
|
|
@@ -3147,7 +3147,7 @@ interface RateOrderParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnal
|
|
|
3147
3147
|
* Event allowed parameters.
|
|
3148
3148
|
*
|
|
3149
3149
|
* @interface RateOrderParams
|
|
3150
|
-
* @since 0.
|
|
3150
|
+
* @since 0.1.0
|
|
3151
3151
|
* @extends FacebookPixelCommonEventParams
|
|
3152
3152
|
* @extends FacebookPixelCustomEventParams
|
|
3153
3153
|
* @extends RateOrderCommonParams
|
|
@@ -3161,7 +3161,7 @@ interface RateOrderParams$2 extends FacebookPixelCommonEventParams, FacebookPixe
|
|
|
3161
3161
|
* Event allowed parameters.
|
|
3162
3162
|
*
|
|
3163
3163
|
* @interface RateOrderParams
|
|
3164
|
-
* @since 0.
|
|
3164
|
+
* @since 0.1.0
|
|
3165
3165
|
* @extends SegmentCommonEventParams
|
|
3166
3166
|
* @extends SegmentCustomEventParams
|
|
3167
3167
|
* @extends RateOrderCommonParams
|
|
@@ -3173,7 +3173,7 @@ interface RateOrderParams$1 extends SegmentCommonEventParams, SegmentCustomEvent
|
|
|
3173
3173
|
* rateOrder event interface
|
|
3174
3174
|
*
|
|
3175
3175
|
* @interface RateOrderCommonParams
|
|
3176
|
-
* @since 0.
|
|
3176
|
+
* @since 0.1.0
|
|
3177
3177
|
* @property {string} orderId The order's unique identifier
|
|
3178
3178
|
* @property {number} score The score user gave to the order
|
|
3179
3179
|
* @property {number} minScore The min score the user could give to an order
|
|
@@ -3189,7 +3189,7 @@ interface RateOrderCommonParams {
|
|
|
3189
3189
|
* rateOrder event params.
|
|
3190
3190
|
*
|
|
3191
3191
|
* @typedef RateOrderParams
|
|
3192
|
-
* @since 0.
|
|
3192
|
+
* @since 0.1.0
|
|
3193
3193
|
*/
|
|
3194
3194
|
declare type RateOrderParams = RateOrderParams$3 & RateOrderParams$2 & RateOrderParams$1;
|
|
3195
3195
|
|
|
@@ -3197,7 +3197,7 @@ declare type RateOrderParams = RateOrderParams$3 & RateOrderParams$2 & RateOrder
|
|
|
3197
3197
|
* Event allowed parameters.
|
|
3198
3198
|
*
|
|
3199
3199
|
* @interface CancelOrderParams
|
|
3200
|
-
* @since 0.
|
|
3200
|
+
* @since 0.1.0
|
|
3201
3201
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3202
3202
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3203
3203
|
* @extends CancelOrderCommonParams
|
|
@@ -3209,7 +3209,7 @@ interface CancelOrderParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
|
|
|
3209
3209
|
* Event allowed parameters.
|
|
3210
3210
|
*
|
|
3211
3211
|
* @interface CancelOrderParams
|
|
3212
|
-
* @since 0.
|
|
3212
|
+
* @since 0.1.0
|
|
3213
3213
|
* @extends FacebookPixelCommonEventParams
|
|
3214
3214
|
* @extends FacebookPixelCustomEventParams
|
|
3215
3215
|
* @extends CancelOrderCommonParams
|
|
@@ -3221,7 +3221,7 @@ interface CancelOrderParams$2 extends FacebookPixelCommonEventParams, FacebookPi
|
|
|
3221
3221
|
* Event allowed parameters.
|
|
3222
3222
|
*
|
|
3223
3223
|
* @interface CancelOrderParams
|
|
3224
|
-
* @since 0.
|
|
3224
|
+
* @since 0.1.0
|
|
3225
3225
|
* @extends SegmentCommonEventParams
|
|
3226
3226
|
* @extends SegmentCustomEventParams
|
|
3227
3227
|
* @extends CancelOrderCommonParams
|
|
@@ -3237,7 +3237,7 @@ interface CancelOrderParams$1 extends SegmentCommonEventParams, SegmentCustomEve
|
|
|
3237
3237
|
* cancelOrder event interface
|
|
3238
3238
|
*
|
|
3239
3239
|
* @interface CancelOrderCommonParams
|
|
3240
|
-
* @since 0.
|
|
3240
|
+
* @since 0.1.0
|
|
3241
3241
|
* @property {string} orderId The orders unique identifier
|
|
3242
3242
|
* @property {string} reason The reason by which the user canceled the order
|
|
3243
3243
|
*/
|
|
@@ -3249,7 +3249,7 @@ interface CancelOrderCommonParams {
|
|
|
3249
3249
|
* cancelOrder event params.
|
|
3250
3250
|
*
|
|
3251
3251
|
* @typedef CancelOrderParams
|
|
3252
|
-
* @since 0.
|
|
3252
|
+
* @since 0.1.0
|
|
3253
3253
|
*/
|
|
3254
3254
|
declare type CancelOrderParams = CancelOrderParams$3 & CancelOrderParams$2 & CancelOrderParams$1;
|
|
3255
3255
|
|
|
@@ -3257,7 +3257,7 @@ declare type CancelOrderParams = CancelOrderParams$3 & CancelOrderParams$2 & Can
|
|
|
3257
3257
|
* Event allowed parameters.
|
|
3258
3258
|
*
|
|
3259
3259
|
* @interface ViewLoyaltyLevelParams
|
|
3260
|
-
* @since 0.
|
|
3260
|
+
* @since 0.1.0
|
|
3261
3261
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3262
3262
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3263
3263
|
* @extends ViewLoyaltyLevelCommonParams
|
|
@@ -3271,7 +3271,7 @@ interface ViewLoyaltyLevelParams$3 extends GoogleAnalyticsCommonEventParams, Goo
|
|
|
3271
3271
|
* Event allowed parameters.
|
|
3272
3272
|
*
|
|
3273
3273
|
* @interface ViewLoyaltyLevelParams
|
|
3274
|
-
* @since 0.
|
|
3274
|
+
* @since 0.1.0
|
|
3275
3275
|
* @extends FacebookPixelCommonEventParams
|
|
3276
3276
|
* @extends FacebookPixelCustomEventParams
|
|
3277
3277
|
* @extends ViewLoyaltyLevelCommonParams
|
|
@@ -3283,7 +3283,7 @@ interface ViewLoyaltyLevelParams$2 extends FacebookPixelCommonEventParams, Faceb
|
|
|
3283
3283
|
* Event allowed parameters.
|
|
3284
3284
|
*
|
|
3285
3285
|
* @interface ViewLoyaltyLevelParams
|
|
3286
|
-
* @since 0.
|
|
3286
|
+
* @since 0.1.0
|
|
3287
3287
|
* @extends SegmentCommonEventParams
|
|
3288
3288
|
* @extends SegmentCustomEventParams
|
|
3289
3289
|
* @extends ViewLoyaltyLevelCommonParams
|
|
@@ -3295,7 +3295,7 @@ interface ViewLoyaltyLevelParams$1 extends SegmentCommonEventParams, SegmentCust
|
|
|
3295
3295
|
* viewLoyaltyLevel event interface.
|
|
3296
3296
|
*
|
|
3297
3297
|
* @interface ViewLoyaltyLevelCommonParams
|
|
3298
|
-
* @since 0.
|
|
3298
|
+
* @since 0.1.0
|
|
3299
3299
|
* @property {string} level The loyalty level name
|
|
3300
3300
|
*/
|
|
3301
3301
|
interface ViewLoyaltyLevelCommonParams {
|
|
@@ -3305,7 +3305,7 @@ interface ViewLoyaltyLevelCommonParams {
|
|
|
3305
3305
|
* viewLoyaltyLevel event params.
|
|
3306
3306
|
*
|
|
3307
3307
|
* @typedef ViewLoyaltyLevelParams
|
|
3308
|
-
* @since 0.
|
|
3308
|
+
* @since 0.1.0
|
|
3309
3309
|
*/
|
|
3310
3310
|
declare type ViewLoyaltyLevelParams = ViewLoyaltyLevelParams$3 & ViewLoyaltyLevelParams$2 & ViewLoyaltyLevelParams$1;
|
|
3311
3311
|
|
|
@@ -3313,7 +3313,7 @@ declare type ViewLoyaltyLevelParams = ViewLoyaltyLevelParams$3 & ViewLoyaltyLeve
|
|
|
3313
3313
|
* Event allowed parameters.
|
|
3314
3314
|
*
|
|
3315
3315
|
* @interface SpendPointsParams
|
|
3316
|
-
* @since 0.
|
|
3316
|
+
* @since 0.1.0
|
|
3317
3317
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3318
3318
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3319
3319
|
* @extends SpendPointsCommonParams
|
|
@@ -3329,7 +3329,7 @@ interface SpendPointsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
|
|
|
3329
3329
|
* Event allowed parameters.
|
|
3330
3330
|
*
|
|
3331
3331
|
* @interface SpendPointsParams
|
|
3332
|
-
* @since 0.
|
|
3332
|
+
* @since 0.1.0
|
|
3333
3333
|
* @extends FacebookPixelCommonEventParams
|
|
3334
3334
|
* @extends FacebookPixelCustomEventParams
|
|
3335
3335
|
* @extends SpendPointsCommonParams
|
|
@@ -3343,7 +3343,7 @@ interface SpendPointsParams$2 extends FacebookPixelCommonEventParams, FacebookPi
|
|
|
3343
3343
|
* Event allowed parameters.
|
|
3344
3344
|
*
|
|
3345
3345
|
* @interface SpendPointsParams
|
|
3346
|
-
* @since 0.
|
|
3346
|
+
* @since 0.1.0
|
|
3347
3347
|
* @extends SegmentCommonEventParams
|
|
3348
3348
|
* @extends SegmentCustomEventParams
|
|
3349
3349
|
* @extends SpendPointsCommonParams
|
|
@@ -3355,7 +3355,7 @@ interface SpendPointsParams$1 extends SegmentCommonEventParams, SegmentCustomEve
|
|
|
3355
3355
|
* spendPoints event interface
|
|
3356
3356
|
*
|
|
3357
3357
|
* @interface SpendPointsCommonParams
|
|
3358
|
-
* @since 0.
|
|
3358
|
+
* @since 0.1.0
|
|
3359
3359
|
* @property {number} amount The amount of spent points
|
|
3360
3360
|
*/
|
|
3361
3361
|
interface SpendPointsCommonParams {
|
|
@@ -3365,7 +3365,7 @@ interface SpendPointsCommonParams {
|
|
|
3365
3365
|
* spendPoints event params.
|
|
3366
3366
|
*
|
|
3367
3367
|
* @typedef SpendPointsParams
|
|
3368
|
-
* @since 0.
|
|
3368
|
+
* @since 0.1.0
|
|
3369
3369
|
*/
|
|
3370
3370
|
declare type SpendPointsParams = SpendPointsParams$3 & SpendPointsParams$2 & SpendPointsParams$1;
|
|
3371
3371
|
|
|
@@ -3373,7 +3373,7 @@ declare type SpendPointsParams = SpendPointsParams$3 & SpendPointsParams$2 & Spe
|
|
|
3373
3373
|
* Event allowed parameters.
|
|
3374
3374
|
*
|
|
3375
3375
|
* @interface SharePointsParams
|
|
3376
|
-
* @since 0.
|
|
3376
|
+
* @since 0.1.0
|
|
3377
3377
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3378
3378
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3379
3379
|
* @extends SharePointsCommonParams
|
|
@@ -3389,7 +3389,7 @@ interface SharePointsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
|
|
|
3389
3389
|
* Event allowed parameters.
|
|
3390
3390
|
*
|
|
3391
3391
|
* @interface SharePointsParams
|
|
3392
|
-
* @since 0.
|
|
3392
|
+
* @since 0.1.0
|
|
3393
3393
|
* @extends FacebookPixelCommonEventParams
|
|
3394
3394
|
* @extends FacebookPixelCustomEventParams
|
|
3395
3395
|
* @extends SharePointsCommonParams
|
|
@@ -3401,7 +3401,7 @@ interface SharePointsParams$2 extends FacebookPixelCommonEventParams, FacebookPi
|
|
|
3401
3401
|
* Event allowed parameters.
|
|
3402
3402
|
*
|
|
3403
3403
|
* @interface SharePointsParams
|
|
3404
|
-
* @since 0.
|
|
3404
|
+
* @since 0.1.0
|
|
3405
3405
|
* @extends SegmentCommonEventParams
|
|
3406
3406
|
* @extends SegmentCustomEventParams
|
|
3407
3407
|
* @extends SharePointsCommonParams
|
|
@@ -3413,7 +3413,7 @@ interface SharePointsParams$1 extends SegmentCommonEventParams, SegmentCustomEve
|
|
|
3413
3413
|
* sharePoints event interface.
|
|
3414
3414
|
*
|
|
3415
3415
|
* @interface SharePointsCommonParams
|
|
3416
|
-
* @since 0.
|
|
3416
|
+
* @since 0.1.0
|
|
3417
3417
|
* @property {number} amount Amount of points sent
|
|
3418
3418
|
*/
|
|
3419
3419
|
interface SharePointsCommonParams {
|
|
@@ -3423,7 +3423,7 @@ interface SharePointsCommonParams {
|
|
|
3423
3423
|
* sharePoints event params.
|
|
3424
3424
|
*
|
|
3425
3425
|
* @typedef SharePointsParams
|
|
3426
|
-
* @since 0.
|
|
3426
|
+
* @since 0.1.0
|
|
3427
3427
|
*/
|
|
3428
3428
|
declare type SharePointsParams = SharePointsParams$3 & SharePointsParams$2 & SharePointsParams$1;
|
|
3429
3429
|
|
|
@@ -3431,7 +3431,7 @@ declare type SharePointsParams = SharePointsParams$3 & SharePointsParams$2 & Sha
|
|
|
3431
3431
|
* Event allowed parameters.
|
|
3432
3432
|
*
|
|
3433
3433
|
* @interface EarnPointsParams
|
|
3434
|
-
* @since 0.
|
|
3434
|
+
* @since 0.1.0
|
|
3435
3435
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3436
3436
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3437
3437
|
* @extends EarnPointsCommonParams
|
|
@@ -3447,7 +3447,7 @@ interface EarnPointsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAna
|
|
|
3447
3447
|
* Event allowed parameters.
|
|
3448
3448
|
*
|
|
3449
3449
|
* @interface EarnPointsParams
|
|
3450
|
-
* @since 0.
|
|
3450
|
+
* @since 0.1.0
|
|
3451
3451
|
* @extends FacebookPixelCommonEventParams
|
|
3452
3452
|
* @extends FacebookPixelCustomEventParams
|
|
3453
3453
|
* @extends EarnPointsCommonParams
|
|
@@ -3459,7 +3459,7 @@ interface EarnPointsParams$2 extends FacebookPixelCommonEventParams, FacebookPix
|
|
|
3459
3459
|
* Event allowed parameters.
|
|
3460
3460
|
*
|
|
3461
3461
|
* @interface EarnPointsParams
|
|
3462
|
-
* @since 0.
|
|
3462
|
+
* @since 0.1.0
|
|
3463
3463
|
* @extends SegmentCommonEventParams
|
|
3464
3464
|
* @extends SegmentCustomEventParams
|
|
3465
3465
|
* @extends EarnPointsCommonParams
|
|
@@ -3471,7 +3471,7 @@ interface EarnPointsParams$1 extends SegmentCommonEventParams, SegmentCustomEven
|
|
|
3471
3471
|
* earnPoints event interface.
|
|
3472
3472
|
*
|
|
3473
3473
|
* @interface EarnPointsCommonParams
|
|
3474
|
-
* @since 0.
|
|
3474
|
+
* @since 0.1.0
|
|
3475
3475
|
* @property {number} amount The amount of latest earned points
|
|
3476
3476
|
*
|
|
3477
3477
|
*/
|
|
@@ -3482,7 +3482,7 @@ interface EarnPointsCommonParams {
|
|
|
3482
3482
|
* earnPoints event params.
|
|
3483
3483
|
*
|
|
3484
3484
|
* @typedef EarnPointsParams
|
|
3485
|
-
* @since 0.
|
|
3485
|
+
* @since 0.1.0
|
|
3486
3486
|
*/
|
|
3487
3487
|
declare type EarnPointsParams = EarnPointsParams$3 & EarnPointsParams$2 & EarnPointsParams$1;
|
|
3488
3488
|
|
|
@@ -3490,7 +3490,7 @@ declare type EarnPointsParams = EarnPointsParams$3 & EarnPointsParams$2 & EarnPo
|
|
|
3490
3490
|
* Event allowed parameters.
|
|
3491
3491
|
*
|
|
3492
3492
|
* @interface CustomEventParams
|
|
3493
|
-
* @since 0.
|
|
3493
|
+
* @since 0.1.0
|
|
3494
3494
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3495
3495
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3496
3496
|
* @extends CustomEventCommonParams
|
|
@@ -3502,7 +3502,7 @@ interface CustomEventParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
|
|
|
3502
3502
|
* Event allowed parameters.
|
|
3503
3503
|
*
|
|
3504
3504
|
* @interface CustomEventParams
|
|
3505
|
-
* @since 0.
|
|
3505
|
+
* @since 0.1.0
|
|
3506
3506
|
* @extends FacebookPixelCommonEventParams
|
|
3507
3507
|
* @extends FacebookPixelCustomEventParams
|
|
3508
3508
|
* @extends CustomEventCommonParams
|
|
@@ -3514,7 +3514,7 @@ interface CustomEventParams$2 extends FacebookPixelCommonEventParams, FacebookPi
|
|
|
3514
3514
|
* Event allowed parameters.
|
|
3515
3515
|
*
|
|
3516
3516
|
* @interface CustomEventParams
|
|
3517
|
-
* @since 0.
|
|
3517
|
+
* @since 0.1.0
|
|
3518
3518
|
* @extends SegmentCommonEventParams
|
|
3519
3519
|
* @extends SegmentCustomEventParams
|
|
3520
3520
|
* @extends CustomEventCommonParams
|
|
@@ -3526,7 +3526,7 @@ interface CustomEventParams$1 extends SegmentCommonEventParams, SegmentCustomEve
|
|
|
3526
3526
|
* customEvent event interface
|
|
3527
3527
|
*
|
|
3528
3528
|
* @interface CustomEventCommonParams
|
|
3529
|
-
* @since 0.
|
|
3529
|
+
* @since 0.1.0
|
|
3530
3530
|
*/
|
|
3531
3531
|
interface CustomEventCommonParams {
|
|
3532
3532
|
[key: string]: string | number;
|
|
@@ -3535,7 +3535,7 @@ interface CustomEventCommonParams {
|
|
|
3535
3535
|
* customEvent event params.
|
|
3536
3536
|
*
|
|
3537
3537
|
* @typedef CustomEventParams
|
|
3538
|
-
* @since 0.
|
|
3538
|
+
* @since 0.1.0
|
|
3539
3539
|
*/
|
|
3540
3540
|
declare type CustomEventParams = CustomEventParams$3 & CustomEventParams$2 & CustomEventParams$1;
|
|
3541
3541
|
|
|
@@ -3543,7 +3543,7 @@ declare type CustomEventParams = CustomEventParams$3 & CustomEventParams$2 & Cus
|
|
|
3543
3543
|
* Event allowed parameters.
|
|
3544
3544
|
*
|
|
3545
3545
|
* @interface RequestAssistanceParams
|
|
3546
|
-
* @since 0.
|
|
3546
|
+
* @since 0.1.0
|
|
3547
3547
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3548
3548
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3549
3549
|
* @extends RequestAssistanceCommonParams
|
|
@@ -3555,7 +3555,7 @@ interface RequestAssistanceParams$3 extends GoogleAnalyticsCommonEventParams, Go
|
|
|
3555
3555
|
* Event allowed parameters.
|
|
3556
3556
|
*
|
|
3557
3557
|
* @interface RequestAssistanceParams
|
|
3558
|
-
* @since 0.
|
|
3558
|
+
* @since 0.1.0
|
|
3559
3559
|
* @extends FacebookPixelCommonEventParams
|
|
3560
3560
|
* @extends FacebookPixelCustomEventParams
|
|
3561
3561
|
* @extends RequestAssistanceCommonParams
|
|
@@ -3567,7 +3567,7 @@ interface RequestAssistanceParams$2 extends FacebookPixelCommonEventParams, Face
|
|
|
3567
3567
|
* Event allowed parameters.
|
|
3568
3568
|
*
|
|
3569
3569
|
* @interface RequestAssistanceParams
|
|
3570
|
-
* @since 0.
|
|
3570
|
+
* @since 0.1.0
|
|
3571
3571
|
* @extends SegmentCommonEventParams
|
|
3572
3572
|
* @extends SegmentCustomEventParams
|
|
3573
3573
|
* @extends RequestAssistanceCommonParams
|
|
@@ -3579,7 +3579,7 @@ interface RequestAssistanceParams$1 extends SegmentCommonEventParams, SegmentCus
|
|
|
3579
3579
|
* requestAssistance event interface
|
|
3580
3580
|
*
|
|
3581
3581
|
* @interface RequestAssistanceCommonParams
|
|
3582
|
-
* @since 0.
|
|
3582
|
+
* @since 0.1.0
|
|
3583
3583
|
* @property {string} issue The summary of the issue
|
|
3584
3584
|
*/
|
|
3585
3585
|
interface RequestAssistanceCommonParams {
|
|
@@ -3589,7 +3589,7 @@ interface RequestAssistanceCommonParams {
|
|
|
3589
3589
|
* requestAssistance event params.
|
|
3590
3590
|
*
|
|
3591
3591
|
* @typedef RequestAssistanceParams
|
|
3592
|
-
* @since 0.
|
|
3592
|
+
* @since 0.1.0
|
|
3593
3593
|
*/
|
|
3594
3594
|
declare type RequestAssistanceParams = RequestAssistanceParams$3 & RequestAssistanceParams$2 & RequestAssistanceParams$1;
|
|
3595
3595
|
|
|
@@ -3597,7 +3597,7 @@ declare type RequestAssistanceParams = RequestAssistanceParams$3 & RequestAssist
|
|
|
3597
3597
|
* Event allowed parameters.
|
|
3598
3598
|
*
|
|
3599
3599
|
* @interface SetLocationParams
|
|
3600
|
-
* @since 0.
|
|
3600
|
+
* @since 0.1.0
|
|
3601
3601
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3602
3602
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3603
3603
|
* @extends SetLocationCommonParams
|
|
@@ -3609,7 +3609,7 @@ interface SetLocationParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
|
|
|
3609
3609
|
* Event allowed parameters.
|
|
3610
3610
|
*
|
|
3611
3611
|
* @interface SetLocationParams
|
|
3612
|
-
* @since 0.
|
|
3612
|
+
* @since 0.1.0
|
|
3613
3613
|
* @extends FacebookPixelCommonEventParams
|
|
3614
3614
|
* @extends FacebookPixelCustomEventParams
|
|
3615
3615
|
* @extends SetLocationCommonParams
|
|
@@ -3621,7 +3621,7 @@ interface SetLocationParams$2 extends FacebookPixelCommonEventParams, FacebookPi
|
|
|
3621
3621
|
* Event allowed parameters.
|
|
3622
3622
|
*
|
|
3623
3623
|
* @interface SetLocationParams
|
|
3624
|
-
* @since 0.
|
|
3624
|
+
* @since 0.1.0
|
|
3625
3625
|
* @extends SegmentCommonEventParams
|
|
3626
3626
|
* @extends SegmentCustomEventParams
|
|
3627
3627
|
* @extends SetLocationCommonParams
|
|
@@ -3633,7 +3633,7 @@ interface SetLocationParams$1 extends SegmentCommonEventParams, SegmentCustomEve
|
|
|
3633
3633
|
* setLocation event interface
|
|
3634
3634
|
*
|
|
3635
3635
|
* @interface SetLocationCommonParams
|
|
3636
|
-
* @since 0.
|
|
3636
|
+
* @since 0.1.0
|
|
3637
3637
|
* @property {number} lat the new set latitude
|
|
3638
3638
|
* @property {number} lng the new set longitude
|
|
3639
3639
|
*/
|
|
@@ -3645,7 +3645,7 @@ interface SetLocationCommonParams {
|
|
|
3645
3645
|
* setLocation event params.
|
|
3646
3646
|
*
|
|
3647
3647
|
* @typedef SetLocationParams
|
|
3648
|
-
* @since 0.
|
|
3648
|
+
* @since 0.1.0
|
|
3649
3649
|
*/
|
|
3650
3650
|
declare type SetLocationParams = SetLocationParams$3 & SetLocationParams$2 & SetLocationParams$1;
|
|
3651
3651
|
|
|
@@ -3653,7 +3653,7 @@ declare type SetLocationParams = SetLocationParams$3 & SetLocationParams$2 & Set
|
|
|
3653
3653
|
* Event allowed parameters.
|
|
3654
3654
|
*
|
|
3655
3655
|
* @interface OutOfCoverageParams
|
|
3656
|
-
* @since 0.
|
|
3656
|
+
* @since 0.1.0
|
|
3657
3657
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3658
3658
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3659
3659
|
* @extends OutOfCoverageCommonParams
|
|
@@ -3665,7 +3665,7 @@ interface OutOfCoverageParams$3 extends GoogleAnalyticsCommonEventParams, Google
|
|
|
3665
3665
|
* Event allowed parameters.
|
|
3666
3666
|
*
|
|
3667
3667
|
* @interface OutOfCoverageParams
|
|
3668
|
-
* @since 0.
|
|
3668
|
+
* @since 0.1.0
|
|
3669
3669
|
* @extends FacebookPixelCommonEventParams
|
|
3670
3670
|
* @extends FacebookPixelCustomEventParams
|
|
3671
3671
|
* @extends OutOfCoverageCommonParams
|
|
@@ -3677,7 +3677,7 @@ interface OutOfCoverageParams$2 extends FacebookPixelCommonEventParams, Facebook
|
|
|
3677
3677
|
* Event allowed parameters.
|
|
3678
3678
|
*
|
|
3679
3679
|
* @interface OutOfCoverageParams
|
|
3680
|
-
* @since 0.
|
|
3680
|
+
* @since 0.1.0
|
|
3681
3681
|
* @extends SegmentCommonEventParams
|
|
3682
3682
|
* @extends SegmentCustomEventParams
|
|
3683
3683
|
* @extends OutOfCoverageCommonParams
|
|
@@ -3689,7 +3689,7 @@ interface OutOfCoverageParams$1 extends SegmentCommonEventParams, SegmentCustomE
|
|
|
3689
3689
|
* outOfCoverage event interface
|
|
3690
3690
|
*
|
|
3691
3691
|
* @interface OutOfCoverageCommonParams
|
|
3692
|
-
* @since 0.
|
|
3692
|
+
* @since 0.1.0
|
|
3693
3693
|
* @property {number} lat latitude being searched
|
|
3694
3694
|
* @property {number} lng longitude being searched
|
|
3695
3695
|
*/
|
|
@@ -3701,7 +3701,7 @@ interface OutOfCoverageCommonParams {
|
|
|
3701
3701
|
* outOfCoverage event params.
|
|
3702
3702
|
*
|
|
3703
3703
|
* @typedef OutOfCoverageParams
|
|
3704
|
-
* @since 0.
|
|
3704
|
+
* @since 0.1.0
|
|
3705
3705
|
*/
|
|
3706
3706
|
declare type OutOfCoverageParams = OutOfCoverageParams$3 & OutOfCoverageParams$2 & OutOfCoverageParams$1;
|
|
3707
3707
|
|
|
@@ -3709,7 +3709,7 @@ declare type OutOfCoverageParams = OutOfCoverageParams$3 & OutOfCoverageParams$2
|
|
|
3709
3709
|
* Event allowed parameters.
|
|
3710
3710
|
*
|
|
3711
3711
|
* @interface FindLocationParams
|
|
3712
|
-
* @since 0.
|
|
3712
|
+
* @since 0.1.0
|
|
3713
3713
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3714
3714
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3715
3715
|
* @extends FindLocationCommonParams
|
|
@@ -3721,7 +3721,7 @@ interface FindLocationParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
|
|
|
3721
3721
|
* Event allowed parameters.
|
|
3722
3722
|
*
|
|
3723
3723
|
* @interface FindLocationParams
|
|
3724
|
-
* @since 0.
|
|
3724
|
+
* @since 0.1.0
|
|
3725
3725
|
* @extends FacebookPixelCommonEventParams
|
|
3726
3726
|
* @extends FacebookPixelCustomEventParams
|
|
3727
3727
|
* @extends FindLocationCommonParams
|
|
@@ -3733,7 +3733,7 @@ interface FindLocationParams$2 extends FacebookPixelCommonEventParams, FacebookP
|
|
|
3733
3733
|
* Event allowed parameters.
|
|
3734
3734
|
*
|
|
3735
3735
|
* @interface FindLocationParams
|
|
3736
|
-
* @since 0.
|
|
3736
|
+
* @since 0.1.0
|
|
3737
3737
|
* @extends SegmentCommonEventParams
|
|
3738
3738
|
* @extends SegmentCustomEventParams
|
|
3739
3739
|
* @extends FindLocationCommonParams
|
|
@@ -3745,7 +3745,7 @@ interface FindLocationParams$1 extends SegmentCommonEventParams, SegmentCustomEv
|
|
|
3745
3745
|
* findLocation event interface
|
|
3746
3746
|
*
|
|
3747
3747
|
* @interface FindLocationCommonParams
|
|
3748
|
-
* @since 0.
|
|
3748
|
+
* @since 0.1.0
|
|
3749
3749
|
* @property {number} lat latitude being searched
|
|
3750
3750
|
* @property {number} lng longitude being searched
|
|
3751
3751
|
*/
|
|
@@ -3757,7 +3757,7 @@ interface FindLocationCommonParams {
|
|
|
3757
3757
|
* findLocation event params.
|
|
3758
3758
|
*
|
|
3759
3759
|
* @typedef FindLocationParams
|
|
3760
|
-
* @since 0.
|
|
3760
|
+
* @since 0.1.0
|
|
3761
3761
|
*/
|
|
3762
3762
|
declare type FindLocationParams = FindLocationParams$3 & FindLocationParams$2 & FindLocationParams$1;
|
|
3763
3763
|
|
|
@@ -3765,7 +3765,7 @@ declare type FindLocationParams = FindLocationParams$3 & FindLocationParams$2 &
|
|
|
3765
3765
|
* Event allowed parameters.
|
|
3766
3766
|
*
|
|
3767
3767
|
* @interface ChangeLocationParams
|
|
3768
|
-
* @since 0.
|
|
3768
|
+
* @since 0.1.0
|
|
3769
3769
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3770
3770
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3771
3771
|
* @extends ChangeLocationCommonParams
|
|
@@ -3777,7 +3777,7 @@ interface ChangeLocationParams$3 extends GoogleAnalyticsCommonEventParams, Googl
|
|
|
3777
3777
|
* Event allowed parameters.
|
|
3778
3778
|
*
|
|
3779
3779
|
* @interface ChangeLocationParams
|
|
3780
|
-
* @since 0.
|
|
3780
|
+
* @since 0.1.0
|
|
3781
3781
|
* @extends FacebookPixelCommonEventParams
|
|
3782
3782
|
* @extends FacebookPixelCustomEventParams
|
|
3783
3783
|
* @extends ChangeLocationCommonParams
|
|
@@ -3789,7 +3789,7 @@ interface ChangeLocationParams$2 extends FacebookPixelCommonEventParams, Faceboo
|
|
|
3789
3789
|
* Event allowed parameters.
|
|
3790
3790
|
*
|
|
3791
3791
|
* @interface ChangeLocationParams
|
|
3792
|
-
* @since 0.
|
|
3792
|
+
* @since 0.1.0
|
|
3793
3793
|
* @extends SegmentCommonEventParams
|
|
3794
3794
|
* @extends SegmentCustomEventParams
|
|
3795
3795
|
* @extends ChangeLocationCommonParams
|
|
@@ -3801,7 +3801,7 @@ interface ChangeLocationParams$1 extends SegmentCommonEventParams, SegmentCustom
|
|
|
3801
3801
|
* changeLocation event interface
|
|
3802
3802
|
*
|
|
3803
3803
|
* @interface ChangeLocationCommonParams
|
|
3804
|
-
* @since 0.
|
|
3804
|
+
* @since 0.1.0
|
|
3805
3805
|
* @property {number} previousLat Previously set user's latitude
|
|
3806
3806
|
* @property {number} previousLng Previously set user's longitude
|
|
3807
3807
|
* @property {number} nextLat New user's latitude
|
|
@@ -3817,7 +3817,7 @@ interface ChangeLocationCommonParams {
|
|
|
3817
3817
|
* changeLocation event params.
|
|
3818
3818
|
*
|
|
3819
3819
|
* @typedef ChangeLocationParams
|
|
3820
|
-
* @since 0.
|
|
3820
|
+
* @since 0.1.0
|
|
3821
3821
|
*/
|
|
3822
3822
|
declare type ChangeLocationParams = ChangeLocationParams$3 & ChangeLocationParams$2 & ChangeLocationParams$1;
|
|
3823
3823
|
|
|
@@ -3825,7 +3825,7 @@ declare type ChangeLocationParams = ChangeLocationParams$3 & ChangeLocationParam
|
|
|
3825
3825
|
* Event allowed parameters.
|
|
3826
3826
|
*
|
|
3827
3827
|
* @interface ViewTrackingParams
|
|
3828
|
-
* @since 0.
|
|
3828
|
+
* @since 0.1.0
|
|
3829
3829
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3830
3830
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3831
3831
|
* @extends ViewTrackingCommonParams
|
|
@@ -3837,7 +3837,7 @@ interface ViewTrackingParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
|
|
|
3837
3837
|
* Event allowed parameters.
|
|
3838
3838
|
*
|
|
3839
3839
|
* @interface ViewTrackingParams
|
|
3840
|
-
* @since 0.
|
|
3840
|
+
* @since 0.1.0
|
|
3841
3841
|
* @extends FacebookPixelCommonEventParams
|
|
3842
3842
|
* @extends FacebookPixelCustomEventParams
|
|
3843
3843
|
* @extends ViewTrackingCommonParams
|
|
@@ -3849,7 +3849,7 @@ interface ViewTrackingParams$2 extends FacebookPixelCommonEventParams, FacebookP
|
|
|
3849
3849
|
* Event allowed parameters.
|
|
3850
3850
|
*
|
|
3851
3851
|
* @interface ViewTrackingParams
|
|
3852
|
-
* @since 0.
|
|
3852
|
+
* @since 0.1.0
|
|
3853
3853
|
* @extends SegmentCommonEventParams
|
|
3854
3854
|
* @extends SegmentCustomEventParams
|
|
3855
3855
|
* @extends ViewTrackingCommonParams
|
|
@@ -3861,7 +3861,7 @@ interface ViewTrackingParams$1 extends SegmentCommonEventParams, SegmentCustomEv
|
|
|
3861
3861
|
* viewTracking event interface
|
|
3862
3862
|
*
|
|
3863
3863
|
* @interface ViewTrackingCommonParams
|
|
3864
|
-
* @since 0.
|
|
3864
|
+
* @since 0.1.0
|
|
3865
3865
|
* @property {string} orderId The order unique identifier
|
|
3866
3866
|
*/
|
|
3867
3867
|
interface ViewTrackingCommonParams {
|
|
@@ -3871,7 +3871,7 @@ interface ViewTrackingCommonParams {
|
|
|
3871
3871
|
* viewTracking event params.
|
|
3872
3872
|
*
|
|
3873
3873
|
* @typedef ViewTrackingParams
|
|
3874
|
-
* @since 0.
|
|
3874
|
+
* @since 0.1.0
|
|
3875
3875
|
*/
|
|
3876
3876
|
declare type ViewTrackingParams = ViewTrackingParams$3 & ViewTrackingParams$2 & ViewTrackingParams$1;
|
|
3877
3877
|
|
|
@@ -3879,7 +3879,7 @@ declare type ViewTrackingParams = ViewTrackingParams$3 & ViewTrackingParams$2 &
|
|
|
3879
3879
|
* Event allowed parameters.
|
|
3880
3880
|
*
|
|
3881
3881
|
* @interface ViewFulfillmentStepParams
|
|
3882
|
-
* @since 0.
|
|
3882
|
+
* @since 0.1.0
|
|
3883
3883
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3884
3884
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3885
3885
|
* @extends ViewFulfillmentStepCommonParams
|
|
@@ -3891,7 +3891,7 @@ interface ViewFulfillmentStepParams$3 extends GoogleAnalyticsCommonEventParams,
|
|
|
3891
3891
|
* Event allowed parameters.
|
|
3892
3892
|
*
|
|
3893
3893
|
* @interface ViewFulfillmentStepParams
|
|
3894
|
-
* @since 0.
|
|
3894
|
+
* @since 0.1.0
|
|
3895
3895
|
* @extends FacebookPixelCommonEventParams
|
|
3896
3896
|
* @extends FacebookPixelCustomEventParams
|
|
3897
3897
|
* @extends ViewFulfillmentStepCommonParams
|
|
@@ -3903,7 +3903,7 @@ interface ViewFulfillmentStepParams$2 extends FacebookPixelCommonEventParams, Fa
|
|
|
3903
3903
|
* Event allowed parameters.
|
|
3904
3904
|
*
|
|
3905
3905
|
* @interface ViewFulfillmentStepParams
|
|
3906
|
-
* @since 0.
|
|
3906
|
+
* @since 0.1.0
|
|
3907
3907
|
* @extends SegmentCommonEventParams
|
|
3908
3908
|
* @extends SegmentCustomEventParams
|
|
3909
3909
|
* @extends ViewFulfillmentStepCommonParams
|
|
@@ -3915,7 +3915,7 @@ interface ViewFulfillmentStepParams$1 extends SegmentCommonEventParams, SegmentC
|
|
|
3915
3915
|
* viewFulfillmentStep event interface
|
|
3916
3916
|
*
|
|
3917
3917
|
* @interface ViewFulfillmentStepCommonParams
|
|
3918
|
-
* @since 0.
|
|
3918
|
+
* @since 0.1.0
|
|
3919
3919
|
* @property {string} stepName The name of the observed step (e.g. Preparing)
|
|
3920
3920
|
*/
|
|
3921
3921
|
interface ViewFulfillmentStepCommonParams {
|
|
@@ -3925,7 +3925,7 @@ interface ViewFulfillmentStepCommonParams {
|
|
|
3925
3925
|
* viewFulfillmentStep event params.
|
|
3926
3926
|
*
|
|
3927
3927
|
* @typedef ViewFulfillmentStepParams
|
|
3928
|
-
* @since 0.
|
|
3928
|
+
* @since 0.1.0
|
|
3929
3929
|
*/
|
|
3930
3930
|
declare type ViewFulfillmentStepParams = ViewFulfillmentStepParams$3 & ViewFulfillmentStepParams$2 & ViewFulfillmentStepParams$1;
|
|
3931
3931
|
|
|
@@ -3933,7 +3933,7 @@ declare type ViewFulfillmentStepParams = ViewFulfillmentStepParams$3 & ViewFulfi
|
|
|
3933
3933
|
* Event allowed parameters.
|
|
3934
3934
|
*
|
|
3935
3935
|
* @interface ViewCreditsParams
|
|
3936
|
-
* @since 0.
|
|
3936
|
+
* @since 0.1.0
|
|
3937
3937
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3938
3938
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3939
3939
|
* @extends ViewCreditsCommonParams
|
|
@@ -3947,7 +3947,7 @@ interface ViewCreditsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAn
|
|
|
3947
3947
|
* Event allowed parameters.
|
|
3948
3948
|
*
|
|
3949
3949
|
* @interface ViewCreditsParams
|
|
3950
|
-
* @since 0.
|
|
3950
|
+
* @since 0.1.0
|
|
3951
3951
|
* @extends FacebookPixelCommonEventParams
|
|
3952
3952
|
* @extends FacebookPixelCustomEventParams
|
|
3953
3953
|
* @extends ViewCreditsCommonParams
|
|
@@ -3959,7 +3959,7 @@ interface ViewCreditsParams$2 extends FacebookPixelCommonEventParams, FacebookPi
|
|
|
3959
3959
|
* Event allowed parameters.
|
|
3960
3960
|
*
|
|
3961
3961
|
* @interface ViewCreditsParams
|
|
3962
|
-
* @since 0.
|
|
3962
|
+
* @since 0.1.0
|
|
3963
3963
|
* @extends SegmentCommonEventParams
|
|
3964
3964
|
* @extends SegmentCustomEventParams
|
|
3965
3965
|
* @extends ViewCreditsCommonParams
|
|
@@ -3971,7 +3971,7 @@ interface ViewCreditsParams$1 extends SegmentCommonEventParams, SegmentCustomEve
|
|
|
3971
3971
|
* viewCredits event interface
|
|
3972
3972
|
*
|
|
3973
3973
|
* @interface ViewCreditsCommonParams
|
|
3974
|
-
* @since 0.
|
|
3974
|
+
* @since 0.1.0
|
|
3975
3975
|
*/
|
|
3976
3976
|
interface ViewCreditsCommonParams {
|
|
3977
3977
|
}
|
|
@@ -3979,7 +3979,7 @@ interface ViewCreditsCommonParams {
|
|
|
3979
3979
|
* viewCredits event params.
|
|
3980
3980
|
*
|
|
3981
3981
|
* @typedef ViewCreditsParams
|
|
3982
|
-
* @since 0.
|
|
3982
|
+
* @since 0.1.0
|
|
3983
3983
|
*/
|
|
3984
3984
|
declare type ViewCreditsParams = ViewCreditsParams$3 & ViewCreditsParams$2 & ViewCreditsParams$1;
|
|
3985
3985
|
|
|
@@ -3987,7 +3987,7 @@ declare type ViewCreditsParams = ViewCreditsParams$3 & ViewCreditsParams$2 & Vie
|
|
|
3987
3987
|
* Event allowed parameters.
|
|
3988
3988
|
*
|
|
3989
3989
|
* @interface SpendCreditsParams
|
|
3990
|
-
* @since 0.
|
|
3990
|
+
* @since 0.1.0
|
|
3991
3991
|
* @extends GoogleAnalyticsCommonEventParams
|
|
3992
3992
|
* @extends GoogleAnalyticsCustomEventParams
|
|
3993
3993
|
* @extends SpendCreditsCommonParams
|
|
@@ -4001,7 +4001,7 @@ interface SpendCreditsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
|
|
|
4001
4001
|
* Event allowed parameters.
|
|
4002
4002
|
*
|
|
4003
4003
|
* @interface SpendCreditsParams
|
|
4004
|
-
* @since 0.
|
|
4004
|
+
* @since 0.1.0
|
|
4005
4005
|
* @extends FacebookPixelCommonEventParams
|
|
4006
4006
|
* @extends FacebookPixelCustomEventParams
|
|
4007
4007
|
* @extends SpendCreditsCommonParams
|
|
@@ -4013,7 +4013,7 @@ interface SpendCreditsParams$2 extends FacebookPixelCommonEventParams, FacebookP
|
|
|
4013
4013
|
* Event allowed parameters.
|
|
4014
4014
|
*
|
|
4015
4015
|
* @interface SpendCreditsParams
|
|
4016
|
-
* @since 0.
|
|
4016
|
+
* @since 0.1.0
|
|
4017
4017
|
* @extends SegmentCommonEventParams
|
|
4018
4018
|
* @extends SegmentCustomEventParams
|
|
4019
4019
|
* @extends SpendCreditsCommonParams
|
|
@@ -4025,7 +4025,7 @@ interface SpendCreditsParams$1 extends SegmentCommonEventParams, SegmentCustomEv
|
|
|
4025
4025
|
* spendCredits event interface
|
|
4026
4026
|
*
|
|
4027
4027
|
* @interface SpendCreditsCommonParams
|
|
4028
|
-
* @since 0.
|
|
4028
|
+
* @since 0.1.0
|
|
4029
4029
|
* @property {number} amount The amount of credits spent
|
|
4030
4030
|
*/
|
|
4031
4031
|
interface SpendCreditsCommonParams {
|
|
@@ -4035,7 +4035,7 @@ interface SpendCreditsCommonParams {
|
|
|
4035
4035
|
* spendCredits event params.
|
|
4036
4036
|
*
|
|
4037
4037
|
* @typedef SpendCreditsParams
|
|
4038
|
-
* @since 0.
|
|
4038
|
+
* @since 0.1.0
|
|
4039
4039
|
*/
|
|
4040
4040
|
declare type SpendCreditsParams = SpendCreditsParams$3 & SpendCreditsParams$2 & SpendCreditsParams$1;
|
|
4041
4041
|
|
|
@@ -4043,7 +4043,7 @@ declare type SpendCreditsParams = SpendCreditsParams$3 & SpendCreditsParams$2 &
|
|
|
4043
4043
|
* Event allowed parameters.
|
|
4044
4044
|
*
|
|
4045
4045
|
* @interface AddCreditsParams
|
|
4046
|
-
* @since 0.
|
|
4046
|
+
* @since 0.1.0
|
|
4047
4047
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4048
4048
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4049
4049
|
* @extends AddCreditsCommonParams
|
|
@@ -4057,7 +4057,7 @@ interface AddCreditsParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAna
|
|
|
4057
4057
|
* Event allowed parameters.
|
|
4058
4058
|
*
|
|
4059
4059
|
* @interface AddCreditsParams
|
|
4060
|
-
* @since 0.
|
|
4060
|
+
* @since 0.1.0
|
|
4061
4061
|
* @extends FacebookPixelCommonEventParams
|
|
4062
4062
|
* @extends FacebookPixelCustomEventParams
|
|
4063
4063
|
* @extends AddCreditsCommonParams
|
|
@@ -4069,7 +4069,7 @@ interface AddCreditsParams$2 extends FacebookPixelCommonEventParams, FacebookPix
|
|
|
4069
4069
|
* Event allowed parameters.
|
|
4070
4070
|
*
|
|
4071
4071
|
* @interface AddCreditsParams
|
|
4072
|
-
* @since 0.
|
|
4072
|
+
* @since 0.1.0
|
|
4073
4073
|
* @extends SegmentCommonEventParams
|
|
4074
4074
|
* @extends SegmentCustomEventParams
|
|
4075
4075
|
* @extends AddCreditsCommonParams
|
|
@@ -4081,7 +4081,7 @@ interface AddCreditsParams$1 extends SegmentCommonEventParams, SegmentCustomEven
|
|
|
4081
4081
|
* addCredits event interface
|
|
4082
4082
|
*
|
|
4083
4083
|
* @interface AddCreditsCommonParams
|
|
4084
|
-
* @since 0.
|
|
4084
|
+
* @since 0.1.0
|
|
4085
4085
|
* @property {number} amount The amount of credits to add
|
|
4086
4086
|
*/
|
|
4087
4087
|
interface AddCreditsCommonParams {
|
|
@@ -4091,7 +4091,7 @@ interface AddCreditsCommonParams {
|
|
|
4091
4091
|
* addCredits event params.
|
|
4092
4092
|
*
|
|
4093
4093
|
* @typedef AddCreditsParams
|
|
4094
|
-
* @since 0.
|
|
4094
|
+
* @since 0.1.0
|
|
4095
4095
|
*/
|
|
4096
4096
|
declare type AddCreditsParams = AddCreditsParams$3 & AddCreditsParams$2 & AddCreditsParams$1;
|
|
4097
4097
|
|
|
@@ -4099,7 +4099,7 @@ declare type AddCreditsParams = AddCreditsParams$3 & AddCreditsParams$2 & AddCre
|
|
|
4099
4099
|
* Event allowed parameters.
|
|
4100
4100
|
*
|
|
4101
4101
|
* @interface ViewQRStoreCouponParams
|
|
4102
|
-
* @since 0.
|
|
4102
|
+
* @since 0.1.0
|
|
4103
4103
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4104
4104
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4105
4105
|
* @extends ViewQRStoreCouponCommonParams
|
|
@@ -4111,7 +4111,7 @@ interface ViewQRStoreCouponParams$3 extends GoogleAnalyticsCommonEventParams, Go
|
|
|
4111
4111
|
* Event allowed parameters.
|
|
4112
4112
|
*
|
|
4113
4113
|
* @interface ViewQRStoreCouponParams
|
|
4114
|
-
* @since 0.
|
|
4114
|
+
* @since 0.1.0
|
|
4115
4115
|
* @extends FacebookPixelCommonEventParams
|
|
4116
4116
|
* @extends FacebookPixelCustomEventParams
|
|
4117
4117
|
* @extends ViewQRStoreCouponCommonParams
|
|
@@ -4123,7 +4123,7 @@ interface ViewQRStoreCouponParams$2 extends FacebookPixelCommonEventParams, Face
|
|
|
4123
4123
|
* Event allowed parameters.
|
|
4124
4124
|
*
|
|
4125
4125
|
* @interface ViewQRStoreCouponParams
|
|
4126
|
-
* @since 0.
|
|
4126
|
+
* @since 0.1.0
|
|
4127
4127
|
* @extends SegmentCommonEventParams
|
|
4128
4128
|
* @extends SegmentCustomEventParams
|
|
4129
4129
|
* @extends ViewQRStoreCouponCommonParams
|
|
@@ -4135,7 +4135,7 @@ interface ViewQRStoreCouponParams$1 extends SegmentCommonEventParams, SegmentCus
|
|
|
4135
4135
|
* viewQRStoreCoupon event interface
|
|
4136
4136
|
*
|
|
4137
4137
|
* @interface ViewQRStoreCouponCommonParams
|
|
4138
|
-
* @since 0.
|
|
4138
|
+
* @since 0.1.0
|
|
4139
4139
|
*/
|
|
4140
4140
|
interface ViewQRStoreCouponCommonParams {
|
|
4141
4141
|
}
|
|
@@ -4143,7 +4143,7 @@ interface ViewQRStoreCouponCommonParams {
|
|
|
4143
4143
|
* viewQRStoreCoupon event params.
|
|
4144
4144
|
*
|
|
4145
4145
|
* @typedef ViewQRStoreCouponParams
|
|
4146
|
-
* @since 0.
|
|
4146
|
+
* @since 0.1.0
|
|
4147
4147
|
*/
|
|
4148
4148
|
declare type ViewQRStoreCouponParams = ViewQRStoreCouponParams$3 & ViewQRStoreCouponParams$2 & ViewQRStoreCouponParams$1;
|
|
4149
4149
|
|
|
@@ -4151,7 +4151,7 @@ declare type ViewQRStoreCouponParams = ViewQRStoreCouponParams$3 & ViewQRStoreCo
|
|
|
4151
4151
|
* Event allowed parameters.
|
|
4152
4152
|
*
|
|
4153
4153
|
* @interface ViewBenefitsWalletParams
|
|
4154
|
-
* @since 0.
|
|
4154
|
+
* @since 0.1.0
|
|
4155
4155
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4156
4156
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4157
4157
|
* @extends ViewBenefitsWalletCommonParams
|
|
@@ -4165,7 +4165,7 @@ interface ViewBenefitsWalletParams$3 extends GoogleAnalyticsCommonEventParams, G
|
|
|
4165
4165
|
* Event allowed parameters.
|
|
4166
4166
|
*
|
|
4167
4167
|
* @interface ViewBenefitsWalletParams
|
|
4168
|
-
* @since 0.
|
|
4168
|
+
* @since 0.1.0
|
|
4169
4169
|
* @extends FacebookPixelCommonEventParams
|
|
4170
4170
|
* @extends FacebookPixelCustomEventParams
|
|
4171
4171
|
* @extends ViewBenefitsWalletCommonParams
|
|
@@ -4177,7 +4177,7 @@ interface ViewBenefitsWalletParams$2 extends FacebookPixelCommonEventParams, Fac
|
|
|
4177
4177
|
* Event allowed parameters.
|
|
4178
4178
|
*
|
|
4179
4179
|
* @interface ViewBenefitsWalletParams
|
|
4180
|
-
* @since 0.
|
|
4180
|
+
* @since 0.1.0
|
|
4181
4181
|
* @extends SegmentCommonEventParams
|
|
4182
4182
|
* @extends SegmentCustomEventParams
|
|
4183
4183
|
* @extends ViewBenefitsWalletCommonParams
|
|
@@ -4189,7 +4189,7 @@ interface ViewBenefitsWalletParams$1 extends SegmentCommonEventParams, SegmentCu
|
|
|
4189
4189
|
* viewBenefitsWallet event interface
|
|
4190
4190
|
*
|
|
4191
4191
|
* @interface ViewBenefitsWalletCommonParams
|
|
4192
|
-
* @since 0.
|
|
4192
|
+
* @since 0.1.0
|
|
4193
4193
|
* @property {string} walletId The benefits wallet identifier
|
|
4194
4194
|
*/
|
|
4195
4195
|
interface ViewBenefitsWalletCommonParams {
|
|
@@ -4199,7 +4199,7 @@ interface ViewBenefitsWalletCommonParams {
|
|
|
4199
4199
|
* viewBenefitsWallet event params.
|
|
4200
4200
|
*
|
|
4201
4201
|
* @typedef ViewBenefitsWalletParams
|
|
4202
|
-
* @since 0.
|
|
4202
|
+
* @since 0.1.0
|
|
4203
4203
|
*/
|
|
4204
4204
|
declare type ViewBenefitsWalletParams = ViewBenefitsWalletParams$3 & ViewBenefitsWalletParams$2 & ViewBenefitsWalletParams$1;
|
|
4205
4205
|
|
|
@@ -4207,7 +4207,7 @@ declare type ViewBenefitsWalletParams = ViewBenefitsWalletParams$3 & ViewBenefit
|
|
|
4207
4207
|
* Event allowed parameters.
|
|
4208
4208
|
*
|
|
4209
4209
|
* @interface ViewBenefitDetailsParams
|
|
4210
|
-
* @since 0.
|
|
4210
|
+
* @since 0.1.0
|
|
4211
4211
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4212
4212
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4213
4213
|
* @extends ViewBenefitDetailsCommonParams
|
|
@@ -4219,7 +4219,7 @@ interface ViewBenefitDetailsParams$3 extends GoogleAnalyticsCommonEventParams, G
|
|
|
4219
4219
|
* Event allowed parameters.
|
|
4220
4220
|
*
|
|
4221
4221
|
* @interface ViewBenefitDetailsParams
|
|
4222
|
-
* @since 0.
|
|
4222
|
+
* @since 0.1.0
|
|
4223
4223
|
* @extends FacebookPixelCommonEventParams
|
|
4224
4224
|
* @extends FacebookPixelCustomEventParams
|
|
4225
4225
|
* @extends ViewBenefitDetailsCommonParams
|
|
@@ -4231,7 +4231,7 @@ interface ViewBenefitDetailsParams$2 extends FacebookPixelCommonEventParams, Fac
|
|
|
4231
4231
|
* Event allowed parameters.
|
|
4232
4232
|
*
|
|
4233
4233
|
* @interface ViewBenefitDetailsParams
|
|
4234
|
-
* @since 0.
|
|
4234
|
+
* @since 0.1.0
|
|
4235
4235
|
* @extends SegmentCommonEventParams
|
|
4236
4236
|
* @extends SegmentCustomEventParams
|
|
4237
4237
|
* @extends ViewBenefitDetailsCommonParams
|
|
@@ -4243,7 +4243,7 @@ interface ViewBenefitDetailsParams$1 extends SegmentCommonEventParams, SegmentCu
|
|
|
4243
4243
|
* viewBenefitDetails event interface
|
|
4244
4244
|
*
|
|
4245
4245
|
* @interface ViewBenefitDetailsCommonParams
|
|
4246
|
-
* @since 0.
|
|
4246
|
+
* @since 0.1.0
|
|
4247
4247
|
* @property {string} benefitId The benefit identifier
|
|
4248
4248
|
* @property {string} benefitName The name of benefit
|
|
4249
4249
|
* @property {string} discount The value of the discount (e.g 10%, FREE-SHIPPING)
|
|
@@ -4257,7 +4257,7 @@ interface ViewBenefitDetailsCommonParams {
|
|
|
4257
4257
|
* viewBenefitDetails event params.
|
|
4258
4258
|
*
|
|
4259
4259
|
* @typedef ViewBenefitDetailsParams
|
|
4260
|
-
* @since 0.
|
|
4260
|
+
* @since 0.1.0
|
|
4261
4261
|
*/
|
|
4262
4262
|
declare type ViewBenefitDetailsParams = ViewBenefitDetailsParams$3 & ViewBenefitDetailsParams$2 & ViewBenefitDetailsParams$1;
|
|
4263
4263
|
|
|
@@ -4265,7 +4265,7 @@ declare type ViewBenefitDetailsParams = ViewBenefitDetailsParams$3 & ViewBenefit
|
|
|
4265
4265
|
* Event allowed parameters.
|
|
4266
4266
|
*
|
|
4267
4267
|
* @interface RemoveBenefitParams
|
|
4268
|
-
* @since 0.
|
|
4268
|
+
* @since 0.1.0
|
|
4269
4269
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4270
4270
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4271
4271
|
* @extends RemoveBenefitCommonParams
|
|
@@ -4277,7 +4277,7 @@ interface RemoveBenefitParams$3 extends GoogleAnalyticsCommonEventParams, Google
|
|
|
4277
4277
|
* Event allowed parameters.
|
|
4278
4278
|
*
|
|
4279
4279
|
* @interface RemoveBenefitParams
|
|
4280
|
-
* @since 0.
|
|
4280
|
+
* @since 0.1.0
|
|
4281
4281
|
* @extends FacebookPixelCommonEventParams
|
|
4282
4282
|
* @extends FacebookPixelCustomEventParams
|
|
4283
4283
|
* @extends RemoveBenefitCommonParams
|
|
@@ -4289,7 +4289,7 @@ interface RemoveBenefitParams$2 extends FacebookPixelCommonEventParams, Facebook
|
|
|
4289
4289
|
* Event allowed parameters.
|
|
4290
4290
|
*
|
|
4291
4291
|
* @interface RemoveBenefitParams
|
|
4292
|
-
* @since 0.
|
|
4292
|
+
* @since 0.1.0
|
|
4293
4293
|
* @extends SegmentCommonEventParams
|
|
4294
4294
|
* @extends SegmentCustomEventParams
|
|
4295
4295
|
* @extends RemoveBenefitCommonParams
|
|
@@ -4301,7 +4301,7 @@ interface RemoveBenefitParams$1 extends SegmentCommonEventParams, SegmentCustomE
|
|
|
4301
4301
|
* removeBenefit event interface
|
|
4302
4302
|
*
|
|
4303
4303
|
* @interface RemoveBenefitCommonParams
|
|
4304
|
-
* @since 0.
|
|
4304
|
+
* @since 0.1.0
|
|
4305
4305
|
* @property {string} benefitId The benefit identifier
|
|
4306
4306
|
* @property {string} benefitName The name of benefit
|
|
4307
4307
|
* @property {string} discount The value of the discount (e.g 10%, FREE-SHIPPING)
|
|
@@ -4315,7 +4315,7 @@ interface RemoveBenefitCommonParams {
|
|
|
4315
4315
|
* removeBenefit event params.
|
|
4316
4316
|
*
|
|
4317
4317
|
* @typedef RemoveBenefitParams
|
|
4318
|
-
* @since 0.
|
|
4318
|
+
* @since 0.1.0
|
|
4319
4319
|
*/
|
|
4320
4320
|
declare type RemoveBenefitParams = RemoveBenefitParams$3 & RemoveBenefitParams$2 & RemoveBenefitParams$1;
|
|
4321
4321
|
|
|
@@ -4323,7 +4323,7 @@ declare type RemoveBenefitParams = RemoveBenefitParams$3 & RemoveBenefitParams$2
|
|
|
4323
4323
|
* Event allowed parameters.
|
|
4324
4324
|
*
|
|
4325
4325
|
* @interface RedeemCouponCodeParams
|
|
4326
|
-
* @since 0.
|
|
4326
|
+
* @since 0.1.0
|
|
4327
4327
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4328
4328
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4329
4329
|
* @extends RedeemCouponCodeCommonParams
|
|
@@ -4335,7 +4335,7 @@ interface RedeemCouponCodeParams$3 extends GoogleAnalyticsCommonEventParams, Goo
|
|
|
4335
4335
|
* Event allowed parameters.
|
|
4336
4336
|
*
|
|
4337
4337
|
* @interface RedeemCouponCodeParams
|
|
4338
|
-
* @since 0.
|
|
4338
|
+
* @since 0.1.0
|
|
4339
4339
|
* @extends FacebookPixelCommonEventParams
|
|
4340
4340
|
* @extends FacebookPixelCustomEventParams
|
|
4341
4341
|
* @extends RedeemCouponCodeCommonParams
|
|
@@ -4347,7 +4347,7 @@ interface RedeemCouponCodeParams$2 extends FacebookPixelCommonEventParams, Faceb
|
|
|
4347
4347
|
* Event allowed parameters.
|
|
4348
4348
|
*
|
|
4349
4349
|
* @interface RedeemCouponCodeParams
|
|
4350
|
-
* @since 0.
|
|
4350
|
+
* @since 0.1.0
|
|
4351
4351
|
* @extends SegmentCommonEventParams
|
|
4352
4352
|
* @extends SegmentCustomEventParams
|
|
4353
4353
|
* @extends RedeemCouponCodeCommonParams
|
|
@@ -4359,7 +4359,7 @@ interface RedeemCouponCodeParams$1 extends SegmentCommonEventParams, SegmentCust
|
|
|
4359
4359
|
* redeemCouponCode event interface
|
|
4360
4360
|
*
|
|
4361
4361
|
* @interface RedeemCouponCodeParams
|
|
4362
|
-
* @since 0.
|
|
4362
|
+
* @since 0.1.0
|
|
4363
4363
|
* @extends GoogleRedeemCouponCodeParams
|
|
4364
4364
|
* @extends FacebookRedeemCouponCodeParams
|
|
4365
4365
|
* @property {string} code The code of the coupon
|
|
@@ -4371,7 +4371,7 @@ interface RedeemCouponCodeCommonParams {
|
|
|
4371
4371
|
* redeemCouponCode event params
|
|
4372
4372
|
*
|
|
4373
4373
|
* @interface RedeemCouponCodeParams
|
|
4374
|
-
* @since 0.
|
|
4374
|
+
* @since 0.1.0
|
|
4375
4375
|
* @extends GoogleRedeemCouponCodeParams
|
|
4376
4376
|
* @extends FacebookRedeemCouponCodeParams
|
|
4377
4377
|
*/
|
|
@@ -4381,7 +4381,7 @@ declare type RedeemCouponCodeParams = RedeemCouponCodeParams$3 & RedeemCouponCod
|
|
|
4381
4381
|
* Event allowed parameters.
|
|
4382
4382
|
*
|
|
4383
4383
|
* @interface CouponCodeErrorParams
|
|
4384
|
-
* @since 0.
|
|
4384
|
+
* @since 0.1.0
|
|
4385
4385
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4386
4386
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4387
4387
|
* @extends CouponCodeErrorCommonParams
|
|
@@ -4393,7 +4393,7 @@ interface CouponCodeErrorParams$3 extends GoogleAnalyticsCommonEventParams, Goog
|
|
|
4393
4393
|
* Event allowed parameters.
|
|
4394
4394
|
*
|
|
4395
4395
|
* @interface CouponCodeErrorParams
|
|
4396
|
-
* @since 0.
|
|
4396
|
+
* @since 0.1.0
|
|
4397
4397
|
* @extends FacebookPixelCommonEventParams
|
|
4398
4398
|
* @extends FacebookPixelCustomEventParams
|
|
4399
4399
|
* @extends CouponCodeErrorCommonParams
|
|
@@ -4405,7 +4405,7 @@ interface CouponCodeErrorParams$2 extends FacebookPixelCommonEventParams, Facebo
|
|
|
4405
4405
|
* Event allowed parameters.
|
|
4406
4406
|
*
|
|
4407
4407
|
* @interface CouponCodeErrorParams
|
|
4408
|
-
* @since 0.
|
|
4408
|
+
* @since 0.1.0
|
|
4409
4409
|
* @extends SegmentCommonEventParams
|
|
4410
4410
|
* @extends SegmentCustomEventParams
|
|
4411
4411
|
* @extends CouponCodeErrorCommonParams
|
|
@@ -4417,7 +4417,7 @@ interface CouponCodeErrorParams$1 extends SegmentCommonEventParams, SegmentCusto
|
|
|
4417
4417
|
* couponCodeError event interface
|
|
4418
4418
|
*
|
|
4419
4419
|
* @interface CouponCodeErrorCommonParams
|
|
4420
|
-
* @since 0.
|
|
4420
|
+
* @since 0.1.0
|
|
4421
4421
|
* @property {string} code The code of the coupon
|
|
4422
4422
|
* @property {string} message The response error message
|
|
4423
4423
|
* @property {number} message The response status code
|
|
@@ -4431,7 +4431,7 @@ interface CouponCodeErrorCommonParams {
|
|
|
4431
4431
|
* couponCodeError event params.
|
|
4432
4432
|
*
|
|
4433
4433
|
* @typedef CouponCodeErrorParams
|
|
4434
|
-
* @since 0.
|
|
4434
|
+
* @since 0.1.0
|
|
4435
4435
|
*/
|
|
4436
4436
|
declare type CouponCodeErrorParams = CouponCodeErrorParams$3 & CouponCodeErrorParams$2 & CouponCodeErrorParams$1;
|
|
4437
4437
|
|
|
@@ -4439,7 +4439,7 @@ declare type CouponCodeErrorParams = CouponCodeErrorParams$3 & CouponCodeErrorPa
|
|
|
4439
4439
|
* Event allowed parameters.
|
|
4440
4440
|
*
|
|
4441
4441
|
* @interface ApplyBenefitParams
|
|
4442
|
-
* @since 0.
|
|
4442
|
+
* @since 0.1.0
|
|
4443
4443
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4444
4444
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4445
4445
|
* @extends ApplyBenefitCommonParams
|
|
@@ -4451,7 +4451,7 @@ interface ApplyBenefitParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
|
|
|
4451
4451
|
* Event allowed parameters.
|
|
4452
4452
|
*
|
|
4453
4453
|
* @interface ApplyBenefitParams
|
|
4454
|
-
* @since 0.
|
|
4454
|
+
* @since 0.1.0
|
|
4455
4455
|
* @extends FacebookPixelCommonEventParams
|
|
4456
4456
|
* @extends FacebookPixelCustomEventParams
|
|
4457
4457
|
* @extends ApplyBenefitCommonParams
|
|
@@ -4463,7 +4463,7 @@ interface ApplyBenefitParams$2 extends FacebookPixelCommonEventParams, FacebookP
|
|
|
4463
4463
|
* Event allowed parameters.
|
|
4464
4464
|
*
|
|
4465
4465
|
* @interface ApplyBenefitParams
|
|
4466
|
-
* @since 0.
|
|
4466
|
+
* @since 0.1.0
|
|
4467
4467
|
* @extends SegmentCommonEventParams
|
|
4468
4468
|
* @extends SegmentCustomEventParams
|
|
4469
4469
|
* @extends ApplyBenefitCommonParams
|
|
@@ -4475,7 +4475,7 @@ interface ApplyBenefitParams$1 extends SegmentCommonEventParams, SegmentCustomEv
|
|
|
4475
4475
|
* applyBenefit event interface
|
|
4476
4476
|
*
|
|
4477
4477
|
* @interface ApplyBenefitCommonParams
|
|
4478
|
-
* @since 0.
|
|
4478
|
+
* @since 0.1.0
|
|
4479
4479
|
* @property {string} benefitId The benefit identifier
|
|
4480
4480
|
* @property {string} benefitName The name of benefit
|
|
4481
4481
|
* @property {string} discount The value of the discount (e.g 10%, FREE-SHIPPING)
|
|
@@ -4489,7 +4489,7 @@ interface ApplyBenefitCommonParams {
|
|
|
4489
4489
|
* applyBenefit event params.
|
|
4490
4490
|
*
|
|
4491
4491
|
* @typedef ApplyBenefitParams
|
|
4492
|
-
* @since 0.
|
|
4492
|
+
* @since 0.1.0
|
|
4493
4493
|
*/
|
|
4494
4494
|
declare type ApplyBenefitParams = ApplyBenefitParams$3 & ApplyBenefitParams$2 & ApplyBenefitParams$1;
|
|
4495
4495
|
|
|
@@ -4497,7 +4497,7 @@ declare type ApplyBenefitParams = ApplyBenefitParams$3 & ApplyBenefitParams$2 &
|
|
|
4497
4497
|
* Event allowed parameters.
|
|
4498
4498
|
*
|
|
4499
4499
|
* @interface InitiateCheckoutParams
|
|
4500
|
-
* @since 0.
|
|
4500
|
+
* @since 0.1.0
|
|
4501
4501
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4502
4502
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4503
4503
|
*/
|
|
@@ -4508,7 +4508,7 @@ interface InitiateCheckoutParams$3 extends GoogleAnalyticsCommonEventParams, Goo
|
|
|
4508
4508
|
* Event allowed parameters.
|
|
4509
4509
|
*
|
|
4510
4510
|
* @interface InitiateCheckoutParams
|
|
4511
|
-
* @since 0.
|
|
4511
|
+
* @since 0.1.0
|
|
4512
4512
|
* @extends FacebookPixelCommonEventParams
|
|
4513
4513
|
* @extends FacebookPixelCustomEventParams
|
|
4514
4514
|
* @extends InitiateCheckoutCommonParams
|
|
@@ -4522,7 +4522,7 @@ interface InitiateCheckoutParams$2 extends FacebookPixelCommonEventParams, Faceb
|
|
|
4522
4522
|
* Event allowed parameters.
|
|
4523
4523
|
*
|
|
4524
4524
|
* @interface InitiateCheckoutParams
|
|
4525
|
-
* @since 0.
|
|
4525
|
+
* @since 0.1.0
|
|
4526
4526
|
* @extends SegmentCommonEventParams
|
|
4527
4527
|
* @extends SegmentCustomEventParams
|
|
4528
4528
|
* @extends InitiateCheckoutCommonParams
|
|
@@ -4534,7 +4534,7 @@ interface InitiateCheckoutParams$1 extends SegmentCommonEventParams, SegmentCust
|
|
|
4534
4534
|
* initiateCheckout event interface
|
|
4535
4535
|
*
|
|
4536
4536
|
* @interface InitiateCheckoutCommonParams
|
|
4537
|
-
* @since 0.
|
|
4537
|
+
* @since 0.1.0
|
|
4538
4538
|
* @property {ShoppingCart} shoppingCart The order's shopping cart
|
|
4539
4539
|
*/
|
|
4540
4540
|
interface InitiateCheckoutCommonParams {
|
|
@@ -4544,7 +4544,7 @@ interface InitiateCheckoutCommonParams {
|
|
|
4544
4544
|
* initiateCheckout event params.
|
|
4545
4545
|
*
|
|
4546
4546
|
* @typedef InitiateCheckoutParams
|
|
4547
|
-
* @since 0.
|
|
4547
|
+
* @since 0.1.0
|
|
4548
4548
|
*/
|
|
4549
4549
|
declare type InitiateCheckoutParams = InitiateCheckoutParams$3 & InitiateCheckoutParams$2 & InitiateCheckoutParams$1;
|
|
4550
4550
|
|
|
@@ -4552,7 +4552,7 @@ declare type InitiateCheckoutParams = InitiateCheckoutParams$3 & InitiateCheckou
|
|
|
4552
4552
|
* Event allowed parameters.
|
|
4553
4553
|
*
|
|
4554
4554
|
* @interface CheckoutActionParams
|
|
4555
|
-
* @since 0.
|
|
4555
|
+
* @since 0.1.0
|
|
4556
4556
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4557
4557
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4558
4558
|
* @extends CheckoutActionCommonParams
|
|
@@ -4564,7 +4564,7 @@ interface CheckoutActionParams$3 extends GoogleAnalyticsCommonEventParams, Googl
|
|
|
4564
4564
|
* Event allowed parameters.
|
|
4565
4565
|
*
|
|
4566
4566
|
* @interface CheckoutActionParams
|
|
4567
|
-
* @since 0.
|
|
4567
|
+
* @since 0.1.0
|
|
4568
4568
|
* @extends FacebookPixelCommonEventParams
|
|
4569
4569
|
* @extends FacebookPixelCustomEventParams
|
|
4570
4570
|
* @extends CheckoutActionCommonParams
|
|
@@ -4576,7 +4576,7 @@ interface CheckoutActionParams$2 extends FacebookPixelCommonEventParams, Faceboo
|
|
|
4576
4576
|
* Event allowed parameters.
|
|
4577
4577
|
*
|
|
4578
4578
|
* @interface CheckoutActionParams
|
|
4579
|
-
* @since 0.
|
|
4579
|
+
* @since 0.1.0
|
|
4580
4580
|
* @extends SegmentCommonEventParams
|
|
4581
4581
|
* @extends SegmentCustomEventParams
|
|
4582
4582
|
* @extends CheckoutActionCommonParams
|
|
@@ -4588,7 +4588,7 @@ interface CheckoutActionParams$1 extends SegmentCommonEventParams, SegmentCustom
|
|
|
4588
4588
|
* checkoutAction event interface
|
|
4589
4589
|
*
|
|
4590
4590
|
* @interface CheckoutActionCommonParams
|
|
4591
|
-
* @since 0.
|
|
4591
|
+
* @since 0.1.0
|
|
4592
4592
|
* @property {string} action The name of the checkout step (e.g "billing")
|
|
4593
4593
|
* @property {string} progress The completeness of the checkout progress (e.g "1/3")
|
|
4594
4594
|
*/
|
|
@@ -4600,7 +4600,7 @@ interface CheckoutActionCommonParams {
|
|
|
4600
4600
|
* checkoutAction event params.
|
|
4601
4601
|
*
|
|
4602
4602
|
* @typedef CheckoutActionParams
|
|
4603
|
-
* @since 0.
|
|
4603
|
+
* @since 0.1.0
|
|
4604
4604
|
*/
|
|
4605
4605
|
declare type CheckoutActionParams = CheckoutActionParams$3 & CheckoutActionParams$2 & CheckoutActionParams$1;
|
|
4606
4606
|
|
|
@@ -4608,7 +4608,7 @@ declare type CheckoutActionParams = CheckoutActionParams$3 & CheckoutActionParam
|
|
|
4608
4608
|
* Event allowed parameters.
|
|
4609
4609
|
*
|
|
4610
4610
|
* @interface ViewCategoryParams
|
|
4611
|
-
* @since 0.
|
|
4611
|
+
* @since 0.1.0
|
|
4612
4612
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4613
4613
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4614
4614
|
* @extends ViewCategoryCommonParams
|
|
@@ -4620,7 +4620,7 @@ interface ViewCategoryParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
|
|
|
4620
4620
|
* Event allowed parameters.
|
|
4621
4621
|
*
|
|
4622
4622
|
* @interface ViewCategoryParams
|
|
4623
|
-
* @since 0.
|
|
4623
|
+
* @since 0.1.0
|
|
4624
4624
|
* @extends FacebookPixelCommonEventParams
|
|
4625
4625
|
* @extends FacebookPixelCustomEventParams
|
|
4626
4626
|
* @extends ViewCategoryCommonParams
|
|
@@ -4632,7 +4632,7 @@ interface ViewCategoryParams$2 extends FacebookPixelCommonEventParams, FacebookP
|
|
|
4632
4632
|
* Event allowed parameters.
|
|
4633
4633
|
*
|
|
4634
4634
|
* @interface ViewCategoryParams
|
|
4635
|
-
* @since 0.
|
|
4635
|
+
* @since 0.1.0
|
|
4636
4636
|
* @extends SegmentCommonEventParams
|
|
4637
4637
|
* @extends SegmentCustomEventParams
|
|
4638
4638
|
* @extends ViewCategoryCommonParams
|
|
@@ -4646,7 +4646,7 @@ interface ViewCategoryParams$1 extends SegmentCommonEventParams, SegmentCustomEv
|
|
|
4646
4646
|
* viewCategory event interface
|
|
4647
4647
|
*
|
|
4648
4648
|
* @interface ViewCategoryCommonParams
|
|
4649
|
-
* @since 0.
|
|
4649
|
+
* @since 0.1.0
|
|
4650
4650
|
* @property {Category} category the category that the details are being viewed
|
|
4651
4651
|
*/
|
|
4652
4652
|
interface ViewCategoryCommonParams {
|
|
@@ -4656,7 +4656,7 @@ interface ViewCategoryCommonParams {
|
|
|
4656
4656
|
* viewCategory event params.
|
|
4657
4657
|
*
|
|
4658
4658
|
* @typedef ViewCategoryParams
|
|
4659
|
-
* @since 0.
|
|
4659
|
+
* @since 0.1.0
|
|
4660
4660
|
*/
|
|
4661
4661
|
declare type ViewCategoryParams = ViewCategoryParams$3 & ViewCategoryParams$2 & ViewCategoryParams$1;
|
|
4662
4662
|
|
|
@@ -4664,7 +4664,7 @@ declare type ViewCategoryParams = ViewCategoryParams$3 & ViewCategoryParams$2 &
|
|
|
4664
4664
|
* Event allowed parameters.
|
|
4665
4665
|
*
|
|
4666
4666
|
* @interface SelectCategoryParams
|
|
4667
|
-
* @since 0.
|
|
4667
|
+
* @since 0.1.0
|
|
4668
4668
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4669
4669
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4670
4670
|
* @property {Category} query the selected category
|
|
@@ -4678,7 +4678,7 @@ interface SelectCategoryParams$3 extends GoogleAnalyticsCommonEventParams, Googl
|
|
|
4678
4678
|
* Event allowed parameters.
|
|
4679
4679
|
*
|
|
4680
4680
|
* @interface SelectCategoryParams
|
|
4681
|
-
* @since 0.
|
|
4681
|
+
* @since 0.1.0
|
|
4682
4682
|
* @extends FacebookPixelCommonEventParams
|
|
4683
4683
|
* @extends FacebookPixelCustomEventParams
|
|
4684
4684
|
* @extends SelectCategoryCommonParams
|
|
@@ -4690,7 +4690,7 @@ interface SelectCategoryParams$2 extends FacebookPixelCommonEventParams, Faceboo
|
|
|
4690
4690
|
* Event allowed parameters.
|
|
4691
4691
|
*
|
|
4692
4692
|
* @interface SelectCategoryParams
|
|
4693
|
-
* @since 0.
|
|
4693
|
+
* @since 0.1.0
|
|
4694
4694
|
* @extends SegmentCommonEventParams
|
|
4695
4695
|
* @extends SegmentCustomEventParams
|
|
4696
4696
|
* @extends SelectCategoryCommonParams
|
|
@@ -4702,7 +4702,7 @@ interface SelectCategoryParams$1 extends SegmentCommonEventParams, SegmentCustom
|
|
|
4702
4702
|
* selectCategory event interface
|
|
4703
4703
|
*
|
|
4704
4704
|
* @interface SelectCategoryCommonParams
|
|
4705
|
-
* @since 0.
|
|
4705
|
+
* @since 0.1.0
|
|
4706
4706
|
* @property {Category} query the selected category
|
|
4707
4707
|
* @property {string} list the name of the list where the category is
|
|
4708
4708
|
* @property {number} position the position in a list where the category is
|
|
@@ -4716,7 +4716,7 @@ interface SelectCategoryCommonParams {
|
|
|
4716
4716
|
* selectCategory event params.
|
|
4717
4717
|
*
|
|
4718
4718
|
* @typedef SelectCategoryParams
|
|
4719
|
-
* @since 0.
|
|
4719
|
+
* @since 0.1.0
|
|
4720
4720
|
*/
|
|
4721
4721
|
declare type SelectCategoryParams = SelectCategoryParams$3 & SelectCategoryParams$2 & SelectCategoryParams$1;
|
|
4722
4722
|
|
|
@@ -4724,7 +4724,7 @@ declare type SelectCategoryParams = SelectCategoryParams$3 & SelectCategoryParam
|
|
|
4724
4724
|
* Event allowed parameters.
|
|
4725
4725
|
*
|
|
4726
4726
|
* @interface SearchCategoryAttemptParams
|
|
4727
|
-
* @since 0.
|
|
4727
|
+
* @since 0.1.0
|
|
4728
4728
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4729
4729
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4730
4730
|
* @extends SearchCategoryAttemptCommonParams
|
|
@@ -4736,7 +4736,7 @@ interface SearchCategoryAttemptParams$3 extends GoogleAnalyticsCommonEventParams
|
|
|
4736
4736
|
* Event allowed parameters.
|
|
4737
4737
|
*
|
|
4738
4738
|
* @interface SearchCategoryAttemptParams
|
|
4739
|
-
* @since 0.
|
|
4739
|
+
* @since 0.1.0
|
|
4740
4740
|
* @extends FacebookPixelCommonEventParams
|
|
4741
4741
|
* @extends FacebookPixelCustomEventParams
|
|
4742
4742
|
* @extends SearchCategoryAttemptCommonParams
|
|
@@ -4750,7 +4750,7 @@ interface SearchCategoryAttemptParams$2 extends FacebookPixelCommonEventParams,
|
|
|
4750
4750
|
* Event allowed parameters.
|
|
4751
4751
|
*
|
|
4752
4752
|
* @interface SearchCategoryAttemptParams
|
|
4753
|
-
* @since 0.
|
|
4753
|
+
* @since 0.1.0
|
|
4754
4754
|
* @extends SegmentCommonEventParams
|
|
4755
4755
|
* @extends SegmentCustomEventParams
|
|
4756
4756
|
* @extends SearchCategoryAttemptCommonParams
|
|
@@ -4762,7 +4762,7 @@ interface SearchCategoryAttemptParams$1 extends SegmentCommonEventParams, Segmen
|
|
|
4762
4762
|
* searchCategoryAttempt event interface
|
|
4763
4763
|
*
|
|
4764
4764
|
* @interface SearchCategoryAttemptCommonParams
|
|
4765
|
-
* @since 0.
|
|
4765
|
+
* @since 0.1.0
|
|
4766
4766
|
* @property {string} query the searched text
|
|
4767
4767
|
*/
|
|
4768
4768
|
interface SearchCategoryAttemptCommonParams {
|
|
@@ -4772,7 +4772,7 @@ interface SearchCategoryAttemptCommonParams {
|
|
|
4772
4772
|
* SearchCategoryAttempt event params.
|
|
4773
4773
|
*
|
|
4774
4774
|
* @typedef SearchCategoryAttemptParams
|
|
4775
|
-
* @since 0.
|
|
4775
|
+
* @since 0.1.0
|
|
4776
4776
|
*/
|
|
4777
4777
|
declare type SearchCategoryAttemptParams = SearchCategoryAttemptParams$3 & SearchCategoryAttemptParams$2 & SearchCategoryAttemptParams$1;
|
|
4778
4778
|
|
|
@@ -4780,7 +4780,7 @@ declare type SearchCategoryAttemptParams = SearchCategoryAttemptParams$3 & Searc
|
|
|
4780
4780
|
* Event allowed parameters.
|
|
4781
4781
|
*
|
|
4782
4782
|
* @interface CategoryImpressionParams
|
|
4783
|
-
* @since 0.
|
|
4783
|
+
* @since 0.1.0
|
|
4784
4784
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4785
4785
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4786
4786
|
* @property {string} itemBrand The item brand (e.g. El Español)
|
|
@@ -4793,7 +4793,7 @@ interface CategoryImpressionParams$3 extends GoogleAnalyticsCommonEventParams, G
|
|
|
4793
4793
|
* Event allowed parameters.
|
|
4794
4794
|
*
|
|
4795
4795
|
* @interface CategoryImpressionParams
|
|
4796
|
-
* @since 0.
|
|
4796
|
+
* @since 0.1.0
|
|
4797
4797
|
* @extends FacebookPixelCommonEventParams
|
|
4798
4798
|
* @extends FacebookPixelCustomEventParams
|
|
4799
4799
|
* @extends CategoryImpressionCommonParams
|
|
@@ -4805,7 +4805,7 @@ interface CategoryImpressionParams$2 extends FacebookPixelCommonEventParams, Fac
|
|
|
4805
4805
|
* Event allowed parameters.
|
|
4806
4806
|
*
|
|
4807
4807
|
* @interface CategoryImpressionParams
|
|
4808
|
-
* @since 0.
|
|
4808
|
+
* @since 0.1.0
|
|
4809
4809
|
* @extends SegmentCommonEventParams
|
|
4810
4810
|
* @extends SegmentCustomEventParams
|
|
4811
4811
|
* @extends CategoryImpressionCommonParams
|
|
@@ -4817,7 +4817,7 @@ interface CategoryImpressionParams$1 extends SegmentCommonEventParams, SegmentCu
|
|
|
4817
4817
|
* categoryImpression event interface
|
|
4818
4818
|
*
|
|
4819
4819
|
* @interface CategoryImpressionCommonParams
|
|
4820
|
-
* @since 0.
|
|
4820
|
+
* @since 0.1.0
|
|
4821
4821
|
* @property {Category} category the category a user had an impression on
|
|
4822
4822
|
* @property {string} list the name of the list where the category is
|
|
4823
4823
|
* @property {number} position the position in a list where the category is
|
|
@@ -4833,7 +4833,7 @@ interface CategoryImpressionCommonParams {
|
|
|
4833
4833
|
* categoryImpression event params.
|
|
4834
4834
|
*
|
|
4835
4835
|
* @typedef CategoryImpressionParams
|
|
4836
|
-
* @since 0.
|
|
4836
|
+
* @since 0.1.0
|
|
4837
4837
|
*/
|
|
4838
4838
|
declare type CategoryImpressionParams = CategoryImpressionParams$3 & CategoryImpressionParams$2 & CategoryImpressionParams$1;
|
|
4839
4839
|
|
|
@@ -4841,7 +4841,7 @@ declare type CategoryImpressionParams = CategoryImpressionParams$3 & CategoryImp
|
|
|
4841
4841
|
* Event allowed parameters.
|
|
4842
4842
|
*
|
|
4843
4843
|
* @interface BookAppointmentParams
|
|
4844
|
-
* @since 0.
|
|
4844
|
+
* @since 0.1.0
|
|
4845
4845
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4846
4846
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4847
4847
|
* @extends BookAppointmentCommonParams
|
|
@@ -4853,7 +4853,7 @@ interface BookAppointmentParams$3 extends GoogleAnalyticsCommonEventParams, Goog
|
|
|
4853
4853
|
* Event allowed parameters.
|
|
4854
4854
|
*
|
|
4855
4855
|
* @interface BookAppointmentParams
|
|
4856
|
-
* @since 0.
|
|
4856
|
+
* @since 0.1.0
|
|
4857
4857
|
* @extends FacebookPixelCommonEventParams
|
|
4858
4858
|
* @extends FacebookPixelCustomEventParams
|
|
4859
4859
|
* @extends BookAppointmentCommonParams
|
|
@@ -4865,7 +4865,7 @@ interface BookAppointmentParams$2 extends FacebookPixelCommonEventParams, Facebo
|
|
|
4865
4865
|
* Event allowed parameters.
|
|
4866
4866
|
*
|
|
4867
4867
|
* @interface BookAppointmentParams
|
|
4868
|
-
* @since 0.
|
|
4868
|
+
* @since 0.1.0
|
|
4869
4869
|
* @extends SegmentCommonEventParams
|
|
4870
4870
|
* @extends SegmentCustomEventParams
|
|
4871
4871
|
* @extends BookAppointmentCommonParams
|
|
@@ -4877,7 +4877,7 @@ interface BookAppointmentParams$1 extends SegmentCommonEventParams, SegmentCusto
|
|
|
4877
4877
|
* bookAppointment event interface
|
|
4878
4878
|
*
|
|
4879
4879
|
* @interface BookAppointmentCommonParams
|
|
4880
|
-
* @since 0.
|
|
4880
|
+
* @since 0.1.0
|
|
4881
4881
|
* @property {string} appointmentId The id of the booked appointment
|
|
4882
4882
|
* @property {string} start The start time of the appointment (e.g. 15:30)
|
|
4883
4883
|
* @property {string} end The end time of the appointment (e.g. 16:00)
|
|
@@ -4895,7 +4895,7 @@ interface BookAppointmentCommonParams {
|
|
|
4895
4895
|
* bookAppointment event params.
|
|
4896
4896
|
*
|
|
4897
4897
|
* @typedef BookAppointmentParams
|
|
4898
|
-
* @since 0.
|
|
4898
|
+
* @since 0.1.0
|
|
4899
4899
|
*/
|
|
4900
4900
|
declare type BookAppointmentParams = BookAppointmentParams$3 & BookAppointmentParams$2 & BookAppointmentParams$1;
|
|
4901
4901
|
|
|
@@ -4903,7 +4903,7 @@ declare type BookAppointmentParams = BookAppointmentParams$3 & BookAppointmentPa
|
|
|
4903
4903
|
* Event allowed parameters.
|
|
4904
4904
|
*
|
|
4905
4905
|
* @interface UpdateBillingInfoParams
|
|
4906
|
-
* @since 0.
|
|
4906
|
+
* @since 0.1.0
|
|
4907
4907
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4908
4908
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4909
4909
|
* @extends UpdateBillingInfoCommonParams
|
|
@@ -4915,7 +4915,7 @@ interface UpdateBillingInfoParams$3 extends GoogleAnalyticsCommonEventParams, Go
|
|
|
4915
4915
|
* Event allowed parameters.
|
|
4916
4916
|
*
|
|
4917
4917
|
* @interface UpdateBillingInfoParams
|
|
4918
|
-
* @since 0.
|
|
4918
|
+
* @since 0.1.0
|
|
4919
4919
|
* @extends FacebookPixelCommonEventParams
|
|
4920
4920
|
* @extends FacebookPixelCustomEventParams
|
|
4921
4921
|
* @extends UpdateBillingInfoCommonParams
|
|
@@ -4927,7 +4927,7 @@ interface UpdateBillingInfoParams$2 extends FacebookPixelCommonEventParams, Face
|
|
|
4927
4927
|
* Event allowed parameters.
|
|
4928
4928
|
*
|
|
4929
4929
|
* @interface UpdateBillingInfoParams
|
|
4930
|
-
* @since 0.
|
|
4930
|
+
* @since 0.1.0
|
|
4931
4931
|
* @extends SegmentCommonEventParams
|
|
4932
4932
|
* @extends SegmentCustomEventParams
|
|
4933
4933
|
* @extends UpdateBillingInfoCommonParams
|
|
@@ -4939,7 +4939,7 @@ interface UpdateBillingInfoParams$1 extends SegmentCommonEventParams, SegmentCus
|
|
|
4939
4939
|
* updateBillingInfo event interface
|
|
4940
4940
|
*
|
|
4941
4941
|
* @interface UpdateBillingInfoCommonParams
|
|
4942
|
-
* @since 0.
|
|
4942
|
+
* @since 0.1.0
|
|
4943
4943
|
* @property {string} alias The name of the new billing information data
|
|
4944
4944
|
* @property {number} position The position in a list where the billing information data is
|
|
4945
4945
|
* @property {string[]} fields The updated fields names
|
|
@@ -4953,7 +4953,7 @@ interface UpdateBillingInfoCommonParams {
|
|
|
4953
4953
|
* updateBillingInfo event params.
|
|
4954
4954
|
*
|
|
4955
4955
|
* @typedef UpdateBillingInfoParams
|
|
4956
|
-
* @since 0.
|
|
4956
|
+
* @since 0.1.0
|
|
4957
4957
|
*/
|
|
4958
4958
|
declare type UpdateBillingInfoParams = UpdateBillingInfoParams$3 & UpdateBillingInfoParams$2 & UpdateBillingInfoParams$1;
|
|
4959
4959
|
|
|
@@ -4961,7 +4961,7 @@ declare type UpdateBillingInfoParams = UpdateBillingInfoParams$3 & UpdateBilling
|
|
|
4961
4961
|
* Event allowed parameters.
|
|
4962
4962
|
*
|
|
4963
4963
|
* @interface SelectBillingInfoParams
|
|
4964
|
-
* @since 0.
|
|
4964
|
+
* @since 0.1.0
|
|
4965
4965
|
* @extends GoogleAnalyticsCommonEventParams
|
|
4966
4966
|
* @extends GoogleAnalyticsCustomEventParams
|
|
4967
4967
|
* @extends SelectBillingInfoCommonParams
|
|
@@ -4973,7 +4973,7 @@ interface SelectBillingInfoParams$3 extends GoogleAnalyticsCommonEventParams, Go
|
|
|
4973
4973
|
* Event allowed parameters.
|
|
4974
4974
|
*
|
|
4975
4975
|
* @interface SelectBillingInfoParams
|
|
4976
|
-
* @since 0.
|
|
4976
|
+
* @since 0.1.0
|
|
4977
4977
|
* @extends FacebookPixelCommonEventParams
|
|
4978
4978
|
* @extends FacebookPixelCustomEventParams
|
|
4979
4979
|
* @extends SelectBillingInfoCommonParams
|
|
@@ -4985,7 +4985,7 @@ interface SelectBillingInfoParams$2 extends FacebookPixelCommonEventParams, Face
|
|
|
4985
4985
|
* Event allowed parameters.
|
|
4986
4986
|
*
|
|
4987
4987
|
* @interface SelectBillingInfoParams
|
|
4988
|
-
* @since 0.
|
|
4988
|
+
* @since 0.1.0
|
|
4989
4989
|
* @extends SegmentCommonEventParams
|
|
4990
4990
|
* @extends SegmentCustomEventParams
|
|
4991
4991
|
* @extends SelectBillingInfoCommonParams
|
|
@@ -4997,7 +4997,7 @@ interface SelectBillingInfoParams$1 extends SegmentCommonEventParams, SegmentCus
|
|
|
4997
4997
|
* selectBillingInfo event interface
|
|
4998
4998
|
*
|
|
4999
4999
|
* @interface SelectBillingInfoCommonParams
|
|
5000
|
-
* @since 0.
|
|
5000
|
+
* @since 0.1.0
|
|
5001
5001
|
* @property {string} alias The name of the new billing information data
|
|
5002
5002
|
* @property {number} position The position in a list where the billing information data is
|
|
5003
5003
|
*/
|
|
@@ -5009,7 +5009,7 @@ interface SelectBillingInfoCommonParams {
|
|
|
5009
5009
|
* selectBillingInfo event params.
|
|
5010
5010
|
*
|
|
5011
5011
|
* @typedef SelectBillingInfoParams
|
|
5012
|
-
* @since 0.
|
|
5012
|
+
* @since 0.1.0
|
|
5013
5013
|
*/
|
|
5014
5014
|
declare type SelectBillingInfoParams = SelectBillingInfoParams$3 & SelectBillingInfoParams$2 & SelectBillingInfoParams$1;
|
|
5015
5015
|
|
|
@@ -5017,7 +5017,7 @@ declare type SelectBillingInfoParams = SelectBillingInfoParams$3 & SelectBilling
|
|
|
5017
5017
|
* Event allowed parameters.
|
|
5018
5018
|
*
|
|
5019
5019
|
* @interface AddBillingInfoParams
|
|
5020
|
-
* @since 0.
|
|
5020
|
+
* @since 0.1.0
|
|
5021
5021
|
* @extends GoogleAnalyticsCommonEventParams
|
|
5022
5022
|
* @extends GoogleAnalyticsCustomEventParams
|
|
5023
5023
|
* @extends AddBillingInfoCommonParams
|
|
@@ -5029,7 +5029,7 @@ interface AddBillingInfoParams$3 extends GoogleAnalyticsCommonEventParams, Googl
|
|
|
5029
5029
|
* Event allowed parameters.
|
|
5030
5030
|
*
|
|
5031
5031
|
* @interface AddBillingInfoParams
|
|
5032
|
-
* @since 0.
|
|
5032
|
+
* @since 0.1.0
|
|
5033
5033
|
* @extends FacebookPixelCommonEventParams
|
|
5034
5034
|
* @extends FacebookPixelCustomEventParams
|
|
5035
5035
|
* @extends AddBillingInfoCommonParams
|
|
@@ -5041,7 +5041,7 @@ interface AddBillingInfoParams$2 extends FacebookPixelCommonEventParams, Faceboo
|
|
|
5041
5041
|
* Event allowed parameters.
|
|
5042
5042
|
*
|
|
5043
5043
|
* @interface AddBillingInfoParams
|
|
5044
|
-
* @since 0.
|
|
5044
|
+
* @since 0.1.0
|
|
5045
5045
|
* @extends SegmentCommonEventParams
|
|
5046
5046
|
* @extends SegmentCustomEventParams
|
|
5047
5047
|
* @extends AddBillingInfoCommonParams
|
|
@@ -5053,7 +5053,7 @@ interface AddBillingInfoParams$1 extends SegmentCommonEventParams, SegmentCustom
|
|
|
5053
5053
|
* addBillingInfo event interface
|
|
5054
5054
|
*
|
|
5055
5055
|
* @interface AddBillingInfoCommonParams
|
|
5056
|
-
* @since 0.
|
|
5056
|
+
* @since 0.1.0
|
|
5057
5057
|
* @property {string} alias The name of the new billing information data
|
|
5058
5058
|
*/
|
|
5059
5059
|
interface AddBillingInfoCommonParams {
|
|
@@ -5063,7 +5063,7 @@ interface AddBillingInfoCommonParams {
|
|
|
5063
5063
|
* addBillingInfo event params.
|
|
5064
5064
|
*
|
|
5065
5065
|
* @typedef AddBillingInfoParams
|
|
5066
|
-
* @since 0.
|
|
5066
|
+
* @since 0.1.0
|
|
5067
5067
|
*/
|
|
5068
5068
|
declare type AddBillingInfoParams = AddBillingInfoParams$3 & AddBillingInfoParams$2 & AddBillingInfoParams$1;
|
|
5069
5069
|
|
|
@@ -5071,7 +5071,7 @@ declare type AddBillingInfoParams = AddBillingInfoParams$3 & AddBillingInfoParam
|
|
|
5071
5071
|
* Event allowed parameters.
|
|
5072
5072
|
*
|
|
5073
5073
|
* @interface SelectBannerParams
|
|
5074
|
-
* @since 0.
|
|
5074
|
+
* @since 0.1.0
|
|
5075
5075
|
* @extends GoogleAnalyticsCommonEventParams
|
|
5076
5076
|
* @extends GoogleAnalyticsCustomEventParams
|
|
5077
5077
|
* @extends SelectBannerCommonParams
|
|
@@ -5083,7 +5083,7 @@ interface SelectBannerParams$3 extends GoogleAnalyticsCommonEventParams, GoogleA
|
|
|
5083
5083
|
* Event allowed parameters.
|
|
5084
5084
|
*
|
|
5085
5085
|
* @interface SelectBannerParams
|
|
5086
|
-
* @since 0.
|
|
5086
|
+
* @since 0.1.0
|
|
5087
5087
|
* @extends FacebookPixelCommonEventParams
|
|
5088
5088
|
* @extends FacebookPixelCustomEventParams
|
|
5089
5089
|
* @extends SelectBannerCommonParams
|
|
@@ -5095,7 +5095,7 @@ interface SelectBannerParams$2 extends FacebookPixelCommonEventParams, FacebookP
|
|
|
5095
5095
|
* Event allowed parameters.
|
|
5096
5096
|
*
|
|
5097
5097
|
* @interface SelectBannerParams
|
|
5098
|
-
* @since 0.
|
|
5098
|
+
* @since 0.1.0
|
|
5099
5099
|
* @extends SegmentCommonEventParams
|
|
5100
5100
|
* @extends SegmentCustomEventParams
|
|
5101
5101
|
* @extends SelectBannerCommonParams
|
|
@@ -5107,7 +5107,7 @@ interface SelectBannerParams$1 extends SegmentCommonEventParams, SegmentCustomEv
|
|
|
5107
5107
|
* selectBanner event interface
|
|
5108
5108
|
*
|
|
5109
5109
|
* @interface SelectBannerCommonParams
|
|
5110
|
-
* @since 0.
|
|
5110
|
+
* @since 0.1.0
|
|
5111
5111
|
* @property {string} url The url of the selected banner
|
|
5112
5112
|
* @property {string} name The name of the selected banner
|
|
5113
5113
|
* @property {string} list the name of the list where the banner is
|
|
@@ -5123,7 +5123,7 @@ interface SelectBannerCommonParams {
|
|
|
5123
5123
|
* selectBanner event params.
|
|
5124
5124
|
*
|
|
5125
5125
|
* @typedef SelectBannerParams
|
|
5126
|
-
* @since 0.
|
|
5126
|
+
* @since 0.1.0
|
|
5127
5127
|
*/
|
|
5128
5128
|
declare type SelectBannerParams = SelectBannerParams$3 & SelectBannerParams$2 & SelectBannerParams$1;
|
|
5129
5129
|
|
|
@@ -5131,7 +5131,7 @@ declare type SelectBannerParams = SelectBannerParams$3 & SelectBannerParams$2 &
|
|
|
5131
5131
|
* Event allowed parameters.
|
|
5132
5132
|
*
|
|
5133
5133
|
* @interface BannerImpressionParams
|
|
5134
|
-
* @since 0.
|
|
5134
|
+
* @since 0.1.0
|
|
5135
5135
|
* @extends GoogleAnalyticsCommonEventParams
|
|
5136
5136
|
* @extends GoogleAnalyticsCustomEventParams
|
|
5137
5137
|
* @extends BannerImpressionCommonParams
|
|
@@ -5143,7 +5143,7 @@ interface BannerImpressionParams$3 extends GoogleAnalyticsCommonEventParams, Goo
|
|
|
5143
5143
|
* Event allowed parameters.
|
|
5144
5144
|
*
|
|
5145
5145
|
* @interface BannerImpressionParams
|
|
5146
|
-
* @since 0.
|
|
5146
|
+
* @since 0.1.0
|
|
5147
5147
|
* @extends FacebookPixelCommonEventParams
|
|
5148
5148
|
* @extends FacebookPixelCustomEventParams
|
|
5149
5149
|
* @extends BannerImpressionCommonParams
|
|
@@ -5155,7 +5155,7 @@ interface BannerImpressionParams$2 extends FacebookPixelCommonEventParams, Faceb
|
|
|
5155
5155
|
* Event allowed parameters.
|
|
5156
5156
|
*
|
|
5157
5157
|
* @interface BannerImpressionParams
|
|
5158
|
-
* @since 0.
|
|
5158
|
+
* @since 0.1.0
|
|
5159
5159
|
* @extends SegmentCommonEventParams
|
|
5160
5160
|
* @extends SegmentCustomEventParams
|
|
5161
5161
|
* @extends BannerImpressionCommonParams
|
|
@@ -5167,7 +5167,7 @@ interface BannerImpressionParams$1 extends SegmentCommonEventParams, SegmentCust
|
|
|
5167
5167
|
* bannerImpression event interface
|
|
5168
5168
|
*
|
|
5169
5169
|
* @interface BannerImpressionCommonParams
|
|
5170
|
-
* @since 0.
|
|
5170
|
+
* @since 0.1.0
|
|
5171
5171
|
* @property {string} url The URL of a banner a user had an impression on
|
|
5172
5172
|
* @property {string} name The name of a banner a user had an impression on
|
|
5173
5173
|
* @property {string} list The name of the list where the banner is
|
|
@@ -5185,7 +5185,7 @@ interface BannerImpressionCommonParams {
|
|
|
5185
5185
|
* bannerImpression event params.
|
|
5186
5186
|
*
|
|
5187
5187
|
* @typedef BannerImpressionParams
|
|
5188
|
-
* @since 0.
|
|
5188
|
+
* @since 0.1.0
|
|
5189
5189
|
*/
|
|
5190
5190
|
declare type BannerImpressionParams = BannerImpressionParams$3 & BannerImpressionParams$2 & BannerImpressionParams$1;
|
|
5191
5191
|
|
|
@@ -5193,7 +5193,7 @@ declare type BannerImpressionParams = BannerImpressionParams$3 & BannerImpressio
|
|
|
5193
5193
|
* Event allowed parameters.
|
|
5194
5194
|
*
|
|
5195
5195
|
* @interface SignUpParams
|
|
5196
|
-
* @since 0.
|
|
5196
|
+
* @since 0.1.0
|
|
5197
5197
|
* @extends GoogleAnalyticsCommonEventParams
|
|
5198
5198
|
* @extends GoogleAnalyticsCustomEventParams
|
|
5199
5199
|
* @extends SignUpCommonParams
|
|
@@ -5205,7 +5205,7 @@ interface SignUpParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnalyti
|
|
|
5205
5205
|
* Event allowed parameters.
|
|
5206
5206
|
*
|
|
5207
5207
|
* @interface SignUpParams
|
|
5208
|
-
* @since 0.
|
|
5208
|
+
* @since 0.1.0
|
|
5209
5209
|
* @extends FacebookPixelCommonEventParams
|
|
5210
5210
|
* @extends FacebookPixelCustomEventParams
|
|
5211
5211
|
* @extends SignUpCommonParams
|
|
@@ -5217,7 +5217,7 @@ interface SignUpParams$2 extends FacebookPixelCommonEventParams, FacebookPixelCu
|
|
|
5217
5217
|
* Event allowed parameters.
|
|
5218
5218
|
*
|
|
5219
5219
|
* @interface SignUpParams
|
|
5220
|
-
* @since 0.
|
|
5220
|
+
* @since 0.1.0
|
|
5221
5221
|
* @extends SegmentCommonEventParams
|
|
5222
5222
|
* @extends SegmentCustomEventParams
|
|
5223
5223
|
* @extends SignUpCommonParams
|
|
@@ -5235,7 +5235,7 @@ interface SignUpParams$1 extends SegmentCommonEventParams, SegmentCustomEventPar
|
|
|
5235
5235
|
* signUp event interface
|
|
5236
5236
|
*
|
|
5237
5237
|
* @interface SignUpCommonParams
|
|
5238
|
-
* @since 0.
|
|
5238
|
+
* @since 0.1.0
|
|
5239
5239
|
* @property {AuthProviderMethods} method Supported auth providers methods
|
|
5240
5240
|
*/
|
|
5241
5241
|
interface SignUpCommonParams {
|
|
@@ -5245,7 +5245,7 @@ interface SignUpCommonParams {
|
|
|
5245
5245
|
* signUp event params.
|
|
5246
5246
|
*
|
|
5247
5247
|
* @typedef SignUpParams
|
|
5248
|
-
* @since 0.
|
|
5248
|
+
* @since 0.1.0
|
|
5249
5249
|
*/
|
|
5250
5250
|
declare type SignUpParams = SignUpParams$3 & SignUpParams$2 & SignUpParams$1;
|
|
5251
5251
|
|
|
@@ -5253,7 +5253,7 @@ declare type SignUpParams = SignUpParams$3 & SignUpParams$2 & SignUpParams$1;
|
|
|
5253
5253
|
* Event allowed parameters.
|
|
5254
5254
|
*
|
|
5255
5255
|
* @interface SignOutParams
|
|
5256
|
-
* @since 0.
|
|
5256
|
+
* @since 0.1.0
|
|
5257
5257
|
* @extends GoogleAnalyticsCommonEventParams
|
|
5258
5258
|
* @extends GoogleAnalyticsCustomEventParams
|
|
5259
5259
|
* @extends SignOutCommonParams
|
|
@@ -5267,7 +5267,7 @@ interface SignOutParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnalyt
|
|
|
5267
5267
|
* Event allowed parameters.
|
|
5268
5268
|
*
|
|
5269
5269
|
* @interface SignOutParams
|
|
5270
|
-
* @since 0.
|
|
5270
|
+
* @since 0.1.0
|
|
5271
5271
|
* @extends FacebookPixelCommonEventParams
|
|
5272
5272
|
* @extends FacebookPixelCustomEventParams
|
|
5273
5273
|
* @extends SignOutCommonParams
|
|
@@ -5279,7 +5279,7 @@ interface SignOutParams$2 extends FacebookPixelCommonEventParams, FacebookPixelC
|
|
|
5279
5279
|
* Event allowed parameters.
|
|
5280
5280
|
*
|
|
5281
5281
|
* @interface SignOutParams
|
|
5282
|
-
* @since 0.
|
|
5282
|
+
* @since 0.1.0
|
|
5283
5283
|
* @extends SegmentCommonEventParams
|
|
5284
5284
|
* @extends SegmentCustomEventParams
|
|
5285
5285
|
* @extends SignOutCommonParams
|
|
@@ -5293,7 +5293,7 @@ interface SignOutParams$1 extends SegmentCommonEventParams, SegmentCustomEventPa
|
|
|
5293
5293
|
* signOut event interface
|
|
5294
5294
|
*
|
|
5295
5295
|
* @interface SignOutCommonParams
|
|
5296
|
-
* @since 0.
|
|
5296
|
+
* @since 0.1.0
|
|
5297
5297
|
*/
|
|
5298
5298
|
interface SignOutCommonParams {
|
|
5299
5299
|
}
|
|
@@ -5301,7 +5301,7 @@ interface SignOutCommonParams {
|
|
|
5301
5301
|
* signOut event params.
|
|
5302
5302
|
*
|
|
5303
5303
|
* @typedef SignOutParams
|
|
5304
|
-
* @since 0.
|
|
5304
|
+
* @since 0.1.0
|
|
5305
5305
|
*/
|
|
5306
5306
|
declare type SignOutParams = SignOutParams$3 & SignOutParams$2 & SignOutParams$1;
|
|
5307
5307
|
|
|
@@ -5309,7 +5309,7 @@ declare type SignOutParams = SignOutParams$3 & SignOutParams$2 & SignOutParams$1
|
|
|
5309
5309
|
* Event allowed parameters.
|
|
5310
5310
|
*
|
|
5311
5311
|
* @interface SignInParams
|
|
5312
|
-
* @since 0.
|
|
5312
|
+
* @since 0.1.0
|
|
5313
5313
|
* @extends GoogleAnalyticsCommonEventParams
|
|
5314
5314
|
* @extends GoogleAnalyticsCustomEventParams
|
|
5315
5315
|
* @extends SignInCommonParams
|
|
@@ -5321,7 +5321,7 @@ interface SignInParams$3 extends GoogleAnalyticsCommonEventParams, GoogleAnalyti
|
|
|
5321
5321
|
* Event allowed parameters.
|
|
5322
5322
|
*
|
|
5323
5323
|
* @interface SignInParams
|
|
5324
|
-
* @since 0.
|
|
5324
|
+
* @since 0.1.0
|
|
5325
5325
|
* @extends FacebookPixelCommonEventParams
|
|
5326
5326
|
* @extends FacebookPixelCustomEventParams
|
|
5327
5327
|
* @extends SignInCommonParams
|
|
@@ -5333,7 +5333,7 @@ interface SignInParams$2 extends FacebookPixelCommonEventParams, FacebookPixelCu
|
|
|
5333
5333
|
* Event allowed parameters.
|
|
5334
5334
|
*
|
|
5335
5335
|
* @interface SignInParams
|
|
5336
|
-
* @since 0.
|
|
5336
|
+
* @since 0.1.0
|
|
5337
5337
|
* @extends SegmentCommonEventParams
|
|
5338
5338
|
* @extends SegmentCustomEventParams
|
|
5339
5339
|
* @extends SignInCommonParams
|
|
@@ -5349,7 +5349,7 @@ interface SignInParams$1 extends SegmentCommonEventParams, SegmentCustomEventPar
|
|
|
5349
5349
|
* signIn event interface
|
|
5350
5350
|
*
|
|
5351
5351
|
* @interface SignInCommonParams
|
|
5352
|
-
* @since 0.
|
|
5352
|
+
* @since 0.1.0
|
|
5353
5353
|
* @property {AuthProviderMethods} method Supported auth providers methods
|
|
5354
5354
|
*/
|
|
5355
5355
|
interface SignInCommonParams {
|
|
@@ -5359,7 +5359,7 @@ interface SignInCommonParams {
|
|
|
5359
5359
|
* signIn event params.
|
|
5360
5360
|
*
|
|
5361
5361
|
* @typedef SignInParams
|
|
5362
|
-
* @since 0.
|
|
5362
|
+
* @since 0.1.0
|
|
5363
5363
|
*/
|
|
5364
5364
|
declare type SignInParams = SignInParams$3 & SignInParams$2 & SignInParams$1;
|
|
5365
5365
|
|
|
@@ -5367,7 +5367,7 @@ declare type SignInParams = SignInParams$3 & SignInParams$2 & SignInParams$1;
|
|
|
5367
5367
|
* Event allowed parameters.
|
|
5368
5368
|
*
|
|
5369
5369
|
* @interface ChangePasswordSuccessParams
|
|
5370
|
-
* @since 0.
|
|
5370
|
+
* @since 0.1.0
|
|
5371
5371
|
* @extends GoogleAnalyticsCommonEventParams
|
|
5372
5372
|
* @extends GoogleAnalyticsCustomEventParams
|
|
5373
5373
|
* @extends ChangePasswordSuccessCommonParams
|
|
@@ -5381,7 +5381,7 @@ interface ChangePasswordSuccessParams$3 extends GoogleAnalyticsCommonEventParams
|
|
|
5381
5381
|
* Event allowed parameters.
|
|
5382
5382
|
*
|
|
5383
5383
|
* @interface ChangePasswordSuccessParams
|
|
5384
|
-
* @since 0.
|
|
5384
|
+
* @since 0.1.0
|
|
5385
5385
|
* @extends FacebookPixelCommonEventParams
|
|
5386
5386
|
* @extends FacebookPixelCustomEventParams
|
|
5387
5387
|
* @extends ChangePasswordSuccessCommonParams
|
|
@@ -5393,7 +5393,7 @@ interface ChangePasswordSuccessParams$2 extends FacebookPixelCommonEventParams,
|
|
|
5393
5393
|
* Event allowed parameters.
|
|
5394
5394
|
*
|
|
5395
5395
|
* @interface ChangePasswordSuccessParams
|
|
5396
|
-
* @since 0.
|
|
5396
|
+
* @since 0.1.0
|
|
5397
5397
|
* @extends SegmentCommonEventParams
|
|
5398
5398
|
* @extends SegmentCustomEventParams
|
|
5399
5399
|
* @extends ChangePasswordSuccessCommonParams
|
|
@@ -5405,7 +5405,7 @@ interface ChangePasswordSuccessParams$1 extends SegmentCommonEventParams, Segmen
|
|
|
5405
5405
|
* changePasswordSuccess event interface
|
|
5406
5406
|
*
|
|
5407
5407
|
* @interface ChangePasswordSuccessCommonParams
|
|
5408
|
-
* @since 0.
|
|
5408
|
+
* @since 0.1.0
|
|
5409
5409
|
*/
|
|
5410
5410
|
interface ChangePasswordSuccessCommonParams {
|
|
5411
5411
|
}
|
|
@@ -5413,7 +5413,7 @@ interface ChangePasswordSuccessCommonParams {
|
|
|
5413
5413
|
* changePasswordSuccess event params.
|
|
5414
5414
|
*
|
|
5415
5415
|
* @typedef ChangePasswordSuccessParams
|
|
5416
|
-
* @since 0.
|
|
5416
|
+
* @since 0.1.0
|
|
5417
5417
|
*/
|
|
5418
5418
|
declare type ChangePasswordSuccessParams = ChangePasswordSuccessParams$3 & ChangePasswordSuccessParams$2 & ChangePasswordSuccessParams$1;
|
|
5419
5419
|
|
|
@@ -5421,7 +5421,7 @@ declare type ChangePasswordSuccessParams = ChangePasswordSuccessParams$3 & Chang
|
|
|
5421
5421
|
* Event allowed parameters.
|
|
5422
5422
|
*
|
|
5423
5423
|
* @interface ChangePasswordFailParams
|
|
5424
|
-
* @since 0.
|
|
5424
|
+
* @since 0.1.0
|
|
5425
5425
|
* @extends GoogleAnalyticsCommonEventParams
|
|
5426
5426
|
* @extends GoogleAnalyticsCustomEventParams
|
|
5427
5427
|
* @extends ChangePasswordFailCommonParams
|
|
@@ -5435,7 +5435,7 @@ interface ChangePasswordFailParams$3 extends GoogleAnalyticsCommonEventParams, G
|
|
|
5435
5435
|
* Event allowed parameters.
|
|
5436
5436
|
*
|
|
5437
5437
|
* @interface ChangePasswordFailParams
|
|
5438
|
-
* @since 0.
|
|
5438
|
+
* @since 0.1.0
|
|
5439
5439
|
* @extends FacebookPixelCommonEventParams
|
|
5440
5440
|
* @extends FacebookPixelCustomEventParams
|
|
5441
5441
|
* @extends ChangePasswordFailCommonParams
|
|
@@ -5447,7 +5447,7 @@ interface ChangePasswordFailParams$2 extends FacebookPixelCommonEventParams, Fac
|
|
|
5447
5447
|
* Event allowed parameters.
|
|
5448
5448
|
*
|
|
5449
5449
|
* @interface ChangePasswordFailParams
|
|
5450
|
-
* @since 0.
|
|
5450
|
+
* @since 0.1.0
|
|
5451
5451
|
* @extends SegmentCommonEventParams
|
|
5452
5452
|
* @extends SegmentCustomEventParams
|
|
5453
5453
|
* @extends ChangePasswordFailCommonParams
|
|
@@ -5459,7 +5459,7 @@ interface ChangePasswordFailParams$1 extends SegmentCommonEventParams, SegmentCu
|
|
|
5459
5459
|
* changePasswordFail event interface
|
|
5460
5460
|
*
|
|
5461
5461
|
* @interface ChangePasswordFailCommonParams
|
|
5462
|
-
* @since 0.
|
|
5462
|
+
* @since 0.1.0
|
|
5463
5463
|
* @property {string} errorMessage Server error message
|
|
5464
5464
|
* @property {number} statusCode Server response status code
|
|
5465
5465
|
*/
|
|
@@ -5471,7 +5471,7 @@ interface ChangePasswordFailCommonParams {
|
|
|
5471
5471
|
* changePasswordFail event params.
|
|
5472
5472
|
*
|
|
5473
5473
|
* @typedef ChangePasswordFailParams
|
|
5474
|
-
* @since 0.
|
|
5474
|
+
* @since 0.1.0
|
|
5475
5475
|
*/
|
|
5476
5476
|
declare type ChangePasswordFailParams = ChangePasswordFailParams$3 & ChangePasswordFailParams$2 & ChangePasswordFailParams$1;
|
|
5477
5477
|
|
|
@@ -5479,7 +5479,7 @@ declare type ChangePasswordFailParams = ChangePasswordFailParams$3 & ChangePassw
|
|
|
5479
5479
|
* Event allowed parameters.
|
|
5480
5480
|
*
|
|
5481
5481
|
* @interface SignUpAttemptParams
|
|
5482
|
-
* @since 0.
|
|
5482
|
+
* @since 0.1.0
|
|
5483
5483
|
* @extends GoogleAnalyticsCommonEventParams
|
|
5484
5484
|
* @extends GoogleAnalyticsCustomEventParams
|
|
5485
5485
|
* @extends SignUpAttemptCommonParams
|
|
@@ -5491,7 +5491,7 @@ interface SignUpAttemptParams$3 extends GoogleAnalyticsCommonEventParams, Google
|
|
|
5491
5491
|
* Event allowed parameters.
|
|
5492
5492
|
*
|
|
5493
5493
|
* @interface SignUpAttemptParams
|
|
5494
|
-
* @since 0.
|
|
5494
|
+
* @since 0.1.0
|
|
5495
5495
|
* @extends FacebookPixelCommonEventParams
|
|
5496
5496
|
* @extends FacebookPixelCustomEventParams
|
|
5497
5497
|
* @extends SignUpAttemptCommonParams
|
|
@@ -5503,7 +5503,7 @@ interface SignUpAttemptParams$2 extends FacebookPixelCommonEventParams, Facebook
|
|
|
5503
5503
|
* Event allowed parameters.
|
|
5504
5504
|
*
|
|
5505
5505
|
* @interface SignUpAttemptParams
|
|
5506
|
-
* @since 0.
|
|
5506
|
+
* @since 0.1.0
|
|
5507
5507
|
* @extends SegmentCommonEventParams
|
|
5508
5508
|
* @extends SegmentCustomEventParams
|
|
5509
5509
|
* @extends SignUpAttemptCommonParams
|
|
@@ -5515,7 +5515,7 @@ interface SignUpAttemptParams$1 extends SegmentCommonEventParams, SegmentCustomE
|
|
|
5515
5515
|
* signUpAttempt event interface
|
|
5516
5516
|
*
|
|
5517
5517
|
* @interface SignUpAttemptCommonParams
|
|
5518
|
-
* @since 0.
|
|
5518
|
+
* @since 0.1.0
|
|
5519
5519
|
* @property {AuthProviderMethods} method Supported auth providers methods
|
|
5520
5520
|
*/
|
|
5521
5521
|
interface SignUpAttemptCommonParams {
|
|
@@ -5525,7 +5525,7 @@ interface SignUpAttemptCommonParams {
|
|
|
5525
5525
|
* signUpAttempt event params.
|
|
5526
5526
|
*
|
|
5527
5527
|
* @typedef SignUpAttemptParams
|
|
5528
|
-
* @since 0.
|
|
5528
|
+
* @since 0.1.0
|
|
5529
5529
|
*/
|
|
5530
5530
|
declare type SignUpAttemptParams = SignUpAttemptParams$3 & SignUpAttemptParams$2 & SignUpAttemptParams$1;
|
|
5531
5531
|
|
|
@@ -5533,7 +5533,7 @@ declare type SignUpAttemptParams = SignUpAttemptParams$3 & SignUpAttemptParams$2
|
|
|
5533
5533
|
* Event allowed parameters.
|
|
5534
5534
|
*
|
|
5535
5535
|
* @interface ChangePasswordAttemptParams
|
|
5536
|
-
* @since 0.
|
|
5536
|
+
* @since 0.1.0
|
|
5537
5537
|
* @extends GoogleAnalyticsCommonEventParams
|
|
5538
5538
|
* @extends GoogleAnalyticsCustomEventParams
|
|
5539
5539
|
* @extends ChangePasswordAttemptCommonParams
|
|
@@ -5547,7 +5547,7 @@ interface ChangePasswordAttemptParams$3 extends GoogleAnalyticsCommonEventParams
|
|
|
5547
5547
|
* Event allowed parameters.
|
|
5548
5548
|
*
|
|
5549
5549
|
* @interface ChangePasswordAttemptParams
|
|
5550
|
-
* @since 0.
|
|
5550
|
+
* @since 0.1.0
|
|
5551
5551
|
* @extends FacebookPixelCommonEventParams
|
|
5552
5552
|
* @extends FacebookPixelCustomEventParams
|
|
5553
5553
|
* @extends ChangePasswordAttemptCommonParams
|
|
@@ -5559,7 +5559,7 @@ interface ChangePasswordAttemptParams$2 extends FacebookPixelCommonEventParams,
|
|
|
5559
5559
|
* Event allowed parameters.
|
|
5560
5560
|
*
|
|
5561
5561
|
* @interface ChangePasswordAttemptParams
|
|
5562
|
-
* @since 0.
|
|
5562
|
+
* @since 0.1.0
|
|
5563
5563
|
* @extends SegmentCommonEventParams
|
|
5564
5564
|
* @extends SegmentCustomEventParams
|
|
5565
5565
|
* @extends ChangePasswordAttemptCommonParams
|
|
@@ -5571,7 +5571,7 @@ interface ChangePasswordAttemptParams$1 extends SegmentCommonEventParams, Segmen
|
|
|
5571
5571
|
* ChangePasswordAttempt event interface
|
|
5572
5572
|
*
|
|
5573
5573
|
* @interface ChangePasswordAttemptCommonParams
|
|
5574
|
-
* @since 0.
|
|
5574
|
+
* @since 0.1.0
|
|
5575
5575
|
*
|
|
5576
5576
|
*/
|
|
5577
5577
|
interface ChangePasswordAttemptCommonParams {
|
|
@@ -5580,7 +5580,7 @@ interface ChangePasswordAttemptCommonParams {
|
|
|
5580
5580
|
* ChangePasswordAttempt event params.
|
|
5581
5581
|
*
|
|
5582
5582
|
* @typedef ChangePasswordAttemptParams
|
|
5583
|
-
* @since 0.
|
|
5583
|
+
* @since 0.1.0
|
|
5584
5584
|
*/
|
|
5585
5585
|
declare type ChangePasswordAttemptParams = ChangePasswordAttemptParams$3 & ChangePasswordAttemptParams$2 & ChangePasswordAttemptParams$1;
|
|
5586
5586
|
|
|
@@ -5723,15 +5723,15 @@ declare const events: {
|
|
|
5723
5723
|
/**
|
|
5724
5724
|
* Utility function to update the active vendor.
|
|
5725
5725
|
*
|
|
5726
|
-
* @since 0.
|
|
5726
|
+
* @since 0.1.0
|
|
5727
5727
|
* @param {Vendor|number} vendor New active vendor
|
|
5728
5728
|
*/
|
|
5729
|
-
declare const updateActiveVendor: (vendor: Vendor | Vendor["id"] | undefined) => void;
|
|
5729
|
+
declare const updateActiveVendor: (vendor: Vendor | Vendor["id"] | -1 | undefined) => void;
|
|
5730
5730
|
|
|
5731
5731
|
/**
|
|
5732
5732
|
* Utility function to identify a user across Segment destinations.
|
|
5733
5733
|
*
|
|
5734
|
-
* @since 0.
|
|
5734
|
+
* @since 0.1.0
|
|
5735
5735
|
* @param {Segment.Traits} identify Pieces of information you know about a user that are included in an identify call
|
|
5736
5736
|
*/
|
|
5737
5737
|
declare const identifyUser: (identify: Segment$1.Traits) => void;
|