-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathindex.d.ts
1267 lines (1191 loc) · 48.7 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { ReactNativeFirebase } from '@react-native-firebase/app';
import { FirebaseAnalyticsTypes } from '..';
import Analytics = FirebaseAnalyticsTypes.Module;
import AnalyticsCallOptions = FirebaseAnalyticsTypes.AnalyticsCallOptions;
import EventParams = FirebaseAnalyticsTypes.EventParams;
import FirebaseApp = ReactNativeFirebase.FirebaseApp;
/**
* Returns an Analytics instance for the given app.
*
* @param app - FirebaseApp. Optional.
*/
export declare function getAnalytics(app?: FirebaseApp): Analytics;
/**
* Returns an Analytics instance for the given app.
*
* @param app - FirebaseApp.
* @param options - `AnalyticsSettings`. Web only.
*/
export declare function initializeAnalytics(
app: FirebaseApp,
options?: FirebaseAnalyticsTypes.AnalyticsSettings,
): Analytics;
/**
* Retrieves a unique Google Analytics identifier for the web client.
*
* @param analyticsInstance - Instance of analytics (web - only)
*
*/
export declare function getGoogleAnalyticsClientId(analyticsInstance: Analytics): Promise<string>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'add_payment_info',
params?: {
coupon?: EventParams['coupon'];
currency?: EventParams['currency'];
items?: EventParams['items'];
payment_type?: EventParams['payment_type'];
value?: EventParams['value'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'purchase' | 'refund',
params?: {
value?: EventParams['value'];
currency?: EventParams['currency'];
transaction_id: EventParams['transaction_id'];
tax?: EventParams['tax'];
shipping?: EventParams['shipping'];
items?: EventParams['items'];
coupon?: EventParams['coupon'];
affiliation?: EventParams['affiliation'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'screen_view',
params?: {
firebase_screen: EventParams['firebase_screen'];
firebase_screen_class: EventParams['firebase_screen_class'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'search' | 'view_search_results',
params?: {
search_term?: EventParams['search_term'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'select_content',
params?: {
content_type?: EventParams['content_type'];
item_id?: EventParams['item_id'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'select_item',
params?: {
items?: EventParams['items'];
item_list_name?: EventParams['item_list_name'];
item_list_id?: EventParams['item_list_id'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'select_promotion' | 'view_promotion',
params?: {
items?: EventParams['items'];
promotion_id?: EventParams['promotion_id'];
promotion_name?: EventParams['promotion_name'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'set_checkout_option',
params?: {
checkout_step?: EventParams['checkout_step'];
checkout_option?: EventParams['checkout_option'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'share',
params?: {
method?: EventParams['method'];
content_type?: EventParams['content_type'];
item_id?: EventParams['item_id'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'sign_up',
params?: {
method?: EventParams['method'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'timing_complete',
params?: {
name: string;
value: number;
event_category?: string;
event_label?: string;
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'add_shipping_info',
params?: {
coupon?: EventParams['coupon'];
currency?: EventParams['currency'];
items?: EventParams['items'];
shipping_tier?: EventParams['shipping_tier'];
value?: EventParams['value'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'view_cart' | 'view_item',
params?: {
currency?: EventParams['currency'];
items?: EventParams['items'];
value?: EventParams['value'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'view_item_list',
params?: {
items?: EventParams['items'];
item_list_name?: EventParams['item_list_name'];
item_list_id?: EventParams['item_list_id'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent<T extends string>(
analytics: Analytics,
name: FirebaseAnalyticsTypes.CustomEventName<T>,
params?: {
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'add_to_cart' | 'add_to_wishlist' | 'remove_from_cart',
params?: {
currency?: EventParams['currency'];
value?: EventParams['value'];
items?: EventParams['items'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'begin_checkout',
params?: {
currency?: EventParams['currency'];
coupon?: EventParams['coupon'];
value?: EventParams['value'];
items?: EventParams['items'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'checkout_progress',
params?: {
currency?: EventParams['currency'];
coupon?: EventParams['coupon'];
value?: EventParams['value'];
items?: EventParams['items'];
checkout_step?: EventParams['checkout_step'];
checkout_option?: EventParams['checkout_option'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'exception',
params?: {
description?: EventParams['description'];
fatal?: EventParams['fatal'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'generate_lead',
params?: {
value?: EventParams['value'];
currency?: EventParams['currency'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'login',
params?: {
method?: EventParams['method'];
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Log a custom event with optional params. Note that there are various limits that applied
* to event parameters (total parameter count, etc), but analytics applies the limits during
* cloud processing, the errors will not be seen as Promise rejections when you call logEvent.
* While integrating this API in your app you are strongly encouraged to enable
* [DebugView](https://firebase.google.com/docs/analytics/debugview) -
* any errors in your events will show up in the firebase web console with links to relevant documentation
*
* @param analytics Analytics instance.
* @param name Event name must not conflict with any Reserved Events.
* @param params Parameters to be sent and displayed with the event.
* @param options Additional options that can be passed. Web only.
*/
export declare function logEvent(
analytics: Analytics,
name: 'page_view',
params?: {
page_title?: string;
page_location?: string;
page_path?: string;
[key: string]: any;
},
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* If true, allows the device to collect analytical data and send it to
* Firebase. Useful for GDPR.
*/
export declare function setAnalyticsCollectionEnabled(
analyticsInstance: Analytics,
enabled: boolean,
): Promise<void>;
/**
* Sets the duration of inactivity that terminates the current session.
*
* @param analytics Analytics instance.
* @param milliseconds The default value is 1800000 (30 minutes).
*/
export declare function setSessionTimeoutDuration(
analytics: Analytics,
milliseconds: number,
): Promise<void>;
/**
* Retrieve the app instance id of the application.
*
* @param analytics Analytics instance.
* @returns Returns the app instance id or null on android if FirebaseAnalytics.ConsentType.ANALYTICS_STORAGE has been set to FirebaseAnalytics.ConsentStatus.DENIED and null on iOS if ConsentType.analyticsStorage has been set to ConsentStatus.denied.
*/
export function getAppInstanceId(analytics: Analytics): Promise<string | null>;
/**
* Gives a user a unique identification.
*
* @param analytics Analytics instance.
* @param id Set to null to remove a previously assigned ID from analytics events
* @param options Additional options that can be passed to Analytics method calls such as logEvent, etc.
*/
export function setUserId(
analytics: Analytics,
id: string | null,
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Sets a key/value pair of data on the current user. Each Firebase project can have up to 25 uniquely named (case-sensitive) user properties.
*
* @param analytics Analytics instance.
* @param name A user property identifier.
* @param value Set to null to remove a previously assigned ID from analytics events.
*/
export function setUserProperty(
analytics: Analytics,
name: string,
value: string | null,
): Promise<void>;
/**
* Sets multiple key/value pairs of data on the current user. Each Firebase project can have up to 25 uniquely named (case-sensitive) user properties.
*
* > When you set user properties, be sure to never include personally identifiable information such as names, social security numbers, or email addresses, even in hashed form.
*
* @param analytics Analytics instance.
* @param properties Set a property value to null to remove it.
* @param options `AnalyticsCallOptions`. Additional options that can be passed. Web only.
*/
export function setUserProperties(
analytics: Analytics,
properties: { [key: string]: any },
options?: AnalyticsCallOptions,
): Promise<void>;
/**
* Clears all analytics data for this instance from the device and resets the app instance ID.
*
* @param analytics Analytics instance.
*/
export function resetAnalyticsData(analytics: Analytics): Promise<void>;
/**
* E-Commerce Purchase event. This event signifies that an item(s) was purchased by a user. Note: This is different from the in-app purchase event, which is reported
* automatically for Google Play-based apps.
*
* If you supply the `value` parameter, you must also supply the `currency` parameter so that revenue metrics can be computed accurately.
*
* Logged event name: `purchase`
*
* @param analytics Analytics instance.
* @param object See {@link analytics.AddPaymentInfoEventParameters}.
*/
export function logAddPaymentInfo(
analytics: Analytics,
object: FirebaseAnalyticsTypes.AddPaymentInfoEventParameters,
): Promise<void>;
/**
* Sets or clears the screen name and class the user is currently viewing
*
* @param analytics Analytics instance.
* @param params See {@link analytics.ScreenViewParameters}.
*/
export function logScreenView(
analytics: Analytics,
params: FirebaseAnalyticsTypes.ScreenViewParameters,
): Promise<void>;
/**
* Add Payment Info event. This event signifies that a user has submitted their payment information to your app.
*
* If you supply the `value` parameter, you must also supply the `currency` parameter so that revenue metrics can be computed accurately.
*
* Logged event name: `add_payment_info`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.AddShippingInfoParameters}.
*/
export function logAddShippingInfo(
analytics: Analytics,
params: FirebaseAnalyticsTypes.AddShippingInfoParameters,
): Promise<void>;
/**
* E-Commerce Add To Cart event.
*
* If you supply the `value` parameter, you must also supply the `currency` parameter so that revenue metrics can be computed accurately.
*
* Logged event name: `add_to_cart`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.AddToCartEventParameters}.
*/
export function logAddToCart(
analytics: Analytics,
params: FirebaseAnalyticsTypes.AddToCartEventParameters,
): Promise<void>;
/**
* E-Commerce Add To Wishlist event. This event signifies that an item was added to a wishlist.
* Use this event to identify popular gift items in your app.
*
* If you supply the `value` parameter, you must also supply the `currency` parameter so that revenue metrics can be computed accurately.
*
* Logged event name: `add_to_wishlist
*
* @param analytics Analytics instance.
* @param params See {@link analytics.AddToWishlistEventParameters}.
*/
export function logAddToWishlist(
analytics,
params: FirebaseAnalyticsTypes.AddToWishlistEventParameters,
): Promise<void>;
/**
* App Open event. By logging this event when an App is moved to the foreground, developers can
* understand how often users leave and return during the course of a Session. Although Sessions
* are automatically reported, this event can provide further clarification around the continuous
* engagement of app-users.
*
* @param analytics Analytics instance.
*/
export function logAppOpen(analytics: Analytics): Promise<void>;
/**
* E-Commerce Begin Checkout event. This event signifies that a user has begun the process of
* checking out.
*
* If you supply the `value` parameter, you must also supply the `currency` parameter so that revenue metrics can be computed accurately.
*
* Logged event name: `begin_checkout`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.BeginCheckoutEventParameters}.
*/
export function logBeginCheckout(
analytics: Analytics,
params: FirebaseAnalyticsTypes.BeginCheckoutEventParameters,
): Promise<void>;
/**
* Log this event to supply the referral details of a re-engagement campaign.
*
* Logged event name: `campaign_details`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.CampaignDetailsEventParameters}.
*/
export function logCampaignDetails(
analytics: Analytics,
params: FirebaseAnalyticsTypes.CampaignDetailsEventParameters,
): Promise<void>;
/**
* Earn Virtual Currency event. This event tracks the awarding of virtual currency in your app. Log this along with
* {@link analytics.logSpendVirtualCurrency} to better understand your virtual economy.
*
* Logged event name: `earn_virtual_currency`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.EarnVirtualCurrencyEventParameters}.
*/
export function logEarnVirtualCurrency(
analytics: Analytics,
params: FirebaseAnalyticsTypes.EarnVirtualCurrencyEventParameters,
): Promise<void>;
/**
* Generate Lead event. Log this event when a lead has been generated in the app to understand
* the efficacy of your install and re-engagement campaigns.
*
* If you supply the `value` parameter, you must also supply the `currency` parameter so that revenue metrics can be computed accurately.
*
* Logged event name: `generate_lead`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.GenerateLeadEventParameters}.
*/
export function logGenerateLead(
analytics: Analytics,
params: FirebaseAnalyticsTypes.GenerateLeadEventParameters,
): Promise<void>;
/**
* Join Group event. Log this event when a user joins a group such as a guild, team or family.
* Use this event to analyze how popular certain groups or social features are in your app
*
* Logged event name: `join_group`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.JoinGroupEventParameters}.
*/
export function logJoinGroup(
analytics: Analytics,
params: FirebaseAnalyticsTypes.JoinGroupEventParameters,
): Promise<void>;
/**
* Level End event.
*
* Logged event name: `level_end`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.LevelEndEventParameters}.
*/
export function logLevelEnd(
analytics: Analytics,
params: FirebaseAnalyticsTypes.LevelEndEventParameters,
): Promise<void>;
/**
* Level Start event.
*
* Logged event name: `level_start`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.LevelStartEventParameters}.
*/
export function logLevelStart(
analytics: Analytics,
params: FirebaseAnalyticsTypes.LevelStartEventParameters,
): Promise<void>;
/**
* Level Up event. This event signifies that a player has leveled up in your gaming app.
* It can help you gauge the level distribution of your userbase and help you identify certain levels that are difficult to pass.
*
* Logged event name: `level_up`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.LevelUpEventParameters}.
*/
export function logLevelUp(
analytics: Analytics,
params: FirebaseAnalyticsTypes.LevelUpEventParameters,
): Promise<void>;
/**
* Login event. Apps with a login feature can report this event to signify that a user has logged in.
*
* Logged event name: `login`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.LoginEventParameters}.
*/
export function logLogin(
analytics: Analytics,
params: FirebaseAnalyticsTypes.LoginEventParameters,
): Promise<void>;
/**
* Post Score event. Log this event when the user posts a score in your gaming app. This event can
* help you understand how users are actually performing in your game and it can help you correlate
* high scores with certain audiences or behaviors.
*
* Logged event name: `post_score`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.PostScoreEventParameters}.
*/
export function logPostScore(
analytics: Analytics,
params: FirebaseAnalyticsTypes.PostScoreEventParameters,
): Promise<void>;
/**
* Select Content event. This general purpose event signifies that a user has selected some
* content of a certain type in an app. The content can be any object in your app. This event
* can help you identify popular content and categories of content in your app.
*
* Logged event name: `select_content`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.SelectContentEventParameters}.
*/
export function logSelectContent(
analytics: Analytics,
params: FirebaseAnalyticsTypes.SelectContentEventParameters,
): Promise<void>;
/**
* E-Commerce Purchase event. This event signifies that an item(s) was purchased by a user. Note: This is different from the in-app purchase event, which is reported
* automatically for Google Play-based apps.
*
* If you supply the `value` parameter, you must also supply the `currency` parameter so that revenue metrics can be computed accurately.
*
* Logged event name: `purchase`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.PurchaseEventParameters}.
*/
export function logPurchase(
analytics: Analytics,
params: FirebaseAnalyticsTypes.PurchaseEventParameters,
): Promise<void>;
/**
* E-Commerce Refund event. This event signifies that a refund was issued.
*
* Logged event name: `remove_from_cart`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.RefundEventParameters}.
*/
export function logRefund(
analytics: Analytics,
params: FirebaseAnalyticsTypes.RefundEventParameters,
): Promise<void>;
/**
* Remove from cart event.
*
* Logged event name: `remove_from_cart`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.RemoveFromCartEventParameters}.
*/
export function logRemoveFromCart(
analytics: Analytics,
params: FirebaseAnalyticsTypes.RemoveFromCartEventParameters,
): Promise<void>;
/**
* Search event. Apps that support search features can use this event to contextualize search
* operations by supplying the appropriate, corresponding parameters. This event can help you
* identify the most popular content in your app.
*
* Logged event name: `search`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.SearchEventParameters}.
*/
export function logSearch(
analytics: Analytics,
params: FirebaseAnalyticsTypes.SearchEventParameters,
): Promise<void>;
/**
* Select Item event. This event signifies that an item was selected by a user from a list.
* Use the appropriate parameters to contextualize the event.
* Use this event to discover the most popular items selected.
*
* Logged event name: `select_item`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.SelectItemEventParameters}.
*/
export function logSelectItem(
analytics: Analytics,
params: FirebaseAnalyticsTypes.SelectItemEventParameters,
): Promise<void>;
/**
* Set checkout option event.
*
* Logged event name: `set_checkout_option`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.SetCheckoutOptionEventParameters}.
*/
export function logSetCheckoutOption(
analytics: Analytics,
params: FirebaseAnalyticsTypes.SetCheckoutOptionEventParameters,
): Promise<void>;
/**
* Select promotion event. This event signifies that a user has selected a promotion offer. Use the
* appropriate parameters to contextualize the event, such as the item(s) for which the promotion applies.
*
* Logged event name: `select_promotion`
*
* @param analytics Analytics instance.
* @param params See {@link analytics.SelectPromotionEventParameters}.
*/
export function logSelectPromotion(
analytics: Analytics,
params: FirebaseAnalyticsTypes.SelectPromotionEventParameters,
): Promise<void>;
/**
* Share event. Apps with social features can log the Share event to identify the most viral content.
*