UNPKG

@firebase/firestore

Version:

The Cloud Firestore component of the Firebase JS SDK.

121 lines (120 loc) • 8.07 kB
/** * @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. */ import { Aggregate } from '../core/aggregate'; import { DatabaseId } from '../core/database_info'; import { CompositeFilter, CompositeOperator, FieldFilter, Filter, Operator } from '../core/filter'; import { Direction, OrderBy } from '../core/order_by'; import { Query } from '../core/query'; import { SnapshotVersion } from '../core/snapshot_version'; import { Target } from '../core/target'; import { Timestamp } from '../lite-api/timestamp'; import { TargetData, TargetPurpose } from '../local/target_data'; import { MutableDocument } from '../model/document'; import { DocumentKey } from '../model/document_key'; import { FieldMask } from '../model/field_mask'; import { Mutation, MutationResult } from '../model/mutation'; import { ObjectValue } from '../model/object_value'; import { FieldPath, ResourcePath } from '../model/path'; import { ApiClientObjectMap as ProtoApiClientObjectMap, BatchGetDocumentsResponse as ProtoBatchGetDocumentsResponse, CompositeFilterOp as ProtoCompositeFilterOp, Document as ProtoDocument, DocumentMask as ProtoDocumentMask, DocumentsTarget as ProtoDocumentsTarget, FieldFilterOp as ProtoFieldFilterOp, FieldReference as ProtoFieldReference, Filter as ProtoFilter, ListenResponse as ProtoListenResponse, Order as ProtoOrder, OrderDirection as ProtoOrderDirection, QueryTarget as ProtoQueryTarget, RunAggregationQueryRequest as ProtoRunAggregationQueryRequest, Target as ProtoTarget, Timestamp as ProtoTimestamp, Write as ProtoWrite, WriteResult as ProtoWriteResult } from '../protos/firestore_proto_api'; import { ByteString } from '../util/byte_string'; import { Serializer } from './number_serializer'; import { WatchChange } from './watch_change'; /** * This class generates JsonObject values for the Datastore API suitable for * sending to either GRPC stub methods or via the JSON/HTTP REST API. * * The serializer supports both Protobuf.js and Proto3 JSON formats. By * setting `useProto3Json` to true, the serializer will use the Proto3 JSON * format. * * For a description of the Proto3 JSON format check * https://developers.google.com/protocol-buffers/docs/proto3#json * * TODO(klimt): We can remove the databaseId argument if we keep the full * resource name in documents. */ export declare class JsonProtoSerializer implements Serializer { readonly databaseId: DatabaseId; readonly useProto3Json: boolean; constructor(databaseId: DatabaseId, useProto3Json: boolean); } /** * Returns a value for a Date that's appropriate to put into a proto. */ export declare function toTimestamp(serializer: JsonProtoSerializer, timestamp: Timestamp): ProtoTimestamp; /** * Returns a value for bytes that's appropriate to put in a proto. * * Visible for testing. */ export declare function toBytes(serializer: JsonProtoSerializer, bytes: ByteString): string | Uint8Array; /** * Returns a ByteString based on the proto string value. */ export declare function fromBytes(serializer: JsonProtoSerializer, value: string | Uint8Array | undefined): ByteString; export declare function toVersion(serializer: JsonProtoSerializer, version: SnapshotVersion): ProtoTimestamp; export declare function fromVersion(version: ProtoTimestamp): SnapshotVersion; export declare function toResourceName(databaseId: DatabaseId, path: ResourcePath): string; export declare function toResourcePath(databaseId: DatabaseId, path?: ResourcePath): ResourcePath; export declare function toName(serializer: JsonProtoSerializer, key: DocumentKey): string; export declare function fromName(serializer: JsonProtoSerializer, name: string): DocumentKey; export declare function getEncodedDatabaseId(serializer: JsonProtoSerializer): string; /** Creates a Document proto from key and fields (but no create/update time) */ export declare function toMutationDocument(serializer: JsonProtoSerializer, key: DocumentKey, fields: ObjectValue): ProtoDocument; export declare function toDocument(serializer: JsonProtoSerializer, document: MutableDocument): ProtoDocument; export declare function fromDocument(serializer: JsonProtoSerializer, document: ProtoDocument, hasCommittedMutations?: boolean): MutableDocument; export declare function fromBatchGetDocumentsResponse(serializer: JsonProtoSerializer, result: ProtoBatchGetDocumentsResponse): MutableDocument; export declare function fromWatchChange(serializer: JsonProtoSerializer, change: ProtoListenResponse): WatchChange; export declare function versionFromListenResponse(change: ProtoListenResponse): SnapshotVersion; export declare function toMutation(serializer: JsonProtoSerializer, mutation: Mutation): ProtoWrite; export declare function fromMutation(serializer: JsonProtoSerializer, proto: ProtoWrite): Mutation; export declare function fromWriteResults(protos: ProtoWriteResult[] | undefined, commitTime?: ProtoTimestamp): MutationResult[]; export declare function toDocumentsTarget(serializer: JsonProtoSerializer, target: Target): ProtoDocumentsTarget; export declare function fromDocumentsTarget(documentsTarget: ProtoDocumentsTarget): Target; export declare function toQueryTarget(serializer: JsonProtoSerializer, target: Target): { queryTarget: ProtoQueryTarget; parent: ResourcePath; }; export declare function toRunAggregationQueryRequest(serializer: JsonProtoSerializer, target: Target, aggregates: Aggregate[], skipAliasing?: boolean): { request: ProtoRunAggregationQueryRequest; aliasMap: Record<string, string>; parent: ResourcePath; }; export declare function convertQueryTargetToQuery(target: ProtoQueryTarget): Query; export declare function fromQueryTarget(target: ProtoQueryTarget): Target; export declare function toListenRequestLabels(serializer: JsonProtoSerializer, targetData: TargetData): ProtoApiClientObjectMap<string> | null; export declare function toLabel(purpose: TargetPurpose): string | null; export declare function toTarget(serializer: JsonProtoSerializer, targetData: TargetData): ProtoTarget; export declare function toDirection(dir: Direction): ProtoOrderDirection; export declare function fromDirection(dir: ProtoOrderDirection | undefined): Direction | undefined; export declare function toOperatorName(op: Operator): ProtoFieldFilterOp; export declare function toCompositeOperatorName(op: CompositeOperator): ProtoCompositeFilterOp; export declare function fromOperatorName(op: ProtoFieldFilterOp): Operator; export declare function fromCompositeOperatorName(op: ProtoCompositeFilterOp): CompositeOperator; export declare function toFieldPathReference(path: FieldPath): ProtoFieldReference; export declare function fromFieldPathReference(fieldReference: ProtoFieldReference): FieldPath; export declare function toPropertyOrder(orderBy: OrderBy): ProtoOrder; export declare function fromPropertyOrder(orderBy: ProtoOrder): OrderBy; export declare function toFilter(filter: Filter): ProtoFilter; export declare function toCompositeFilter(filter: CompositeFilter): ProtoFilter; export declare function toUnaryOrFieldFilter(filter: FieldFilter): ProtoFilter; export declare function fromUnaryFilter(filter: ProtoFilter): Filter; export declare function fromFieldFilter(filter: ProtoFilter): FieldFilter; export declare function fromCompositeFilter(filter: ProtoFilter): CompositeFilter; export declare function toDocumentMask(fieldMask: FieldMask): ProtoDocumentMask; export declare function fromDocumentMask(proto: ProtoDocumentMask): FieldMask; export declare function isValidResourceName(path: ResourcePath): boolean;