Skip to content

Commit 9fd761b

Browse files
committed
Merge branch 'master' into feature-firebaseserverapp
2 parents 6df26bb + 9fa0e9f commit 9fd761b

File tree

93 files changed

+839
-236
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+839
-236
lines changed

.changeset/purple-cooks-explode.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/CODEOWNERS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
* @firebase/jssdk-global-approvers
1212

1313
# Database Code
14-
packages/database @maneesht @jsdt @jmwski @firebase/jssdk-global-approvers
15-
packages/database-compat @maneesht @jsdt @jmwski @firebase/jssdk-global-approvers
16-
packages/database-types @maneesht @jsdt @jmwski @firebase/jssdk-global-approvers
14+
packages/database @maneesht @aashishpatil-g @firebase/jssdk-global-approvers
15+
packages/database-compat @maneesht @aashishpatil-g @firebase/jssdk-global-approvers
16+
packages/database-types @maneesht @aashishpatil-g @firebase/jssdk-global-approvers
1717

1818
# Firestore Code
1919
packages/firestore @firebase/firestore-js-team @firebase/jssdk-global-approvers

common/api-review/analytics.api.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ export interface AnalyticsSettings {
2525
export interface ConsentSettings {
2626
// (undocumented)
2727
[key: string]: unknown;
28+
ad_personalization?: ConsentStatusString;
2829
ad_storage?: ConsentStatusString;
30+
ad_user_data?: ConsentStatusString;
2931
analytics_storage?: ConsentStatusString;
3032
functionality_storage?: ConsentStatusString;
3133
personalization_storage?: ConsentStatusString;

docs-devsite/analytics.consentsettings.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,24 @@ export interface ConsentSettings
2222

2323
| Property | Type | Description |
2424
| --- | --- | --- |
25+
| [ad\_personalization](./analytics.consentsettings.md#consentsettingsad_personalization) | [ConsentStatusString](./analytics.md#consentstatusstring) | Sets consent for personalized advertising. |
2526
| [ad\_storage](./analytics.consentsettings.md#consentsettingsad_storage) | [ConsentStatusString](./analytics.md#consentstatusstring) | Enables storage, such as cookies, related to advertising |
27+
| [ad\_user\_data](./analytics.consentsettings.md#consentsettingsad_user_data) | [ConsentStatusString](./analytics.md#consentstatusstring) | Sets consent for sending user data to Google for advertising purposes. |
2628
| [analytics\_storage](./analytics.consentsettings.md#consentsettingsanalytics_storage) | [ConsentStatusString](./analytics.md#consentstatusstring) | Enables storage, such as cookies, related to analytics (for example, visit duration) |
2729
| [functionality\_storage](./analytics.consentsettings.md#consentsettingsfunctionality_storage) | [ConsentStatusString](./analytics.md#consentstatusstring) | Enables storage that supports the functionality of the website or app such as language settings |
2830
| [personalization\_storage](./analytics.consentsettings.md#consentsettingspersonalization_storage) | [ConsentStatusString](./analytics.md#consentstatusstring) | Enables storage related to personalization such as video recommendations |
2931
| [security\_storage](./analytics.consentsettings.md#consentsettingssecurity_storage) | [ConsentStatusString](./analytics.md#consentstatusstring) | Enables storage related to security such as authentication functionality, fraud prevention, and other user protection. |
3032

33+
## ConsentSettings.ad\_personalization
34+
35+
Sets consent for personalized advertising.
36+
37+
<b>Signature:</b>
38+
39+
```typescript
40+
ad_personalization?: ConsentStatusString;
41+
```
42+
3143
## ConsentSettings.ad\_storage
3244

3345
Enables storage, such as cookies, related to advertising
@@ -38,6 +50,16 @@ Enables storage, such as cookies, related to advertising
3850
ad_storage?: ConsentStatusString;
3951
```
4052

53+
## ConsentSettings.ad\_user\_data
54+
55+
Sets consent for sending user data to Google for advertising purposes.
56+
57+
<b>Signature:</b>
58+
59+
```typescript
60+
ad_user_data?: ConsentStatusString;
61+
```
62+
4163
## ConsentSettings.analytics\_storage
4264

4365
Enables storage, such as cookies, related to analytics (for example, visit duration)

docs-devsite/analytics.gtagconfigparams.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ export interface GtagConfigParams
2929
| [cookie\_flags](./analytics.gtagconfigparams.md#gtagconfigparamscookie_flags) | string | Appends additional flags to the cookie when set. See [Cookies and user identification](https://developers.google.com/analytics/devguides/collection/ga4/cookies-user-id) |
3030
| [cookie\_prefix](./analytics.gtagconfigparams.md#gtagconfigparamscookie_prefix) | string | Defaults to <code>_ga</code>. See [Cookies and user identification](https://developers.google.com/analytics/devguides/collection/ga4/cookies-user-id) |
3131
| [cookie\_update](./analytics.gtagconfigparams.md#gtagconfigparamscookie_update) | boolean | If set to true, will update cookies on each page load. Defaults to true. See [Cookies and user identification](https://developers.google.com/analytics/devguides/collection/ga4/cookies-user-id) |
32-
| [page\_location](./analytics.gtagconfigparams.md#gtagconfigparamspage_location) | string | The URL of the page. See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/page-view) |
33-
| [page\_title](./analytics.gtagconfigparams.md#gtagconfigparamspage_title) | string | The title of the page. See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/page-view) |
34-
| [send\_page\_view](./analytics.gtagconfigparams.md#gtagconfigparamssend_page_view) | boolean | Whether or not a page view should be sent. If set to true (default), a page view is automatically sent upon initialization of analytics. See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/page-view) |
32+
| [page\_location](./analytics.gtagconfigparams.md#gtagconfigparamspage_location) | string | The URL of the page. See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/views) |
33+
| [page\_title](./analytics.gtagconfigparams.md#gtagconfigparamspage_title) | string | The title of the page. See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/views) |
34+
| [send\_page\_view](./analytics.gtagconfigparams.md#gtagconfigparamssend_page_view) | boolean | Whether or not a page view should be sent. If set to true (default), a page view is automatically sent upon initialization of analytics. See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/views) |
3535

3636
## GtagConfigParams.allow\_ad\_personalization\_signals
3737

@@ -105,7 +105,7 @@ If set to true, will update cookies on each page load. Defaults to true. See [Co
105105

106106
## GtagConfigParams.page\_location
107107

108-
The URL of the page. See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/page-view)
108+
The URL of the page. See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/views)
109109

110110
<b>Signature:</b>
111111

@@ -115,7 +115,7 @@ The URL of the page. See [Page views](https://developers.google.com/analytics/de
115115

116116
## GtagConfigParams.page\_title
117117

118-
The title of the page. See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/page-view)
118+
The title of the page. See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/views)
119119

120120
<b>Signature:</b>
121121

@@ -125,7 +125,7 @@ The title of the page. See [Page views](https://developers.google.com/analytics/
125125

126126
## GtagConfigParams.send\_page\_view
127127

128-
Whether or not a page view should be sent. If set to true (default), a page view is automatically sent upon initialization of analytics. See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/page-view)
128+
Whether or not a page view should be sent. If set to true (default), a page view is automatically sent upon initialization of analytics. See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/views)
129129

130130
<b>Signature:</b>
131131

docs-devsite/analytics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The Firebase Analytics Web SDK. This SDK does not work in a Node.js environment.
4242
| [logEvent(analyticsInstance, eventName, eventParams, options)](./analytics.md#logevent_800159e) | Sends a Google Analytics event with given <code>eventParams</code>. This method automatically associates this logged event with this Firebase web app instance on this device.<!-- -->See [Measure exceptions](https://developers.google.com/analytics/devguides/collection/ga4/exceptions)<!-- -->. |
4343
| [logEvent(analyticsInstance, eventName, eventParams, options)](./analytics.md#logevent_9c11aa9) | Sends a Google Analytics event with given <code>eventParams</code>. This method automatically associates this logged event with this Firebase web app instance on this device.<!-- -->List of recommended event parameters can be found in [the GA4 reference documentation](https://developers.google.com/gtagjs/reference/ga4-events)<!-- -->. |
4444
| [logEvent(analyticsInstance, eventName, eventParams, options)](./analytics.md#logevent_1f3f282) | Sends a Google Analytics event with given <code>eventParams</code>. This method automatically associates this logged event with this Firebase web app instance on this device.<!-- -->List of recommended event parameters can be found in [the GA4 reference documentation](https://developers.google.com/gtagjs/reference/ga4-events)<!-- -->. |
45-
| [logEvent(analyticsInstance, eventName, eventParams, options)](./analytics.md#logevent_0792e28) | Sends a Google Analytics event with given <code>eventParams</code>. This method automatically associates this logged event with this Firebase web app instance on this device.<!-- -->See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/page-view)<!-- -->. |
45+
| [logEvent(analyticsInstance, eventName, eventParams, options)](./analytics.md#logevent_0792e28) | Sends a Google Analytics event with given <code>eventParams</code>. This method automatically associates this logged event with this Firebase web app instance on this device.<!-- -->See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/views)<!-- -->. |
4646
| [setAnalyticsCollectionEnabled(analyticsInstance, enabled)](./analytics.md#setanalyticscollectionenabled_494179c) | Sets whether Google Analytics collection is enabled for this app on this device. Sets global <code>window['ga-disable-analyticsId'] = true;</code> |
4747
| [setCurrentScreen(analyticsInstance, screenName, options)](./analytics.md#setcurrentscreen_a6168fa) | Use gtag <code>config</code> command to set <code>screen_name</code>. |
4848
| [setUserId(analyticsInstance, id, options)](./analytics.md#setuserid_86d82f6) | Use gtag <code>config</code> command to set <code>user_id</code>. |
@@ -780,7 +780,7 @@ void
780780

781781
Sends a Google Analytics event with given `eventParams`<!-- -->. This method automatically associates this logged event with this Firebase web app instance on this device.
782782

783-
See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/page-view)<!-- -->.
783+
See [Page views](https://developers.google.com/analytics/devguides/collection/ga4/views)<!-- -->.
784784

785785
<b>Signature:</b>
786786

docs-devsite/auth.googleauthprovider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ https://github.com/firebase/firebase-js-sdk
1010
{% endcomment %}
1111

1212
# GoogleAuthProvider class
13-
Provider for generating an an [OAuthCredential](./auth.oauthcredential.md#oauthcredential_class) for [ProviderId](./auth.md#providerid)<!-- -->.GOOGLE.
13+
Provider for generating an [OAuthCredential](./auth.oauthcredential.md#oauthcredential_class) for [ProviderId](./auth.md#providerid)<!-- -->.GOOGLE.
1414

1515
<b>Signature:</b>
1616

docs-devsite/auth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Firebase Authentication
8888
| [EmailAuthProvider](./auth.emailauthprovider.md#emailauthprovider_class) | Provider for generating [EmailAuthCredential](./auth.emailauthcredential.md#emailauthcredential_class)<!-- -->. |
8989
| [FacebookAuthProvider](./auth.facebookauthprovider.md#facebookauthprovider_class) | Provider for generating an [OAuthCredential](./auth.oauthcredential.md#oauthcredential_class) for [ProviderId](./auth.md#providerid)<!-- -->.FACEBOOK. |
9090
| [GithubAuthProvider](./auth.githubauthprovider.md#githubauthprovider_class) | Provider for generating an [OAuthCredential](./auth.oauthcredential.md#oauthcredential_class) for [ProviderId](./auth.md#providerid)<!-- -->.GITHUB. |
91-
| [GoogleAuthProvider](./auth.googleauthprovider.md#googleauthprovider_class) | Provider for generating an an [OAuthCredential](./auth.oauthcredential.md#oauthcredential_class) for [ProviderId](./auth.md#providerid)<!-- -->.GOOGLE. |
91+
| [GoogleAuthProvider](./auth.googleauthprovider.md#googleauthprovider_class) | Provider for generating an [OAuthCredential](./auth.oauthcredential.md#oauthcredential_class) for [ProviderId](./auth.md#providerid)<!-- -->.GOOGLE. |
9292
| [OAuthCredential](./auth.oauthcredential.md#oauthcredential_class) | Represents the OAuth credentials returned by an [OAuthProvider](./auth.oauthprovider.md#oauthprovider_class)<!-- -->. |
9393
| [OAuthProvider](./auth.oauthprovider.md#oauthprovider_class) | Provider for generating generic [OAuthCredential](./auth.oauthcredential.md#oauthcredential_class)<!-- -->. |
9494
| [PhoneAuthCredential](./auth.phoneauthcredential.md#phoneauthcredential_class) | Represents the credentials returned by [PhoneAuthProvider](./auth.phoneauthprovider.md#phoneauthprovider_class)<!-- -->. |

integration/compat-interop/package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@
88
"test:debug": "karma start --browsers Chrome --auto-watch"
99
},
1010
"dependencies": {
11-
"@firebase/app": "0.9.26",
12-
"@firebase/app-compat": "0.2.26",
13-
"@firebase/analytics": "0.10.0",
14-
"@firebase/analytics-compat": "0.2.6",
15-
"@firebase/auth": "1.5.1",
16-
"@firebase/auth-compat": "0.5.1",
17-
"@firebase/functions": "0.11.0",
18-
"@firebase/functions-compat": "0.3.6",
19-
"@firebase/messaging": "0.12.5",
20-
"@firebase/messaging-compat": "0.2.5",
21-
"@firebase/performance": "0.6.4",
22-
"@firebase/performance-compat": "0.2.4",
23-
"@firebase/remote-config": "0.4.4",
24-
"@firebase/remote-config-compat": "0.2.4"
11+
"@firebase/app": "0.9.27",
12+
"@firebase/app-compat": "0.2.27",
13+
"@firebase/analytics": "0.10.1",
14+
"@firebase/analytics-compat": "0.2.7",
15+
"@firebase/auth": "1.6.0",
16+
"@firebase/auth-compat": "0.5.2",
17+
"@firebase/functions": "0.11.1",
18+
"@firebase/functions-compat": "0.3.7",
19+
"@firebase/messaging": "0.12.6",
20+
"@firebase/messaging-compat": "0.2.6",
21+
"@firebase/performance": "0.6.5",
22+
"@firebase/performance-compat": "0.2.5",
23+
"@firebase/remote-config": "0.4.5",
24+
"@firebase/remote-config-compat": "0.2.5"
2525
},
2626
"devDependencies": {
2727
"typescript": "4.7.4"

integration/firebase/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test"
88
},
99
"devDependencies": {
10-
"firebase": "10.7.2",
10+
"firebase": "10.8.0",
1111
"@types/chai": "4.3.5",
1212
"@types/mocha": "9.1.1",
1313
"chai": "4.3.7",

integration/firestore/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"test:memory:debug": "yarn build:memory; karma start --auto-watch --browsers Chrome"
1515
},
1616
"dependencies": {
17-
"@firebase/app": "0.9.26",
18-
"@firebase/firestore": "4.4.1"
17+
"@firebase/app": "0.9.27",
18+
"@firebase/firestore": "4.4.2"
1919
},
2020
"devDependencies": {
2121
"@types/mocha": "9.1.1",

integration/messaging/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"test:manual": "mocha --exit"
1010
},
1111
"devDependencies": {
12-
"firebase": "10.7.2",
12+
"firebase": "10.8.0",
1313
"chai": "4.3.7",
1414
"chromedriver": "114.0.2",
1515
"express": "4.18.2",

packages/analytics-compat/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @firebase/analytics-compat
22

3+
## 0.2.7
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`bf59c0aed`](https://github.com/firebase/firebase-js-sdk/commit/bf59c0aedefabae9bff4d777e1591fe496259293), [`434f8418c`](https://github.com/firebase/firebase-js-sdk/commit/434f8418c3db3ae98489a8461c437c248c039070)]:
8+
- @firebase/analytics@0.10.1
9+
- @firebase/util@1.9.4
10+
- @firebase/component@0.6.5
11+
312
## 0.2.6
413

514
### Patch Changes

packages/analytics-compat/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@firebase/analytics-compat",
3-
"version": "0.2.6",
3+
"version": "0.2.7",
44
"description": "",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"main": "dist/index.cjs.js",
@@ -24,7 +24,7 @@
2424
"@firebase/app-compat": "0.x"
2525
},
2626
"devDependencies": {
27-
"@firebase/app-compat": "0.2.26",
27+
"@firebase/app-compat": "0.2.27",
2828
"rollup": "2.79.1",
2929
"@rollup/plugin-json": "4.1.0",
3030
"rollup-plugin-typescript2": "0.31.2",
@@ -53,10 +53,10 @@
5353
},
5454
"typings": "dist/src/index.d.ts",
5555
"dependencies": {
56-
"@firebase/component": "0.6.4",
57-
"@firebase/analytics": "0.10.0",
56+
"@firebase/component": "0.6.5",
57+
"@firebase/analytics": "0.10.1",
5858
"@firebase/analytics-types": "0.8.0",
59-
"@firebase/util": "1.9.3",
59+
"@firebase/util": "1.9.4",
6060
"tslib": "^2.1.0"
6161
},
6262
"nyc": {

packages/analytics-types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ export interface FirebaseAnalytics {
197197
* automatically associates this logged event with this Firebase web
198198
* app instance on this device.
199199
* See
200-
* {@link https://developers.google.com/analytics/devguides/collection/ga4/page-view
200+
* {@link https://developers.google.com/analytics/devguides/collection/ga4/views
201201
* | Page views}.
202202
*/
203203
logEvent(

packages/analytics/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @firebase/analytics
22

3+
## 0.10.1
4+
5+
### Patch Changes
6+
7+
- [`bf59c0aed`](https://github.com/firebase/firebase-js-sdk/commit/bf59c0aedefabae9bff4d777e1591fe496259293) - Analytics - added two new consent options to the ConsentSettings interface: ad_personalization and ad_user_data.
8+
9+
- Updated dependencies [[`434f8418c`](https://github.com/firebase/firebase-js-sdk/commit/434f8418c3db3ae98489a8461c437c248c039070)]:
10+
- @firebase/util@1.9.4
11+
- @firebase/installations@0.6.5
12+
- @firebase/component@0.6.5
13+
314
## 0.10.0
415

516
### Minor Changes

packages/analytics/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@firebase/analytics",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "A analytics package for new firebase packages",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"main": "dist/index.cjs.js",
@@ -40,15 +40,15 @@
4040
"@firebase/app": "0.x"
4141
},
4242
"dependencies": {
43-
"@firebase/installations": "0.6.4",
43+
"@firebase/installations": "0.6.5",
4444
"@firebase/logger": "0.4.0",
45-
"@firebase/util": "1.9.3",
46-
"@firebase/component": "0.6.4",
45+
"@firebase/util": "1.9.4",
46+
"@firebase/component": "0.6.5",
4747
"tslib": "^2.1.0"
4848
},
4949
"license": "Apache-2.0",
5050
"devDependencies": {
51-
"@firebase/app": "0.9.26",
51+
"@firebase/app": "0.9.27",
5252
"rollup": "2.79.1",
5353
"@rollup/plugin-commonjs": "21.1.0",
5454
"@rollup/plugin-json": "4.1.0",

packages/analytics/src/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ export function logEvent(
441441
* app instance on this device.
442442
* @public
443443
* See
444-
* {@link https://developers.google.com/analytics/devguides/collection/ga4/page-view
444+
* {@link https://developers.google.com/analytics/devguides/collection/ga4/views
445445
* | Page views}.
446446
*/
447447
export function logEvent(

packages/analytics/src/public-types.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ export interface GtagConfigParams {
2727
* Whether or not a page view should be sent.
2828
* If set to true (default), a page view is automatically sent upon initialization
2929
* of analytics.
30-
* See {@link https://developers.google.com/analytics/devguides/collection/ga4/page-view | Page views }
30+
* See {@link https://developers.google.com/analytics/devguides/collection/ga4/views | Page views }
3131
*/
3232
'send_page_view'?: boolean;
3333
/**
3434
* The title of the page.
35-
* See {@link https://developers.google.com/analytics/devguides/collection/ga4/page-view | Page views }
35+
* See {@link https://developers.google.com/analytics/devguides/collection/ga4/views | Page views }
3636
*/
3737
'page_title'?: string;
3838
/**
3939
* The URL of the page.
40-
* See {@link https://developers.google.com/analytics/devguides/collection/ga4/page-view | Page views }
40+
* See {@link https://developers.google.com/analytics/devguides/collection/ga4/views | Page views }
4141
*/
4242
'page_location'?: string;
4343
/**
@@ -299,6 +299,10 @@ export interface EventParams {
299299
export interface ConsentSettings {
300300
/** Enables storage, such as cookies, related to advertising */
301301
ad_storage?: ConsentStatusString;
302+
/** Sets consent for sending user data to Google for advertising purposes. */
303+
ad_user_data?: ConsentStatusString;
304+
/** Sets consent for personalized advertising. */
305+
ad_personalization?: ConsentStatusString;
302306
/** Enables storage, such as cookies, related to analytics (for example, visit duration) */
303307
analytics_storage?: ConsentStatusString;
304308
/**

packages/app-check-compat/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @firebase/app-check-compat
22

3+
## 0.3.9
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`434f8418c`](https://github.com/firebase/firebase-js-sdk/commit/434f8418c3db3ae98489a8461c437c248c039070)]:
8+
- @firebase/util@1.9.4
9+
- @firebase/app-check@0.8.2
10+
- @firebase/component@0.6.5
11+
312
## 0.3.8
413

514
### Patch Changes

0 commit comments

Comments
 (0)