@artisan-commerce/analytics-web 0.2.0-canary.105 → 0.2.0-canary.106
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.1.0
|
|
401
401
|
*/
|
|
402
|
-
|
|
402
|
+
type AnalyticsProviderTypes = AnalyticsProvider | GlobalProvider;
|
|
403
403
|
/**
|
|
404
404
|
* Shared params across every event.
|
|
405
405
|
*
|
|
@@ -512,7 +512,7 @@ declare namespace Fbq {
|
|
|
512
512
|
* @typedef AnalyticsProvidersConfigs
|
|
513
513
|
* @since 0.1.0
|
|
514
514
|
*/
|
|
515
|
-
|
|
515
|
+
type AnalyticsProvidersConfigs = Partial<GoogleAnalyticsProviderConfig> | Partial<FacebookPixelProviderConfig>;
|
|
516
516
|
/**
|
|
517
517
|
* Analytics event metadata to be included in every sent event.
|
|
518
518
|
*
|
|
@@ -549,14 +549,14 @@ interface AnalyticsMeta {
|
|
|
549
549
|
* @typedef ArtisnPlatform
|
|
550
550
|
* @since 0.1.0
|
|
551
551
|
*/
|
|
552
|
-
|
|
552
|
+
type SupportedProviders = "GOOGLE_ANALYTICS" | "FACEBOOK_PIXEL" | "SEGMENT";
|
|
553
553
|
/**
|
|
554
554
|
* Supported auth providers methods.
|
|
555
555
|
*
|
|
556
556
|
* @typedef AuthProviderMethods
|
|
557
557
|
* @since 0.1.0
|
|
558
558
|
*/
|
|
559
|
-
|
|
559
|
+
type AuthProviderMethods = "Google" | "Facebook" | "Apple" | "Email and Password" | "Phone";
|
|
560
560
|
|
|
561
561
|
/**
|
|
562
562
|
* Analytics Provider base intance config.
|
|
@@ -834,14 +834,14 @@ interface UpdateWorkflowParams$1 extends SegmentCommonEventParams, SegmentCustom
|
|
|
834
834
|
* @typedef Workflow
|
|
835
835
|
* @since 0.1.0
|
|
836
836
|
*/
|
|
837
|
-
|
|
837
|
+
type Workflow = "Delivery" | "Pickup" | "Other";
|
|
838
838
|
/**
|
|
839
839
|
* PaymentType types
|
|
840
840
|
*
|
|
841
841
|
* @typedef PaymentType
|
|
842
842
|
* @since 0.1.0
|
|
843
843
|
*/
|
|
844
|
-
|
|
844
|
+
type PaymentType = "Cash" | "Card" | "Dataphone" | "Other";
|
|
845
845
|
|
|
846
846
|
/**
|
|
847
847
|
* updateWorkflow event interface.
|
|
@@ -861,7 +861,7 @@ interface UpdateWorkflowCommonParams {
|
|
|
861
861
|
* @typedef UpdateWorkflowParams
|
|
862
862
|
* @since 0.1.0
|
|
863
863
|
*/
|
|
864
|
-
|
|
864
|
+
type UpdateWorkflowParams = UpdateWorkflowParams$3 & UpdateWorkflowParams$2 & UpdateWorkflowParams$1;
|
|
865
865
|
|
|
866
866
|
/**
|
|
867
867
|
* Event allowed parameters.
|
|
@@ -915,7 +915,7 @@ interface SelectWorkflowCommonParams {
|
|
|
915
915
|
* @typedef SelectWorkflowParams
|
|
916
916
|
* @since 0.1.0
|
|
917
917
|
*/
|
|
918
|
-
|
|
918
|
+
type SelectWorkflowParams = SelectWorkflowParams$3 & SelectWorkflowParams$2 & SelectWorkflowParams$1;
|
|
919
919
|
|
|
920
920
|
/**
|
|
921
921
|
* Event allowed parameters.
|
|
@@ -971,7 +971,7 @@ interface SetVendorCommonParams {
|
|
|
971
971
|
* @typedef SetVendorParams
|
|
972
972
|
* @since 0.1.0
|
|
973
973
|
*/
|
|
974
|
-
|
|
974
|
+
type SetVendorParams = SetVendorParams$3 & SetVendorParams$2 & SetVendorParams$1;
|
|
975
975
|
|
|
976
976
|
/**
|
|
977
977
|
* Event allowed parameters.
|
|
@@ -1031,7 +1031,7 @@ interface ChangeVendorCommonParams {
|
|
|
1031
1031
|
* @typedef ChangeVendorParams
|
|
1032
1032
|
* @since 0.1.0
|
|
1033
1033
|
*/
|
|
1034
|
-
|
|
1034
|
+
type ChangeVendorParams = ChangeVendorParams$3 & ChangeVendorParams$2 & ChangeVendorParams$1;
|
|
1035
1035
|
|
|
1036
1036
|
/**
|
|
1037
1037
|
* Event allowed parameters.
|
|
@@ -1089,7 +1089,7 @@ interface UpdateUserInfoCommonParams {
|
|
|
1089
1089
|
* @typedef UpdateUserInfoParams
|
|
1090
1090
|
* @since 0.1.0
|
|
1091
1091
|
*/
|
|
1092
|
-
|
|
1092
|
+
type UpdateUserInfoParams = UpdateUserInfoParams$3 & UpdateUserInfoParams$2 & UpdateUserInfoParams$1;
|
|
1093
1093
|
|
|
1094
1094
|
/**
|
|
1095
1095
|
* Event allowed parameters.
|
|
@@ -1145,7 +1145,7 @@ interface SetUserInfoCommonParams {
|
|
|
1145
1145
|
* @typedef SetUserInfoParams
|
|
1146
1146
|
* @since 0.1.0
|
|
1147
1147
|
*/
|
|
1148
|
-
|
|
1148
|
+
type SetUserInfoParams = SetUserInfoParams$3 & SetUserInfoParams$2 & SetUserInfoParams$1;
|
|
1149
1149
|
|
|
1150
1150
|
/**
|
|
1151
1151
|
* Event allowed parameters.
|
|
@@ -1199,7 +1199,7 @@ interface SetStoreCommonParams {
|
|
|
1199
1199
|
* @typedef SetStoreParams
|
|
1200
1200
|
* @since 0.1.0
|
|
1201
1201
|
*/
|
|
1202
|
-
|
|
1202
|
+
type SetStoreParams = SetStoreParams$3 & SetStoreParams$2 & SetStoreParams$1;
|
|
1203
1203
|
|
|
1204
1204
|
/**
|
|
1205
1205
|
* Event allowed parameters.
|
|
@@ -1255,7 +1255,7 @@ interface ChangeStoreCommonParams {
|
|
|
1255
1255
|
* @typedef ChangeStoreParams
|
|
1256
1256
|
* @since 0.1.0
|
|
1257
1257
|
*/
|
|
1258
|
-
|
|
1258
|
+
type ChangeStoreParams = ChangeStoreParams$3 & ChangeStoreParams$2 & ChangeStoreParams$1;
|
|
1259
1259
|
|
|
1260
1260
|
/**
|
|
1261
1261
|
* Event allowed parameters.
|
|
@@ -1315,7 +1315,7 @@ interface ShareCommonParams {
|
|
|
1315
1315
|
* @typedef ShareParams
|
|
1316
1316
|
* @since 0.1.0
|
|
1317
1317
|
*/
|
|
1318
|
-
|
|
1318
|
+
type ShareParams = ShareParams$3 & ShareParams$2 & ShareParams$1;
|
|
1319
1319
|
|
|
1320
1320
|
/**
|
|
1321
1321
|
* Event allowed parameters.
|
|
@@ -1375,7 +1375,7 @@ interface ViewCartCommonParams {
|
|
|
1375
1375
|
* @typedef ViewCartParams
|
|
1376
1376
|
* @since 0.1.0
|
|
1377
1377
|
*/
|
|
1378
|
-
|
|
1378
|
+
type ViewCartParams = ViewCartParams$3 & ViewCartParams$2 & ViewCartParams$1;
|
|
1379
1379
|
|
|
1380
1380
|
/**
|
|
1381
1381
|
* Event allowed parameters.
|
|
@@ -1437,7 +1437,7 @@ interface UpdateProductInWishlistCommonParams {
|
|
|
1437
1437
|
* @typedef UpdateProductInWishlistParams
|
|
1438
1438
|
* @since 0.1.0
|
|
1439
1439
|
*/
|
|
1440
|
-
|
|
1440
|
+
type UpdateProductInWishlistParams = UpdateProductInWishlistParams$3 & UpdateProductInWishlistParams$2 & UpdateProductInWishlistParams$1;
|
|
1441
1441
|
|
|
1442
1442
|
/**
|
|
1443
1443
|
* Event allowed parameters.
|
|
@@ -1503,7 +1503,7 @@ interface UpdateProductInCartCommonParams {
|
|
|
1503
1503
|
* @typedef UpdateProductInCartParams
|
|
1504
1504
|
* @since 0.1.0
|
|
1505
1505
|
*/
|
|
1506
|
-
|
|
1506
|
+
type UpdateProductInCartParams = UpdateProductInCartParams$3 & UpdateProductInCartParams$2 & UpdateProductInCartParams$1;
|
|
1507
1507
|
|
|
1508
1508
|
/**
|
|
1509
1509
|
* Event allowed parameters.
|
|
@@ -1563,7 +1563,7 @@ interface RemoveProductFromWishlistCommonParams {
|
|
|
1563
1563
|
* @typedef RemoveProductFromWishlistParams
|
|
1564
1564
|
* @since 0.1.0
|
|
1565
1565
|
*/
|
|
1566
|
-
|
|
1566
|
+
type RemoveProductFromWishlistParams = RemoveProductFromWishlistParams$3 & RemoveProductFromWishlistParams$2 & RemoveProductFromWishlistParams$1;
|
|
1567
1567
|
|
|
1568
1568
|
/**
|
|
1569
1569
|
* Event allowed parameters.
|
|
@@ -1627,7 +1627,7 @@ interface RemoveProductFromCartCommonParams {
|
|
|
1627
1627
|
* @typedef RemoveProductFromCartParams
|
|
1628
1628
|
* @since 0.1.0
|
|
1629
1629
|
*/
|
|
1630
|
-
|
|
1630
|
+
type RemoveProductFromCartParams = RemoveProductFromCartParams$3 & RemoveProductFromCartParams$2 & RemoveProductFromCartParams$1;
|
|
1631
1631
|
|
|
1632
1632
|
/**
|
|
1633
1633
|
* Event allowed parameters.
|
|
@@ -1685,7 +1685,7 @@ interface ClearCartCommonParams {
|
|
|
1685
1685
|
* @typedef ClearCartParams
|
|
1686
1686
|
* @since 0.1.0
|
|
1687
1687
|
*/
|
|
1688
|
-
|
|
1688
|
+
type ClearCartParams = ClearCartParams$3 & ClearCartParams$2 & ClearCartParams$1;
|
|
1689
1689
|
|
|
1690
1690
|
/**
|
|
1691
1691
|
* Event allowed parameters.
|
|
@@ -1745,7 +1745,7 @@ interface AddProductToWishlistCommonParams {
|
|
|
1745
1745
|
* @typedef AddProductToWishlistParams
|
|
1746
1746
|
* @since 0.1.0
|
|
1747
1747
|
*/
|
|
1748
|
-
|
|
1748
|
+
type AddProductToWishlistParams = AddProductToWishlistParams$3 & AddProductToWishlistParams$2 & AddProductToWishlistParams$1;
|
|
1749
1749
|
|
|
1750
1750
|
/**
|
|
1751
1751
|
* Event allowed parameters.
|
|
@@ -1809,7 +1809,7 @@ interface AddProductToCartCommonParams {
|
|
|
1809
1809
|
* @typedef AddProductToCartParams
|
|
1810
1810
|
* @since 0.1.0
|
|
1811
1811
|
*/
|
|
1812
|
-
|
|
1812
|
+
type AddProductToCartParams = AddProductToCartParams$3 & AddProductToCartParams$2 & AddProductToCartParams$1;
|
|
1813
1813
|
|
|
1814
1814
|
/**
|
|
1815
1815
|
* Event allowed parameters.
|
|
@@ -1869,7 +1869,7 @@ interface UpdateShippingAddressCommonParams {
|
|
|
1869
1869
|
* @typedef UpdateShippingAddressParams
|
|
1870
1870
|
* @since 0.1.0
|
|
1871
1871
|
*/
|
|
1872
|
-
|
|
1872
|
+
type UpdateShippingAddressParams = UpdateShippingAddressParams$3 & UpdateShippingAddressParams$2 & UpdateShippingAddressParams$1;
|
|
1873
1873
|
|
|
1874
1874
|
/**
|
|
1875
1875
|
* Event allowed parameters.
|
|
@@ -1935,7 +1935,7 @@ interface SelectShippingAddressCommonParams {
|
|
|
1935
1935
|
* @typedef SelectShippingAddressParams
|
|
1936
1936
|
* @since 0.1.0
|
|
1937
1937
|
*/
|
|
1938
|
-
|
|
1938
|
+
type SelectShippingAddressParams = SelectShippingAddressParams$3 & SelectShippingAddressParams$2 & SelectShippingAddressParams$1;
|
|
1939
1939
|
|
|
1940
1940
|
/**
|
|
1941
1941
|
* Event allowed parameters.
|
|
@@ -1997,7 +1997,7 @@ interface AddShippingAddressCommonParams {
|
|
|
1997
1997
|
* @typedef AddShippingAddressParams
|
|
1998
1998
|
* @since 0.1.0
|
|
1999
1999
|
*/
|
|
2000
|
-
|
|
2000
|
+
type AddShippingAddressParams = AddShippingAddressParams$3 & AddShippingAddressParams$2 & AddShippingAddressParams$1;
|
|
2001
2001
|
|
|
2002
2002
|
/**
|
|
2003
2003
|
* Event allowed parameters.
|
|
@@ -2049,7 +2049,7 @@ interface ViewSettingsCommonParams {
|
|
|
2049
2049
|
* @typedef ViewSettingsParams
|
|
2050
2050
|
* @since 0.1.0
|
|
2051
2051
|
*/
|
|
2052
|
-
|
|
2052
|
+
type ViewSettingsParams = ViewSettingsParams$3 & ViewSettingsParams$2 & ViewSettingsParams$1;
|
|
2053
2053
|
|
|
2054
2054
|
/**
|
|
2055
2055
|
* Event allowed parameters.
|
|
@@ -2117,7 +2117,7 @@ interface PurchaseSuccessCommonParams {
|
|
|
2117
2117
|
* @typedef PurchaseSuccessParams
|
|
2118
2118
|
* @since 0.1.0
|
|
2119
2119
|
*/
|
|
2120
|
-
|
|
2120
|
+
type PurchaseSuccessParams = PurchaseSuccessParams$3 & PurchaseSuccessParams$2 & PurchaseSuccessParams$1;
|
|
2121
2121
|
|
|
2122
2122
|
/**
|
|
2123
2123
|
* Event allowed parameters.
|
|
@@ -2187,7 +2187,7 @@ interface PurchaseFailCommonParams {
|
|
|
2187
2187
|
* @typedef PurchaseFailParams
|
|
2188
2188
|
* @since 0.1.0
|
|
2189
2189
|
*/
|
|
2190
|
-
|
|
2190
|
+
type PurchaseFailParams = PurchaseFailParams$3 & PurchaseFailParams$2 & PurchaseFailParams$1;
|
|
2191
2191
|
|
|
2192
2192
|
/**
|
|
2193
2193
|
* Event allowed parameters.
|
|
@@ -2253,7 +2253,7 @@ interface PurchaseAttemptCommonParams {
|
|
|
2253
2253
|
* @typedef PurchaseAttemptParams
|
|
2254
2254
|
* @since 0.1.0
|
|
2255
2255
|
*/
|
|
2256
|
-
|
|
2256
|
+
type PurchaseAttemptParams = PurchaseAttemptParams$3 & PurchaseAttemptParams$2 & PurchaseAttemptParams$1;
|
|
2257
2257
|
|
|
2258
2258
|
/**
|
|
2259
2259
|
* Event allowed parameters.
|
|
@@ -2309,7 +2309,7 @@ interface ViewProductDetailsCommonParams {
|
|
|
2309
2309
|
* @typedef ViewProductDetailsParams
|
|
2310
2310
|
* @since 0.1.0
|
|
2311
2311
|
*/
|
|
2312
|
-
|
|
2312
|
+
type ViewProductDetailsParams = ViewProductDetailsParams$3 & ViewProductDetailsParams$2 & ViewProductDetailsParams$1;
|
|
2313
2313
|
|
|
2314
2314
|
/**
|
|
2315
2315
|
* Event allowed parameters.
|
|
@@ -2371,7 +2371,7 @@ interface SortProductsCommonParams {
|
|
|
2371
2371
|
* @typedef SortProductsParams
|
|
2372
2372
|
* @since 0.1.0
|
|
2373
2373
|
*/
|
|
2374
|
-
|
|
2374
|
+
type SortProductsParams = SortProductsParams$3 & SortProductsParams$2 & SortProductsParams$1;
|
|
2375
2375
|
|
|
2376
2376
|
/**
|
|
2377
2377
|
* Event allowed parameters.
|
|
@@ -2429,7 +2429,7 @@ interface SelectProductCommonParams {
|
|
|
2429
2429
|
* @typedef SelectProductParams
|
|
2430
2430
|
* @since 0.1.0
|
|
2431
2431
|
*/
|
|
2432
|
-
|
|
2432
|
+
type SelectProductParams = SelectProductParams$3 & SelectProductParams$2 & SelectProductParams$1;
|
|
2433
2433
|
|
|
2434
2434
|
/**
|
|
2435
2435
|
* Event allowed parameters.
|
|
@@ -2485,7 +2485,7 @@ interface SearchProductNotFoundCommonParams {
|
|
|
2485
2485
|
* @typedef SearchProductNotFoundParams
|
|
2486
2486
|
* @since 0.1.0
|
|
2487
2487
|
*/
|
|
2488
|
-
|
|
2488
|
+
type SearchProductNotFoundParams = SearchProductNotFoundParams$3 & SearchProductNotFoundParams$2 & SearchProductNotFoundParams$1;
|
|
2489
2489
|
|
|
2490
2490
|
/**
|
|
2491
2491
|
* Event allowed parameters.
|
|
@@ -2541,7 +2541,7 @@ interface SearchProductAttemptCommonParams {
|
|
|
2541
2541
|
* @typedef SearchProductAttemptParams
|
|
2542
2542
|
* @since 0.1.0
|
|
2543
2543
|
*/
|
|
2544
|
-
|
|
2544
|
+
type SearchProductAttemptParams = SearchProductAttemptParams$3 & SearchProductAttemptParams$2 & SearchProductAttemptParams$1;
|
|
2545
2545
|
|
|
2546
2546
|
/**
|
|
2547
2547
|
* Event allowed parameters.
|
|
@@ -2597,7 +2597,7 @@ interface SearchProductSuccessCommonParams {
|
|
|
2597
2597
|
* @typedef SearchProductSuccessParams
|
|
2598
2598
|
* @since 0.1.0
|
|
2599
2599
|
*/
|
|
2600
|
-
|
|
2600
|
+
type SearchProductSuccessParams = SearchProductSuccessParams$3 & SearchProductSuccessParams$2 & SearchProductSuccessParams$1;
|
|
2601
2601
|
|
|
2602
2602
|
/**
|
|
2603
2603
|
* Event allowed parameters.
|
|
@@ -2657,7 +2657,7 @@ interface ProductImpressionCommonParams {
|
|
|
2657
2657
|
* @typedef ProductImpressionParams
|
|
2658
2658
|
* @since 0.1.0
|
|
2659
2659
|
*/
|
|
2660
|
-
|
|
2660
|
+
type ProductImpressionParams = ProductImpressionParams$3 & ProductImpressionParams$2 & ProductImpressionParams$1;
|
|
2661
2661
|
|
|
2662
2662
|
/**
|
|
2663
2663
|
* Event allowed parameters.
|
|
@@ -2717,7 +2717,7 @@ interface FilterProductsCommonParams {
|
|
|
2717
2717
|
* @typedef FilterProductsParams
|
|
2718
2718
|
* @since 0.1.0
|
|
2719
2719
|
*/
|
|
2720
|
-
|
|
2720
|
+
type FilterProductsParams = FilterProductsParams$3 & FilterProductsParams$2 & FilterProductsParams$1;
|
|
2721
2721
|
|
|
2722
2722
|
/**
|
|
2723
2723
|
* Event allowed parameters.
|
|
@@ -2771,7 +2771,7 @@ interface CustomizeProductCommonParams {
|
|
|
2771
2771
|
* @typedef CustomizeProductParams
|
|
2772
2772
|
* @since 0.1.0
|
|
2773
2773
|
*/
|
|
2774
|
-
|
|
2774
|
+
type CustomizeProductParams = CustomizeProductParams$3 & CustomizeProductParams$2 & CustomizeProductParams$1;
|
|
2775
2775
|
|
|
2776
2776
|
/**
|
|
2777
2777
|
* Event allowed parameters.
|
|
@@ -2829,7 +2829,7 @@ interface SetPaymentInfoCommonParams {
|
|
|
2829
2829
|
* @typedef SetPaymentInfoParams
|
|
2830
2830
|
* @since 0.1.0
|
|
2831
2831
|
*/
|
|
2832
|
-
|
|
2832
|
+
type SetPaymentInfoParams = SetPaymentInfoParams$3 & SetPaymentInfoParams$2 & SetPaymentInfoParams$1;
|
|
2833
2833
|
|
|
2834
2834
|
/**
|
|
2835
2835
|
* Event allowed parameters.
|
|
@@ -2885,7 +2885,7 @@ interface SelectPaymentTypeCommonParams {
|
|
|
2885
2885
|
* @typedef SelectPaymentTypeParams
|
|
2886
2886
|
* @since 0.1.0
|
|
2887
2887
|
*/
|
|
2888
|
-
|
|
2888
|
+
type SelectPaymentTypeParams = SelectPaymentTypeParams$3 & SelectPaymentTypeParams$2 & SelectPaymentTypeParams$1;
|
|
2889
2889
|
|
|
2890
2890
|
/**
|
|
2891
2891
|
* Event allowed parameters.
|
|
@@ -2947,7 +2947,7 @@ interface ChangePaymentTypeCommonParams {
|
|
|
2947
2947
|
* @typedef ChangePaymentTypeParams
|
|
2948
2948
|
* @since 0.1.0
|
|
2949
2949
|
*/
|
|
2950
|
-
|
|
2950
|
+
type ChangePaymentTypeParams = ChangePaymentTypeParams$3 & ChangePaymentTypeParams$2 & ChangePaymentTypeParams$1;
|
|
2951
2951
|
|
|
2952
2952
|
/**
|
|
2953
2953
|
* Event allowed parameters.
|
|
@@ -3003,7 +3003,7 @@ interface SearchPageContentCommonParams {
|
|
|
3003
3003
|
* @typedef SearchPageContentParams
|
|
3004
3004
|
* @since 0.1.0
|
|
3005
3005
|
*/
|
|
3006
|
-
|
|
3006
|
+
type SearchPageContentParams = SearchPageContentParams$3 & SearchPageContentParams$2 & SearchPageContentParams$1;
|
|
3007
3007
|
|
|
3008
3008
|
/**
|
|
3009
3009
|
* pageView event interface
|
|
@@ -3057,7 +3057,7 @@ interface PageViewCommonParams {
|
|
|
3057
3057
|
* @typedef PageViewParams
|
|
3058
3058
|
* @since 0.1.0
|
|
3059
3059
|
*/
|
|
3060
|
-
|
|
3060
|
+
type PageViewParams = PageViewParams$3 & PageViewParams$2 & PageViewParams$1;
|
|
3061
3061
|
|
|
3062
3062
|
/**
|
|
3063
3063
|
* Event allowed parameters.
|
|
@@ -3109,7 +3109,7 @@ interface GenerateLeadCommonParams {
|
|
|
3109
3109
|
* @typedef GenerateLeadParams
|
|
3110
3110
|
* @since 0.1.0
|
|
3111
3111
|
*/
|
|
3112
|
-
|
|
3112
|
+
type GenerateLeadParams = GenerateLeadParams$3 & GenerateLeadParams$2 & GenerateLeadParams$1;
|
|
3113
3113
|
|
|
3114
3114
|
/**
|
|
3115
3115
|
* Event allowed parameters.
|
|
@@ -3171,7 +3171,7 @@ interface RequestRefundCommonParams {
|
|
|
3171
3171
|
* @typedef RequestRefundParams
|
|
3172
3172
|
* @since 0.1.0
|
|
3173
3173
|
*/
|
|
3174
|
-
|
|
3174
|
+
type RequestRefundParams = RequestRefundParams$3 & RequestRefundParams$2 & RequestRefundParams$1;
|
|
3175
3175
|
|
|
3176
3176
|
/**
|
|
3177
3177
|
* Event allowed parameters.
|
|
@@ -3233,7 +3233,7 @@ interface RateOrderCommonParams {
|
|
|
3233
3233
|
* @typedef RateOrderParams
|
|
3234
3234
|
* @since 0.1.0
|
|
3235
3235
|
*/
|
|
3236
|
-
|
|
3236
|
+
type RateOrderParams = RateOrderParams$3 & RateOrderParams$2 & RateOrderParams$1;
|
|
3237
3237
|
|
|
3238
3238
|
/**
|
|
3239
3239
|
* Event allowed parameters.
|
|
@@ -3293,7 +3293,7 @@ interface CancelOrderCommonParams {
|
|
|
3293
3293
|
* @typedef CancelOrderParams
|
|
3294
3294
|
* @since 0.1.0
|
|
3295
3295
|
*/
|
|
3296
|
-
|
|
3296
|
+
type CancelOrderParams = CancelOrderParams$3 & CancelOrderParams$2 & CancelOrderParams$1;
|
|
3297
3297
|
|
|
3298
3298
|
/**
|
|
3299
3299
|
* Event allowed parameters.
|
|
@@ -3349,7 +3349,7 @@ interface ViewLoyaltyLevelCommonParams {
|
|
|
3349
3349
|
* @typedef ViewLoyaltyLevelParams
|
|
3350
3350
|
* @since 0.1.0
|
|
3351
3351
|
*/
|
|
3352
|
-
|
|
3352
|
+
type ViewLoyaltyLevelParams = ViewLoyaltyLevelParams$3 & ViewLoyaltyLevelParams$2 & ViewLoyaltyLevelParams$1;
|
|
3353
3353
|
|
|
3354
3354
|
/**
|
|
3355
3355
|
* Event allowed parameters.
|
|
@@ -3409,7 +3409,7 @@ interface SpendPointsCommonParams {
|
|
|
3409
3409
|
* @typedef SpendPointsParams
|
|
3410
3410
|
* @since 0.1.0
|
|
3411
3411
|
*/
|
|
3412
|
-
|
|
3412
|
+
type SpendPointsParams = SpendPointsParams$3 & SpendPointsParams$2 & SpendPointsParams$1;
|
|
3413
3413
|
|
|
3414
3414
|
/**
|
|
3415
3415
|
* Event allowed parameters.
|
|
@@ -3467,7 +3467,7 @@ interface SharePointsCommonParams {
|
|
|
3467
3467
|
* @typedef SharePointsParams
|
|
3468
3468
|
* @since 0.1.0
|
|
3469
3469
|
*/
|
|
3470
|
-
|
|
3470
|
+
type SharePointsParams = SharePointsParams$3 & SharePointsParams$2 & SharePointsParams$1;
|
|
3471
3471
|
|
|
3472
3472
|
/**
|
|
3473
3473
|
* Event allowed parameters.
|
|
@@ -3526,7 +3526,7 @@ interface EarnPointsCommonParams {
|
|
|
3526
3526
|
* @typedef EarnPointsParams
|
|
3527
3527
|
* @since 0.1.0
|
|
3528
3528
|
*/
|
|
3529
|
-
|
|
3529
|
+
type EarnPointsParams = EarnPointsParams$3 & EarnPointsParams$2 & EarnPointsParams$1;
|
|
3530
3530
|
|
|
3531
3531
|
/**
|
|
3532
3532
|
* Event allowed parameters.
|
|
@@ -3579,7 +3579,7 @@ interface CustomEventCommonParams {
|
|
|
3579
3579
|
* @typedef CustomEventParams
|
|
3580
3580
|
* @since 0.1.0
|
|
3581
3581
|
*/
|
|
3582
|
-
|
|
3582
|
+
type CustomEventParams = CustomEventParams$3 & CustomEventParams$2 & CustomEventParams$1;
|
|
3583
3583
|
|
|
3584
3584
|
/**
|
|
3585
3585
|
* Event allowed parameters.
|
|
@@ -3633,7 +3633,7 @@ interface RequestAssistanceCommonParams {
|
|
|
3633
3633
|
* @typedef RequestAssistanceParams
|
|
3634
3634
|
* @since 0.1.0
|
|
3635
3635
|
*/
|
|
3636
|
-
|
|
3636
|
+
type RequestAssistanceParams = RequestAssistanceParams$3 & RequestAssistanceParams$2 & RequestAssistanceParams$1;
|
|
3637
3637
|
|
|
3638
3638
|
/**
|
|
3639
3639
|
* Event allowed parameters.
|
|
@@ -3689,7 +3689,7 @@ interface SetLocationCommonParams {
|
|
|
3689
3689
|
* @typedef SetLocationParams
|
|
3690
3690
|
* @since 0.1.0
|
|
3691
3691
|
*/
|
|
3692
|
-
|
|
3692
|
+
type SetLocationParams = SetLocationParams$3 & SetLocationParams$2 & SetLocationParams$1;
|
|
3693
3693
|
|
|
3694
3694
|
/**
|
|
3695
3695
|
* Event allowed parameters.
|
|
@@ -3745,7 +3745,7 @@ interface OutOfCoverageCommonParams {
|
|
|
3745
3745
|
* @typedef OutOfCoverageParams
|
|
3746
3746
|
* @since 0.1.0
|
|
3747
3747
|
*/
|
|
3748
|
-
|
|
3748
|
+
type OutOfCoverageParams = OutOfCoverageParams$3 & OutOfCoverageParams$2 & OutOfCoverageParams$1;
|
|
3749
3749
|
|
|
3750
3750
|
/**
|
|
3751
3751
|
* Event allowed parameters.
|
|
@@ -3801,7 +3801,7 @@ interface FindLocationCommonParams {
|
|
|
3801
3801
|
* @typedef FindLocationParams
|
|
3802
3802
|
* @since 0.1.0
|
|
3803
3803
|
*/
|
|
3804
|
-
|
|
3804
|
+
type FindLocationParams = FindLocationParams$3 & FindLocationParams$2 & FindLocationParams$1;
|
|
3805
3805
|
|
|
3806
3806
|
/**
|
|
3807
3807
|
* Event allowed parameters.
|
|
@@ -3861,7 +3861,7 @@ interface ChangeLocationCommonParams {
|
|
|
3861
3861
|
* @typedef ChangeLocationParams
|
|
3862
3862
|
* @since 0.1.0
|
|
3863
3863
|
*/
|
|
3864
|
-
|
|
3864
|
+
type ChangeLocationParams = ChangeLocationParams$3 & ChangeLocationParams$2 & ChangeLocationParams$1;
|
|
3865
3865
|
|
|
3866
3866
|
/**
|
|
3867
3867
|
* Event allowed parameters.
|
|
@@ -3915,7 +3915,7 @@ interface ViewTrackingCommonParams {
|
|
|
3915
3915
|
* @typedef ViewTrackingParams
|
|
3916
3916
|
* @since 0.1.0
|
|
3917
3917
|
*/
|
|
3918
|
-
|
|
3918
|
+
type ViewTrackingParams = ViewTrackingParams$3 & ViewTrackingParams$2 & ViewTrackingParams$1;
|
|
3919
3919
|
|
|
3920
3920
|
/**
|
|
3921
3921
|
* Event allowed parameters.
|
|
@@ -3969,7 +3969,7 @@ interface ViewFulfillmentStepCommonParams {
|
|
|
3969
3969
|
* @typedef ViewFulfillmentStepParams
|
|
3970
3970
|
* @since 0.1.0
|
|
3971
3971
|
*/
|
|
3972
|
-
|
|
3972
|
+
type ViewFulfillmentStepParams = ViewFulfillmentStepParams$3 & ViewFulfillmentStepParams$2 & ViewFulfillmentStepParams$1;
|
|
3973
3973
|
|
|
3974
3974
|
/**
|
|
3975
3975
|
* Event allowed parameters.
|
|
@@ -4023,7 +4023,7 @@ interface ViewCreditsCommonParams {
|
|
|
4023
4023
|
* @typedef ViewCreditsParams
|
|
4024
4024
|
* @since 0.1.0
|
|
4025
4025
|
*/
|
|
4026
|
-
|
|
4026
|
+
type ViewCreditsParams = ViewCreditsParams$3 & ViewCreditsParams$2 & ViewCreditsParams$1;
|
|
4027
4027
|
|
|
4028
4028
|
/**
|
|
4029
4029
|
* Event allowed parameters.
|
|
@@ -4079,7 +4079,7 @@ interface SpendCreditsCommonParams {
|
|
|
4079
4079
|
* @typedef SpendCreditsParams
|
|
4080
4080
|
* @since 0.1.0
|
|
4081
4081
|
*/
|
|
4082
|
-
|
|
4082
|
+
type SpendCreditsParams = SpendCreditsParams$3 & SpendCreditsParams$2 & SpendCreditsParams$1;
|
|
4083
4083
|
|
|
4084
4084
|
/**
|
|
4085
4085
|
* Event allowed parameters.
|
|
@@ -4135,7 +4135,7 @@ interface AddCreditsCommonParams {
|
|
|
4135
4135
|
* @typedef AddCreditsParams
|
|
4136
4136
|
* @since 0.1.0
|
|
4137
4137
|
*/
|
|
4138
|
-
|
|
4138
|
+
type AddCreditsParams = AddCreditsParams$3 & AddCreditsParams$2 & AddCreditsParams$1;
|
|
4139
4139
|
|
|
4140
4140
|
/**
|
|
4141
4141
|
* Event allowed parameters.
|
|
@@ -4187,7 +4187,7 @@ interface ViewQRStoreCouponCommonParams {
|
|
|
4187
4187
|
* @typedef ViewQRStoreCouponParams
|
|
4188
4188
|
* @since 0.1.0
|
|
4189
4189
|
*/
|
|
4190
|
-
|
|
4190
|
+
type ViewQRStoreCouponParams = ViewQRStoreCouponParams$3 & ViewQRStoreCouponParams$2 & ViewQRStoreCouponParams$1;
|
|
4191
4191
|
|
|
4192
4192
|
/**
|
|
4193
4193
|
* Event allowed parameters.
|
|
@@ -4243,7 +4243,7 @@ interface ViewBenefitsWalletCommonParams {
|
|
|
4243
4243
|
* @typedef ViewBenefitsWalletParams
|
|
4244
4244
|
* @since 0.1.0
|
|
4245
4245
|
*/
|
|
4246
|
-
|
|
4246
|
+
type ViewBenefitsWalletParams = ViewBenefitsWalletParams$3 & ViewBenefitsWalletParams$2 & ViewBenefitsWalletParams$1;
|
|
4247
4247
|
|
|
4248
4248
|
/**
|
|
4249
4249
|
* Event allowed parameters.
|
|
@@ -4301,7 +4301,7 @@ interface ViewBenefitDetailsCommonParams {
|
|
|
4301
4301
|
* @typedef ViewBenefitDetailsParams
|
|
4302
4302
|
* @since 0.1.0
|
|
4303
4303
|
*/
|
|
4304
|
-
|
|
4304
|
+
type ViewBenefitDetailsParams = ViewBenefitDetailsParams$3 & ViewBenefitDetailsParams$2 & ViewBenefitDetailsParams$1;
|
|
4305
4305
|
|
|
4306
4306
|
/**
|
|
4307
4307
|
* Event allowed parameters.
|
|
@@ -4359,7 +4359,7 @@ interface RemoveBenefitCommonParams {
|
|
|
4359
4359
|
* @typedef RemoveBenefitParams
|
|
4360
4360
|
* @since 0.1.0
|
|
4361
4361
|
*/
|
|
4362
|
-
|
|
4362
|
+
type RemoveBenefitParams = RemoveBenefitParams$3 & RemoveBenefitParams$2 & RemoveBenefitParams$1;
|
|
4363
4363
|
|
|
4364
4364
|
/**
|
|
4365
4365
|
* Event allowed parameters.
|
|
@@ -4417,7 +4417,7 @@ interface RedeemCouponCodeCommonParams {
|
|
|
4417
4417
|
* @extends GoogleRedeemCouponCodeParams
|
|
4418
4418
|
* @extends FacebookRedeemCouponCodeParams
|
|
4419
4419
|
*/
|
|
4420
|
-
|
|
4420
|
+
type RedeemCouponCodeParams = RedeemCouponCodeParams$3 & RedeemCouponCodeParams$2 & RedeemCouponCodeParams$1;
|
|
4421
4421
|
|
|
4422
4422
|
/**
|
|
4423
4423
|
* Event allowed parameters.
|
|
@@ -4475,7 +4475,7 @@ interface CouponCodeErrorCommonParams {
|
|
|
4475
4475
|
* @typedef CouponCodeErrorParams
|
|
4476
4476
|
* @since 0.1.0
|
|
4477
4477
|
*/
|
|
4478
|
-
|
|
4478
|
+
type CouponCodeErrorParams = CouponCodeErrorParams$3 & CouponCodeErrorParams$2 & CouponCodeErrorParams$1;
|
|
4479
4479
|
|
|
4480
4480
|
/**
|
|
4481
4481
|
* Event allowed parameters.
|
|
@@ -4533,7 +4533,7 @@ interface ApplyBenefitCommonParams {
|
|
|
4533
4533
|
* @typedef ApplyBenefitParams
|
|
4534
4534
|
* @since 0.1.0
|
|
4535
4535
|
*/
|
|
4536
|
-
|
|
4536
|
+
type ApplyBenefitParams = ApplyBenefitParams$3 & ApplyBenefitParams$2 & ApplyBenefitParams$1;
|
|
4537
4537
|
|
|
4538
4538
|
/**
|
|
4539
4539
|
* Event allowed parameters.
|
|
@@ -4588,7 +4588,7 @@ interface InitiateCheckoutCommonParams {
|
|
|
4588
4588
|
* @typedef InitiateCheckoutParams
|
|
4589
4589
|
* @since 0.1.0
|
|
4590
4590
|
*/
|
|
4591
|
-
|
|
4591
|
+
type InitiateCheckoutParams = InitiateCheckoutParams$3 & InitiateCheckoutParams$2 & InitiateCheckoutParams$1;
|
|
4592
4592
|
|
|
4593
4593
|
/**
|
|
4594
4594
|
* Event allowed parameters.
|
|
@@ -4644,7 +4644,7 @@ interface CheckoutActionCommonParams {
|
|
|
4644
4644
|
* @typedef CheckoutActionParams
|
|
4645
4645
|
* @since 0.1.0
|
|
4646
4646
|
*/
|
|
4647
|
-
|
|
4647
|
+
type CheckoutActionParams = CheckoutActionParams$3 & CheckoutActionParams$2 & CheckoutActionParams$1;
|
|
4648
4648
|
|
|
4649
4649
|
/**
|
|
4650
4650
|
* Event allowed parameters.
|
|
@@ -4700,7 +4700,7 @@ interface ViewCategoryCommonParams {
|
|
|
4700
4700
|
* @typedef ViewCategoryParams
|
|
4701
4701
|
* @since 0.1.0
|
|
4702
4702
|
*/
|
|
4703
|
-
|
|
4703
|
+
type ViewCategoryParams = ViewCategoryParams$3 & ViewCategoryParams$2 & ViewCategoryParams$1;
|
|
4704
4704
|
|
|
4705
4705
|
/**
|
|
4706
4706
|
* Event allowed parameters.
|
|
@@ -4760,7 +4760,7 @@ interface SelectCategoryCommonParams {
|
|
|
4760
4760
|
* @typedef SelectCategoryParams
|
|
4761
4761
|
* @since 0.1.0
|
|
4762
4762
|
*/
|
|
4763
|
-
|
|
4763
|
+
type SelectCategoryParams = SelectCategoryParams$3 & SelectCategoryParams$2 & SelectCategoryParams$1;
|
|
4764
4764
|
|
|
4765
4765
|
/**
|
|
4766
4766
|
* Event allowed parameters.
|
|
@@ -4816,7 +4816,7 @@ interface SearchCategoryAttemptCommonParams {
|
|
|
4816
4816
|
* @typedef SearchCategoryAttemptParams
|
|
4817
4817
|
* @since 0.1.0
|
|
4818
4818
|
*/
|
|
4819
|
-
|
|
4819
|
+
type SearchCategoryAttemptParams = SearchCategoryAttemptParams$3 & SearchCategoryAttemptParams$2 & SearchCategoryAttemptParams$1;
|
|
4820
4820
|
|
|
4821
4821
|
/**
|
|
4822
4822
|
* Event allowed parameters.
|
|
@@ -4877,7 +4877,7 @@ interface CategoryImpressionCommonParams {
|
|
|
4877
4877
|
* @typedef CategoryImpressionParams
|
|
4878
4878
|
* @since 0.1.0
|
|
4879
4879
|
*/
|
|
4880
|
-
|
|
4880
|
+
type CategoryImpressionParams = CategoryImpressionParams$3 & CategoryImpressionParams$2 & CategoryImpressionParams$1;
|
|
4881
4881
|
|
|
4882
4882
|
/**
|
|
4883
4883
|
* Event allowed parameters.
|
|
@@ -4939,7 +4939,7 @@ interface BookAppointmentCommonParams {
|
|
|
4939
4939
|
* @typedef BookAppointmentParams
|
|
4940
4940
|
* @since 0.1.0
|
|
4941
4941
|
*/
|
|
4942
|
-
|
|
4942
|
+
type BookAppointmentParams = BookAppointmentParams$3 & BookAppointmentParams$2 & BookAppointmentParams$1;
|
|
4943
4943
|
|
|
4944
4944
|
/**
|
|
4945
4945
|
* Event allowed parameters.
|
|
@@ -4997,7 +4997,7 @@ interface UpdateBillingInfoCommonParams {
|
|
|
4997
4997
|
* @typedef UpdateBillingInfoParams
|
|
4998
4998
|
* @since 0.1.0
|
|
4999
4999
|
*/
|
|
5000
|
-
|
|
5000
|
+
type UpdateBillingInfoParams = UpdateBillingInfoParams$3 & UpdateBillingInfoParams$2 & UpdateBillingInfoParams$1;
|
|
5001
5001
|
|
|
5002
5002
|
/**
|
|
5003
5003
|
* Event allowed parameters.
|
|
@@ -5053,7 +5053,7 @@ interface SelectBillingInfoCommonParams {
|
|
|
5053
5053
|
* @typedef SelectBillingInfoParams
|
|
5054
5054
|
* @since 0.1.0
|
|
5055
5055
|
*/
|
|
5056
|
-
|
|
5056
|
+
type SelectBillingInfoParams = SelectBillingInfoParams$3 & SelectBillingInfoParams$2 & SelectBillingInfoParams$1;
|
|
5057
5057
|
|
|
5058
5058
|
/**
|
|
5059
5059
|
* Event allowed parameters.
|
|
@@ -5107,7 +5107,7 @@ interface AddBillingInfoCommonParams {
|
|
|
5107
5107
|
* @typedef AddBillingInfoParams
|
|
5108
5108
|
* @since 0.1.0
|
|
5109
5109
|
*/
|
|
5110
|
-
|
|
5110
|
+
type AddBillingInfoParams = AddBillingInfoParams$3 & AddBillingInfoParams$2 & AddBillingInfoParams$1;
|
|
5111
5111
|
|
|
5112
5112
|
/**
|
|
5113
5113
|
* Event allowed parameters.
|
|
@@ -5167,7 +5167,7 @@ interface SelectBannerCommonParams {
|
|
|
5167
5167
|
* @typedef SelectBannerParams
|
|
5168
5168
|
* @since 0.1.0
|
|
5169
5169
|
*/
|
|
5170
|
-
|
|
5170
|
+
type SelectBannerParams = SelectBannerParams$3 & SelectBannerParams$2 & SelectBannerParams$1;
|
|
5171
5171
|
|
|
5172
5172
|
/**
|
|
5173
5173
|
* Event allowed parameters.
|
|
@@ -5229,7 +5229,7 @@ interface BannerImpressionCommonParams {
|
|
|
5229
5229
|
* @typedef BannerImpressionParams
|
|
5230
5230
|
* @since 0.1.0
|
|
5231
5231
|
*/
|
|
5232
|
-
|
|
5232
|
+
type BannerImpressionParams = BannerImpressionParams$3 & BannerImpressionParams$2 & BannerImpressionParams$1;
|
|
5233
5233
|
|
|
5234
5234
|
/**
|
|
5235
5235
|
* Event allowed parameters.
|
|
@@ -5289,7 +5289,7 @@ interface SignUpCommonParams {
|
|
|
5289
5289
|
* @typedef SignUpParams
|
|
5290
5290
|
* @since 0.1.0
|
|
5291
5291
|
*/
|
|
5292
|
-
|
|
5292
|
+
type SignUpParams = SignUpParams$3 & SignUpParams$2 & SignUpParams$1;
|
|
5293
5293
|
|
|
5294
5294
|
/**
|
|
5295
5295
|
* Event allowed parameters.
|
|
@@ -5345,7 +5345,7 @@ interface SignOutCommonParams {
|
|
|
5345
5345
|
* @typedef SignOutParams
|
|
5346
5346
|
* @since 0.1.0
|
|
5347
5347
|
*/
|
|
5348
|
-
|
|
5348
|
+
type SignOutParams = SignOutParams$3 & SignOutParams$2 & SignOutParams$1;
|
|
5349
5349
|
|
|
5350
5350
|
/**
|
|
5351
5351
|
* Event allowed parameters.
|
|
@@ -5403,7 +5403,7 @@ interface SignInCommonParams {
|
|
|
5403
5403
|
* @typedef SignInParams
|
|
5404
5404
|
* @since 0.1.0
|
|
5405
5405
|
*/
|
|
5406
|
-
|
|
5406
|
+
type SignInParams = SignInParams$3 & SignInParams$2 & SignInParams$1;
|
|
5407
5407
|
|
|
5408
5408
|
/**
|
|
5409
5409
|
* Event allowed parameters.
|
|
@@ -5457,7 +5457,7 @@ interface ChangePasswordSuccessCommonParams {
|
|
|
5457
5457
|
* @typedef ChangePasswordSuccessParams
|
|
5458
5458
|
* @since 0.1.0
|
|
5459
5459
|
*/
|
|
5460
|
-
|
|
5460
|
+
type ChangePasswordSuccessParams = ChangePasswordSuccessParams$3 & ChangePasswordSuccessParams$2 & ChangePasswordSuccessParams$1;
|
|
5461
5461
|
|
|
5462
5462
|
/**
|
|
5463
5463
|
* Event allowed parameters.
|
|
@@ -5515,7 +5515,7 @@ interface ChangePasswordFailCommonParams {
|
|
|
5515
5515
|
* @typedef ChangePasswordFailParams
|
|
5516
5516
|
* @since 0.1.0
|
|
5517
5517
|
*/
|
|
5518
|
-
|
|
5518
|
+
type ChangePasswordFailParams = ChangePasswordFailParams$3 & ChangePasswordFailParams$2 & ChangePasswordFailParams$1;
|
|
5519
5519
|
|
|
5520
5520
|
/**
|
|
5521
5521
|
* Event allowed parameters.
|
|
@@ -5569,7 +5569,7 @@ interface SignUpAttemptCommonParams {
|
|
|
5569
5569
|
* @typedef SignUpAttemptParams
|
|
5570
5570
|
* @since 0.1.0
|
|
5571
5571
|
*/
|
|
5572
|
-
|
|
5572
|
+
type SignUpAttemptParams = SignUpAttemptParams$3 & SignUpAttemptParams$2 & SignUpAttemptParams$1;
|
|
5573
5573
|
|
|
5574
5574
|
/**
|
|
5575
5575
|
* Event allowed parameters.
|
|
@@ -5624,7 +5624,7 @@ interface ChangePasswordAttemptCommonParams {
|
|
|
5624
5624
|
* @typedef ChangePasswordAttemptParams
|
|
5625
5625
|
* @since 0.1.0
|
|
5626
5626
|
*/
|
|
5627
|
-
|
|
5627
|
+
type ChangePasswordAttemptParams = ChangePasswordAttemptParams$3 & ChangePasswordAttemptParams$2 & ChangePasswordAttemptParams$1;
|
|
5628
5628
|
|
|
5629
5629
|
declare const events: {
|
|
5630
5630
|
auth: {
|
|
@@ -5786,4 +5786,4 @@ declare const identifyUser: (identify: Segment$1.Traits) => void;
|
|
|
5786
5786
|
*/
|
|
5787
5787
|
declare const checkInit: () => boolean;
|
|
5788
5788
|
|
|
5789
|
-
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 };
|
|
5789
|
+
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 };
|