File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
packages/firestore/src/local Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ import { assert } from '../util/assert';
23
23
import { encode , EncodedResourcePath } from './encoded_resource_path' ;
24
24
25
25
/**
26
- * Schema version containing the Mutation Queue, the Query and the Remote
27
- * Document Cache.
26
+ * Default Schema Version for the Web client ( containing the Mutation Queue, the
27
+ * Query and the Remote Document Cache) .
28
28
*/
29
29
export const DEFAULT_SCHEMA_VERSION = 1 ;
30
30
@@ -130,7 +130,7 @@ export class DbMutationQueue {
130
130
* After sending this token, earlier tokens may not be used anymore so
131
131
* only a single stream token is retained.
132
132
*/
133
- public lastStreamToken : string ,
133
+ public lastStreamToken : string
134
134
) { }
135
135
}
136
136
@@ -565,14 +565,14 @@ function createClientMetadataStore(db: IDBDatabase): void {
565
565
566
566
// Exported for testing.
567
567
export const V1_STORES = [
568
- DbDocumentMutation . store ,
569
568
DbMutationQueue . store ,
570
569
DbMutationBatch . store ,
571
- DbOwner . store ,
570
+ DbDocumentMutation . store ,
572
571
DbRemoteDocument . store ,
573
- DbTargetDocument . store ,
572
+ DbTarget . store ,
573
+ DbOwner . store ,
574
574
DbTargetGlobal . store ,
575
- DbTarget . store
575
+ DbTargetDocument . store
576
576
] ;
577
577
578
578
const V2_STORES = [ DbClientMetadata . store , DbTargetChange . store ] ;
You can’t perform that action at this time.
0 commit comments