Skip to content

Update exp docs #4140

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Dec 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions common/api-review/auth-types-exp.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ export interface AuthError extends FirebaseError {
readonly tenantid?: string;
}

// @public
export interface AuthErrorMap {}

// @public
export interface AuthProvider {
readonly providerId: string;
Expand Down
7 changes: 2 additions & 5 deletions common/api-review/firestore-lite.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ import { DocumentData as DocumentData_2 } from '@firebase/firestore-types';
import { FirebaseApp } from '@firebase/app-types-exp';
import { FirebaseAuthInternalName } from '@firebase/auth-interop-types';
import { _FirebaseService } from '@firebase/app-types-exp';
import { LogLevel } from '@firebase/logger';
import { LogLevelString } from '@firebase/logger';
import { LogLevelString as LogLevel } from '@firebase/logger';
import { Provider } from '@firebase/component';
import { SetOptions as SetOptions_2 } from '@firebase/firestore-types';

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

export { LogLevel }

export { LogLevelString }

// @public
export function orderBy(fieldPath: string | FieldPath, directionStr?: OrderByDirection): QueryConstraint;

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

// @public
export function setLogLevel(logLevel: LogLevelString): void;
export function setLogLevel(logLevel: LogLevel): void;

// @public
export type SetOptions = {
Expand Down
Loading