Skip to content

Commit 5682141

Browse files
authored
Update exp docs (#4140)
* update docgen to work with firestore * only export LogLevelString * update entrypoints in firestore * link to overloaded function * clean temp folder first * update docs
1 parent b87cfd1 commit 5682141

File tree

346 files changed

+2861
-2213
lines changed

Some content is hidden

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

346 files changed

+2861
-2213
lines changed

common/api-review/auth-types-exp.api.md

+3
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,9 @@ export interface AuthError extends FirebaseError {
105105
readonly tenantid?: string;
106106
}
107107

108+
// @public
109+
export interface AuthErrorMap {}
110+
108111
// @public
109112
export interface AuthProvider {
110113
readonly providerId: string;

common/api-review/firestore-lite.api.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ import { DocumentData as DocumentData_2 } from '@firebase/firestore-types';
88
import { FirebaseApp } from '@firebase/app-types-exp';
99
import { FirebaseAuthInternalName } from '@firebase/auth-interop-types';
1010
import { _FirebaseService } from '@firebase/app-types-exp';
11-
import { LogLevel } from '@firebase/logger';
12-
import { LogLevelString } from '@firebase/logger';
11+
import { LogLevelString as LogLevel } from '@firebase/logger';
1312
import { Provider } from '@firebase/component';
1413
import { SetOptions as SetOptions_2 } from '@firebase/firestore-types';
1514

@@ -262,8 +261,6 @@ export function limitToLast(limit: number): QueryConstraint;
262261

263262
export { LogLevel }
264263

265-
export { LogLevelString }
266-
267264
// @public
268265
export function orderBy(fieldPath: string | FieldPath, directionStr?: OrderByDirection): QueryConstraint;
269266

@@ -333,7 +330,7 @@ export function setDoc<T>(reference: DocumentReference<T>, data: T): Promise<voi
333330
export function setDoc<T>(reference: DocumentReference<T>, data: Partial<T>, options: SetOptions): Promise<void>;
334331

335332
// @public
336-
export function setLogLevel(logLevel: LogLevelString): void;
333+
export function setLogLevel(logLevel: LogLevel): void;
337334

338335
// @public
339336
export type SetOptions = {

0 commit comments

Comments
 (0)