Skip to content

Commit

Permalink
Update API reports
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidt-sebastian committed Jan 5, 2022
1 parent 4f3b950 commit a795f0a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions common/api-review/firestore.api.md
Expand Up @@ -188,13 +188,10 @@ export class FirestoreError extends FirebaseError {
export type FirestoreErrorCode = 'cancelled' | 'unknown' | 'invalid-argument' | 'deadline-exceeded' | 'not-found' | 'already-exists' | 'permission-denied' | 'resource-exhausted' | 'failed-precondition' | 'aborted' | 'out-of-range' | 'unimplemented' | 'internal' | 'unavailable' | 'data-loss' | 'unauthenticated';

// @public
export interface FirestoreSettings {
export interface FirestoreSettings extends Settings {
cacheSizeBytes?: number;
experimentalAutoDetectLongPolling?: boolean;
experimentalForceLongPolling?: boolean;
host?: string;
ignoreUndefinedProperties?: boolean;
ssl?: boolean;
}

// @public
Expand Down Expand Up @@ -406,6 +403,13 @@ export type SetOptions = {
readonly mergeFields?: Array<string | FieldPath>;
};

// @public
export interface Settings {
host?: string;
ignoreUndefinedProperties?: boolean;
ssl?: boolean;
}

// @public
export function snapshotEqual<T>(left: DocumentSnapshot<T> | QuerySnapshot<T>, right: DocumentSnapshot<T> | QuerySnapshot<T>): boolean;

Expand Down

0 comments on commit a795f0a

Please sign in to comment.