File tree 3 files changed +4
-6
lines changed 3 files changed +4
-6
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -224,13 +224,12 @@ export declare namespace firestoreV1ApiClientInterfaces {
224
224
interface ExistenceFilter {
225
225
targetId ?: number ;
226
226
count ?: number ;
227
- unchangedNames : BloomFilter ;
227
+ unchangedNames ? : BloomFilter ;
228
228
}
229
229
interface BloomFilter {
230
230
bits ?: BitSequence ;
231
- hasCount ?: number ;
231
+ hashCount ?: number ;
232
232
}
233
-
234
233
interface BitSequence {
235
234
bitmap ?: string ;
236
235
padding ?: number ;
Original file line number Diff line number Diff line change @@ -264,8 +264,8 @@ message ExistenceFilter {
264
264
int32 count = 2 ;
265
265
266
266
// 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}`
269
269
// that have NOT changed since the query results indicated by the resume token
270
270
// or timestamp given in `Target.resume_type`.
271
271
//
You can’t perform that action at this time.
0 commit comments