Skip to content

Commit cf24a83

Browse files
Merge af98844 into ea25b2e
2 parents ea25b2e + af98844 commit cf24a83

File tree

16 files changed

+29
-43
lines changed

16 files changed

+29
-43
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

packages-exp/analytics-exp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"rollup": "2.52.2",
4545
"@rollup/plugin-commonjs": "17.1.0",
4646
"@rollup/plugin-json": "4.1.0",
47-
"@rollup/plugin-node-resolve": "11.2.0",
47+
"@rollup/plugin-node-resolve": "13.0.4",
4848
"rollup-plugin-typescript2": "0.30.0",
4949
"typescript": "4.2.2"
5050
},

packages-exp/app-check-compat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"rollup": "2.52.2",
3939
"@rollup/plugin-commonjs": "17.1.0",
4040
"@rollup/plugin-json": "4.1.0",
41-
"@rollup/plugin-node-resolve": "11.2.0",
41+
"@rollup/plugin-node-resolve": "13.0.4",
4242
"rollup-plugin-typescript2": "0.30.0",
4343
"typescript": "4.2.2"
4444
},

packages-exp/app-check-exp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"rollup": "2.52.2",
4242
"@rollup/plugin-commonjs": "17.1.0",
4343
"@rollup/plugin-json": "4.1.0",
44-
"@rollup/plugin-node-resolve": "11.2.0",
44+
"@rollup/plugin-node-resolve": "13.0.4",
4545
"rollup-plugin-typescript2": "0.30.0",
4646
"typescript": "4.2.2"
4747
},

packages-exp/auth-compat-exp/demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"rollup-plugin-replace": "2.2.0",
3232
"@rollup/plugin-commonjs": "17.1.0",
3333
"rollup-plugin-license": "0.14.0",
34-
"@rollup/plugin-node-resolve": "11.2.0",
34+
"@rollup/plugin-node-resolve": "13.0.4",
3535
"rollup-plugin-sourcemaps": "0.6.3",
3636
"rollup-plugin-typescript2": "0.30.0",
3737
"rollup-plugin-uglify": "6.0.4",

packages-exp/auth-compat-exp/demo/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -928,10 +928,10 @@
928928
dependencies:
929929
"@rollup/pluginutils" "^3.0.8"
930930

931-
"@rollup/plugin-node-resolve@11.2.0":
932-
version "11.2.0"
933-
resolved "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.0.tgz#a5ab88c35bb7622d115f44984dee305112b6f714"
934-
integrity sha512-qHjNIKYt5pCcn+5RUBQxK8krhRvf1HnyVgUCcFFcweDS7fhkOLZeYh0mhHK6Ery8/bb9tvN/ubPzmfF0qjDCTA==
931+
"@rollup/plugin-node-resolve@13.0.4":
932+
version "13.0.4"
933+
resolved "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.0.4.tgz#b10222f4145a019740acb7738402130d848660c0"
934+
integrity sha512-eYq4TFy40O8hjeDs+sIxEH/jc9lyuI2k9DM557WN6rO5OpnC2qXMBNj4IKH1oHrnAazL49C5p0tgP0/VpqJ+/w==
935935
dependencies:
936936
"@rollup/pluginutils" "^3.1.0"
937937
"@types/resolve" "1.17.1"

packages-exp/auth-exp/demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"rollup-plugin-terser": "6.1.0",
3232
"rollup-plugin-typescript2": "0.30.0",
3333
"rollup-plugin-uglify": "6.0.4",
34-
"@rollup/plugin-node-resolve": "11.2.0",
34+
"@rollup/plugin-node-resolve": "13.0.4",
3535
"lerna": "4.0.0"
3636
},
3737
"repository": {

packages-exp/firebase-exp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@
245245
"rollup": "2.52.2",
246246
"@rollup/plugin-commonjs": "17.1.0",
247247
"rollup-plugin-license": "2.5.0",
248-
"@rollup/plugin-node-resolve": "11.2.0",
248+
"@rollup/plugin-node-resolve": "13.0.4",
249249
"rollup-plugin-sourcemaps": "0.6.3",
250250
"rollup-plugin-terser": "7.0.2",
251251
"rollup-plugin-typescript2": "0.30.0",

packages-exp/installations-compat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"rollup": "2.52.2",
4141
"@rollup/plugin-commonjs": "17.1.0",
4242
"@rollup/plugin-json": "4.1.0",
43-
"@rollup/plugin-node-resolve": "11.2.0",
43+
"@rollup/plugin-node-resolve": "13.0.4",
4444
"rollup-plugin-typescript2": "0.30.0",
4545
"rollup-plugin-uglify": "6.0.4",
4646
"typescript": "4.2.2"

packages-exp/installations-exp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"rollup": "2.52.2",
4747
"@rollup/plugin-commonjs": "17.1.0",
4848
"@rollup/plugin-json": "4.1.0",
49-
"@rollup/plugin-node-resolve": "11.2.0",
49+
"@rollup/plugin-node-resolve": "13.0.4",
5050
"rollup-plugin-typescript2": "0.30.0",
5151
"rollup-plugin-uglify": "6.0.4",
5252
"typescript": "4.2.2"

packages/analytics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"rollup": "2.52.2",
4040
"@rollup/plugin-commonjs": "17.1.0",
4141
"@rollup/plugin-json": "4.1.0",
42-
"@rollup/plugin-node-resolve": "11.2.0",
42+
"@rollup/plugin-node-resolve": "13.0.4",
4343
"rollup-plugin-typescript2": "0.30.0",
4444
"typescript": "4.2.2"
4545
},

