File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/firestore/src/local Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,22 +23,22 @@ import { ByteString } from '../util/byte_string';
23
23
/** An enumeration of the different purposes we have for targets. */
24
24
export const enum TargetPurpose {
25
25
/** A regular, normal query target. */
26
- Listen ,
26
+ Listen = 'TargetPurposeListen' ,
27
27
28
28
/**
29
29
* The query target was used to refill a query after an existence filter
30
30
* mismatch.
31
31
*/
32
- ExistenceFilterMismatch ,
32
+ ExistenceFilterMismatch = 'TargetPurposeExistenceFilterMismatch' ,
33
33
34
34
/**
35
35
* The query target was used if the query is the result of a false positive in
36
36
* the bloom filter.
37
37
*/
38
- ExistenceFilterMismatchBloom ,
38
+ ExistenceFilterMismatchBloom = 'TargetPurposeExistenceFilterMismatchBloom' ,
39
39
40
40
/** The query target was used to resolve a limbo document. */
41
- LimboResolution
41
+ LimboResolution = 'TargetPurposeLimboResolution'
42
42
}
43
43
44
44
/**
You can’t perform that action at this time.
0 commit comments