@artisan-commerce/analytics-capacitor 0.1.0-canary.39 → 0.1.0-canary.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{bundle.cjs.js → bundle.cjs} +9 -9
- package/dist/bundle.cjs.map +1 -0
- package/dist/bundle.d.ts +90 -90
- package/dist/{bundle.esm.js → bundle.mjs} +9 -7
- package/dist/bundle.mjs.map +1 -0
- package/dist/bundle.umd.js +8 -8
- package/dist/bundle.umd.js.map +1 -1
- package/package.json +11 -10
- package/dist/bundle.cjs.js.map +0 -1
- package/dist/bundle.esm.js.map +0 -1
package/dist/bundle.d.ts
CHANGED
|
@@ -399,7 +399,7 @@ declare namespace Segment$1 {
|
|
|
399
399
|
* @typedef AnalyticsProviderTypes
|
|
400
400
|
* @since 0.5.14
|
|
401
401
|
*/
|
|
402
|
-
|
|
402
|
+
type AnalyticsProviderTypes = AnalyticsProvider | GlobalProvider;
|
|
403
403
|
/**
|
|
404
404
|
* Shared params across every event.
|
|
405
405
|
*
|
|
@@ -522,7 +522,7 @@ declare namespace Fbq {
|
|
|
522
522
|
* @typedef AnalyticsProvidersConfigs
|
|
523
523
|
* @since 0.5.14
|
|
524
524
|
*/
|
|
525
|
-
|
|
525
|
+
type AnalyticsProvidersConfigs = Partial<GoogleAnalyticsProviderConfig> | Partial<FacebookPixelProviderConfig>;
|
|
526
526
|
/**
|
|
527
527
|
* Analytics event metadata to be included in every sent event.
|
|
528
528
|
*
|
|
@@ -559,14 +559,14 @@ interface AnalyticsMeta {
|
|
|
559
559
|
* @typedef ArtisnPlatform
|
|
560
560
|
* @since 0.5.14
|
|
561
561
|
*/
|
|
562
|
-
|
|
562
|
+
type SupportedProviders = "GOOGLE_ANALYTICS" | "FACEBOOK_PIXEL" | "SEGMENT";
|
|
563
563
|
/**
|
|
564
564
|
* Supported auth providers methods.
|
|
565
565
|
*
|
|
566
566
|
* @typedef AuthProviderMethods
|
|
567
567
|
* @since 0.5.14
|
|
568
568
|
*/
|
|
569
|
-
|
|
569
|
+
type AuthProviderMethods = "Google" | "Facebook" | "Apple" | "Email and Password" | "Phone";
|
|
570
570
|
|
|
571
571
|
/**
|
|
572
572
|
* Analytics Provider base intance config.
|
|
@@ -844,14 +844,14 @@ interface UpdateWorkflowParams$1 extends SegmentCommonEventParams, SegmentCustom
|
|
|
844
844
|
* @typedef Workflow
|
|
845
845
|
* @since 0.1.0
|
|
846
846
|
*/
|
|
847
|
-
|
|
847
|
+
type Workflow = "Delivery" | "Pickup" | "Other";
|
|
848
848
|
/**
|
|
849
849
|
* PaymentType types
|
|
850
850
|
*
|
|
851
851
|
* @typedef PaymentType
|
|
852
852
|
* @since 0.1.0
|
|
853
853
|
*/
|
|
854
|
-
|
|
854
|
+
type PaymentType = "Cash" | "Card" | "Dataphone" | "Other";
|
|
855
855
|
|
|
856
856
|
/**
|
|
857
857
|
* updateWorkflow event interface.
|
|
@@ -871,7 +871,7 @@ interface UpdateWorkflowCommonParams {
|
|
|
871
871
|
* @typedef UpdateWorkflowParams
|
|
872
872
|
* @since 0.5.14
|
|
873
873
|
*/
|
|
874
|
-
|
|
874
|
+
type UpdateWorkflowParams = UpdateWorkflowParams$3 & UpdateWorkflowParams$2 & UpdateWorkflowParams$1;
|
|
875
875
|
|
|
876
876
|
/**
|
|
877
877
|
* Event allowed parameters.
|
|
@@ -925,7 +925,7 @@ interface SelectWorkflowCommonParams {
|
|
|
925
925
|
* @typedef SelectWorkflowParams
|
|
926
926
|
* @since 0.5.14
|
|
927
927
|
*/
|
|
928
|
-
|
|
928
|
+
type SelectWorkflowParams = SelectWorkflowParams$3 & SelectWorkflowParams$2 & SelectWorkflowParams$1;
|
|
929
929
|
|
|
930
930
|
/**
|
|
931
931
|
* Event allowed parameters.
|
|
@@ -981,7 +981,7 @@ interface SetVendorCommonParams {
|
|
|
981
981
|
* @typedef SetVendorParams
|
|
982
982
|
* @since 0.5.14
|
|
983
983
|
*/
|
|
984
|
-
|
|
984
|
+
type SetVendorParams = SetVendorParams$3 & SetVendorParams$2 & SetVendorParams$1;
|
|
985
985
|
|
|
986
986
|
/**
|
|
987
987
|
* Event allowed parameters.
|
|
@@ -1041,7 +1041,7 @@ interface ChangeVendorCommonParams {
|
|
|
1041
1041
|
* @typedef ChangeVendorParams
|
|
1042
1042
|
* @since 0.5.14
|
|
1043
1043
|
*/
|
|
1044
|
-
|
|
1044
|
+
type ChangeVendorParams = ChangeVendorParams$3 & ChangeVendorParams$2 & ChangeVendorParams$1;
|
|
1045
1045
|
|
|
1046
1046
|
/**
|
|
1047
1047
|
* Event allowed parameters.
|
|
@@ -1099,7 +1099,7 @@ interface UpdateUserInfoCommonParams {
|
|
|
1099
1099
|
* @typedef UpdateUserInfoParams
|
|
1100
1100
|
* @since 0.5.14
|
|
1101
1101
|
*/
|
|
1102
|
-
|
|
1102
|
+
type UpdateUserInfoParams = UpdateUserInfoParams$3 & UpdateUserInfoParams$2 & UpdateUserInfoParams$1;
|
|
1103
1103
|
|
|
1104
1104
|
/**
|
|
1105
1105
|
* Event allowed parameters.
|
|
@@ -1155,7 +1155,7 @@ interface SetUserInfoCommonParams {
|
|
|
1155
1155
|
* @typedef SetUserInfoParams
|
|
1156
1156
|
* @since 0.5.14
|
|
1157
1157
|
*/
|
|
1158
|
-
|
|
1158
|
+
type SetUserInfoParams = SetUserInfoParams$3 & SetUserInfoParams$2 & SetUserInfoParams$1;
|
|
1159
1159
|
|
|
1160
1160
|
/**
|
|
1161
1161
|
* Event allowed parameters.
|
|
@@ -1209,7 +1209,7 @@ interface SetStoreCommonParams {
|
|
|
1209
1209
|
* @typedef SetStoreParams
|
|
1210
1210
|
* @since 0.5.14
|
|
1211
1211
|
*/
|
|
1212
|
-
|
|
1212
|
+
type SetStoreParams = SetStoreParams$3 & SetStoreParams$2 & SetStoreParams$1;
|
|
1213
1213
|
|
|
1214
1214
|
/**
|
|
1215
1215
|
* Event allowed parameters.
|
|
@@ -1265,7 +1265,7 @@ interface ChangeStoreCommonParams {
|
|
|
1265
1265
|
* @typedef ChangeStoreParams
|
|
1266
1266
|
* @since 0.5.14
|
|
1267
1267
|
*/
|
|
1268
|
-
|
|
1268
|
+
type ChangeStoreParams = ChangeStoreParams$3 & ChangeStoreParams$2 & ChangeStoreParams$1;
|
|
1269
1269
|
|
|
1270
1270
|
/**
|
|
1271
1271
|
* Event allowed parameters.
|
|
@@ -1325,7 +1325,7 @@ interface ShareCommonParams {
|
|
|
1325
1325
|
* @typedef ShareParams
|
|
1326
1326
|
* @since 0.5.14
|
|
1327
1327
|
*/
|
|
1328
|
-
|
|
1328
|
+
type ShareParams = ShareParams$3 & ShareParams$2 & ShareParams$1;
|
|
1329
1329
|
|
|
1330
1330
|
/**
|
|
1331
1331
|
* Event allowed parameters.
|
|
@@ -1385,7 +1385,7 @@ interface ViewCartCommonParams {
|
|
|
1385
1385
|
* @typedef ViewCartParams
|
|
1386
1386
|
* @since 0.5.14
|
|
1387
1387
|
*/
|
|
1388
|
-
|
|
1388
|
+
type ViewCartParams = ViewCartParams$3 & ViewCartParams$2 & ViewCartParams$1;
|
|
1389
1389
|
|
|
1390
1390
|
/**
|
|
1391
1391
|
* Event allowed parameters.
|
|
@@ -1447,7 +1447,7 @@ interface UpdateProductInWishlistCommonParams {
|
|
|
1447
1447
|
* @typedef UpdateProductInWishlistParams
|
|
1448
1448
|
* @since 0.5.14
|
|
1449
1449
|
*/
|
|
1450
|
-
|
|
1450
|
+
type UpdateProductInWishlistParams = UpdateProductInWishlistParams$3 & UpdateProductInWishlistParams$2 & UpdateProductInWishlistParams$1;
|
|
1451
1451
|
|
|
1452
1452
|
/**
|
|
1453
1453
|
* Event allowed parameters.
|
|
@@ -1513,7 +1513,7 @@ interface UpdateProductInCartCommonParams {
|
|
|
1513
1513
|
* @typedef UpdateProductInCartParams
|
|
1514
1514
|
* @since 0.5.14
|
|
1515
1515
|
*/
|
|
1516
|
-
|
|
1516
|
+
type UpdateProductInCartParams = UpdateProductInCartParams$3 & UpdateProductInCartParams$2 & UpdateProductInCartParams$1;
|
|
1517
1517
|
|
|
1518
1518
|
/**
|
|
1519
1519
|
* Event allowed parameters.
|
|
@@ -1573,7 +1573,7 @@ interface RemoveProductFromWishlistCommonParams {
|
|
|
1573
1573
|
* @typedef RemoveProductFromWishlistParams
|
|
1574
1574
|
* @since 0.5.14
|
|
1575
1575
|
*/
|
|
1576
|
-
|
|
1576
|
+
type RemoveProductFromWishlistParams = RemoveProductFromWishlistParams$3 & RemoveProductFromWishlistParams$2 & RemoveProductFromWishlistParams$1;
|
|
1577
1577
|
|
|
1578
1578
|
/**
|
|
1579
1579
|
* Event allowed parameters.
|
|
@@ -1637,7 +1637,7 @@ interface RemoveProductFromCartCommonParams {
|
|
|
1637
1637
|
* @typedef RemoveProductFromCartParams
|
|
1638
1638
|
* @since 0.5.14
|
|
1639
1639
|
*/
|
|
1640
|
-
|
|
1640
|
+
type RemoveProductFromCartParams = RemoveProductFromCartParams$3 & RemoveProductFromCartParams$2 & RemoveProductFromCartParams$1;
|
|
1641
1641
|
|
|
1642
1642
|
/**
|
|
1643
1643
|
* Event allowed parameters.
|
|
@@ -1695,7 +1695,7 @@ interface ClearCartCommonParams {
|
|
|
1695
1695
|
* @typedef ClearCartParams
|
|
1696
1696
|
* @since 0.5.14
|
|
1697
1697
|
*/
|
|
1698
|
-
|
|
1698
|
+
type ClearCartParams = ClearCartParams$3 & ClearCartParams$2 & ClearCartParams$1;
|
|
1699
1699
|
|
|
1700
1700
|
/**
|
|
1701
1701
|
* Event allowed parameters.
|
|
@@ -1755,7 +1755,7 @@ interface AddProductToWishlistCommonParams {
|
|
|
1755
1755
|
* @typedef AddProductToWishlistParams
|
|
1756
1756
|
* @since 0.5.14
|
|
1757
1757
|
*/
|
|
1758
|
-
|
|
1758
|
+
type AddProductToWishlistParams = AddProductToWishlistParams$3 & AddProductToWishlistParams$2 & AddProductToWishlistParams$1;
|
|
1759
1759
|
|
|
1760
1760
|
/**
|
|
1761
1761
|
* Event allowed parameters.
|
|
@@ -1819,7 +1819,7 @@ interface AddProductToCartCommonParams {
|
|
|
1819
1819
|
* @typedef AddProductToCartParams
|
|
1820
1820
|
* @since 0.5.14
|
|
1821
1821
|
*/
|
|
1822
|
-
|
|
1822
|
+
type AddProductToCartParams = AddProductToCartParams$3 & AddProductToCartParams$2 & AddProductToCartParams$1;
|
|
1823
1823
|
|
|
1824
1824
|
/**
|
|
1825
1825
|
* Event allowed parameters.
|
|
@@ -1879,7 +1879,7 @@ interface UpdateShippingAddressCommonParams {
|
|
|
1879
1879
|
* @typedef UpdateShippingAddressParams
|
|
1880
1880
|
* @since 0.5.14
|
|
1881
1881
|
*/
|
|
1882
|
-
|
|
1882
|
+
type UpdateShippingAddressParams = UpdateShippingAddressParams$3 & UpdateShippingAddressParams$2 & UpdateShippingAddressParams$1;
|
|
1883
1883
|
|
|
1884
1884
|
/**
|
|
1885
1885
|
* Event allowed parameters.
|
|
@@ -1945,7 +1945,7 @@ interface SelectShippingAddressCommonParams {
|
|
|
1945
1945
|
* @typedef SelectShippingAddressParams
|
|
1946
1946
|
* @since 0.5.14
|
|
1947
1947
|
*/
|
|
1948
|
-
|
|
1948
|
+
type SelectShippingAddressParams = SelectShippingAddressParams$3 & SelectShippingAddressParams$2 & SelectShippingAddressParams$1;
|
|
1949
1949
|
|
|
1950
1950
|
/**
|
|
1951
1951
|
* Event allowed parameters.
|
|
@@ -2007,7 +2007,7 @@ interface AddShippingAddressCommonParams {
|
|
|
2007
2007
|
* @typedef AddShippingAddressParams
|
|
2008
2008
|
* @since 0.5.14
|
|
2009
2009
|
*/
|
|
2010
|
-
|
|
2010
|
+
type AddShippingAddressParams = AddShippingAddressParams$3 & AddShippingAddressParams$2 & AddShippingAddressParams$1;
|
|
2011
2011
|
|
|
2012
2012
|
/**
|
|
2013
2013
|
* Event allowed parameters.
|
|
@@ -2059,7 +2059,7 @@ interface ViewSettingsCommonParams {
|
|
|
2059
2059
|
* @typedef ViewSettingsParams
|
|
2060
2060
|
* @since 0.5.14
|
|
2061
2061
|
*/
|
|
2062
|
-
|
|
2062
|
+
type ViewSettingsParams = ViewSettingsParams$3 & ViewSettingsParams$2 & ViewSettingsParams$1;
|
|
2063
2063
|
|
|
2064
2064
|
/**
|
|
2065
2065
|
* Event allowed parameters.
|
|
@@ -2127,7 +2127,7 @@ interface PurchaseSuccessCommonParams {
|
|
|
2127
2127
|
* @typedef PurchaseSuccessParams
|
|
2128
2128
|
* @since 0.1.0
|
|
2129
2129
|
*/
|
|
2130
|
-
|
|
2130
|
+
type PurchaseSuccessParams = PurchaseSuccessParams$3 & PurchaseSuccessParams$2 & PurchaseSuccessParams$1;
|
|
2131
2131
|
|
|
2132
2132
|
/**
|
|
2133
2133
|
* Event allowed parameters.
|
|
@@ -2197,7 +2197,7 @@ interface PurchaseFailCommonParams {
|
|
|
2197
2197
|
* @typedef PurchaseFailParams
|
|
2198
2198
|
* @since 0.1.0
|
|
2199
2199
|
*/
|
|
2200
|
-
|
|
2200
|
+
type PurchaseFailParams = PurchaseFailParams$3 & PurchaseFailParams$2 & PurchaseFailParams$1;
|
|
2201
2201
|
|
|
2202
2202
|
/**
|
|
2203
2203
|
* Event allowed parameters.
|
|
@@ -2263,7 +2263,7 @@ interface PurchaseAttemptCommonParams {
|
|
|
2263
2263
|
* @typedef PurchaseAttemptParams
|
|
2264
2264
|
* @since 0.5.14
|
|
2265
2265
|
*/
|
|
2266
|
-
|
|
2266
|
+
type PurchaseAttemptParams = PurchaseAttemptParams$3 & PurchaseAttemptParams$2 & PurchaseAttemptParams$1;
|
|
2267
2267
|
|
|
2268
2268
|
/**
|
|
2269
2269
|
* Event allowed parameters.
|
|
@@ -2319,7 +2319,7 @@ interface ViewProductDetailsCommonParams {
|
|
|
2319
2319
|
* @typedef ViewProductDetailsParams
|
|
2320
2320
|
* @since 0.5.14
|
|
2321
2321
|
*/
|
|
2322
|
-
|
|
2322
|
+
type ViewProductDetailsParams = ViewProductDetailsParams$3 & ViewProductDetailsParams$2 & ViewProductDetailsParams$1;
|
|
2323
2323
|
|
|
2324
2324
|
/**
|
|
2325
2325
|
* Event allowed parameters.
|
|
@@ -2381,7 +2381,7 @@ interface SortProductsCommonParams {
|
|
|
2381
2381
|
* @typedef SortProductsParams
|
|
2382
2382
|
* @since 0.5.14
|
|
2383
2383
|
*/
|
|
2384
|
-
|
|
2384
|
+
type SortProductsParams = SortProductsParams$3 & SortProductsParams$2 & SortProductsParams$1;
|
|
2385
2385
|
|
|
2386
2386
|
/**
|
|
2387
2387
|
* Event allowed parameters.
|
|
@@ -2439,7 +2439,7 @@ interface SelectProductCommonParams {
|
|
|
2439
2439
|
* @typedef SelectProductParams
|
|
2440
2440
|
* @since 0.5.14
|
|
2441
2441
|
*/
|
|
2442
|
-
|
|
2442
|
+
type SelectProductParams = SelectProductParams$3 & SelectProductParams$2 & SelectProductParams$1;
|
|
2443
2443
|
|
|
2444
2444
|
/**
|
|
2445
2445
|
* Event allowed parameters.
|
|
@@ -2495,7 +2495,7 @@ interface SearchProductNotFoundCommonParams {
|
|
|
2495
2495
|
* @typedef SearchProductNotFoundParams
|
|
2496
2496
|
* @since 0.5.14
|
|
2497
2497
|
*/
|
|
2498
|
-
|
|
2498
|
+
type SearchProductNotFoundParams = SearchProductNotFoundParams$3 & SearchProductNotFoundParams$2 & SearchProductNotFoundParams$1;
|
|
2499
2499
|
|
|
2500
2500
|
/**
|
|
2501
2501
|
* Event allowed parameters.
|
|
@@ -2551,7 +2551,7 @@ interface SearchProductAttemptCommonParams {
|
|
|
2551
2551
|
* @typedef SearchProductAttemptParams
|
|
2552
2552
|
* @since 0.5.14
|
|
2553
2553
|
*/
|
|
2554
|
-
|
|
2554
|
+
type SearchProductAttemptParams = SearchProductAttemptParams$3 & SearchProductAttemptParams$2 & SearchProductAttemptParams$1;
|
|
2555
2555
|
|
|
2556
2556
|
/**
|
|
2557
2557
|
* Event allowed parameters.
|
|
@@ -2607,7 +2607,7 @@ interface SearchProductSuccessCommonParams {
|
|
|
2607
2607
|
* @typedef SearchProductSuccessParams
|
|
2608
2608
|
* @since 0.5.14
|
|
2609
2609
|
*/
|
|
2610
|
-
|
|
2610
|
+
type SearchProductSuccessParams = SearchProductSuccessParams$3 & SearchProductSuccessParams$2 & SearchProductSuccessParams$1;
|
|
2611
2611
|
|
|
2612
2612
|
/**
|
|
2613
2613
|
* Event allowed parameters.
|
|
@@ -2667,7 +2667,7 @@ interface ProductImpressionCommonParams {
|
|
|
2667
2667
|
* @typedef ProductImpressionParams
|
|
2668
2668
|
* @since 0.5.14
|
|
2669
2669
|
*/
|
|
2670
|
-
|
|
2670
|
+
type ProductImpressionParams = ProductImpressionParams$3 & ProductImpressionParams$2 & ProductImpressionParams$1;
|
|
2671
2671
|
|
|
2672
2672
|
/**
|
|
2673
2673
|
* Event allowed parameters.
|
|
@@ -2727,7 +2727,7 @@ interface FilterProductsCommonParams {
|
|
|
2727
2727
|
* @typedef FilterProductsParams
|
|
2728
2728
|
* @since 0.5.14
|
|
2729
2729
|
*/
|
|
2730
|
-
|
|
2730
|
+
type FilterProductsParams = FilterProductsParams$3 & FilterProductsParams$2 & FilterProductsParams$1;
|
|
2731
2731
|
|
|
2732
2732
|
/**
|
|
2733
2733
|
* Event allowed parameters.
|
|
@@ -2781,7 +2781,7 @@ interface CustomizeProductCommonParams {
|
|
|
2781
2781
|
* @typedef CustomizeProductParams
|
|
2782
2782
|
* @since 0.5.14
|
|
2783
2783
|
*/
|
|
2784
|
-
|
|
2784
|
+
type CustomizeProductParams = CustomizeProductParams$3 & CustomizeProductParams$2 & CustomizeProductParams$1;
|
|
2785
2785
|
|
|
2786
2786
|
/**
|
|
2787
2787
|
* Event allowed parameters.
|
|
@@ -2839,7 +2839,7 @@ interface SetPaymentInfoCommonParams {
|
|
|
2839
2839
|
* @typedef SetPaymentInfoParams
|
|
2840
2840
|
* @since 0.5.14
|
|
2841
2841
|
*/
|
|
2842
|
-
|
|
2842
|
+
type SetPaymentInfoParams = SetPaymentInfoParams$3 & SetPaymentInfoParams$2 & SetPaymentInfoParams$1;
|
|
2843
2843
|
|
|
2844
2844
|
/**
|
|
2845
2845
|
* Event allowed parameters.
|
|
@@ -2895,7 +2895,7 @@ interface SelectPaymentTypeCommonParams {
|
|
|
2895
2895
|
* @typedef SelectPaymentTypeParams
|
|
2896
2896
|
* @since 0.5.14
|
|
2897
2897
|
*/
|
|
2898
|
-
|
|
2898
|
+
type SelectPaymentTypeParams = SelectPaymentTypeParams$3 & SelectPaymentTypeParams$2 & SelectPaymentTypeParams$1;
|
|
2899
2899
|
|
|
2900
2900
|
/**
|
|
2901
2901
|
* Event allowed parameters.
|
|
@@ -2957,7 +2957,7 @@ interface ChangePaymentTypeCommonParams {
|
|
|
2957
2957
|
* @typedef ChangePaymentTypeParams
|
|
2958
2958
|
* @since 0.5.14
|
|
2959
2959
|
*/
|
|
2960
|
-
|
|
2960
|
+
type ChangePaymentTypeParams = ChangePaymentTypeParams$3 & ChangePaymentTypeParams$2 & ChangePaymentTypeParams$1;
|
|
2961
2961
|
|
|
2962
2962
|
/**
|
|
2963
2963
|
* Event allowed parameters.
|
|
@@ -3013,7 +3013,7 @@ interface SearchPageContentCommonParams {
|
|
|
3013
3013
|
* @typedef SearchPageContentParams
|
|
3014
3014
|
* @since 0.5.14
|
|
3015
3015
|
*/
|
|
3016
|
-
|
|
3016
|
+
type SearchPageContentParams = SearchPageContentParams$3 & SearchPageContentParams$2 & SearchPageContentParams$1;
|
|
3017
3017
|
|
|
3018
3018
|
/**
|
|
3019
3019
|
* pageView event interface
|
|
@@ -3067,7 +3067,7 @@ interface PageViewCommonParams {
|
|
|
3067
3067
|
* @typedef PageViewParams
|
|
3068
3068
|
* @since 0.5.14
|
|
3069
3069
|
*/
|
|
3070
|
-
|
|
3070
|
+
type PageViewParams = PageViewParams$3 & PageViewParams$2 & PageViewParams$1;
|
|
3071
3071
|
|
|
3072
3072
|
/**
|
|
3073
3073
|
* Event allowed parameters.
|
|
@@ -3119,7 +3119,7 @@ interface GenerateLeadCommonParams {
|
|
|
3119
3119
|
* @typedef GenerateLeadParams
|
|
3120
3120
|
* @since 0.5.14
|
|
3121
3121
|
*/
|
|
3122
|
-
|
|
3122
|
+
type GenerateLeadParams = GenerateLeadParams$3 & GenerateLeadParams$2 & GenerateLeadParams$1;
|
|
3123
3123
|
|
|
3124
3124
|
/**
|
|
3125
3125
|
* Event allowed parameters.
|
|
@@ -3181,7 +3181,7 @@ interface RequestRefundCommonParams {
|
|
|
3181
3181
|
* @typedef RequestRefundParams
|
|
3182
3182
|
* @since 0.5.14
|
|
3183
3183
|
*/
|
|
3184
|
-
|
|
3184
|
+
type RequestRefundParams = RequestRefundParams$3 & RequestRefundParams$2 & RequestRefundParams$1;
|
|
3185
3185
|
|
|
3186
3186
|
/**
|
|
3187
3187
|
* Event allowed parameters.
|
|
@@ -3243,7 +3243,7 @@ interface RateOrderCommonParams {
|
|
|
3243
3243
|
* @typedef RateOrderParams
|
|
3244
3244
|
* @since 0.5.14
|
|
3245
3245
|
*/
|
|
3246
|
-
|
|
3246
|
+
type RateOrderParams = RateOrderParams$3 & RateOrderParams$2 & RateOrderParams$1;
|
|
3247
3247
|
|
|
3248
3248
|
/**
|
|
3249
3249
|
* Event allowed parameters.
|
|
@@ -3303,7 +3303,7 @@ interface CancelOrderCommonParams {
|
|
|
3303
3303
|
* @typedef CancelOrderParams
|
|
3304
3304
|
* @since 0.5.14
|
|
3305
3305
|
*/
|
|
3306
|
-
|
|
3306
|
+
type CancelOrderParams = CancelOrderParams$3 & CancelOrderParams$2 & CancelOrderParams$1;
|
|
3307
3307
|
|
|
3308
3308
|
/**
|
|
3309
3309
|
* Event allowed parameters.
|
|
@@ -3359,7 +3359,7 @@ interface ViewLoyaltyLevelCommonParams {
|
|
|
3359
3359
|
* @typedef ViewLoyaltyLevelParams
|
|
3360
3360
|
* @since 0.5.14
|
|
3361
3361
|
*/
|
|
3362
|
-
|
|
3362
|
+
type ViewLoyaltyLevelParams = ViewLoyaltyLevelParams$3 & ViewLoyaltyLevelParams$2 & ViewLoyaltyLevelParams$1;
|
|
3363
3363
|
|
|
3364
3364
|
/**
|
|
3365
3365
|
* Event allowed parameters.
|
|
@@ -3419,7 +3419,7 @@ interface SpendPointsCommonParams {
|
|
|
3419
3419
|
* @typedef SpendPointsParams
|
|
3420
3420
|
* @since 0.5.14
|
|
3421
3421
|
*/
|
|
3422
|
-
|
|
3422
|
+
type SpendPointsParams = SpendPointsParams$3 & SpendPointsParams$2 & SpendPointsParams$1;
|
|
3423
3423
|
|
|
3424
3424
|
/**
|
|
3425
3425
|
* Event allowed parameters.
|
|
@@ -3477,7 +3477,7 @@ interface SharePointsCommonParams {
|
|
|
3477
3477
|
* @typedef SharePointsParams
|
|
3478
3478
|
* @since 0.5.14
|
|
3479
3479
|
*/
|
|
3480
|
-
|
|
3480
|
+
type SharePointsParams = SharePointsParams$3 & SharePointsParams$2 & SharePointsParams$1;
|
|
3481
3481
|
|
|
3482
3482
|
/**
|
|
3483
3483
|
* Event allowed parameters.
|
|
@@ -3536,7 +3536,7 @@ interface EarnPointsCommonParams {
|
|
|
3536
3536
|
* @typedef EarnPointsParams
|
|
3537
3537
|
* @since 0.5.14
|
|
3538
3538
|
*/
|
|
3539
|
-
|
|
3539
|
+
type EarnPointsParams = EarnPointsParams$3 & EarnPointsParams$2 & EarnPointsParams$1;
|
|
3540
3540
|
|
|
3541
3541
|
/**
|
|
3542
3542
|
* Event allowed parameters.
|
|
@@ -3589,7 +3589,7 @@ interface CustomEventCommonParams {
|
|
|
3589
3589
|
* @typedef CustomEventParams
|
|
3590
3590
|
* @since 0.5.14
|
|
3591
3591
|
*/
|
|
3592
|
-
|
|
3592
|
+
type CustomEventParams = CustomEventParams$3 & CustomEventParams$2 & CustomEventParams$1;
|
|
3593
3593
|
|
|
3594
3594
|
/**
|
|
3595
3595
|
* Event allowed parameters.
|
|
@@ -3643,7 +3643,7 @@ interface RequestAssistanceCommonParams {
|
|
|
3643
3643
|
* @typedef RequestAssistanceParams
|
|
3644
3644
|
* @since 0.5.14
|
|
3645
3645
|
*/
|
|
3646
|
-
|
|
3646
|
+
type RequestAssistanceParams = RequestAssistanceParams$3 & RequestAssistanceParams$2 & RequestAssistanceParams$1;
|
|
3647
3647
|
|
|
3648
3648
|
/**
|
|
3649
3649
|
* Event allowed parameters.
|
|
@@ -3699,7 +3699,7 @@ interface SetLocationCommonParams {
|
|
|
3699
3699
|
* @typedef SetLocationParams
|
|
3700
3700
|
* @since 0.5.14
|
|
3701
3701
|
*/
|
|
3702
|
-
|
|
3702
|
+
type SetLocationParams = SetLocationParams$3 & SetLocationParams$2 & SetLocationParams$1;
|
|
3703
3703
|
|
|
3704
3704
|
/**
|
|
3705
3705
|
* Event allowed parameters.
|
|
@@ -3755,7 +3755,7 @@ interface OutOfCoverageCommonParams {
|
|
|
3755
3755
|
* @typedef OutOfCoverageParams
|
|
3756
3756
|
* @since 0.5.14
|
|
3757
3757
|
*/
|
|
3758
|
-
|
|
3758
|
+
type OutOfCoverageParams = OutOfCoverageParams$3 & OutOfCoverageParams$2 & OutOfCoverageParams$1;
|
|
3759
3759
|
|
|
3760
3760
|
/**
|
|
3761
3761
|
* Event allowed parameters.
|
|
@@ -3811,7 +3811,7 @@ interface FindLocationCommonParams {
|
|
|
3811
3811
|
* @typedef FindLocationParams
|
|
3812
3812
|
* @since 0.5.14
|
|
3813
3813
|
*/
|
|
3814
|
-
|
|
3814
|
+
type FindLocationParams = FindLocationParams$3 & FindLocationParams$2 & FindLocationParams$1;
|
|
3815
3815
|
|
|
3816
3816
|
/**
|
|
3817
3817
|
* Event allowed parameters.
|
|
@@ -3871,7 +3871,7 @@ interface ChangeLocationCommonParams {
|
|
|
3871
3871
|
* @typedef ChangeLocationParams
|
|
3872
3872
|
* @since 0.5.14
|
|
3873
3873
|
*/
|
|
3874
|
-
|
|
3874
|
+
type ChangeLocationParams = ChangeLocationParams$3 & ChangeLocationParams$2 & ChangeLocationParams$1;
|
|
3875
3875
|
|
|
3876
3876
|
/**
|
|
3877
3877
|
* Event allowed parameters.
|
|
@@ -3925,7 +3925,7 @@ interface ViewTrackingCommonParams {
|
|
|
3925
3925
|
* @typedef ViewTrackingParams
|
|
3926
3926
|
* @since 0.5.14
|
|
3927
3927
|
*/
|
|
3928
|
-
|
|
3928
|
+
type ViewTrackingParams = ViewTrackingParams$3 & ViewTrackingParams$2 & ViewTrackingParams$1;
|
|
3929
3929
|
|
|
3930
3930
|
/**
|
|
3931
3931
|
* Event allowed parameters.
|
|
@@ -3979,7 +3979,7 @@ interface ViewFulfillmentStepCommonParams {
|
|
|
3979
3979
|
* @typedef ViewFulfillmentStepParams
|
|
3980
3980
|
* @since 0.5.14
|
|
3981
3981
|
*/
|
|
3982
|
-
|
|
3982
|
+
type ViewFulfillmentStepParams = ViewFulfillmentStepParams$3 & ViewFulfillmentStepParams$2 & ViewFulfillmentStepParams$1;
|
|
3983
3983
|
|
|
3984
3984
|
/**
|
|
3985
3985
|
* Event allowed parameters.
|
|
@@ -4033,7 +4033,7 @@ interface ViewCreditsCommonParams {
|
|
|
4033
4033
|
* @typedef ViewCreditsParams
|
|
4034
4034
|
* @since 0.5.14
|
|
4035
4035
|
*/
|
|
4036
|
-
|
|
4036
|
+
type ViewCreditsParams = ViewCreditsParams$3 & ViewCreditsParams$2 & ViewCreditsParams$1;
|
|
4037
4037
|
|
|
4038
4038
|
/**
|
|
4039
4039
|
* Event allowed parameters.
|
|
@@ -4089,7 +4089,7 @@ interface SpendCreditsCommonParams {
|
|
|
4089
4089
|
* @typedef SpendCreditsParams
|
|
4090
4090
|
* @since 0.5.14
|
|
4091
4091
|
*/
|
|
4092
|
-
|
|
4092
|
+
type SpendCreditsParams = SpendCreditsParams$3 & SpendCreditsParams$2 & SpendCreditsParams$1;
|
|
4093
4093
|
|
|
4094
4094
|
/**
|
|
4095
4095
|
* Event allowed parameters.
|
|
@@ -4145,7 +4145,7 @@ interface AddCreditsCommonParams {
|
|
|
4145
4145
|
* @typedef AddCreditsParams
|
|
4146
4146
|
* @since 0.5.14
|
|
4147
4147
|
*/
|
|
4148
|
-
|
|
4148
|
+
type AddCreditsParams = AddCreditsParams$3 & AddCreditsParams$2 & AddCreditsParams$1;
|
|
4149
4149
|
|
|
4150
4150
|
/**
|
|
4151
4151
|
* Event allowed parameters.
|
|
@@ -4197,7 +4197,7 @@ interface ViewQRStoreCouponCommonParams {
|
|
|
4197
4197
|
* @typedef ViewQRStoreCouponParams
|
|
4198
4198
|
* @since 0.5.14
|
|
4199
4199
|
*/
|
|
4200
|
-
|
|
4200
|
+
type ViewQRStoreCouponParams = ViewQRStoreCouponParams$3 & ViewQRStoreCouponParams$2 & ViewQRStoreCouponParams$1;
|
|
4201
4201
|
|
|
4202
4202
|
/**
|
|
4203
4203
|
* Event allowed parameters.
|
|
@@ -4253,7 +4253,7 @@ interface ViewBenefitsWalletCommonParams {
|
|
|
4253
4253
|
* @typedef ViewBenefitsWalletParams
|
|
4254
4254
|
* @since 0.5.14
|
|
4255
4255
|
*/
|
|
4256
|
-
|
|
4256
|
+
type ViewBenefitsWalletParams = ViewBenefitsWalletParams$3 & ViewBenefitsWalletParams$2 & ViewBenefitsWalletParams$1;
|
|
4257
4257
|
|
|
4258
4258
|
/**
|
|
4259
4259
|
* Event allowed parameters.
|
|
@@ -4311,7 +4311,7 @@ interface ViewBenefitDetailsCommonParams {
|
|
|
4311
4311
|
* @typedef ViewBenefitDetailsParams
|
|
4312
4312
|
* @since 0.5.14
|
|
4313
4313
|
*/
|
|
4314
|
-
|
|
4314
|
+
type ViewBenefitDetailsParams = ViewBenefitDetailsParams$3 & ViewBenefitDetailsParams$2 & ViewBenefitDetailsParams$1;
|
|
4315
4315
|
|
|
4316
4316
|
/**
|
|
4317
4317
|
* Event allowed parameters.
|
|
@@ -4369,7 +4369,7 @@ interface RemoveBenefitCommonParams {
|
|
|
4369
4369
|
* @typedef RemoveBenefitParams
|
|
4370
4370
|
* @since 0.5.14
|
|
4371
4371
|
*/
|
|
4372
|
-
|
|
4372
|
+
type RemoveBenefitParams = RemoveBenefitParams$3 & RemoveBenefitParams$2 & RemoveBenefitParams$1;
|
|
4373
4373
|
|
|
4374
4374
|
/**
|
|
4375
4375
|
* Event allowed parameters.
|
|
@@ -4427,7 +4427,7 @@ interface RedeemCouponCodeCommonParams {
|
|
|
4427
4427
|
* @extends GoogleRedeemCouponCodeParams
|
|
4428
4428
|
* @extends FacebookRedeemCouponCodeParams
|
|
4429
4429
|
*/
|
|
4430
|
-
|
|
4430
|
+
type RedeemCouponCodeParams = RedeemCouponCodeParams$3 & RedeemCouponCodeParams$2 & RedeemCouponCodeParams$1;
|
|
4431
4431
|
|
|
4432
4432
|
/**
|
|
4433
4433
|
* Event allowed parameters.
|
|
@@ -4485,7 +4485,7 @@ interface CouponCodeErrorCommonParams {
|
|
|
4485
4485
|
* @typedef CouponCodeErrorParams
|
|
4486
4486
|
* @since 0.5.14
|
|
4487
4487
|
*/
|
|
4488
|
-
|
|
4488
|
+
type CouponCodeErrorParams = CouponCodeErrorParams$3 & CouponCodeErrorParams$2 & CouponCodeErrorParams$1;
|
|
4489
4489
|
|
|
4490
4490
|
/**
|
|
4491
4491
|
* Event allowed parameters.
|
|
@@ -4543,7 +4543,7 @@ interface ApplyBenefitCommonParams {
|
|
|
4543
4543
|
* @typedef ApplyBenefitParams
|
|
4544
4544
|
* @since 0.5.14
|
|
4545
4545
|
*/
|
|
4546
|
-
|
|
4546
|
+
type ApplyBenefitParams = ApplyBenefitParams$3 & ApplyBenefitParams$2 & ApplyBenefitParams$1;
|
|
4547
4547
|
|
|
4548
4548
|
/**
|
|
4549
4549
|
* Event allowed parameters.
|
|
@@ -4598,7 +4598,7 @@ interface InitiateCheckoutCommonParams {
|
|
|
4598
4598
|
* @typedef InitiateCheckoutParams
|
|
4599
4599
|
* @since 0.5.14
|
|
4600
4600
|
*/
|
|
4601
|
-
|
|
4601
|
+
type InitiateCheckoutParams = InitiateCheckoutParams$3 & InitiateCheckoutParams$2 & InitiateCheckoutParams$1;
|
|
4602
4602
|
|
|
4603
4603
|
/**
|
|
4604
4604
|
* Event allowed parameters.
|
|
@@ -4654,7 +4654,7 @@ interface CheckoutActionCommonParams {
|
|
|
4654
4654
|
* @typedef CheckoutActionParams
|
|
4655
4655
|
* @since 0.5.14
|
|
4656
4656
|
*/
|
|
4657
|
-
|
|
4657
|
+
type CheckoutActionParams = CheckoutActionParams$3 & CheckoutActionParams$2 & CheckoutActionParams$1;
|
|
4658
4658
|
|
|
4659
4659
|
/**
|
|
4660
4660
|
* Event allowed parameters.
|
|
@@ -4710,7 +4710,7 @@ interface ViewCategoryCommonParams {
|
|
|
4710
4710
|
* @typedef ViewCategoryParams
|
|
4711
4711
|
* @since 0.5.14
|
|
4712
4712
|
*/
|
|
4713
|
-
|
|
4713
|
+
type ViewCategoryParams = ViewCategoryParams$3 & ViewCategoryParams$2 & ViewCategoryParams$1;
|
|
4714
4714
|
|
|
4715
4715
|
/**
|
|
4716
4716
|
* Event allowed parameters.
|
|
@@ -4770,7 +4770,7 @@ interface SelectCategoryCommonParams {
|
|
|
4770
4770
|
* @typedef SelectCategoryParams
|
|
4771
4771
|
* @since 0.5.14
|
|
4772
4772
|
*/
|
|
4773
|
-
|
|
4773
|
+
type SelectCategoryParams = SelectCategoryParams$3 & SelectCategoryParams$2 & SelectCategoryParams$1;
|
|
4774
4774
|
|
|
4775
4775
|
/**
|
|
4776
4776
|
* Event allowed parameters.
|
|
@@ -4826,7 +4826,7 @@ interface SearchCategoryAttemptCommonParams {
|
|
|
4826
4826
|
* @typedef SearchCategoryAttemptParams
|
|
4827
4827
|
* @since 0.5.14
|
|
4828
4828
|
*/
|
|
4829
|
-
|
|
4829
|
+
type SearchCategoryAttemptParams = SearchCategoryAttemptParams$3 & SearchCategoryAttemptParams$2 & SearchCategoryAttemptParams$1;
|
|
4830
4830
|
|
|
4831
4831
|
/**
|
|
4832
4832
|
* Event allowed parameters.
|
|
@@ -4887,7 +4887,7 @@ interface CategoryImpressionCommonParams {
|
|
|
4887
4887
|
* @typedef CategoryImpressionParams
|
|
4888
4888
|
* @since 0.5.14
|
|
4889
4889
|
*/
|
|
4890
|
-
|
|
4890
|
+
type CategoryImpressionParams = CategoryImpressionParams$3 & CategoryImpressionParams$2 & CategoryImpressionParams$1;
|
|
4891
4891
|
|
|
4892
4892
|
/**
|
|
4893
4893
|
* Event allowed parameters.
|
|
@@ -4949,7 +4949,7 @@ interface BookAppointmentCommonParams {
|
|
|
4949
4949
|
* @typedef BookAppointmentParams
|
|
4950
4950
|
* @since 0.5.14
|
|
4951
4951
|
*/
|
|
4952
|
-
|
|
4952
|
+
type BookAppointmentParams = BookAppointmentParams$3 & BookAppointmentParams$2 & BookAppointmentParams$1;
|
|
4953
4953
|
|
|
4954
4954
|
/**
|
|
4955
4955
|
* Event allowed parameters.
|
|
@@ -5007,7 +5007,7 @@ interface UpdateBillingInfoCommonParams {
|
|
|
5007
5007
|
* @typedef UpdateBillingInfoParams
|
|
5008
5008
|
* @since 0.5.14
|
|
5009
5009
|
*/
|
|
5010
|
-
|
|
5010
|
+
type UpdateBillingInfoParams = UpdateBillingInfoParams$3 & UpdateBillingInfoParams$2 & UpdateBillingInfoParams$1;
|
|
5011
5011
|
|
|
5012
5012
|
/**
|
|
5013
5013
|
* Event allowed parameters.
|
|
@@ -5063,7 +5063,7 @@ interface SelectBillingInfoCommonParams {
|
|
|
5063
5063
|
* @typedef SelectBillingInfoParams
|
|
5064
5064
|
* @since 0.5.14
|
|
5065
5065
|
*/
|
|
5066
|
-
|
|
5066
|
+
type SelectBillingInfoParams = SelectBillingInfoParams$3 & SelectBillingInfoParams$2 & SelectBillingInfoParams$1;
|
|
5067
5067
|
|
|
5068
5068
|
/**
|
|
5069
5069
|
* Event allowed parameters.
|
|
@@ -5117,7 +5117,7 @@ interface AddBillingInfoCommonParams {
|
|
|
5117
5117
|
* @typedef AddBillingInfoParams
|
|
5118
5118
|
* @since 0.5.14
|
|
5119
5119
|
*/
|
|
5120
|
-
|
|
5120
|
+
type AddBillingInfoParams = AddBillingInfoParams$3 & AddBillingInfoParams$2 & AddBillingInfoParams$1;
|
|
5121
5121
|
|
|
5122
5122
|
/**
|
|
5123
5123
|
* Event allowed parameters.
|
|
@@ -5177,7 +5177,7 @@ interface SelectBannerCommonParams {
|
|
|
5177
5177
|
* @typedef SelectBannerParams
|
|
5178
5178
|
* @since 0.5.14
|
|
5179
5179
|
*/
|
|
5180
|
-
|
|
5180
|
+
type SelectBannerParams = SelectBannerParams$3 & SelectBannerParams$2 & SelectBannerParams$1;
|
|
5181
5181
|
|
|
5182
5182
|
/**
|
|
5183
5183
|
* Event allowed parameters.
|
|
@@ -5239,7 +5239,7 @@ interface BannerImpressionCommonParams {
|
|
|
5239
5239
|
* @typedef BannerImpressionParams
|
|
5240
5240
|
* @since 0.5.14
|
|
5241
5241
|
*/
|
|
5242
|
-
|
|
5242
|
+
type BannerImpressionParams = BannerImpressionParams$3 & BannerImpressionParams$2 & BannerImpressionParams$1;
|
|
5243
5243
|
|
|
5244
5244
|
/**
|
|
5245
5245
|
* Event allowed parameters.
|
|
@@ -5299,7 +5299,7 @@ interface SignUpCommonParams {
|
|
|
5299
5299
|
* @typedef SignUpParams
|
|
5300
5300
|
* @since 0.5.14
|
|
5301
5301
|
*/
|
|
5302
|
-
|
|
5302
|
+
type SignUpParams = SignUpParams$3 & SignUpParams$2 & SignUpParams$1;
|
|
5303
5303
|
|
|
5304
5304
|
/**
|
|
5305
5305
|
* Event allowed parameters.
|
|
@@ -5355,7 +5355,7 @@ interface SignOutCommonParams {
|
|
|
5355
5355
|
* @typedef SignOutParams
|
|
5356
5356
|
* @since 0.5.14
|
|
5357
5357
|
*/
|
|
5358
|
-
|
|
5358
|
+
type SignOutParams = SignOutParams$3 & SignOutParams$2 & SignOutParams$1;
|
|
5359
5359
|
|
|
5360
5360
|
/**
|
|
5361
5361
|
* Event allowed parameters.
|
|
@@ -5413,7 +5413,7 @@ interface SignInCommonParams {
|
|
|
5413
5413
|
* @typedef SignInParams
|
|
5414
5414
|
* @since 0.5.14
|
|
5415
5415
|
*/
|
|
5416
|
-
|
|
5416
|
+
type SignInParams = SignInParams$3 & SignInParams$2 & SignInParams$1;
|
|
5417
5417
|
|
|
5418
5418
|
/**
|
|
5419
5419
|
* Event allowed parameters.
|
|
@@ -5467,7 +5467,7 @@ interface ChangePasswordSuccessCommonParams {
|
|
|
5467
5467
|
* @typedef ChangePasswordSuccessParams
|
|
5468
5468
|
* @since 0.5.14
|
|
5469
5469
|
*/
|
|
5470
|
-
|
|
5470
|
+
type ChangePasswordSuccessParams = ChangePasswordSuccessParams$3 & ChangePasswordSuccessParams$2 & ChangePasswordSuccessParams$1;
|
|
5471
5471
|
|
|
5472
5472
|
/**
|
|
5473
5473
|
* Event allowed parameters.
|
|
@@ -5525,7 +5525,7 @@ interface ChangePasswordFailCommonParams {
|
|
|
5525
5525
|
* @typedef ChangePasswordFailParams
|
|
5526
5526
|
* @since 0.5.14
|
|
5527
5527
|
*/
|
|
5528
|
-
|
|
5528
|
+
type ChangePasswordFailParams = ChangePasswordFailParams$3 & ChangePasswordFailParams$2 & ChangePasswordFailParams$1;
|
|
5529
5529
|
|
|
5530
5530
|
/**
|
|
5531
5531
|
* Event allowed parameters.
|
|
@@ -5579,7 +5579,7 @@ interface SignUpAttemptCommonParams {
|
|
|
5579
5579
|
* @typedef SignUpAttemptParams
|
|
5580
5580
|
* @since 0.5.14
|
|
5581
5581
|
*/
|
|
5582
|
-
|
|
5582
|
+
type SignUpAttemptParams = SignUpAttemptParams$3 & SignUpAttemptParams$2 & SignUpAttemptParams$1;
|
|
5583
5583
|
|
|
5584
5584
|
/**
|
|
5585
5585
|
* Event allowed parameters.
|
|
@@ -5634,7 +5634,7 @@ interface ChangePasswordAttemptCommonParams {
|
|
|
5634
5634
|
* @typedef ChangePasswordAttemptParams
|
|
5635
5635
|
* @since 0.5.14
|
|
5636
5636
|
*/
|
|
5637
|
-
|
|
5637
|
+
type ChangePasswordAttemptParams = ChangePasswordAttemptParams$3 & ChangePasswordAttemptParams$2 & ChangePasswordAttemptParams$1;
|
|
5638
5638
|
|
|
5639
5639
|
declare const events: {
|
|
5640
5640
|
auth: {
|
|
@@ -5796,4 +5796,4 @@ declare const identifyUser: (identify: Segment$1.Traits) => void;
|
|
|
5796
5796
|
*/
|
|
5797
5797
|
declare const checkInit: () => boolean;
|
|
5798
5798
|
|
|
5799
|
-
export { AnalyticsMeta, AnalyticsProvidersConfigs, AuthProviderMethods, FacebookConversionsApiConfig, FacebookPixelCommonEventParams, FacebookPixelCustomEventParams, FacebookPixelProvider, FacebookPixelProviderConfig, Fbq, GoogleAnalyticsCommonEventParams, GoogleAnalyticsCustomEventParams, GoogleAnalyticsProvider, GoogleAnalyticsProviderConfig, Gtag, InitAnalyticsConfig, InitAnalyticsConfigMeta, Providers, Segment$1 as Segment, SegmentCommonEventParams, SegmentCustomEventParams, SegmentProvider, SegmentProviderConfig, SupportedProviders, checkInit, events, identifyUser, initAnalytics, updateActiveVendor };
|
|
5799
|
+
export { type AnalyticsMeta, type AnalyticsProvidersConfigs, type AuthProviderMethods, type FacebookConversionsApiConfig, type FacebookPixelCommonEventParams, type FacebookPixelCustomEventParams, type FacebookPixelProvider, type FacebookPixelProviderConfig, Fbq, type GoogleAnalyticsCommonEventParams, type GoogleAnalyticsCustomEventParams, type GoogleAnalyticsProvider, type GoogleAnalyticsProviderConfig, Gtag, type InitAnalyticsConfig, type InitAnalyticsConfigMeta, Providers, Segment$1 as Segment, type SegmentCommonEventParams, type SegmentCustomEventParams, type SegmentProvider, type SegmentProviderConfig, type SupportedProviders, checkInit, events, identifyUser, initAnalytics, updateActiveVendor };
|