Skip to content

Commit 1991ffb

Browse files
committed
Update API reports
1 parent f574db3 commit 1991ffb

File tree

1 file changed

+4
-18
lines changed

1 file changed

+4
-18
lines changed

common/api-review/analytics-exp.api.md

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ export interface EventParams {
5959
// (undocumented)
6060
checkout_step?: number;
6161
// (undocumented)
62-
content_id?: string;
63-
// (undocumented)
6462
content_type?: string;
6563
// (undocumented)
6664
coupon?: string;
@@ -77,6 +75,8 @@ export interface EventParams {
7775
firebase_screen?: string;
7876
firebase_screen_class?: string;
7977
// (undocumented)
78+
item_id?: string;
79+
// (undocumented)
8080
item_list_id?: string;
8181
// (undocumented)
8282
item_list_name?: string;
@@ -125,18 +125,12 @@ export interface GtagConfigParams {
125125
// (undocumented)
126126
[key: string]: unknown;
127127
'allow_ad_personalization_signals'?: boolean;
128-
'anonymize_ip'?: boolean;
129128
'cookie_domain'?: string;
130129
'cookie_expires'?: number;
131130
'cookie_flags'?: string;
132131
'cookie_prefix'?: string;
133132
'cookie_update'?: boolean;
134-
'custom_map'?: {
135-
[key: string]: unknown;
136-
};
137-
'link_attribution'?: boolean;
138133
'page_location'?: string;
139-
'page_path'?: string;
140134
'page_title'?: string;
141135
'send_page_view'?: boolean;
142136
}
@@ -262,7 +256,6 @@ export function logEvent(analyticsInstance: Analytics, eventName: 'exception', e
262256
export function logEvent(analyticsInstance: Analytics, eventName: 'generate_lead', eventParams?: {
263257
value?: EventParams['value'];
264258
currency?: EventParams['currency'];
265-
transaction_id?: EventParams['transaction_id'];
266259
[key: string]: any;
267260
}, options?: AnalyticsCallOptions): void;
268261

@@ -295,13 +288,8 @@ export function logEvent(analyticsInstance: Analytics, eventName: 'purchase' | '
295288

296289
// @public
297290
export function logEvent(analyticsInstance: Analytics, eventName: 'screen_view', eventParams?: {
298-
app_name: string;
299-
screen_name: EventParams['screen_name'];
300291
firebase_screen: EventParams['firebase_screen'];
301292
firebase_screen_class: EventParams['firebase_screen_class'];
302-
app_id?: string;
303-
app_version?: string;
304-
app_installer_id?: string;
305293
[key: string]: any;
306294
}, options?: AnalyticsCallOptions): void;
307295

@@ -313,10 +301,8 @@ export function logEvent(analyticsInstance: Analytics, eventName: 'search' | 'vi
313301

314302
// @public
315303
export function logEvent(analyticsInstance: Analytics, eventName: 'select_content', eventParams?: {
316-
items?: EventParams['items'];
317-
promotions?: EventParams['promotions'];
318304
content_type?: EventParams['content_type'];
319-
content_id?: EventParams['content_id'];
305+
item_id?: EventParams['item_id'];
320306
[key: string]: any;
321307
}, options?: AnalyticsCallOptions): void;
322308

@@ -347,7 +333,7 @@ export function logEvent(analyticsInstance: Analytics, eventName: 'set_checkout_
347333
export function logEvent(analyticsInstance: Analytics, eventName: 'share', eventParams?: {
348334
method?: EventParams['method'];
349335
content_type?: EventParams['content_type'];
350-
content_id?: EventParams['content_id'];
336+
item_id?: EventParams['item_id'];
351337
[key: string]: any;
352338
}, options?: AnalyticsCallOptions): void;
353339

0 commit comments

Comments
 (0)