@@ -59,8 +59,6 @@ export interface EventParams {
59
59
// (undocumented)
60
60
checkout_step? : number ;
61
61
// (undocumented)
62
- content_id? : string ;
63
- // (undocumented)
64
62
content_type? : string ;
65
63
// (undocumented)
66
64
coupon? : string ;
@@ -77,6 +75,8 @@ export interface EventParams {
77
75
firebase_screen? : string ;
78
76
firebase_screen_class? : string ;
79
77
// (undocumented)
78
+ item_id? : string ;
79
+ // (undocumented)
80
80
item_list_id? : string ;
81
81
// (undocumented)
82
82
item_list_name? : string ;
@@ -125,18 +125,12 @@ export interface GtagConfigParams {
125
125
// (undocumented)
126
126
[key : string ]: unknown ;
127
127
' allow_ad_personalization_signals' ? : boolean ;
128
- ' anonymize_ip' ? : boolean ;
129
128
' cookie_domain' ? : string ;
130
129
' cookie_expires' ? : number ;
131
130
' cookie_flags' ? : string ;
132
131
' cookie_prefix' ? : string ;
133
132
' cookie_update' ? : boolean ;
134
- ' custom_map' ? : {
135
- [key : string ]: unknown ;
136
- };
137
- ' link_attribution' ? : boolean ;
138
133
' page_location' ? : string ;
139
- ' page_path' ? : string ;
140
134
' page_title' ? : string ;
141
135
' send_page_view' ? : boolean ;
142
136
}
@@ -262,7 +256,6 @@ export function logEvent(analyticsInstance: Analytics, eventName: 'exception', e
262
256
export function logEvent(analyticsInstance : Analytics , eventName : ' generate_lead' , eventParams ? : {
263
257
value? : EventParams [' value' ];
264
258
currency? : EventParams [' currency' ];
265
- transaction_id? : EventParams [' transaction_id' ];
266
259
[key : string ]: any ;
267
260
}, options ? : AnalyticsCallOptions ): void ;
268
261
@@ -295,13 +288,8 @@ export function logEvent(analyticsInstance: Analytics, eventName: 'purchase' | '
295
288
296
289
// @public
297
290
export function logEvent(analyticsInstance : Analytics , eventName : ' screen_view' , eventParams ? : {
298
- app_name: string ;
299
- screen_name: EventParams [' screen_name' ];
300
291
firebase_screen: EventParams [' firebase_screen' ];
301
292
firebase_screen_class: EventParams [' firebase_screen_class' ];
302
- app_id? : string ;
303
- app_version? : string ;
304
- app_installer_id? : string ;
305
293
[key : string ]: any ;
306
294
}, options ? : AnalyticsCallOptions ): void ;
307
295
@@ -313,10 +301,8 @@ export function logEvent(analyticsInstance: Analytics, eventName: 'search' | 'vi
313
301
314
302
// @public
315
303
export function logEvent(analyticsInstance : Analytics , eventName : ' select_content' , eventParams ? : {
316
- items? : EventParams [' items' ];
317
- promotions? : EventParams [' promotions' ];
318
304
content_type? : EventParams [' content_type' ];
319
- content_id ? : EventParams [' content_id ' ];
305
+ item_id ? : EventParams [' item_id ' ];
320
306
[key : string ]: any ;
321
307
}, options ? : AnalyticsCallOptions ): void ;
322
308
@@ -347,7 +333,7 @@ export function logEvent(analyticsInstance: Analytics, eventName: 'set_checkout_
347
333
export function logEvent(analyticsInstance : Analytics , eventName : ' share' , eventParams ? : {
348
334
method? : EventParams [' method' ];
349
335
content_type? : EventParams [' content_type' ];
350
- content_id ? : EventParams [' content_id ' ];
336
+ item_id ? : EventParams [' item_id ' ];
351
337
[key : string ]: any ;
352
338
}, options ? : AnalyticsCallOptions ): void ;
353
339
0 commit comments