packages/firebase/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"rollup": "2.52.2",
6565
"@rollup/plugin-commonjs": "17.1.0",
6666
"rollup-plugin-license": "2.5.0",
67-
"@rollup/plugin-node-resolve": "11.2.0",
67+
"@rollup/plugin-node-resolve": "13.0.4",
6868
"rollup-plugin-sourcemaps": "0.6.3",
6969
"rollup-plugin-terser": "7.0.2",
7070
"rollup-plugin-typescript2": "0.30.0",

packages/firestore/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"@firebase/app": "0.6.29",
8585
"@rollup/plugin-alias": "3.1.2",
8686
"@rollup/plugin-json": "4.1.0",
87-
"@rollup/plugin-node-resolve": "11.2.0",
87+
"@rollup/plugin-node-resolve": "13.0.4",
8888
"@types/eslint": "7.2.10",
8989
"@types/json-stable-stringify": "1.0.32",
9090
"json-stable-stringify": "1.0.1",

packages/installations/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"rollup": "2.52.2",
3434
"@rollup/plugin-commonjs": "17.1.0",
3535
"@rollup/plugin-json": "4.1.0",
36-
"@rollup/plugin-node-resolve": "11.2.0",
36+
"@rollup/plugin-node-resolve": "13.0.4",
3737
"rollup-plugin-typescript2": "0.30.0",
3838
"rollup-plugin-uglify": "6.0.4",
3939
"typescript": "4.2.2"

repo-scripts/size-analysis/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"rollup": "2.52.2",
2323
"@rollup/plugin-commonjs": "17.1.0",
2424
"@rollup/plugin-json": "4.1.0",
25-
"@rollup/plugin-node-resolve": "11.2.0",
25+
"@rollup/plugin-node-resolve": "13.0.4",
2626
"rollup-plugin-replace": "2.2.0",
2727
"rollup-plugin-typescript2": "0.30.0",
2828
"@rollup/plugin-virtual": "2.0.3",

yarn.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2552,10 +2552,10 @@
25522552
dependencies:
25532553
"@rollup/pluginutils" "^3.0.8"
25542554

2555-
"@rollup/plugin-node-resolve@11.2.0":
2556-
version "11.2.0"
2557-
resolved "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.0.tgz#a5ab88c35bb7622d115f44984dee305112b6f714"
2558-
integrity sha512-qHjNIKYt5pCcn+5RUBQxK8krhRvf1HnyVgUCcFFcweDS7fhkOLZeYh0mhHK6Ery8/bb9tvN/ubPzmfF0qjDCTA==
2555+
"@rollup/plugin-node-resolve@13.0.4":
2556+
version "13.0.4"
2557+
resolved "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.0.4.tgz#b10222f4145a019740acb7738402130d848660c0"
2558+
integrity sha512-eYq4TFy40O8hjeDs+sIxEH/jc9lyuI2k9DM557WN6rO5OpnC2qXMBNj4IKH1oHrnAazL49C5p0tgP0/VpqJ+/w==
25592559
dependencies:
25602560
"@rollup/pluginutils" "^3.1.0"
25612561
"@types/resolve" "1.17.1"
@@ -7723,7 +7723,7 @@ [email protected]:
77237723
"@google-cloud/storage" "^5.3.0"
77247724

77257725
"firebase-exp@file:packages-exp/firebase-exp":
7726-
version "9.0.0-beta.6"
7726+
version "9.0.0-beta.7"
77277727
dependencies:
77287728
"@firebase/analytics-compat" "0.0.900"
77297729
"@firebase/analytics-exp" "0.0.900"
@@ -7733,8 +7733,8 @@ [email protected]:
77337733
"@firebase/app-exp" "0.0.900"
77347734
"@firebase/auth-compat" "0.0.900"
77357735
"@firebase/auth-exp" "0.0.900"
7736-
"@firebase/database" "0.10.7"
7737-
"@firebase/firestore" "2.3.8"
7736+
"@firebase/database" "0.10.9"
7737+
"@firebase/firestore" "2.3.10"
77387738
"@firebase/functions-compat" "0.0.900"
77397739
"@firebase/functions-exp" "0.0.900"
77407740
"@firebase/messaging-compat" "0.0.900"
@@ -7743,7 +7743,7 @@ [email protected]:
77437743
"@firebase/performance-exp" "0.0.900"
77447744
"@firebase/remote-config-compat" "0.0.900"
77457745
"@firebase/remote-config-exp" "0.0.900"
7746-
"@firebase/storage" "0.5.6"
7746+
"@firebase/storage" "0.6.1"
77477747

77487748
77497749
version "3.14.1"

0 commit comments

Comments
 (0)