Skip to content

Commit a795f0a

Browse files
Update API reports
1 parent 4f3b950 commit a795f0a

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

common/api-review/firestore.api.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,13 +188,10 @@ export class FirestoreError extends FirebaseError {
188188
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';
189189

190190
// @public
191-
export interface FirestoreSettings {
191+
export interface FirestoreSettings extends Settings {
192192
cacheSizeBytes?: number;
193193
experimentalAutoDetectLongPolling?: boolean;
194194
experimentalForceLongPolling?: boolean;
195-
host?: string;
196-
ignoreUndefinedProperties?: boolean;
197-
ssl?: boolean;
198195
}
199196

200197
// @public
@@ -406,6 +403,13 @@ export type SetOptions = {
406403
readonly mergeFields?: Array<string | FieldPath>;
407404
};
408405

406+
// @public
407+
export interface Settings {
408+
host?: string;
409+
ignoreUndefinedProperties?: boolean;
410+
ssl?: boolean;
411+
}
412+
409413
// @public
410414
export function snapshotEqual<T>(left: DocumentSnapshot<T> | QuerySnapshot<T>, right: DocumentSnapshot<T> | QuerySnapshot<T>): boolean;
411415

0 commit comments

Comments
 (0)