Skip to content

Commit 35f5177

Browse files
committed
change typo
1 parent 73e5007 commit 35f5177

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

packages/firestore/src/protos.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/firestore/src/protos/firestore_proto_api.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,13 +224,12 @@ export declare namespace firestoreV1ApiClientInterfaces {
224224
interface ExistenceFilter {
225225
targetId?: number;
226226
count?: number;
227-
unchangedNames: BloomFilter;
227+
unchangedNames?: BloomFilter;
228228
}
229229
interface BloomFilter {
230230
bits?: BitSequence;
231-
hasCount?: number;
231+
hashCount?: number;
232232
}
233-
234233
interface BitSequence {
235234
bitmap?: string;
236235
padding?: number;

packages/firestore/src/protos/google/firestore/v1/write.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,8 @@ message ExistenceFilter {
264264
int32 count = 2;
265265

266266
// A bloom filter that contains the UTF-8 byte encodings of the resource names
267-
// of the documents that match [target_id][], in the form
268-
// `projects/{project_id}/databases/{database_id}/documents/{document_path}`
267+
// of the documents that match [target_id][google.firestore.v1.ExistenceFilter.target_id], in the
268+
// form `projects/{project_id}/databases/{database_id}/documents/{document_path}`
269269
// that have NOT changed since the query results indicated by the resume token
270270
// or timestamp given in `Target.resume_type`.
271271
//

0 commit comments

Comments
 (0)