1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660 |
- /**
- * Firestore Lite
- *
- * @remarks Firestore Lite is a small online-only SDK that allows read
- * and write access to your Firestore database. All operations connect
- * directly to the backend, and `onSnapshot()` APIs are not supported.
- * @packageDocumentation
- */
- import { FirebaseApp } from '@firebase/app';
- import { LogLevelString as LogLevel } from '@firebase/logger';
- import { EmulatorMockTokenOptions } from '@firebase/util';
- import { FirebaseError } from '@firebase/util';
-
- /* Excluded from this release type: AbstractUserDataWriter */
- /**
- * Add a new document to specified `CollectionReference` with the given data,
- * assigning it a document ID automatically.
- *
- * The result of this write will only be reflected in document reads that occur
- * after the returned promise resolves. If the client is offline, the
- * write fails. If you would like to see local modifications or buffer writes
- * until the client is online, use the full Firestore SDK.
- *
- * @param reference - A reference to the collection to add this document to.
- * @param data - An Object containing the data for the new document.
- * @throws Error - If the provided input is not a valid Firestore document.
- * @returns A `Promise` resolved with a `DocumentReference` pointing to the
- * newly created document after it has been written to the backend.
- */
- export declare function addDoc<T>(reference: CollectionReference<T>, data: WithFieldValue<T>): Promise<DocumentReference<T>>;
- /**
- * Returns a new map where every key is prefixed with the outer key appended
- * to a dot.
- */
- export declare type AddPrefixToKeys<Prefix extends string, T extends Record<string, unknown>> = {
- [K in keyof T & string as `${Prefix}.${K}`]+?: T[K];
- };
- /**
- * Represents an aggregation that can be performed by Firestore.
- */
- export declare class AggregateField<T> {
- /** A type string to uniquely identify instances of this class. */
- type: string;
- }
- /**
- * The union of all `AggregateField` types that are supported by Firestore.
- */
- export declare type AggregateFieldType = AggregateField<number>;
- /**
- * The results of executing an aggregation query.
- */
- export declare class AggregateQuerySnapshot<T extends AggregateSpec> {
- /** A type string to uniquely identify instances of this class. */
- readonly type = "AggregateQuerySnapshot";
- /**
- * The underlying query over which the aggregations recorded in this
- * `AggregateQuerySnapshot` were performed.
- */
- readonly query: Query<unknown>;
- private constructor();
- /**
- * Returns the results of the aggregations performed over the underlying
- * query.
- *
- * The keys of the returned object will be the same as those of the
- * `AggregateSpec` object specified to the aggregation method, and the values
- * will be the corresponding aggregation result.
- *
- * @returns The results of the aggregations performed over the underlying
- * query.
- */
- data(): AggregateSpecData<T>;
- }
- /**
- * Compares two `AggregateQuerySnapshot` instances for equality.
- *
- * Two `AggregateQuerySnapshot` instances are considered "equal" if they have
- * underlying queries that compare equal, and the same data.
- *
- * @param left - The first `AggregateQuerySnapshot` to compare.
- * @param right - The second `AggregateQuerySnapshot` to compare.
- *
- * @returns `true` if the objects are "equal", as defined above, or `false`
- * otherwise.
- */
- export declare function aggregateQuerySnapshotEqual<T extends AggregateSpec>(left: AggregateQuerySnapshot<T>, right: AggregateQuerySnapshot<T>): boolean;
- /**
- * A type whose property values are all `AggregateField` objects.
- */
- export declare interface AggregateSpec {
- [field: string]: AggregateFieldType;
- }
- /**
- * A type whose keys are taken from an `AggregateSpec`, and whose values are the
- * result of the aggregation performed by the corresponding `AggregateField`
- * from the input `AggregateSpec`.
- */
- export declare type AggregateSpecData<T extends AggregateSpec> = {
- [P in keyof T]: T[P] extends AggregateField<infer U> ? U : never;
- };
- /**
- * Returns a special value that can be used with {@link (setDoc:1)} or {@link
- * updateDoc:1} that tells the server to remove the given elements from any
- * array value that already exists on the server. All instances of each element
- * specified will be removed from the array. If the field being modified is not
- * already an array it will be overwritten with an empty array.
- *
- * @param elements - The elements to remove from the array.
- * @returns The `FieldValue` sentinel for use in a call to `setDoc()` or
- * `updateDoc()`
- */
- export declare function arrayRemove(...elements: unknown[]): FieldValue;
- /**
- * Returns a special value that can be used with {@link @firebase/firestore/lite#(setDoc:1)} or {@link
- * @firebase/firestore/lite#(updateDoc:1)} that tells the server to union the given elements with any array
- * value that already exists on the server. Each specified element that doesn't
- * already exist in the array will be added to the end. If the field being
- * modified is not already an array it will be overwritten with an array
- * containing exactly the specified elements.
- *
- * @param elements - The elements to union into the array.
- * @returns The `FieldValue` sentinel for use in a call to `setDoc()` or
- * `updateDoc()`.
- */
- export declare function arrayUnion(...elements: unknown[]): FieldValue;
- /**
- * An immutable object representing an array of bytes.
- */
- export declare class Bytes {
- private constructor();
- /**
- * Creates a new `Bytes` object from the given Base64 string, converting it to
- * bytes.
- *
- * @param base64 - The Base64 string used to create the `Bytes` object.
- */
- static fromBase64String(base64: string): Bytes;
- /**
- * Creates a new `Bytes` object from the given Uint8Array.
- *
- * @param array - The Uint8Array used to create the `Bytes` object.
- */
- static fromUint8Array(array: Uint8Array): Bytes;
- /**
- * Returns the underlying bytes as a Base64-encoded string.
- *
- * @returns The Base64-encoded string created from the `Bytes` object.
- */
- toBase64(): string;
- /**
- * Returns the underlying bytes in a new `Uint8Array`.
- *
- * @returns The Uint8Array created from the `Bytes` object.
- */
- toUint8Array(): Uint8Array;
- /**
- * Returns a string representation of the `Bytes` object.
- *
- * @returns A string representation of the `Bytes` object.
- */
- toString(): string;
- /**
- * Returns true if this `Bytes` object is equal to the provided one.
- *
- * @param other - The `Bytes` object to compare against.
- * @returns true if this `Bytes` object is equal to the provided one.
- */
- isEqual(other: Bytes): boolean;
- }
- /* Excluded from this release type: ByteString */
- /**
- * Helper for calculating the nested fields for a given type T1. This is needed
- * to distribute union types such as `undefined | {...}` (happens for optional
- * props) or `{a: A} | {b: B}`.
- *
- * In this use case, `V` is used to distribute the union types of `T[K]` on
- * `Record`, since `T[K]` is evaluated as an expression and not distributed.
- *
- * See https://www.typescriptlang.org/docs/handbook/advanced-types.html#distributive-conditional-types
- */
- export declare type ChildUpdateFields<K extends string, V> = V extends Record<string, unknown> ? AddPrefixToKeys<K, UpdateData<V>> : never;
- /**
- * Gets a `CollectionReference` instance that refers to the collection at
- * the specified absolute path.
- *
- * @param firestore - A reference to the root `Firestore` instance.
- * @param path - A slash-separated path to a collection.
- * @param pathSegments - Additional path segments to apply relative to the first
- * argument.
- * @throws If the final path has an even number of segments and does not point
- * to a collection.
- * @returns The `CollectionReference` instance.
- */
- export declare function collection(firestore: Firestore, path: string, ...pathSegments: string[]): CollectionReference<DocumentData>;
- /**
- * Gets a `CollectionReference` instance that refers to a subcollection of
- * `reference` at the the specified relative path.
- *
- * @param reference - A reference to a collection.
- * @param path - A slash-separated path to a collection.
- * @param pathSegments - Additional path segments to apply relative to the first
- * argument.
- * @throws If the final path has an even number of segments and does not point
- * to a collection.
- * @returns The `CollectionReference` instance.
- */
- export declare function collection(reference: CollectionReference<unknown>, path: string, ...pathSegments: string[]): CollectionReference<DocumentData>;
- /**
- * Gets a `CollectionReference` instance that refers to a subcollection of
- * `reference` at the the specified relative path.
- *
- * @param reference - A reference to a Firestore document.
- * @param path - A slash-separated path to a collection.
- * @param pathSegments - Additional path segments that will be applied relative
- * to the first argument.
- * @throws If the final path has an even number of segments and does not point
- * to a collection.
- * @returns The `CollectionReference` instance.
- */
- export declare function collection(reference: DocumentReference, path: string, ...pathSegments: string[]): CollectionReference<DocumentData>;
- /**
- * Creates and returns a new `Query` instance that includes all documents in the
- * database that are contained in a collection or subcollection with the
- * given `collectionId`.
- *
- * @param firestore - A reference to the root `Firestore` instance.
- * @param collectionId - Identifies the collections to query over. Every
- * collection or subcollection with this ID as the last segment of its path
- * will be included. Cannot contain a slash.
- * @returns The created `Query`.
- */
- export declare function collectionGroup(firestore: Firestore, collectionId: string): Query<DocumentData>;
- /**
- * A `CollectionReference` object can be used for adding documents, getting
- * document references, and querying for documents (using {@link query}).
- */
- export declare class CollectionReference<T = DocumentData> extends Query<T> {
- /** The type of this Firestore reference. */
- readonly type = "collection";
- private constructor();
- /** The collection's identifier. */
- get id(): string;
- /**
- * A string representing the path of the referenced collection (relative
- * to the root of the database).
- */
- get path(): string;
- /**
- * A reference to the containing `DocumentReference` if this is a
- * subcollection. If this isn't a subcollection, the reference is null.
- */
- get parent(): DocumentReference<DocumentData> | null;
- /**
- * Applies a custom data converter to this `CollectionReference`, allowing you
- * to use your own custom model objects with Firestore. When you call {@link
- * addDoc} with the returned `CollectionReference` instance, the provided
- * converter will convert between Firestore data and your custom type `U`.
- *
- * @param converter - Converts objects to and from Firestore.
- * @returns A `CollectionReference<U>` that uses the provided converter.
- */
- withConverter<U>(converter: FirestoreDataConverter<U>): CollectionReference<U>;
- /**
- * Removes the current converter.
- *
- * @param converter - `null` removes the current converter.
- * @returns A `CollectionReference<DocumentData>` that does not use a
- * converter.
- */
- withConverter(converter: null): CollectionReference<DocumentData>;
- }
- /**
- * Modify this instance to communicate with the Cloud Firestore emulator.
- *
- * Note: This must be called before this instance has been used to do any
- * operations.
- *
- * @param firestore - The `Firestore` instance to configure to connect to the
- * emulator.
- * @param host - the emulator host (ex: localhost).
- * @param port - the emulator port (ex: 9000).
- * @param options.mockUserToken - the mock auth token to use for unit testing
- * Security Rules.
- */
- export declare function connectFirestoreEmulator(firestore: Firestore, host: string, port: number, options?: {
- mockUserToken?: EmulatorMockTokenOptions | string;
- }): void;
- /**
- * Deletes the document referred to by the specified `DocumentReference`.
- *
- * The deletion will only be reflected in document reads that occur after the
- * returned promise resolves. If the client is offline, the
- * delete fails. If you would like to see local modifications or buffer writes
- * until the client is online, use the full Firestore SDK.
- *
- * @param reference - A reference to the document to delete.
- * @returns A `Promise` resolved once the document has been successfully
- * deleted from the backend.
- */
- export declare function deleteDoc(reference: DocumentReference<unknown>): Promise<void>;
- /**
- * Returns a sentinel for use with {@link @firebase/firestore/lite#(updateDoc:1)} or
- * {@link @firebase/firestore/lite#(setDoc:1)} with `{merge: true}` to mark a field for deletion.
- */
- export declare function deleteField(): FieldValue;
- /**
- * Gets a `DocumentReference` instance that refers to the document at the
- * specified absolute path.
- *
- * @param firestore - A reference to the root `Firestore` instance.
- * @param path - A slash-separated path to a document.
- * @param pathSegments - Additional path segments that will be applied relative
- * to the first argument.
- * @throws If the final path has an odd number of segments and does not point to
- * a document.
- * @returns The `DocumentReference` instance.
- */
- export declare function doc(firestore: Firestore, path: string, ...pathSegments: string[]): DocumentReference<DocumentData>;
- /**
- * Gets a `DocumentReference` instance that refers to a document within
- * `reference` at the specified relative path. If no path is specified, an
- * automatically-generated unique ID will be used for the returned
- * `DocumentReference`.
- *
- * @param reference - A reference to a collection.
- * @param path - A slash-separated path to a document. Has to be omitted to use
- * auto-genrated IDs.
- * @param pathSegments - Additional path segments that will be applied relative
- * to the first argument.
- * @throws If the final path has an odd number of segments and does not point to
- * a document.
- * @returns The `DocumentReference` instance.
- */
- export declare function doc<T>(reference: CollectionReference<T>, path?: string, ...pathSegments: string[]): DocumentReference<T>;
- /**
- * Gets a `DocumentReference` instance that refers to a document within
- * `reference` at the specified relative path.
- *
- * @param reference - A reference to a Firestore document.
- * @param path - A slash-separated path to a document.
- * @param pathSegments - Additional path segments that will be applied relative
- * to the first argument.
- * @throws If the final path has an odd number of segments and does not point to
- * a document.
- * @returns The `DocumentReference` instance.
- */
- export declare function doc(reference: DocumentReference<unknown>, path: string, ...pathSegments: string[]): DocumentReference<DocumentData>;
- /**
- * Document data (for use with {@link @firebase/firestore/lite#(setDoc:1)}) consists of fields mapped to
- * values.
- */
- export declare interface DocumentData {
- /** A mapping between a field and its value. */
- [field: string]: any;
- }
- /**
- * Returns a special sentinel `FieldPath` to refer to the ID of a document.
- * It can be used in queries to sort or filter by the document ID.
- */
- export declare function documentId(): FieldPath;
- /* Excluded from this release type: DocumentKey */
- /**
- * A `DocumentReference` refers to a document location in a Firestore database
- * and can be used to write, read, or listen to the location. The document at
- * the referenced location may or may not exist.
- */
- export declare class DocumentReference<T = DocumentData> {
- /**
- * If provided, the `FirestoreDataConverter` associated with this instance.
- */
- readonly converter: FirestoreDataConverter<T> | null;
- /** The type of this Firestore reference. */
- readonly type = "document";
- /**
- * The {@link Firestore} instance the document is in.
- * This is useful for performing transactions, for example.
- */
- readonly firestore: Firestore;
- private constructor();
- /**
- * The document's identifier within its collection.
- */
- get id(): string;
- /**
- * A string representing the path of the referenced document (relative
- * to the root of the database).
- */
- get path(): string;
- /**
- * The collection this `DocumentReference` belongs to.
- */
- get parent(): CollectionReference<T>;
- /**
- * Applies a custom data converter to this `DocumentReference`, allowing you
- * to use your own custom model objects with Firestore. When you call {@link
- * @firebase/firestore/lite#(setDoc:1)}, {@link @firebase/firestore/lite#getDoc}, etc. with the returned `DocumentReference`
- * instance, the provided converter will convert between Firestore data and
- * your custom type `U`.
- *
- * @param converter - Converts objects to and from Firestore.
- * @returns A `DocumentReference<U>` that uses the provided converter.
- */
- withConverter<U>(converter: FirestoreDataConverter<U>): DocumentReference<U>;
- /**
- * Removes the current converter.
- *
- * @param converter - `null` removes the current converter.
- * @returns A `DocumentReference<DocumentData>` that does not use a converter.
- */
- withConverter(converter: null): DocumentReference<DocumentData>;
- }
- /**
- * A `DocumentSnapshot` contains data read from a document in your Firestore
- * database. The data can be extracted with `.data()` or `.get(<field>)` to
- * get a specific field.
- *
- * For a `DocumentSnapshot` that points to a non-existing document, any data
- * access will return 'undefined'. You can use the `exists()` method to
- * explicitly verify a document's existence.
- */
- export declare class DocumentSnapshot<T = DocumentData> {
- protected constructor();
- /** Property of the `DocumentSnapshot` that provides the document's ID. */
- get id(): string;
- /**
- * The `DocumentReference` for the document included in the `DocumentSnapshot`.
- */
- get ref(): DocumentReference<T>;
- /**
- * Signals whether or not the document at the snapshot's location exists.
- *
- * @returns true if the document exists.
- */
- exists(): this is QueryDocumentSnapshot<T>;
- /**
- * Retrieves all fields in the document as an `Object`. Returns `undefined` if
- * the document doesn't exist.
- *
- * @returns An `Object` containing all fields in the document or `undefined`
- * if the document doesn't exist.
- */
- data(): T | undefined;
- /**
- * Retrieves the field specified by `fieldPath`. Returns `undefined` if the
- * document or field doesn't exist.
- *
- * @param fieldPath - The path (for example 'foo' or 'foo.bar') to a specific
- * field.
- * @returns The data at the specified field location or undefined if no such
- * field exists in the document.
- */
- get(fieldPath: string | FieldPath): any;
- }
- export { EmulatorMockTokenOptions };
- /**
- * Creates a {@link QueryEndAtConstraint} that modifies the result set to end at
- * the provided document (inclusive). The end position is relative to the order
- * of the query. The document must contain all of the fields provided in the
- * orderBy of the query.
- *
- * @param snapshot - The snapshot of the document to end at.
- * @returns A {@link QueryEndAtConstraint} to pass to `query()`
- */
- export declare function endAt(snapshot: DocumentSnapshot<unknown>): QueryEndAtConstraint;
- /**
- * Creates a {@link QueryEndAtConstraint} that modifies the result set to end at
- * the provided fields relative to the order of the query. The order of the field
- * values must match the order of the order by clauses of the query.
- *
- * @param fieldValues - The field values to end this query at, in order
- * of the query's order by.
- * @returns A {@link QueryEndAtConstraint} to pass to `query()`
- */
- export declare function endAt(...fieldValues: unknown[]): QueryEndAtConstraint;
- /**
- * Creates a {@link QueryEndAtConstraint} that modifies the result set to end
- * before the provided document (exclusive). The end position is relative to the
- * order of the query. The document must contain all of the fields provided in
- * the orderBy of the query.
- *
- * @param snapshot - The snapshot of the document to end before.
- * @returns A {@link QueryEndAtConstraint} to pass to `query()`
- */
- export declare function endBefore(snapshot: DocumentSnapshot<unknown>): QueryEndAtConstraint;
- /**
- * Creates a {@link QueryEndAtConstraint} that modifies the result set to end
- * before the provided fields relative to the order of the query. The order of
- * the field values must match the order of the order by clauses of the query.
- *
- * @param fieldValues - The field values to end this query before, in order
- * of the query's order by.
- * @returns A {@link QueryEndAtConstraint} to pass to `query()`
- */
- export declare function endBefore(...fieldValues: unknown[]): QueryEndAtConstraint;
- /**
- * A `FieldPath` refers to a field in a document. The path may consist of a
- * single field name (referring to a top-level field in the document), or a
- * list of field names (referring to a nested field in the document).
- *
- * Create a `FieldPath` by providing field names. If more than one field
- * name is provided, the path will point to a nested field in a document.
- */
- export declare class FieldPath {
- /**
- * Creates a `FieldPath` from the provided field names. If more than one field
- * name is provided, the path will point to a nested field in a document.
- *
- * @param fieldNames - A list of field names.
- */
- constructor(...fieldNames: string[]);
- /**
- * Returns true if this `FieldPath` is equal to the provided one.
- *
- * @param other - The `FieldPath` to compare against.
- * @returns true if this `FieldPath` is equal to the provided one.
- */
- isEqual(other: FieldPath): boolean;
- }
- /**
- * Sentinel values that can be used when writing document fields with `set()`
- * or `update()`.
- */
- export declare abstract class FieldValue {
- private constructor();
- /** Compares `FieldValue`s for equality. */
- abstract isEqual(other: FieldValue): boolean;
- }
- /* Excluded from this release type: _FirebaseService */
- /**
- * The Cloud Firestore service interface.
- *
- * Do not call this constructor directly. Instead, use {@link (getFirestore:1)}.
- */
- export declare class Firestore {
- /**
- * Whether it's a Firestore or Firestore Lite instance.
- */
- type: 'firestore-lite' | 'firestore';
- private constructor();
- /**
- * The {@link @firebase/app#FirebaseApp} associated with this `Firestore` service
- * instance.
- */
- get app(): FirebaseApp;
- /** Returns a JSON-serializable representation of this `Firestore` instance. */
- toJSON(): object;
- }
- /**
- * Converter used by `withConverter()` to transform user objects of type `T`
- * into Firestore data.
- *
- * Using the converter allows you to specify generic type arguments when
- * storing and retrieving objects from Firestore.
- *
- * @example
- * ```typescript
- * class Post {
- * constructor(readonly title: string, readonly author: string) {}
- *
- * toString(): string {
- * return this.title + ', by ' + this.author;
- * }
- * }
- *
- * const postConverter = {
- * toFirestore(post: WithFieldValue<Post>): DocumentData {
- * return {title: post.title, author: post.author};
- * },
- * fromFirestore(snapshot: QueryDocumentSnapshot): Post {
- * const data = snapshot.data(options)!;
- * return new Post(data.title, data.author);
- * }
- * };
- *
- * const postSnap = await firebase.firestore()
- * .collection('posts')
- * .withConverter(postConverter)
- * .doc().get();
- * const post = postSnap.data();
- * if (post !== undefined) {
- * post.title; // string
- * post.toString(); // Should be defined
- * post.someNonExistentProperty; // TS error
- * }
- * ```
- */
- export declare interface FirestoreDataConverter<T> {
- /**
- * Called by the Firestore SDK to convert a custom model object of type `T`
- * into a plain Javascript object (suitable for writing directly to the
- * Firestore database). Used with {@link @firebase/firestore/lite#(setDoc:1)}, {@link @firebase/firestore/lite#(WriteBatch.set:1)}
- * and {@link @firebase/firestore/lite#(Transaction.set:1)}.
- *
- * The `WithFieldValue<T>` type extends `T` to also allow FieldValues such as
- * {@link (deleteField:1)} to be used as property values.
- */
- toFirestore(modelObject: WithFieldValue<T>): DocumentData;
- /**
- * Called by the Firestore SDK to convert a custom model object of type `T`
- * into a plain Javascript object (suitable for writing directly to the
- * Firestore database). Used with {@link @firebase/firestore/lite#(setDoc:1)}, {@link @firebase/firestore/lite#(WriteBatch.set:1)}
- * and {@link @firebase/firestore/lite#(Transaction.set:1)} with `merge:true` or `mergeFields`.
- *
- * The `PartialWithFieldValue<T>` type extends `Partial<T>` to allow
- * FieldValues such as {@link (arrayUnion:1)} to be used as property values.
- * It also supports nested `Partial` by allowing nested fields to be
- * omitted.
- */
- toFirestore(modelObject: PartialWithFieldValue<T>, options: SetOptions): DocumentData;
- /**
- * Called by the Firestore SDK to convert Firestore data into an object of
- * type T. You can access your data by calling: `snapshot.data()`.
- *
- * @param snapshot - A `QueryDocumentSnapshot` containing your data and
- * metadata.
- */
- fromFirestore(snapshot: QueryDocumentSnapshot<DocumentData>): T;
- }
- /** An error returned by a Firestore operation. */
- export declare class FirestoreError extends FirebaseError {
- /**
- * The backend error code associated with this error.
- */
- readonly code: FirestoreErrorCode;
- /**
- * A custom error description.
- */
- readonly message: string;
- /** The stack of the error. */
- readonly stack?: string;
- private constructor();
- }
- /**
- * The set of Firestore status codes. The codes are the same at the ones
- * exposed by gRPC here:
- * https://github.com/grpc/grpc/blob/master/doc/statuscodes.md
- *
- * Possible values:
- * - 'cancelled': The operation was cancelled (typically by the caller).
- * - 'unknown': Unknown error or an error from a different error domain.
- * - 'invalid-argument': Client specified an invalid argument. Note that this
- * differs from 'failed-precondition'. 'invalid-argument' indicates
- * arguments that are problematic regardless of the state of the system
- * (e.g. an invalid field name).
- * - 'deadline-exceeded': Deadline expired before operation could complete.
- * For operations that change the state of the system, this error may be
- * returned even if the operation has completed successfully. For example,
- * a successful response from a server could have been delayed long enough
- * for the deadline to expire.
- * - 'not-found': Some requested document was not found.
- * - 'already-exists': Some document that we attempted to create already
- * exists.
- * - 'permission-denied': The caller does not have permission to execute the
- * specified operation.
- * - 'resource-exhausted': Some resource has been exhausted, perhaps a
- * per-user quota, or perhaps the entire file system is out of space.
- * - 'failed-precondition': Operation was rejected because the system is not
- * in a state required for the operation's execution.
- * - 'aborted': The operation was aborted, typically due to a concurrency
- * issue like transaction aborts, etc.
- * - 'out-of-range': Operation was attempted past the valid range.
- * - 'unimplemented': Operation is not implemented or not supported/enabled.
- * - 'internal': Internal errors. Means some invariants expected by
- * underlying system has been broken. If you see one of these errors,
- * something is very broken.
- * - 'unavailable': The service is currently unavailable. This is most likely
- * a transient condition and may be corrected by retrying with a backoff.
- * - 'data-loss': Unrecoverable data loss or corruption.
- * - 'unauthenticated': The request does not have valid authentication
- * credentials for the operation.
- */
- export declare 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';
- /**
- * @license
- * Copyright 2017 Google LLC
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /**
- * An immutable object representing a geographic location in Firestore. The
- * location is represented as latitude/longitude pair.
- *
- * Latitude values are in the range of [-90, 90].
- * Longitude values are in the range of [-180, 180].
- */
- export declare class GeoPoint {
- /**
- * Creates a new immutable `GeoPoint` object with the provided latitude and
- * longitude values.
- * @param latitude - The latitude as number between -90 and 90.
- * @param longitude - The longitude as number between -180 and 180.
- */
- constructor(latitude: number, longitude: number);
- /**
- * The latitude of this `GeoPoint` instance.
- */
- get latitude(): number;
- /**
- * The longitude of this `GeoPoint` instance.
- */
- get longitude(): number;
- /**
- * Returns true if this `GeoPoint` is equal to the provided one.
- *
- * @param other - The `GeoPoint` to compare against.
- * @returns true if this `GeoPoint` is equal to the provided one.
- */
- isEqual(other: GeoPoint): boolean;
- /** Returns a JSON-serializable representation of this GeoPoint. */
- toJSON(): {
- latitude: number;
- longitude: number;
- };
- }
- /**
- * Calculates the number of documents in the result set of the given query,
- * without actually downloading the documents.
- *
- * Using this function to count the documents is efficient because only the
- * final count, not the documents' data, is downloaded. This function can even
- * count the documents if the result set would be prohibitively large to
- * download entirely (e.g. thousands of documents).
- *
- * @param query - The query whose result set size to calculate.
- * @returns A Promise that will be resolved with the count; the count can be
- * retrieved from `snapshot.data().count`, where `snapshot` is the
- * `AggregateQuerySnapshot` to which the returned Promise resolves.
- */
- export declare function getCount(query: Query<unknown>): Promise<AggregateQuerySnapshot<{
- count: AggregateField<number>;
- }>>;
- /**
- * Reads the document referred to by the specified document reference.
- *
- * All documents are directly fetched from the server, even if the document was
- * previously read or modified. Recent modifications are only reflected in the
- * retrieved `DocumentSnapshot` if they have already been applied by the
- * backend. If the client is offline, the read fails. If you like to use
- * caching or see local modifications, please use the full Firestore SDK.
- *
- * @param reference - The reference of the document to fetch.
- * @returns A Promise resolved with a `DocumentSnapshot` containing the current
- * document contents.
- */
- export declare function getDoc<T>(reference: DocumentReference<T>): Promise<DocumentSnapshot<T>>;
- /**
- * Executes the query and returns the results as a {@link QuerySnapshot}.
- *
- * All queries are executed directly by the server, even if the the query was
- * previously executed. Recent modifications are only reflected in the retrieved
- * results if they have already been applied by the backend. If the client is
- * offline, the operation fails. To see previously cached result and local
- * modifications, use the full Firestore SDK.
- *
- * @param query - The `Query` to execute.
- * @returns A Promise that will be resolved with the results of the query.
- */
- export declare function getDocs<T>(query: Query<T>): Promise<QuerySnapshot<T>>;
- /**
- * Returns the existing default {@link Firestore} instance that is associated with the
- * default {@link @firebase/app#FirebaseApp}. If no instance exists, initializes a new
- * instance with default settings.
- *
- * @returns The {@link Firestore} instance of the provided app.
- */
- export declare function getFirestore(): Firestore;
- /**
- * Returns the existing default {@link Firestore} instance that is associated with the
- * provided {@link @firebase/app#FirebaseApp}. If no instance exists, initializes a new
- * instance with default settings.
- *
- * @param app - The {@link @firebase/app#FirebaseApp} instance that the returned {@link Firestore}
- * instance is associated with.
- * @returns The {@link Firestore} instance of the provided app.
- */
- export declare function getFirestore(app: FirebaseApp): Firestore;
- /* Excluded declaration from this release type: getFirestore */
- /* Excluded declaration from this release type: getFirestore */
- /**
- * Returns a special value that can be used with {@link @firebase/firestore/lite#(setDoc:1)} or {@link
- * @firebase/firestore/lite#(updateDoc:1)} that tells the server to increment the field's current value by
- * the given value.
- *
- * If either the operand or the current field value uses floating point
- * precision, all arithmetic follows IEEE 754 semantics. If both values are
- * integers, values outside of JavaScript's safe number range
- * (`Number.MIN_SAFE_INTEGER` to `Number.MAX_SAFE_INTEGER`) are also subject to
- * precision loss. Furthermore, once processed by the Firestore backend, all
- * integer operations are capped between -2^63 and 2^63-1.
- *
- * If the current field value is not of type `number`, or if the field does not
- * yet exist, the transformation sets the field to the given value.
- *
- * @param n - The value to increment by.
- * @returns The `FieldValue` sentinel for use in a call to `setDoc()` or
- * `updateDoc()`
- */
- export declare function increment(n: number): FieldValue;
- /**
- * Initializes a new instance of Cloud Firestore with the provided settings.
- * Can only be called before any other functions, including
- * {@link (getFirestore:1)}. If the custom settings are empty, this function is
- * equivalent to calling {@link (getFirestore:1)}.
- *
- * @param app - The {@link @firebase/app#FirebaseApp} with which the `Firestore` instance will
- * be associated.
- * @param settings - A settings object to configure the `Firestore` instance.
- * @returns A newly initialized `Firestore` instance.
- */
- export declare function initializeFirestore(app: FirebaseApp, settings: Settings): Firestore;
- /* Excluded declaration from this release type: initializeFirestore */
- /**
- * Creates a {@link QueryLimitConstraint} that only returns the first matching
- * documents.
- *
- * @param limit - The maximum number of items to return.
- * @returns The created {@link QueryLimitConstraint}.
- */
- export declare function limit(limit: number): QueryLimitConstraint;
- /**
- * Creates a {@link QueryLimitConstraint} that only returns the last matching
- * documents.
- *
- * You must specify at least one `orderBy` clause for `limitToLast` queries,
- * otherwise an exception will be thrown during execution.
- *
- * @param limit - The maximum number of items to return.
- * @returns The created {@link QueryLimitConstraint}.
- */
- export declare function limitToLast(limit: number): QueryLimitConstraint;
- export { LogLevel };
- /**
- * For each field (e.g. 'bar'), find all nested keys (e.g. {'bar.baz': T1,
- * 'bar.qux': T2}). Intersect them together to make a single map containing
- * all possible keys that are all marked as optional
- */
- export declare type NestedUpdateFields<T extends Record<string, unknown>> = UnionToIntersection<{
- [K in keyof T & string]: ChildUpdateFields<K, T[K]>;
- }[keyof T & string]>;
- /**
- * Creates a {@link QueryOrderByConstraint} that sorts the query result by the
- * specified field, optionally in descending order instead of ascending.
- *
- * Note: Documents that do not contain the specified field will not be present
- * in the query result.
- *
- * @param fieldPath - The field to sort by.
- * @param directionStr - Optional direction to sort by ('asc' or 'desc'). If
- * not specified, order will be ascending.
- * @returns The created {@link QueryOrderByConstraint}.
- */
- export declare function orderBy(fieldPath: string | FieldPath, directionStr?: OrderByDirection): QueryOrderByConstraint;
- /**
- * The direction of a {@link orderBy} clause is specified as 'desc' or 'asc'
- * (descending or ascending).
- */
- export declare type OrderByDirection = 'desc' | 'asc';
- /**
- * Similar to Typescript's `Partial<T>`, but allows nested fields to be
- * omitted and FieldValues to be passed in as property values.
- */
- export declare type PartialWithFieldValue<T> = Partial<T> | (T extends Primitive ? T : T extends {} ? {
- [K in keyof T]?: PartialWithFieldValue<T[K]> | FieldValue;
- } : never);
- /**
- * These types primarily exist to support the `UpdateData`,
- * `WithFieldValue`, and `PartialWithFieldValue` types and are not consumed
- * directly by the end developer.
- */
- /** Primitive types. */
- export declare type Primitive = string | number | boolean | undefined | null;
- /**
- * A `Query` refers to a query which you can read or listen to. You can also
- * construct refined `Query` objects by adding filters and ordering.
- */
- export declare class Query<T = DocumentData> {
- /**
- * If provided, the `FirestoreDataConverter` associated with this instance.
- */
- readonly converter: FirestoreDataConverter<T> | null;
- /** The type of this Firestore reference. */
- readonly type: 'query' | 'collection';
- /**
- * The `Firestore` instance for the Firestore database (useful for performing
- * transactions, etc.).
- */
- readonly firestore: Firestore;
- protected constructor();
- /**
- * Removes the current converter.
- *
- * @param converter - `null` removes the current converter.
- * @returns A `Query<DocumentData>` that does not use a converter.
- */
- withConverter(converter: null): Query<DocumentData>;
- /**
- * Applies a custom data converter to this query, allowing you to use your own
- * custom model objects with Firestore. When you call {@link getDocs} with
- * the returned query, the provided converter will convert between Firestore
- * data and your custom type `U`.
- *
- * @param converter - Converts objects to and from Firestore.
- * @returns A `Query<U>` that uses the provided converter.
- */
- withConverter<U>(converter: FirestoreDataConverter<U>): Query<U>;
- }
- /* Excluded declaration from this release type: query */
- /**
- * Creates a new immutable instance of {@link Query} that is extended to also
- * include additional query constraints.
- *
- * @param query - The {@link Query} instance to use as a base for the new
- * constraints.
- * @param queryConstraints - The list of {@link QueryConstraint}s to apply.
- * @throws if any of the provided query constraints cannot be combined with the
- * existing or new constraints.
- */
- export declare function query<T>(query: Query<T>, ...queryConstraints: QueryConstraint[]): Query<T>;
- /* Excluded from this release type: QueryCompositeFilterConstraint */
- /**
- * A `QueryConstraint` is used to narrow the set of documents returned by a
- * Firestore query. `QueryConstraint`s are created by invoking {@link where},
- * {@link orderBy}, {@link startAt}, {@link startAfter}, {@link
- * endBefore}, {@link endAt}, {@link limit}, {@link limitToLast} and
- * can then be passed to {@link query} to create a new query instance that
- * also contains this `QueryConstraint`.
- */
- export declare abstract class QueryConstraint {
- /** The type of this query constraint */
- abstract readonly type: QueryConstraintType;
- }
- /** Describes the different query constraints available in this SDK. */
- export declare type QueryConstraintType = 'where' | 'orderBy' | 'limit' | 'limitToLast' | 'startAt' | 'startAfter' | 'endAt' | 'endBefore';
- /**
- * A `QueryDocumentSnapshot` contains data read from a document in your
- * Firestore database as part of a query. The document is guaranteed to exist
- * and its data can be extracted with `.data()` or `.get(<field>)` to get a
- * specific field.
- *
- * A `QueryDocumentSnapshot` offers the same API surface as a
- * `DocumentSnapshot`. Since query results contain only existing documents, the
- * `exists` property will always be true and `data()` will never return
- * 'undefined'.
- */
- export declare class QueryDocumentSnapshot<T = DocumentData> extends DocumentSnapshot<T> {
- /**
- * Retrieves all fields in the document as an `Object`.
- *
- * @override
- * @returns An `Object` containing all fields in the document.
- */
- data(): T;
- }
- /**
- * A `QueryEndAtConstraint` is used to exclude documents from the end of a
- * result set returned by a Firestore query.
- * `QueryEndAtConstraint`s are created by invoking {@link (endAt:1)} or
- * {@link (endBefore:1)} and can then be passed to {@link query} to create a new
- * query instance that also contains this `QueryEndAtConstraint`.
- */
- export declare class QueryEndAtConstraint extends QueryConstraint {
- /** The type of this query constraint */
- readonly type: 'endBefore' | 'endAt';
- }
- /**
- * Returns true if the provided queries point to the same collection and apply
- * the same constraints.
- *
- * @param left - A `Query` to compare.
- * @param right - A `Query` to compare.
- * @returns true if the references point to the same location in the same
- * Firestore database.
- */
- export declare function queryEqual<T>(left: Query<T>, right: Query<T>): boolean;
- /**
- * A `QueryFieldFilterConstraint` is used to narrow the set of documents returned by
- * a Firestore query by filtering on one or more document fields.
- * `QueryFieldFilterConstraint`s are created by invoking {@link where} and can then
- * be passed to {@link query} to create a new query instance that also contains
- * this `QueryFieldFilterConstraint`.
- */
- export declare class QueryFieldFilterConstraint extends QueryConstraint {
- /** The type of this query constraint */
- readonly type = "where";
- }
- /* Excluded from this release type: QueryFilterConstraint */
- /**
- * A `QueryLimitConstraint` is used to limit the number of documents returned by
- * a Firestore query.
- * `QueryLimitConstraint`s are created by invoking {@link limit} or
- * {@link limitToLast} and can then be passed to {@link query} to create a new
- * query instance that also contains this `QueryLimitConstraint`.
- */
- export declare class QueryLimitConstraint extends QueryConstraint {
- /** The type of this query constraint */
- readonly type: 'limit' | 'limitToLast';
- }
- /**
- * `QueryNonFilterConstraint` is a helper union type that represents
- * QueryConstraints which are used to narrow or order the set of documents,
- * but that do not explicitly filter on a document field.
- * `QueryNonFilterConstraint`s are created by invoking {@link orderBy},
- * {@link startAt}, {@link startAfter}, {@link endBefore}, {@link endAt},
- * {@link limit} or {@link limitToLast} and can then be passed to {@link query}
- * to create a new query instance that also contains the `QueryConstraint`.
- */
- export declare type QueryNonFilterConstraint = QueryOrderByConstraint | QueryLimitConstraint | QueryStartAtConstraint | QueryEndAtConstraint;
- /**
- * A `QueryOrderByConstraint` is used to sort the set of documents returned by a
- * Firestore query. `QueryOrderByConstraint`s are created by invoking
- * {@link orderBy} and can then be passed to {@link query} to create a new query
- * instance that also contains this `QueryOrderByConstraint`.
- *
- * Note: Documents that do not contain the orderBy field will not be present in
- * the query result.
- */
- export declare class QueryOrderByConstraint extends QueryConstraint {
- /** The type of this query constraint */
- readonly type = "orderBy";
- }
- /**
- * A `QuerySnapshot` contains zero or more `DocumentSnapshot` objects
- * representing the results of a query. The documents can be accessed as an
- * array via the `docs` property or enumerated using the `forEach` method. The
- * number of documents can be determined via the `empty` and `size`
- * properties.
- */
- export declare class QuerySnapshot<T = DocumentData> {
- /**
- * The query on which you called {@link getDocs} in order to get this
- * `QuerySnapshot`.
- */
- readonly query: Query<T>;
- private constructor();
- /** An array of all the documents in the `QuerySnapshot`. */
- get docs(): Array<QueryDocumentSnapshot<T>>;
- /** The number of documents in the `QuerySnapshot`. */
- get size(): number;
- /** True if there are no documents in the `QuerySnapshot`. */
- get empty(): boolean;
- /**
- * Enumerates all of the documents in the `QuerySnapshot`.
- *
- * @param callback - A callback to be called with a `QueryDocumentSnapshot` for
- * each document in the snapshot.
- * @param thisArg - The `this` binding for the callback.
- */
- forEach(callback: (result: QueryDocumentSnapshot<T>) => void, thisArg?: unknown): void;
- }
- /**
- * A `QueryStartAtConstraint` is used to exclude documents from the start of a
- * result set returned by a Firestore query.
- * `QueryStartAtConstraint`s are created by invoking {@link (startAt:1)} or
- * {@link (startAfter:1)} and can then be passed to {@link query} to create a
- * new query instance that also contains this `QueryStartAtConstraint`.
- */
- export declare class QueryStartAtConstraint extends QueryConstraint {
- /** The type of this query constraint */
- readonly type: 'startAt' | 'startAfter';
- }
- /**
- * Returns true if the provided references are equal.
- *
- * @param left - A reference to compare.
- * @param right - A reference to compare.
- * @returns true if the references point to the same location in the same
- * Firestore database.
- */
- export declare function refEqual<T>(left: DocumentReference<T> | CollectionReference<T>, right: DocumentReference<T> | CollectionReference<T>): boolean;
- /* Excluded from this release type: ResourcePath */
- /**
- * Executes the given `updateFunction` and then attempts to commit the changes
- * applied within the transaction. If any document read within the transaction
- * has changed, Cloud Firestore retries the `updateFunction`. If it fails to
- * commit after 5 attempts, the transaction fails.
- *
- * The maximum number of writes allowed in a single transaction is 500.
- *
- * @param firestore - A reference to the Firestore database to run this
- * transaction against.
- * @param updateFunction - The function to execute within the transaction
- * context.
- * @param options - An options object to configure maximum number of attempts to
- * commit.
- * @returns If the transaction completed successfully or was explicitly aborted
- * (the `updateFunction` returned a failed promise), the promise returned by the
- * `updateFunction `is returned here. Otherwise, if the transaction failed, a
- * rejected promise with the corresponding failure error is returned.
- */
- export declare function runTransaction<T>(firestore: Firestore, updateFunction: (transaction: Transaction) => Promise<T>, options?: TransactionOptions): Promise<T>;
- /**
- * Returns a sentinel used with {@link @firebase/firestore/lite#(setDoc:1)} or {@link @firebase/firestore/lite#(updateDoc:1)} to
- * include a server-generated timestamp in the written data.
- */
- export declare function serverTimestamp(): FieldValue;
- /**
- * Writes to the document referred to by the specified `DocumentReference`. If
- * the document does not yet exist, it will be created.
- *
- * The result of this write will only be reflected in document reads that occur
- * after the returned promise resolves. If the client is offline, the
- * write fails. If you would like to see local modifications or buffer writes
- * until the client is online, use the full Firestore SDK.
- *
- * @param reference - A reference to the document to write.
- * @param data - A map of the fields and values for the document.
- * @throws Error - If the provided input is not a valid Firestore document.
- * @returns A `Promise` resolved once the data has been successfully written
- * to the backend.
- */
- export declare function setDoc<T>(reference: DocumentReference<T>, data: WithFieldValue<T>): Promise<void>;
- /**
- * Writes to the document referred to by the specified `DocumentReference`. If
- * the document does not yet exist, it will be created. If you provide `merge`
- * or `mergeFields`, the provided data can be merged into an existing document.
- *
- * The result of this write will only be reflected in document reads that occur
- * after the returned promise resolves. If the client is offline, the
- * write fails. If you would like to see local modifications or buffer writes
- * until the client is online, use the full Firestore SDK.
- *
- * @param reference - A reference to the document to write.
- * @param data - A map of the fields and values for the document.
- * @param options - An object to configure the set behavior.
- * @throws Error - If the provided input is not a valid Firestore document.
- * @returns A `Promise` resolved once the data has been successfully written
- * to the backend.
- */
- export declare function setDoc<T>(reference: DocumentReference<T>, data: PartialWithFieldValue<T>, options: SetOptions): Promise<void>;
- /**
- * Sets the verbosity of Cloud Firestore logs (debug, error, or silent).
- *
- * @param logLevel - The verbosity you set for activity and error logging. Can
- * be any of the following values:
- *
- * <ul>
- * <li>`debug` for the most verbose logging level, primarily for
- * debugging.</li>
- * <li>`error` to log errors only.</li>
- * <li><code>`silent` to turn off logging.</li>
- * </ul>
- */
- export declare function setLogLevel(logLevel: LogLevel): void;
- /**
- * An options object that configures the behavior of {@link @firebase/firestore/lite#(setDoc:1)}, {@link
- * @firebase/firestore/lite#(WriteBatch.set:1)} and {@link @firebase/firestore/lite#(Transaction.set:1)} calls. These calls can be
- * configured to perform granular merges instead of overwriting the target
- * documents in their entirety by providing a `SetOptions` with `merge: true`.
- *
- * @param merge - Changes the behavior of a `setDoc()` call to only replace the
- * values specified in its data argument. Fields omitted from the `setDoc()`
- * call remain untouched. If your input sets any field to an empty map, all
- * nested fields are overwritten.
- * @param mergeFields - Changes the behavior of `setDoc()` calls to only replace
- * the specified field paths. Any field path that is not specified is ignored
- * and remains untouched. If your input sets any field to an empty map, all
- * nested fields are overwritten.
- */
- export declare type SetOptions = {
- readonly merge?: boolean;
- } | {
- readonly mergeFields?: Array<string | FieldPath>;
- };
- /**
- * Specifies custom configurations for your Cloud Firestore instance.
- * You must set these before invoking any other methods.
- */
- export declare interface Settings {
- /** The hostname to connect to. */
- host?: string;
- /** Whether to use SSL when connecting. */
- ssl?: boolean;
- /**
- * Whether to skip nested properties that are set to `undefined` during
- * object serialization. If set to `true`, these properties are skipped
- * and not written to Firestore. If set to `false` or omitted, the SDK
- * throws an exception when it encounters properties of type `undefined`.
- */
- ignoreUndefinedProperties?: boolean;
- }
- /**
- * Returns true if the provided snapshots are equal.
- *
- * @param left - A snapshot to compare.
- * @param right - A snapshot to compare.
- * @returns true if the snapshots are equal.
- */
- export declare function snapshotEqual<T>(left: DocumentSnapshot<T> | QuerySnapshot<T>, right: DocumentSnapshot<T> | QuerySnapshot<T>): boolean;
- /**
- * Creates a {@link QueryStartAtConstraint} that modifies the result set to
- * start after the provided document (exclusive). The starting position is
- * relative to the order of the query. The document must contain all of the
- * fields provided in the orderBy of the query.
- *
- * @param snapshot - The snapshot of the document to start after.
- * @returns A {@link QueryStartAtConstraint} to pass to `query()`
- */
- export declare function startAfter(snapshot: DocumentSnapshot<unknown>): QueryStartAtConstraint;
- /**
- * Creates a {@link QueryStartAtConstraint} that modifies the result set to
- * start after the provided fields relative to the order of the query. The order
- * of the field values must match the order of the order by clauses of the query.
- *
- * @param fieldValues - The field values to start this query after, in order
- * of the query's order by.
- * @returns A {@link QueryStartAtConstraint} to pass to `query()`
- */
- export declare function startAfter(...fieldValues: unknown[]): QueryStartAtConstraint;
- /**
- * Creates a {@link QueryStartAtConstraint} that modifies the result set to
- * start at the provided document (inclusive). The starting position is relative
- * to the order of the query. The document must contain all of the fields
- * provided in the `orderBy` of this query.
- *
- * @param snapshot - The snapshot of the document to start at.
- * @returns A {@link QueryStartAtConstraint} to pass to `query()`.
- */
- export declare function startAt(snapshot: DocumentSnapshot<unknown>): QueryStartAtConstraint;
- /**
- * Creates a {@link QueryStartAtConstraint} that modifies the result set to
- * start at the provided fields relative to the order of the query. The order of
- * the field values must match the order of the order by clauses of the query.
- *
- * @param fieldValues - The field values to start this query at, in order
- * of the query's order by.
- * @returns A {@link QueryStartAtConstraint} to pass to `query()`.
- */
- export declare function startAt(...fieldValues: unknown[]): QueryStartAtConstraint;
- /**
- * Terminates the provided `Firestore` instance.
- *
- * After calling `terminate()` only the `clearIndexedDbPersistence()` functions
- * may be used. Any other function will throw a `FirestoreError`. Termination
- * does not cancel any pending writes, and any promises that are awaiting a
- * response from the server will not be resolved.
- *
- * To restart after termination, create a new instance of `Firestore` with
- * {@link (getFirestore:1)}.
- *
- * Note: Under normal circumstances, calling `terminate()` is not required. This
- * function is useful only when you want to force this instance to release all of
- * its resources or in combination with {@link clearIndexedDbPersistence} to
- * ensure that all local state is destroyed between test runs.
- *
- * @param firestore - The `Firestore` instance to terminate.
- * @returns A `Promise` that is resolved when the instance has been successfully
- * terminated.
- */
- export declare function terminate(firestore: Firestore): Promise<void>;
- /**
- * @license
- * Copyright 2017 Google LLC
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /**
- * A `Timestamp` represents a point in time independent of any time zone or
- * calendar, represented as seconds and fractions of seconds at nanosecond
- * resolution in UTC Epoch time.
- *
- * It is encoded using the Proleptic Gregorian Calendar which extends the
- * Gregorian calendar backwards to year one. It is encoded assuming all minutes
- * are 60 seconds long, i.e. leap seconds are "smeared" so that no leap second
- * table is needed for interpretation. Range is from 0001-01-01T00:00:00Z to
- * 9999-12-31T23:59:59.999999999Z.
- *
- * For examples and further specifications, refer to the
- * {@link https://github.com/google/protobuf/blob/master/src/google/protobuf/timestamp.proto | Timestamp definition}.
- */
- export declare class Timestamp {
- /**
- * The number of seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z.
- */
- readonly seconds: number;
- /**
- * The fractions of a second at nanosecond resolution.*
- */
- readonly nanoseconds: number;
- /**
- * Creates a new timestamp with the current date, with millisecond precision.
- *
- * @returns a new timestamp representing the current date.
- */
- static now(): Timestamp;
- /**
- * Creates a new timestamp from the given date.
- *
- * @param date - The date to initialize the `Timestamp` from.
- * @returns A new `Timestamp` representing the same point in time as the given
- * date.
- */
- static fromDate(date: Date): Timestamp;
- /**
- * Creates a new timestamp from the given number of milliseconds.
- *
- * @param milliseconds - Number of milliseconds since Unix epoch
- * 1970-01-01T00:00:00Z.
- * @returns A new `Timestamp` representing the same point in time as the given
- * number of milliseconds.
- */
- static fromMillis(milliseconds: number): Timestamp;
- /**
- * Creates a new timestamp.
- *
- * @param seconds - The number of seconds of UTC time since Unix epoch
- * 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
- * 9999-12-31T23:59:59Z inclusive.
- * @param nanoseconds - The non-negative fractions of a second at nanosecond
- * resolution. Negative second values with fractions must still have
- * non-negative nanoseconds values that count forward in time. Must be
- * from 0 to 999,999,999 inclusive.
- */
- constructor(
- /**
- * The number of seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z.
- */
- seconds: number,
- /**
- * The fractions of a second at nanosecond resolution.*
- */
- nanoseconds: number);
- /**
- * Converts a `Timestamp` to a JavaScript `Date` object. This conversion
- * causes a loss of precision since `Date` objects only support millisecond
- * precision.
- *
- * @returns JavaScript `Date` object representing the same point in time as
- * this `Timestamp`, with millisecond precision.
- */
- toDate(): Date;
- /**
- * Converts a `Timestamp` to a numeric timestamp (in milliseconds since
- * epoch). This operation causes a loss of precision.
- *
- * @returns The point in time corresponding to this timestamp, represented as
- * the number of milliseconds since Unix epoch 1970-01-01T00:00:00Z.
- */
- toMillis(): number;
- /**
- * Returns true if this `Timestamp` is equal to the provided one.
- *
- * @param other - The `Timestamp` to compare against.
- * @returns true if this `Timestamp` is equal to the provided one.
- */
- isEqual(other: Timestamp): boolean;
- /** Returns a textual representation of this `Timestamp`. */
- toString(): string;
- /** Returns a JSON-serializable representation of this `Timestamp`. */
- toJSON(): {
- seconds: number;
- nanoseconds: number;
- };
- /**
- * Converts this object to a primitive string, which allows `Timestamp` objects
- * to be compared using the `>`, `<=`, `>=` and `>` operators.
- */
- valueOf(): string;
- }
- /**
- * A reference to a transaction.
- *
- * The `Transaction` object passed to a transaction's `updateFunction` provides
- * the methods to read and write data within the transaction context. See
- * {@link runTransaction}.
- */
- export declare class Transaction {
- private constructor();
- /**
- * Reads the document referenced by the provided {@link DocumentReference}.
- *
- * @param documentRef - A reference to the document to be read.
- * @returns A `DocumentSnapshot` with the read data.
- */
- get<T>(documentRef: DocumentReference<T>): Promise<DocumentSnapshot<T>>;
- /**
- * Writes to the document referred to by the provided {@link
- * DocumentReference}. If the document does not exist yet, it will be created.
- *
- * @param documentRef - A reference to the document to be set.
- * @param data - An object of the fields and values for the document.
- * @throws Error - If the provided input is not a valid Firestore document.
- * @returns This `Transaction` instance. Used for chaining method calls.
- */
- set<T>(documentRef: DocumentReference<T>, data: WithFieldValue<T>): this;
- /**
- * Writes to the document referred to by the provided {@link
- * DocumentReference}. If the document does not exist yet, it will be created.
- * If you provide `merge` or `mergeFields`, the provided data can be merged
- * into an existing document.
- *
- * @param documentRef - A reference to the document to be set.
- * @param data - An object of the fields and values for the document.
- * @param options - An object to configure the set behavior.
- * @throws Error - If the provided input is not a valid Firestore document.
- * @returns This `Transaction` instance. Used for chaining method calls.
- */
- set<T>(documentRef: DocumentReference<T>, data: PartialWithFieldValue<T>, options: SetOptions): this;
- /**
- * Updates fields in the document referred to by the provided {@link
- * DocumentReference}. The update will fail if applied to a document that does
- * not exist.
- *
- * @param documentRef - A reference to the document to be updated.
- * @param data - An object containing the fields and values with which to
- * update the document. Fields can contain dots to reference nested fields
- * within the document.
- * @throws Error - If the provided input is not valid Firestore data.
- * @returns This `Transaction` instance. Used for chaining method calls.
- */
- update<T>(documentRef: DocumentReference<T>, data: UpdateData<T>): this;
- /**
- * Updates fields in the document referred to by the provided {@link
- * DocumentReference}. The update will fail if applied to a document that does
- * not exist.
- *
- * Nested fields can be updated by providing dot-separated field path
- * strings or by providing `FieldPath` objects.
- *
- * @param documentRef - A reference to the document to be updated.
- * @param field - The first field to update.
- * @param value - The first value.
- * @param moreFieldsAndValues - Additional key/value pairs.
- * @throws Error - If the provided input is not valid Firestore data.
- * @returns This `Transaction` instance. Used for chaining method calls.
- */
- update(documentRef: DocumentReference<unknown>, field: string | FieldPath, value: unknown, ...moreFieldsAndValues: unknown[]): this;
- /**
- * Deletes the document referred to by the provided {@link DocumentReference}.
- *
- * @param documentRef - A reference to the document to be deleted.
- * @returns This `Transaction` instance. Used for chaining method calls.
- */
- delete(documentRef: DocumentReference<unknown>): this;
- }
- /**
- * @license
- * Copyright 2022 Google LLC
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /**
- * Options to customize transaction behavior.
- */
- export declare interface TransactionOptions {
- /** Maximum number of attempts to commit, after which transaction fails. Default is 5. */
- readonly maxAttempts?: number;
- }
- /**
- * Given a union type `U = T1 | T2 | ...`, returns an intersected type
- * `(T1 & T2 & ...)`.
- *
- * Uses distributive conditional types and inference from conditional types.
- * This works because multiple candidates for the same type variable in
- * contra-variant positions causes an intersection type to be inferred.
- * https://www.typescriptlang.org/docs/handbook/advanced-types.html#type-inference-in-conditional-types
- * https://stackoverflow.com/questions/50374908/transform-union-type-to-intersection-type
- */
- export declare type UnionToIntersection<U> = (U extends unknown ? (k: U) => void : never) extends (k: infer I) => void ? I : never;
- /**
- * Update data (for use with {@link (updateDoc:1)}) that consists of field paths
- * (e.g. 'foo' or 'foo.baz') mapped to values. Fields that contain dots
- * reference nested fields within the document. FieldValues can be passed in
- * as property values.
- */
- export declare type UpdateData<T> = T extends Primitive ? T : T extends {} ? {
- [K in keyof T]?: UpdateData<T[K]> | FieldValue;
- } & NestedUpdateFields<T> : Partial<T>;
- /**
- * Updates fields in the document referred to by the specified
- * `DocumentReference`. The update will fail if applied to a document that does
- * not exist.
- *
- * The result of this update will only be reflected in document reads that occur
- * after the returned promise resolves. If the client is offline, the
- * update fails. If you would like to see local modifications or buffer writes
- * until the client is online, use the full Firestore SDK.
- *
- * @param reference - A reference to the document to update.
- * @param data - An object containing the fields and values with which to
- * update the document. Fields can contain dots to reference nested fields
- * within the document.
- * @throws Error - If the provided input is not valid Firestore data.
- * @returns A `Promise` resolved once the data has been successfully written
- * to the backend.
- */
- export declare function updateDoc<T>(reference: DocumentReference<T>, data: UpdateData<T>): Promise<void>;
- /**
- * Updates fields in the document referred to by the specified
- * `DocumentReference` The update will fail if applied to a document that does
- * not exist.
- *
- * Nested fields can be updated by providing dot-separated field path
- * strings or by providing `FieldPath` objects.
- *
- * The result of this update will only be reflected in document reads that occur
- * after the returned promise resolves. If the client is offline, the
- * update fails. If you would like to see local modifications or buffer writes
- * until the client is online, use the full Firestore SDK.
- *
- * @param reference - A reference to the document to update.
- * @param field - The first field to update.
- * @param value - The first value.
- * @param moreFieldsAndValues - Additional key value pairs.
- * @throws Error - If the provided input is not valid Firestore data.
- * @returns A `Promise` resolved once the data has been successfully written
- * to the backend.
- */
- export declare function updateDoc(reference: DocumentReference<unknown>, field: string | FieldPath, value: unknown, ...moreFieldsAndValues: unknown[]): Promise<void>;
- /**
- * Creates a {@link QueryFieldFilterConstraint} that enforces that documents
- * must contain the specified field and that the value should satisfy the
- * relation constraint provided.
- *
- * @param fieldPath - The path to compare
- * @param opStr - The operation string (e.g "<", "<=", "==", "<",
- * "<=", "!=").
- * @param value - The value for comparison
- * @returns The created {@link QueryFieldFilterConstraint}.
- */
- export declare function where(fieldPath: string | FieldPath, opStr: WhereFilterOp, value: unknown): QueryFieldFilterConstraint;
- /**
- * Filter conditions in a {@link where} clause are specified using the
- * strings '<', '<=', '==', '!=', '>=', '>', 'array-contains', 'in',
- * 'array-contains-any', and 'not-in'.
- */
- export declare type WhereFilterOp = '<' | '<=' | '==' | '!=' | '>=' | '>' | 'array-contains' | 'in' | 'array-contains-any' | 'not-in';
- /**
- * Allows FieldValues to be passed in as a property value while maintaining
- * type safety.
- */
- export declare type WithFieldValue<T> = T | (T extends Primitive ? T : T extends {} ? {
- [K in keyof T]: WithFieldValue<T[K]> | FieldValue;
- } : never);
- /**
- * A write batch, used to perform multiple writes as a single atomic unit.
- *
- * A `WriteBatch` object can be acquired by calling {@link writeBatch}. It
- * provides methods for adding writes to the write batch. None of the writes
- * will be committed (or visible locally) until {@link WriteBatch.commit} is
- * called.
- */
- export declare class WriteBatch {
- private constructor();
- /**
- * Writes to the document referred to by the provided {@link
- * DocumentReference}. If the document does not exist yet, it will be created.
- *
- * @param documentRef - A reference to the document to be set.
- * @param data - An object of the fields and values for the document.
- * @returns This `WriteBatch` instance. Used for chaining method calls.
- */
- set<T>(documentRef: DocumentReference<T>, data: WithFieldValue<T>): WriteBatch;
- /**
- * Writes to the document referred to by the provided {@link
- * DocumentReference}. If the document does not exist yet, it will be created.
- * If you provide `merge` or `mergeFields`, the provided data can be merged
- * into an existing document.
- *
- * @param documentRef - A reference to the document to be set.
- * @param data - An object of the fields and values for the document.
- * @param options - An object to configure the set behavior.
- * @throws Error - If the provided input is not a valid Firestore document.
- * @returns This `WriteBatch` instance. Used for chaining method calls.
- */
- set<T>(documentRef: DocumentReference<T>, data: PartialWithFieldValue<T>, options: SetOptions): WriteBatch;
- /**
- * Updates fields in the document referred to by the provided {@link
- * DocumentReference}. The update will fail if applied to a document that does
- * not exist.
- *
- * @param documentRef - A reference to the document to be updated.
- * @param data - An object containing the fields and values with which to
- * update the document. Fields can contain dots to reference nested fields
- * within the document.
- * @throws Error - If the provided input is not valid Firestore data.
- * @returns This `WriteBatch` instance. Used for chaining method calls.
- */
- update<T>(documentRef: DocumentReference<T>, data: UpdateData<T>): WriteBatch;
- /**
- * Updates fields in the document referred to by this {@link
- * DocumentReference}. The update will fail if applied to a document that does
- * not exist.
- *
- * Nested fields can be update by providing dot-separated field path strings
- * or by providing `FieldPath` objects.
- *
- * @param documentRef - A reference to the document to be updated.
- * @param field - The first field to update.
- * @param value - The first value.
- * @param moreFieldsAndValues - Additional key value pairs.
- * @throws Error - If the provided input is not valid Firestore data.
- * @returns This `WriteBatch` instance. Used for chaining method calls.
- */
- update(documentRef: DocumentReference<unknown>, field: string | FieldPath, value: unknown, ...moreFieldsAndValues: unknown[]): WriteBatch;
- /**
- * Deletes the document referred to by the provided {@link DocumentReference}.
- *
- * @param documentRef - A reference to the document to be deleted.
- * @returns This `WriteBatch` instance. Used for chaining method calls.
- */
- delete(documentRef: DocumentReference<unknown>): WriteBatch;
- /**
- * Commits all of the writes in this write batch as a single atomic unit.
- *
- * The result of these writes will only be reflected in document reads that
- * occur after the returned promise resolves. If the client is offline, the
- * write fails. If you would like to see local modifications or buffer writes
- * until the client is online, use the full Firestore SDK.
- *
- * @returns A `Promise` resolved once all of the writes in the batch have been
- * successfully written to the backend as an atomic unit (note that it won't
- * resolve while you're offline).
- */
- commit(): Promise<void>;
- }
- /**
- * Creates a write batch, used for performing multiple writes as a single
- * atomic operation. The maximum number of writes allowed in a single WriteBatch
- * is 500.
- *
- * The result of these writes will only be reflected in document reads that
- * occur after the returned promise resolves. If the client is offline, the
- * write fails. If you would like to see local modifications or buffer writes
- * until the client is online, use the full Firestore SDK.
- *
- * @returns A `WriteBatch` that can be used to atomically execute multiple
- * writes.
- */
- export declare function writeBatch(firestore: Firestore): WriteBatch;
- export {};
|