Skip to content

Commit 15a2bf0

Browse files
authored
Merge ac9e844 into d095ad3
2 parents d095ad3 + ac9e844 commit 15a2bf0

File tree

11 files changed

+49
-3
lines changed

11 files changed

+49
-3
lines changed

.changeset/twelve-moose-enjoy.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
'@firebase/app-check': minor
3+
'@firebase/app-check-interop-types': minor
4+
'@firebase/app-check-types': minor
5+
'firebase': minor
6+
---
7+
8+
Release the Firebase App Check package.

.github/workflows/canary-deploy.yml

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ jobs:
3030
NPM_TOKEN_ANALYTICS_TYPES: ${{secrets.NPM_TOKEN_ANALYTICS_TYPES}}
3131
NPM_TOKEN_APP: ${{secrets.NPM_TOKEN_APP}}
3232
NPM_TOKEN_APP_TYPES: ${{secrets.NPM_TOKEN_APP_TYPES}}
33+
NPM_TOKEN_APP_CHECK: ${{secrets.NPM_TOKEN_APP_CHECK}}
34+
NPM_TOKEN_APP_CHECK_INTEROP_TYPES: ${{secrets.NPM_TOKEN_APP_CHECK_INTEROP_TYPES}}
35+
NPM_TOKEN_APP_CHECK_TYPES: ${{secrets.NPM_TOKEN_APP_CHECK_TYPES}}
3336
NPM_TOKEN_AUTH: ${{secrets.NPM_TOKEN_AUTH}}
3437
NPM_TOKEN_AUTH_INTEROP_TYPES: ${{secrets.NPM_TOKEN_AUTH_INTEROP_TYPES}}
3538
NPM_TOKEN_AUTH_TYPES: ${{secrets.NPM_TOKEN_AUTH_TYPES}}

packages/app-check-interop-types/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"name": "@firebase/app-check-interop-types",
3-
"private": true,
43
"version": "0.1.0",
54
"description": "@firebase/app-check-interop-types Types",
65
"author": "Firebase <[email protected]> (https://firebase.google.com/)",

packages/app-check-types/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"name": "@firebase/app-check-types",
3-
"private": true,
43
"version": "0.1.0",
54
"description": "@firebase/app-check Types",
65
"author": "Firebase <[email protected]> (https://firebase.google.com/)",

packages/app-check/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "@firebase/app-check",
33
"version": "0.1.0",
4-
"private": true,
54
"description": "The App Check component of the Firebase JS SDK",
65
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
76
"main": "dist/index.cjs.js",

packages/firebase/app-check/index.ts

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* @license
3+
* Copyright 2019 Google LLC
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
import '@firebase/app-check';
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "firebase/app-check",
3+
"main": "dist/index.cjs.js",
4+
"module": "dist/index.esm.js",
5+
"typings": "../empty-import.d.ts"
6+
}

packages/firebase/package.json

+2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
"@firebase/performance": "0.4.11",
5858
"@firebase/remote-config": "0.1.36",
5959
"@firebase/analytics": "0.6.9",
60+
"@firebase/app-check": "0.1.0",
6061
"@firebase/util": "1.0.0"
6162
},
6263
"devDependencies": {
@@ -74,6 +75,7 @@
7475
"components": [
7576
"analytics",
7677
"app",
78+
"app-check",
7779
"auth",
7880
"database",
7981
"firestore",

packages/firebase/src/index.cdn.ts

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ import '../storage';
4040
import '../performance';
4141
import '../analytics';
4242
import '../remote-config';
43+
import '../app-check';
4344

4445
firebase.registerVersion(name, version, 'cdn');
4546

packages/firebase/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ import '../storage';
4949
import '../performance';
5050
import '../analytics';
5151
import '../remote-config';
52+
import '../app-check';
5253

5354
firebase.registerVersion(name, version);
5455

scripts/docgen/content-sources/js/toc.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ toc:
1111
- title: "App"
1212
path: /docs/reference/js/firebase.app.App
1313

14+
- title: "firebase.appcheck"
15+
path: /docs/reference/js/firebase.appcheck
16+
section:
17+
- title: "AppCheck"
18+
path: /docs/reference/js/firebase.appcheck.AppCheck
19+
- title: "AppCheckProvider"
20+
path: /docs/reference/js/firebase.appcheck.AppCheckProvider
21+
- title: "AppCheckToken"
22+
path: /docs/reference/js/firebase.appcheck.AppCheckToken
23+
1424
- title: "firebase.analytics"
1525
path: /docs/reference/js/firebase.analytics
1626
section:

0 commit comments

Comments
 (0)