Skip to content

Commit 76840db

Browse files
Merge
2 parents f1d2e37 + 537350e commit 76840db

File tree

195 files changed

+6191
-3473
lines changed

Some content is hidden

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

195 files changed

+6191
-3473
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.json linguist-language=JSON-with-Comments

.github/CODEOWNERS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ packages/storage @schmidt-sebastian @firebase/jssdk-global-approvers
5050
packages/storage-types @schmidt-sebastian @firebase/jssdk-global-approvers
5151

5252
# Messaging Code
53-
packages/messaging @firebase/jssdk-global-approvers
54-
packages/messaging-types @firebase/jssdk-global-approvers
55-
integration/messaging @firebase/jssdk-global-approvers
53+
packages/messaging @zwu52 @firebase/jssdk-global-approvers
54+
packages/messaging-types @zwu52 @firebase/jssdk-global-approvers
55+
integration/messaging @zwu52 @firebase/jssdk-global-approvers
5656

5757
# Auth Code
5858
packages/auth @bojeil-google @wti806 @firebase/jssdk-global-approvers

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,13 @@ typings/
8181

8282
# NPM Lockfiles
8383
package-lock.json
84+
85+
# temp folder used by api-extractor
86+
temp
87+
packages-exp/**/temp
88+
89+
# temp markdowns generated for individual SDKs
90+
packages-exp/**/docs
91+
92+
# files generated by api-extractor that should not be tracked
93+
tsdoc-metadata.json

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@
99
// Exclude installed dependencies from searches too
1010
"**/node_modules": true
1111
},
12-
"typescript.tsdk": "node_modules/typescript/lib"
12+
"typescript.tsdk": "node_modules/typescript/lib",
13+
"files.associations": { "*.json": "jsonc" }
1314
}

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

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
## API Report File for "@firebase/app-exp"
2+
3+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4+
5+
```ts
6+
7+
import { FirebaseApp } from '@firebase/app-types';
8+
import { FirebaseAppConfig } from '@firebase/app-types';
9+
import { FirebaseOptions } from '@firebase/app-types';
10+
import { LogCallback } from '@firebase/logger';
11+
import { LogLevel } from '@firebase/logger';
12+
import { LogOptions } from '@firebase/logger';
13+
14+
// @public
15+
export function deleteApp(app: FirebaseApp): Promise<void>;
16+
17+
// @public
18+
export function getApp(name?: string): FirebaseApp;
19+
20+
// @public
21+
export function getApps(): FirebaseApp[];
22+
23+
// @public
24+
export function initializeApp(options: FirebaseOptions, name?: string): FirebaseApp;
25+
26+
// @public
27+
export function initializeApp(options: FirebaseOptions, config?: FirebaseAppConfig): FirebaseApp;
28+
29+
export { LogLevel }
30+
31+
// @public
32+
export function onLog(logCallback: LogCallback | null, options?: LogOptions): void;
33+
34+
// @public
35+
export function registerVersion(libraryKeyOrName: string, version: string, variant?: string): void;
36+
37+
// @public
38+
export const SDK_VERSION: string;
39+
40+
// @public
41+
export function setLogLevel(logLevel: LogLevel): void;
42+
43+
44+
```
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
## API Report File for "@firebase/app-types-exp"
2+
3+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4+
5+
```ts
6+
7+
import { ComponentContainer } from '@firebase/component';
8+
9+
// @public
10+
export interface FirebaseApp {
11+
automaticDataCollectionEnabled: boolean;
12+
13+
readonly name: string;
14+
15+
readonly options: FirebaseOptions;
16+
}
17+
18+
// @public (undocumented)
19+
export interface FirebaseAppConfig {
20+
// (undocumented)
21+
automaticDataCollectionEnabled?: boolean;
22+
// (undocumented)
23+
name?: string;
24+
}
25+
26+
// @internal (undocumented)
27+
export interface _FirebaseAppInternal extends FirebaseApp {
28+
// (undocumented)
29+
checkDestroyed(): void;
30+
// (undocumented)
31+
container: ComponentContainer;
32+
// (undocumented)
33+
isDeleted: boolean;
34+
}
35+
36+
// @public (undocumented)
37+
export interface FirebaseOptions {
38+
// (undocumented)
39+
apiKey?: string;
40+
// (undocumented)
41+
appId?: string;
42+
// (undocumented)
43+
authDomain?: string;
44+
// (undocumented)
45+
databaseURL?: string;
46+
// (undocumented)
47+
measurementId?: string;
48+
// (undocumented)
49+
messagingSenderId?: string;
50+
// (undocumented)
51+
projectId?: string;
52+
// (undocumented)
53+
storageBucket?: string;
54+
}
55+
56+
// @public (undocumented)
57+
export interface PlatformLoggerService {
58+
// (undocumented)
59+
getPlatformInfoString(): string;
60+
}
61+
62+
63+
// (No @packageDocumentation comment for this package)
64+
65+
```

0 commit comments

Comments
 (0)