@firebase/firestore 3.4.4-canary.f5ac47fb1 → 3.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/firestore/src/api/credentials.d.ts +1 -0
- package/dist/firestore/src/index/index_byte_encoder.d.ts +18 -1
- package/dist/firestore/src/index/index_entry.d.ts +26 -0
- package/dist/firestore/src/local/document_overlay_cache.d.ts +72 -0
- package/dist/firestore/src/local/indexeddb_document_overlay_cache.d.ts +45 -0
- package/dist/firestore/src/local/indexeddb_index_manager.d.ts +29 -2
- package/dist/firestore/src/local/indexeddb_persistence.d.ts +6 -4
- package/dist/firestore/src/local/indexeddb_remote_document_cache.d.ts +2 -8
- package/dist/firestore/src/local/indexeddb_schema.d.ts +83 -9
- package/dist/firestore/src/local/local_documents_view.d.ts +0 -1
- package/dist/firestore/src/local/local_serializer.d.ts +18 -2
- package/dist/firestore/src/local/memory_document_overlay_cache.d.ts +37 -0
- package/dist/firestore/src/local/memory_persistence.d.ts +6 -2
- package/dist/firestore/src/local/memory_remote_document_cache.d.ts +1 -3
- package/dist/firestore/src/local/persistence.d.ts +8 -2
- package/dist/firestore/src/local/remote_document_cache.d.ts +7 -9
- package/dist/firestore/src/model/document_key.d.ts +5 -0
- package/dist/firestore/src/model/field_index.d.ts +2 -2
- package/dist/firestore/src/model/overlay.d.ts +32 -0
- package/dist/firestore/src/model/target_index_matcher.d.ts +70 -0
- package/dist/firestore/src/platform/node/grpc_connection.d.ts +2 -2
- package/dist/firestore/src/platform/node/load_protos.d.ts +2 -2
- package/dist/firestore/src/util/sorted_set.d.ts +18 -0
- package/dist/firestore/test/unit/local/counting_query_engine.d.ts +3 -3
- package/dist/firestore/test/unit/local/document_overlay_cache.test.d.ts +1 -0
- package/dist/firestore/test/unit/local/persistence_test_helpers.d.ts +1 -0
- package/dist/firestore/test/unit/local/test_document_overlay_cache.d.ts +38 -0
- package/dist/firestore/test/unit/local/test_index_manager.d.ts +11 -0
- package/dist/firestore/test/unit/local/test_remote_document_cache.d.ts +4 -2
- package/dist/firestore/test/unit/local/test_remote_document_change_buffer.d.ts +1 -1
- package/dist/firestore/test/unit/model/target_index_matcher.test.d.ts +17 -0
- package/dist/index.esm2017.js +4367 -3517
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +4226 -3437
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +1519 -242
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.node.mjs +1501 -245
- package/dist/index.node.mjs.map +1 -1
- package/dist/index.rn.js +4355 -3509
- package/dist/index.rn.js.map +1 -1
- package/dist/internal.d.ts +84 -12
- package/dist/lite/firestore/src/api/credentials.d.ts +1 -0
- package/dist/lite/firestore/src/index/index_byte_encoder.d.ts +18 -1
- package/dist/lite/firestore/src/index/index_entry.d.ts +26 -0
- package/dist/lite/firestore/src/local/document_overlay_cache.d.ts +72 -0
- package/dist/lite/firestore/src/local/indexeddb_document_overlay_cache.d.ts +45 -0
- package/dist/lite/firestore/src/local/indexeddb_index_manager.d.ts +29 -2
- package/dist/lite/firestore/src/local/indexeddb_persistence.d.ts +6 -4
- package/dist/lite/firestore/src/local/indexeddb_remote_document_cache.d.ts +2 -8
- package/dist/lite/firestore/src/local/indexeddb_schema.d.ts +83 -9
- package/dist/lite/firestore/src/local/local_documents_view.d.ts +0 -1
- package/dist/lite/firestore/src/local/local_serializer.d.ts +18 -2
- package/dist/lite/firestore/src/local/memory_document_overlay_cache.d.ts +37 -0
- package/dist/lite/firestore/src/local/memory_persistence.d.ts +6 -2
- package/dist/lite/firestore/src/local/memory_remote_document_cache.d.ts +1 -3
- package/dist/lite/firestore/src/local/persistence.d.ts +8 -2
- package/dist/lite/firestore/src/local/remote_document_cache.d.ts +7 -9
- package/dist/lite/firestore/src/model/document_key.d.ts +5 -0
- package/dist/lite/firestore/src/model/field_index.d.ts +2 -2
- package/dist/lite/firestore/src/model/overlay.d.ts +32 -0
- package/dist/lite/firestore/src/model/target_index_matcher.d.ts +70 -0
- package/dist/lite/firestore/src/platform/node/grpc_connection.d.ts +2 -2
- package/dist/lite/firestore/src/platform/node/load_protos.d.ts +2 -2
- package/dist/lite/firestore/src/util/sorted_set.d.ts +18 -0
- package/dist/lite/firestore/test/unit/local/counting_query_engine.d.ts +3 -3
- package/dist/lite/firestore/test/unit/local/document_overlay_cache.test.d.ts +1 -0
- package/dist/lite/firestore/test/unit/local/persistence_test_helpers.d.ts +1 -0
- package/dist/lite/firestore/test/unit/local/test_document_overlay_cache.d.ts +38 -0
- package/dist/lite/firestore/test/unit/local/test_index_manager.d.ts +11 -0
- package/dist/lite/firestore/test/unit/local/test_remote_document_cache.d.ts +4 -2
- package/dist/lite/firestore/test/unit/local/test_remote_document_change_buffer.d.ts +1 -1
- package/dist/lite/firestore/test/unit/model/target_index_matcher.test.d.ts +17 -0
- package/dist/lite/index.browser.esm2017.js +1121 -1112
- package/dist/lite/index.browser.esm2017.js.map +1 -1
- package/dist/lite/index.browser.esm5.js +60 -48
- package/dist/lite/index.browser.esm5.js.map +1 -1
- package/dist/lite/index.node.cjs.js +13 -2
- package/dist/lite/index.node.cjs.js.map +1 -1
- package/dist/lite/index.node.mjs +13 -2
- package/dist/lite/index.node.mjs.map +1 -1
- package/dist/lite/index.rn.esm2017.js +46 -37
- package/dist/lite/index.rn.esm2017.js.map +1 -1
- package/dist/lite/internal.d.ts +5 -0
- package/dist/lite/packages/firestore/dist/lite/index.browser.esm2017.d.ts +112 -112
- package/dist/lite/packages/firestore/src/api/credentials.d.ts +1 -0
- package/dist/lite/packages/firestore/src/index/index_byte_encoder.d.ts +18 -1
- package/dist/lite/packages/firestore/src/index/index_entry.d.ts +26 -0
- package/dist/lite/packages/firestore/src/local/document_overlay_cache.d.ts +72 -0
- package/dist/lite/packages/firestore/src/local/indexeddb_document_overlay_cache.d.ts +45 -0
- package/dist/lite/packages/firestore/src/local/indexeddb_index_manager.d.ts +29 -2
- package/dist/lite/packages/firestore/src/local/indexeddb_persistence.d.ts +6 -4
- package/dist/lite/packages/firestore/src/local/indexeddb_remote_document_cache.d.ts +2 -8
- package/dist/lite/packages/firestore/src/local/indexeddb_schema.d.ts +83 -9
- package/dist/lite/packages/firestore/src/local/local_documents_view.d.ts +0 -1
- package/dist/lite/packages/firestore/src/local/local_serializer.d.ts +18 -2
- package/dist/lite/packages/firestore/src/local/memory_document_overlay_cache.d.ts +37 -0
- package/dist/lite/packages/firestore/src/local/memory_persistence.d.ts +6 -2
- package/dist/lite/packages/firestore/src/local/memory_remote_document_cache.d.ts +1 -3
- package/dist/lite/packages/firestore/src/local/persistence.d.ts +8 -2
- package/dist/lite/packages/firestore/src/local/remote_document_cache.d.ts +7 -9
- package/dist/lite/packages/firestore/src/model/document_key.d.ts +5 -0
- package/dist/lite/packages/firestore/src/model/field_index.d.ts +2 -2
- package/dist/lite/packages/firestore/src/model/overlay.d.ts +32 -0
- package/dist/lite/packages/firestore/src/model/target_index_matcher.d.ts +70 -0
- package/dist/lite/packages/firestore/src/platform/node/grpc_connection.d.ts +2 -2
- package/dist/lite/packages/firestore/src/platform/node/load_protos.d.ts +2 -2
- package/dist/lite/packages/firestore/src/util/sorted_set.d.ts +18 -0
- package/dist/lite/packages/firestore/test/unit/local/counting_query_engine.d.ts +3 -3
- package/dist/lite/packages/firestore/test/unit/local/document_overlay_cache.test.d.ts +1 -0
- package/dist/lite/packages/firestore/test/unit/local/persistence_test_helpers.d.ts +1 -0
- package/dist/lite/packages/firestore/test/unit/local/test_document_overlay_cache.d.ts +38 -0
- package/dist/lite/packages/firestore/test/unit/local/test_index_manager.d.ts +11 -0
- package/dist/lite/packages/firestore/test/unit/local/test_remote_document_cache.d.ts +4 -2
- package/dist/lite/packages/firestore/test/unit/local/test_remote_document_change_buffer.d.ts +1 -1
- package/dist/lite/packages/firestore/test/unit/model/target_index_matcher.test.d.ts +17 -0
- package/dist/packages/firestore/dist/index.esm2017.d.ts +187 -184
- package/dist/packages/firestore/src/api/credentials.d.ts +1 -0
- package/dist/packages/firestore/src/index/index_byte_encoder.d.ts +18 -1
- package/dist/packages/firestore/src/index/index_entry.d.ts +26 -0
- package/dist/packages/firestore/src/local/document_overlay_cache.d.ts +72 -0
- package/dist/packages/firestore/src/local/indexeddb_document_overlay_cache.d.ts +45 -0
- package/dist/packages/firestore/src/local/indexeddb_index_manager.d.ts +29 -2
- package/dist/packages/firestore/src/local/indexeddb_persistence.d.ts +6 -4
- package/dist/packages/firestore/src/local/indexeddb_remote_document_cache.d.ts +2 -8
- package/dist/packages/firestore/src/local/indexeddb_schema.d.ts +83 -9
- package/dist/packages/firestore/src/local/local_documents_view.d.ts +0 -1
- package/dist/packages/firestore/src/local/local_serializer.d.ts +18 -2
- package/dist/packages/firestore/src/local/memory_document_overlay_cache.d.ts +37 -0
- package/dist/packages/firestore/src/local/memory_persistence.d.ts +6 -2
- package/dist/packages/firestore/src/local/memory_remote_document_cache.d.ts +1 -3
- package/dist/packages/firestore/src/local/persistence.d.ts +8 -2
- package/dist/packages/firestore/src/local/remote_document_cache.d.ts +7 -9
- package/dist/packages/firestore/src/model/document_key.d.ts +5 -0
- package/dist/packages/firestore/src/model/field_index.d.ts +2 -2
- package/dist/packages/firestore/src/model/overlay.d.ts +32 -0
- package/dist/packages/firestore/src/model/target_index_matcher.d.ts +70 -0
- package/dist/packages/firestore/src/platform/node/grpc_connection.d.ts +2 -2
- package/dist/packages/firestore/src/platform/node/load_protos.d.ts +2 -2
- package/dist/packages/firestore/src/util/sorted_set.d.ts +18 -0
- package/dist/packages/firestore/test/unit/local/counting_query_engine.d.ts +3 -3
- package/dist/packages/firestore/test/unit/local/document_overlay_cache.test.d.ts +1 -0
- package/dist/packages/firestore/test/unit/local/persistence_test_helpers.d.ts +1 -0
- package/dist/packages/firestore/test/unit/local/test_document_overlay_cache.d.ts +38 -0
- package/dist/packages/firestore/test/unit/local/test_index_manager.d.ts +11 -0
- package/dist/packages/firestore/test/unit/local/test_remote_document_cache.d.ts +4 -2
- package/dist/packages/firestore/test/unit/local/test_remote_document_change_buffer.d.ts +1 -1
- package/dist/packages/firestore/test/unit/model/target_index_matcher.test.d.ts +17 -0
- package/dist/private.d.ts +79 -12
- package/package.json +9 -9
|
@@ -14,11 +14,12 @@
|
|
|
14
14
|
* See the License for the specific language governing permissions and
|
|
15
15
|
* limitations under the License.
|
|
16
16
|
*/
|
|
17
|
-
import { Query } from '../core/query';
|
|
18
17
|
import { SnapshotVersion } from '../core/snapshot_version';
|
|
19
18
|
import { DocumentKeySet, MutableDocumentMap } from '../model/collections';
|
|
20
19
|
import { MutableDocument } from '../model/document';
|
|
21
20
|
import { DocumentKey } from '../model/document_key';
|
|
21
|
+
import { ResourcePath } from '../model/path';
|
|
22
|
+
import { IndexManager } from './index_manager';
|
|
22
23
|
import { PersistencePromise } from './persistence_promise';
|
|
23
24
|
import { PersistenceTransaction } from './persistence_transaction';
|
|
24
25
|
import { RemoteDocumentChangeBuffer } from './remote_document_change_buffer';
|
|
@@ -30,6 +31,8 @@ import { RemoteDocumentChangeBuffer } from './remote_document_change_buffer';
|
|
|
30
31
|
* documents that are known to not exist.
|
|
31
32
|
*/
|
|
32
33
|
export interface RemoteDocumentCache {
|
|
34
|
+
/** Sets the index manager to use for managing the collectionGroup index. */
|
|
35
|
+
setIndexManager(indexManager: IndexManager): void;
|
|
33
36
|
/**
|
|
34
37
|
* Looks up an entry in the cache.
|
|
35
38
|
*
|
|
@@ -47,19 +50,14 @@ export interface RemoteDocumentCache {
|
|
|
47
50
|
*/
|
|
48
51
|
getEntries(transaction: PersistenceTransaction, documentKeys: DocumentKeySet): PersistencePromise<MutableDocumentMap>;
|
|
49
52
|
/**
|
|
50
|
-
*
|
|
53
|
+
* Returns the documents from the provided collection.
|
|
51
54
|
*
|
|
52
|
-
*
|
|
53
|
-
* should be re-filtered by the consumer before presenting them to the user.
|
|
54
|
-
*
|
|
55
|
-
* Cached NoDocument entries have no bearing on query results.
|
|
56
|
-
*
|
|
57
|
-
* @param query - The query to match documents against.
|
|
55
|
+
* @param collection - The collection to read.
|
|
58
56
|
* @param sinceReadTime - If not set to SnapshotVersion.min(), return only
|
|
59
57
|
* documents that have been read since this snapshot version (exclusive).
|
|
60
58
|
* @returns The set of matching documents.
|
|
61
59
|
*/
|
|
62
|
-
|
|
60
|
+
getAll(transaction: PersistenceTransaction, collection: ResourcePath, sinceReadTime: SnapshotVersion): PersistencePromise<MutableDocumentMap>;
|
|
63
61
|
/**
|
|
64
62
|
* Provides access to add or update the contents of the cache. The buffer
|
|
65
63
|
* handles proper size accounting for the change.
|
|
@@ -24,8 +24,13 @@ export declare class DocumentKey {
|
|
|
24
24
|
static fromPath(path: string): DocumentKey;
|
|
25
25
|
static fromName(name: string): DocumentKey;
|
|
26
26
|
static empty(): DocumentKey;
|
|
27
|
+
get collectionGroup(): string;
|
|
27
28
|
/** Returns true if the document is in the specified collectionId. */
|
|
28
29
|
hasCollectionId(collectionId: string): boolean;
|
|
30
|
+
/** Returns the collection group (i.e. the name of the parent collection) for this key. */
|
|
31
|
+
getCollectionGroup(): string;
|
|
32
|
+
/** Returns the fully qualified path to the parent collection. */
|
|
33
|
+
getCollectionPath(): ResourcePath;
|
|
29
34
|
isEqual(other: DocumentKey | null): boolean;
|
|
30
35
|
toString(): string;
|
|
31
36
|
static comparator(k1: DocumentKey, k2: DocumentKey): number;
|
|
@@ -43,7 +43,7 @@ export declare class FieldIndex {
|
|
|
43
43
|
/** The collection ID this index applies to. */
|
|
44
44
|
readonly collectionGroup: string;
|
|
45
45
|
/** The field segments for this index. */
|
|
46
|
-
readonly
|
|
46
|
+
readonly fields: IndexSegment[];
|
|
47
47
|
/** Shows how up-to-date the index is for the current user. */
|
|
48
48
|
readonly indexState: IndexState;
|
|
49
49
|
/** An ID for an index that has not yet been added to persistence. */
|
|
@@ -57,7 +57,7 @@ export declare class FieldIndex {
|
|
|
57
57
|
/** The collection ID this index applies to. */
|
|
58
58
|
collectionGroup: string,
|
|
59
59
|
/** The field segments for this index. */
|
|
60
|
-
|
|
60
|
+
fields: IndexSegment[],
|
|
61
61
|
/** Shows how up-to-date the index is for the current user. */
|
|
62
62
|
indexState: IndexState);
|
|
63
63
|
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2022 Google LLC
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
import { DocumentKey } from './document_key';
|
|
18
|
+
import { Mutation } from './mutation';
|
|
19
|
+
/**
|
|
20
|
+
* Representation of an overlay computed by Firestore.
|
|
21
|
+
*
|
|
22
|
+
* Holds information about a mutation and the largest batch id in Firestore when
|
|
23
|
+
* the mutation was created.
|
|
24
|
+
*/
|
|
25
|
+
export declare class Overlay {
|
|
26
|
+
readonly largestBatchId: number;
|
|
27
|
+
readonly mutation: Mutation;
|
|
28
|
+
constructor(largestBatchId: number, mutation: Mutation);
|
|
29
|
+
getKey(): DocumentKey;
|
|
30
|
+
isEqual(other: Overlay | null): boolean;
|
|
31
|
+
toString(): string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2022 Google LLC
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
import { Target } from '../core/target';
|
|
18
|
+
import { FieldIndex } from './field_index';
|
|
19
|
+
/**
|
|
20
|
+
* A light query planner for Firestore.
|
|
21
|
+
*
|
|
22
|
+
* This class matches a `FieldIndex` against a Firestore Query `Target`. It
|
|
23
|
+
* determines whether a given index can be used to serve the specified target.
|
|
24
|
+
*
|
|
25
|
+
* The following table showcases some possible index configurations:
|
|
26
|
+
*
|
|
27
|
+
* Query | Index
|
|
28
|
+
* -----------------------------------------------------------------------------
|
|
29
|
+
* where('a', '==', 'a').where('b', '==', 'b') | a ASC, b DESC
|
|
30
|
+
* where('a', '==', 'a').where('b', '==', 'b') | a ASC
|
|
31
|
+
* where('a', '==', 'a').where('b', '==', 'b') | b DESC
|
|
32
|
+
* where('a', '>=', 'a').orderBy('a') | a ASC
|
|
33
|
+
* where('a', '>=', 'a').orderBy('a', 'desc') | a DESC
|
|
34
|
+
* where('a', '>=', 'a').orderBy('a').orderBy('b') | a ASC, b ASC
|
|
35
|
+
* where('a', '>=', 'a').orderBy('a').orderBy('b') | a ASC
|
|
36
|
+
* where('a', 'array-contains', 'a').orderBy('b') | a CONTAINS, b ASCENDING
|
|
37
|
+
* where('a', 'array-contains', 'a').orderBy('b') | a CONTAINS
|
|
38
|
+
*/
|
|
39
|
+
export declare class TargetIndexMatcher {
|
|
40
|
+
private readonly collectionId;
|
|
41
|
+
private readonly inequalityFilter?;
|
|
42
|
+
private readonly equalityFilters;
|
|
43
|
+
private readonly orderBys;
|
|
44
|
+
constructor(target: Target);
|
|
45
|
+
/**
|
|
46
|
+
* Returns whether the index can be used to serve the TargetIndexMatcher's
|
|
47
|
+
* target.
|
|
48
|
+
*
|
|
49
|
+
* An index is considered capable of serving the target when:
|
|
50
|
+
* - The target uses all index segments for its filters and orderBy clauses.
|
|
51
|
+
* The target can have additional filter and orderBy clauses, but not
|
|
52
|
+
* fewer.
|
|
53
|
+
* - If an ArrayContains/ArrayContainsAnyfilter is used, the index must also
|
|
54
|
+
* have a corresponding `CONTAINS` segment.
|
|
55
|
+
* - All directional index segments can be mapped to the target as a series of
|
|
56
|
+
* equality filters, a single inequality filter and a series of orderBy
|
|
57
|
+
* clauses.
|
|
58
|
+
* - The segments that represent the equality filters may appear out of order.
|
|
59
|
+
* - The optional segment for the inequality filter must appear after all
|
|
60
|
+
* equality segments.
|
|
61
|
+
* - The segments that represent that orderBy clause of the target must appear
|
|
62
|
+
* in order after all equality and inequality segments. Single orderBy
|
|
63
|
+
* clauses cannot be skipped, but a continuous orderBy suffix may be
|
|
64
|
+
* omitted.
|
|
65
|
+
*/
|
|
66
|
+
servedByIndex(index: FieldIndex): boolean;
|
|
67
|
+
private hasMatchingEqualityFilter;
|
|
68
|
+
private matchesFilter;
|
|
69
|
+
private matchesOrderBy;
|
|
70
|
+
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* See the License for the specific language governing permissions and
|
|
15
15
|
* limitations under the License.
|
|
16
16
|
*/
|
|
17
|
-
import
|
|
17
|
+
import * as grpc from '@grpc/grpc-js';
|
|
18
18
|
import { Token } from '../../api/credentials';
|
|
19
19
|
import { DatabaseInfo } from '../../core/database_info';
|
|
20
20
|
import { Connection, Stream } from '../../remote/connection';
|
|
@@ -26,7 +26,7 @@ export declare class GrpcConnection implements Connection {
|
|
|
26
26
|
private readonly databasePath;
|
|
27
27
|
private readonly firestore;
|
|
28
28
|
private cachedStub;
|
|
29
|
-
constructor(protos: GrpcObject, databaseInfo: DatabaseInfo);
|
|
29
|
+
constructor(protos: grpc.GrpcObject, databaseInfo: DatabaseInfo);
|
|
30
30
|
private ensureActiveStub;
|
|
31
31
|
invokeRPC<Req, Resp>(rpcName: string, path: string, request: Req, authToken: Token | null, appCheckToken: Token | null): Promise<Resp>;
|
|
32
32
|
invokeStreamingRPC<Req, Resp>(rpcName: string, path: string, request: Req, authToken: Token | null, appCheckToken: Token | null): Promise<Resp[]>;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* See the License for the specific language governing permissions and
|
|
15
15
|
* limitations under the License.
|
|
16
16
|
*/
|
|
17
|
-
import
|
|
17
|
+
import * as grpc from '@grpc/grpc-js';
|
|
18
18
|
import { IConversionOptions, Root } from 'protobufjs';
|
|
19
19
|
/** Used by tests so we can match @grpc/proto-loader behavior. */
|
|
20
20
|
export declare const protoLoaderOptions: IConversionOptions;
|
|
@@ -23,6 +23,6 @@ export declare const protoLoaderOptions: IConversionOptions;
|
|
|
23
23
|
*
|
|
24
24
|
* @returns The GrpcObject representing our protos.
|
|
25
25
|
*/
|
|
26
|
-
export declare function loadProtos(): GrpcObject;
|
|
26
|
+
export declare function loadProtos(): grpc.GrpcObject;
|
|
27
27
|
/** Used by tests so we can directly create ProtobufJS proto message objects from JSON protos. */
|
|
28
28
|
export declare function loadRawProtos(): Root;
|
|
@@ -60,3 +60,21 @@ export declare class SortedSetIterator<T> {
|
|
|
60
60
|
getNext(): T;
|
|
61
61
|
hasNext(): boolean;
|
|
62
62
|
}
|
|
63
|
+
/**
|
|
64
|
+
* Compares two sorted sets for equality using their natural ordering. The
|
|
65
|
+
* method computes the intersection and invokes `onAdd` for every element that
|
|
66
|
+
* is in `after` but not `before`. `onRemove` is invoked for every element in
|
|
67
|
+
* `before` but missing from `after`.
|
|
68
|
+
*
|
|
69
|
+
* The method creates a copy of both `before` and `after` and runs in O(n log
|
|
70
|
+
* n), where n is the size of the two lists.
|
|
71
|
+
*
|
|
72
|
+
* @param before - The elements that exist in the original set.
|
|
73
|
+
* @param after - The elements to diff against the original set.
|
|
74
|
+
* @param comparator - The comparator for the elements in before and after.
|
|
75
|
+
* @param onAdd - A function to invoke for every element that is part of `
|
|
76
|
+
* after` but not `before`.
|
|
77
|
+
* @param onRemove - A function to invoke for every element that is part of
|
|
78
|
+
* `before` but not `after`.
|
|
79
|
+
*/
|
|
80
|
+
export declare function diffSortedSets<T>(before: SortedSet<T>, after: SortedSet<T>, comparator: (l: T, r: T) => number, onAdd: (entry: T) => void, onRemove: (entry: T) => void): void;
|
|
@@ -31,7 +31,7 @@ export declare class CountingQueryEngine extends QueryEngine {
|
|
|
31
31
|
* `getAllMutationBatchesAffectingQuery()` API (since the last call to
|
|
32
32
|
* `resetCounts()`)
|
|
33
33
|
*/
|
|
34
|
-
|
|
34
|
+
mutationsReadByCollection: number;
|
|
35
35
|
/**
|
|
36
36
|
* The number of mutations returned by the MutationQueue's
|
|
37
37
|
* `getAllMutationBatchesAffectingDocumentKey()` and
|
|
@@ -41,9 +41,9 @@ export declare class CountingQueryEngine extends QueryEngine {
|
|
|
41
41
|
mutationsReadByKey: number;
|
|
42
42
|
/**
|
|
43
43
|
* The number of documents returned by the RemoteDocumentCache's
|
|
44
|
-
* `
|
|
44
|
+
* `getAll()` API (since the last call to `resetCounts()`)
|
|
45
45
|
*/
|
|
46
|
-
|
|
46
|
+
documentsReadByCollection: number;
|
|
47
47
|
/**
|
|
48
48
|
* The number of documents returned by the RemoteDocumentCache's `getEntry()`
|
|
49
49
|
* and `getEntries()` APIs (since the last call to `resetCounts()`)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -54,6 +54,7 @@ export declare function testIndexedDbPersistence(options?: {
|
|
|
54
54
|
dontPurgeData?: boolean;
|
|
55
55
|
synchronizeTabs?: boolean;
|
|
56
56
|
queue?: AsyncQueue;
|
|
57
|
+
schemaVersion?: number;
|
|
57
58
|
}, lruParams?: LruParams): Promise<IndexedDbPersistence>;
|
|
58
59
|
/** Creates and starts a MemoryPersistence instance for testing. */
|
|
59
60
|
export declare function testMemoryEagerPersistence(): Promise<MemoryPersistence>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2022 Google LLC
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
import { DocumentOverlayCache } from '../../../src/local/document_overlay_cache';
|
|
18
|
+
import { Persistence } from '../../../src/local/persistence';
|
|
19
|
+
import { DocumentKeySet } from '../../../src/model/collections';
|
|
20
|
+
import { DocumentKey } from '../../../src/model/document_key';
|
|
21
|
+
import { Mutation } from '../../../src/model/mutation';
|
|
22
|
+
import { Overlay } from '../../../src/model/overlay';
|
|
23
|
+
import { ResourcePath } from '../../../src/model/path';
|
|
24
|
+
/**
|
|
25
|
+
* A wrapper around a DocumentOverlayCache that automatically creates a
|
|
26
|
+
* transaction around every operation to reduce test boilerplate.
|
|
27
|
+
*/
|
|
28
|
+
export declare class TestDocumentOverlayCache {
|
|
29
|
+
private persistence;
|
|
30
|
+
private cache;
|
|
31
|
+
constructor(persistence: Persistence, cache: DocumentOverlayCache);
|
|
32
|
+
saveOverlays(largestBatch: number, data: Map<DocumentKey, Mutation>): Promise<void>;
|
|
33
|
+
getOverlay(key: DocumentKey): Promise<Overlay | null>;
|
|
34
|
+
getOverlayMutation(docKey: string): Promise<Mutation | null>;
|
|
35
|
+
getOverlaysForCollection(path: ResourcePath, sinceBatchId: number): Promise<Map<DocumentKey, Overlay>>;
|
|
36
|
+
getOverlaysForCollectionGroup(collectionGroup: string, sinceBatchId: number, count: number): Promise<Map<DocumentKey, Overlay>>;
|
|
37
|
+
removeOverlaysForBatchId(documentKeys: DocumentKeySet, batchId: number): Promise<void>;
|
|
38
|
+
}
|
|
@@ -14,8 +14,11 @@
|
|
|
14
14
|
* See the License for the specific language governing permissions and
|
|
15
15
|
* limitations under the License.
|
|
16
16
|
*/
|
|
17
|
+
import { Target } from '../../../src/core/target';
|
|
17
18
|
import { IndexManager } from '../../../src/local/index_manager';
|
|
18
19
|
import { Persistence } from '../../../src/local/persistence';
|
|
20
|
+
import { DocumentKeySet, DocumentMap } from '../../../src/model/collections';
|
|
21
|
+
import { FieldIndex, IndexOffset } from '../../../src/model/field_index';
|
|
19
22
|
import { ResourcePath } from '../../../src/model/path';
|
|
20
23
|
/**
|
|
21
24
|
* A wrapper around IndexManager that automatically creates a
|
|
@@ -27,4 +30,12 @@ export declare class TestIndexManager {
|
|
|
27
30
|
constructor(persistence: Persistence, indexManager: IndexManager);
|
|
28
31
|
addToCollectionParentIndex(collectionPath: ResourcePath): Promise<void>;
|
|
29
32
|
getCollectionParents(collectionId: string): Promise<ResourcePath[]>;
|
|
33
|
+
addFieldIndex(index: FieldIndex): Promise<void>;
|
|
34
|
+
deleteFieldIndex(index: FieldIndex): Promise<void>;
|
|
35
|
+
getFieldIndexes(collectionGroup?: string): Promise<FieldIndex[]>;
|
|
36
|
+
getFieldIndex(target: Target): Promise<FieldIndex | null>;
|
|
37
|
+
getDocumentsMatchingTarget(fieldIndex: FieldIndex, target: Target): Promise<DocumentKeySet>;
|
|
38
|
+
getNextCollectionGroupToUpdate(): Promise<string | null>;
|
|
39
|
+
updateCollectionGroup(collectionGroup: string, offset: IndexOffset): Promise<void>;
|
|
40
|
+
updateIndexEntries(documents: DocumentMap): Promise<void>;
|
|
30
41
|
}
|
|
@@ -14,13 +14,14 @@
|
|
|
14
14
|
* See the License for the specific language governing permissions and
|
|
15
15
|
* limitations under the License.
|
|
16
16
|
*/
|
|
17
|
-
import { Query } from '../../../src/core/query';
|
|
18
17
|
import { SnapshotVersion } from '../../../src/core/snapshot_version';
|
|
18
|
+
import { IndexManager } from '../../../src/local/index_manager';
|
|
19
19
|
import { Persistence } from '../../../src/local/persistence';
|
|
20
20
|
import { RemoteDocumentChangeBuffer } from '../../../src/local/remote_document_change_buffer';
|
|
21
21
|
import { DocumentKeySet, MutableDocumentMap } from '../../../src/model/collections';
|
|
22
22
|
import { MutableDocument } from '../../../src/model/document';
|
|
23
23
|
import { DocumentKey } from '../../../src/model/document_key';
|
|
24
|
+
import { ResourcePath } from '../../../src/model/path';
|
|
24
25
|
/**
|
|
25
26
|
* A wrapper around a RemoteDocumentCache that automatically creates a
|
|
26
27
|
* transaction around every operation to reduce test boilerplate.
|
|
@@ -29,6 +30,7 @@ export declare class TestRemoteDocumentCache {
|
|
|
29
30
|
private readonly persistence;
|
|
30
31
|
private readonly cache;
|
|
31
32
|
constructor(persistence: Persistence);
|
|
33
|
+
setIndexManager(indexManager: IndexManager): void;
|
|
32
34
|
/**
|
|
33
35
|
* Reads all of the documents first so we can safely add them and keep the size calculation in
|
|
34
36
|
* sync.
|
|
@@ -42,7 +44,7 @@ export declare class TestRemoteDocumentCache {
|
|
|
42
44
|
removeEntry(documentKey: DocumentKey, version?: SnapshotVersion): Promise<void>;
|
|
43
45
|
getEntry(documentKey: DocumentKey): Promise<MutableDocument>;
|
|
44
46
|
getEntries(documentKeys: DocumentKeySet): Promise<MutableDocumentMap>;
|
|
45
|
-
|
|
47
|
+
getAll(collection: ResourcePath, sinceReadTime: SnapshotVersion): Promise<MutableDocumentMap>;
|
|
46
48
|
getNewDocumentChanges(sinceReadTime: SnapshotVersion): Promise<{
|
|
47
49
|
changedDocs: MutableDocumentMap;
|
|
48
50
|
readTime: SnapshotVersion;
|
|
@@ -28,7 +28,7 @@ export declare class TestRemoteDocumentChangeBuffer {
|
|
|
28
28
|
buffer: RemoteDocumentChangeBuffer;
|
|
29
29
|
constructor(persistence: Persistence, buffer: RemoteDocumentChangeBuffer);
|
|
30
30
|
addEntry(document: MutableDocument, readTime: SnapshotVersion): void;
|
|
31
|
-
removeEntry(key: DocumentKey): void;
|
|
31
|
+
removeEntry(key: DocumentKey, readTime: SnapshotVersion): void;
|
|
32
32
|
getEntry(documentKey: DocumentKey): Promise<MutableDocument>;
|
|
33
33
|
apply(): Promise<void>;
|
|
34
34
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2022 Google LLC
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
export {};
|
package/dist/private.d.ts
CHANGED
|
@@ -850,6 +850,56 @@ declare type DocumentKeySet = SortedSet<_DocumentKey>;
|
|
|
850
850
|
|
|
851
851
|
declare type DocumentMap = SortedMap<_DocumentKey, Document_2>;
|
|
852
852
|
|
|
853
|
+
/**
|
|
854
|
+
* Provides methods to read and write document overlays.
|
|
855
|
+
*
|
|
856
|
+
* An overlay is a saved mutation, that gives a local view of a document when
|
|
857
|
+
* applied to the remote version of the document.
|
|
858
|
+
*
|
|
859
|
+
* Each overlay stores the largest batch ID that is included in the overlay,
|
|
860
|
+
* which allows us to remove the overlay once all batches leading up to it have
|
|
861
|
+
* been acknowledged.
|
|
862
|
+
*/
|
|
863
|
+
declare interface DocumentOverlayCache {
|
|
864
|
+
/**
|
|
865
|
+
* Gets the saved overlay mutation for the given document key.
|
|
866
|
+
* Returns null if there is no overlay for that key.
|
|
867
|
+
*/
|
|
868
|
+
getOverlay(transaction: PersistenceTransaction, key: _DocumentKey): PersistencePromise<Overlay | null>;
|
|
869
|
+
/**
|
|
870
|
+
* Saves the given document mutation map to persistence as overlays.
|
|
871
|
+
* All overlays will have their largest batch id set to `largestBatchId`.
|
|
872
|
+
*/
|
|
873
|
+
saveOverlays(transaction: PersistenceTransaction, largestBatchId: number, overlays: Map<_DocumentKey, Mutation>): PersistencePromise<void>;
|
|
874
|
+
/** Removes overlays for the given document keys and batch ID. */
|
|
875
|
+
removeOverlaysForBatchId(transaction: PersistenceTransaction, documentKeys: DocumentKeySet, batchId: number): PersistencePromise<void>;
|
|
876
|
+
/**
|
|
877
|
+
* Returns all saved overlays for the given collection.
|
|
878
|
+
*
|
|
879
|
+
* @param transaction - The persistence transaction to use for this operation.
|
|
880
|
+
* @param collection - The collection path to get the overlays for.
|
|
881
|
+
* @param sinceBatchId - The minimum batch ID to filter by (exclusive).
|
|
882
|
+
* Only overlays that contain a change past `sinceBatchId` are returned.
|
|
883
|
+
* @returns Mapping of each document key in the collection to its overlay.
|
|
884
|
+
*/
|
|
885
|
+
getOverlaysForCollection(transaction: PersistenceTransaction, collection: _ResourcePath, sinceBatchId: number): PersistencePromise<Map<_DocumentKey, Overlay>>;
|
|
886
|
+
/**
|
|
887
|
+
* Returns `count` overlays with a batch ID higher than `sinceBatchId` for the
|
|
888
|
+
* provided collection group, processed by ascending batch ID. The method
|
|
889
|
+
* always returns all overlays for a batch even if the last batch contains
|
|
890
|
+
* more documents than the remaining limit.
|
|
891
|
+
*
|
|
892
|
+
* @param transaction - The persistence transaction used for this operation.
|
|
893
|
+
* @param collectionGroup - The collection group to get the overlays for.
|
|
894
|
+
* @param sinceBatchId - The minimum batch ID to filter by (exclusive).
|
|
895
|
+
* Only overlays that contain a change past `sinceBatchId` are returned.
|
|
896
|
+
* @param count - The number of overlays to return. Can be exceeded if the last
|
|
897
|
+
* batch contains more entries.
|
|
898
|
+
* @return Mapping of each document key in the collection group to its overlay.
|
|
899
|
+
*/
|
|
900
|
+
getOverlaysForCollectionGroup(transaction: PersistenceTransaction, collectionGroup: string, sinceBatchId: number, count: number): PersistencePromise<Map<_DocumentKey, Overlay>>;
|
|
901
|
+
}
|
|
902
|
+
|
|
853
903
|
/**
|
|
854
904
|
* A `DocumentReference` refers to a document location in a Firestore database
|
|
855
905
|
* and can be used to write, read, or listen to the location. The document at
|
|
@@ -1211,7 +1261,7 @@ declare class FieldIndex {
|
|
|
1211
1261
|
/** The collection ID this index applies to. */
|
|
1212
1262
|
readonly collectionGroup: string;
|
|
1213
1263
|
/** The field segments for this index. */
|
|
1214
|
-
readonly
|
|
1264
|
+
readonly fields: IndexSegment[];
|
|
1215
1265
|
/** Shows how up-to-date the index is for the current user. */
|
|
1216
1266
|
readonly indexState: IndexState_2;
|
|
1217
1267
|
/** An ID for an index that has not yet been added to persistence. */
|
|
@@ -1225,7 +1275,7 @@ declare class FieldIndex {
|
|
|
1225
1275
|
/** The collection ID this index applies to. */
|
|
1226
1276
|
collectionGroup: string,
|
|
1227
1277
|
/** The field segments for this index. */
|
|
1228
|
-
|
|
1278
|
+
fields: IndexSegment[],
|
|
1229
1279
|
/** Shows how up-to-date the index is for the current user. */
|
|
1230
1280
|
indexState: IndexState_2);
|
|
1231
1281
|
}
|
|
@@ -3357,6 +3407,21 @@ export declare type OrderByDirection = 'desc' | 'asc';
|
|
|
3357
3407
|
|
|
3358
3408
|
declare type OrderDirection = 'DIRECTION_UNSPECIFIED' | 'ASCENDING' | 'DESCENDING';
|
|
3359
3409
|
|
|
3410
|
+
/**
|
|
3411
|
+
* Representation of an overlay computed by Firestore.
|
|
3412
|
+
*
|
|
3413
|
+
* Holds information about a mutation and the largest batch id in Firestore when
|
|
3414
|
+
* the mutation was created.
|
|
3415
|
+
*/
|
|
3416
|
+
declare class Overlay {
|
|
3417
|
+
readonly largestBatchId: number;
|
|
3418
|
+
readonly mutation: Mutation;
|
|
3419
|
+
constructor(largestBatchId: number, mutation: Mutation);
|
|
3420
|
+
getKey(): _DocumentKey;
|
|
3421
|
+
isEqual(other: Overlay | null): boolean;
|
|
3422
|
+
toString(): string;
|
|
3423
|
+
}
|
|
3424
|
+
|
|
3360
3425
|
declare interface ParseContext {
|
|
3361
3426
|
readonly databaseId: _DatabaseId;
|
|
3362
3427
|
readonly ignoreUndefinedProperties: boolean;
|
|
@@ -3460,7 +3525,7 @@ declare interface Persistence {
|
|
|
3460
3525
|
* extent possible (e.g. in the case of uid switching from
|
|
3461
3526
|
* sally=>jack=>sally, sally's mutation queue will be preserved).
|
|
3462
3527
|
*/
|
|
3463
|
-
getMutationQueue(user: User): MutationQueue;
|
|
3528
|
+
getMutationQueue(user: User, indexManager: IndexManager): MutationQueue;
|
|
3464
3529
|
/**
|
|
3465
3530
|
* Returns a TargetCache representing the persisted cache of targets.
|
|
3466
3531
|
*
|
|
@@ -3493,7 +3558,12 @@ declare interface Persistence {
|
|
|
3493
3558
|
* this is called. In particular, the memory-backed implementation does this
|
|
3494
3559
|
* to emulate the persisted implementation to the extent possible.
|
|
3495
3560
|
*/
|
|
3496
|
-
getIndexManager(): IndexManager;
|
|
3561
|
+
getIndexManager(user: User): IndexManager;
|
|
3562
|
+
/**
|
|
3563
|
+
* Returns a DocumentOverlayCache representing the documents that are mutated
|
|
3564
|
+
* locally.
|
|
3565
|
+
*/
|
|
3566
|
+
getDocumentOverlayCache(user: User): DocumentOverlayCache;
|
|
3497
3567
|
/**
|
|
3498
3568
|
* Performs an operation inside a persistence transaction. Any reads or writes
|
|
3499
3569
|
* against persistence must be performed within a transaction. Writes will be
|
|
@@ -3904,6 +3974,8 @@ declare type Rejector = (error: Error) => void;
|
|
|
3904
3974
|
* documents that are known to not exist.
|
|
3905
3975
|
*/
|
|
3906
3976
|
declare interface RemoteDocumentCache {
|
|
3977
|
+
/** Sets the index manager to use for managing the collectionGroup index. */
|
|
3978
|
+
setIndexManager(indexManager: IndexManager): void;
|
|
3907
3979
|
/**
|
|
3908
3980
|
* Looks up an entry in the cache.
|
|
3909
3981
|
*
|
|
@@ -3921,19 +3993,14 @@ declare interface RemoteDocumentCache {
|
|
|
3921
3993
|
*/
|
|
3922
3994
|
getEntries(transaction: PersistenceTransaction, documentKeys: DocumentKeySet): PersistencePromise<MutableDocumentMap>;
|
|
3923
3995
|
/**
|
|
3924
|
-
*
|
|
3925
|
-
*
|
|
3926
|
-
* Implementations may return extra documents if convenient. The results
|
|
3927
|
-
* should be re-filtered by the consumer before presenting them to the user.
|
|
3928
|
-
*
|
|
3929
|
-
* Cached NoDocument entries have no bearing on query results.
|
|
3996
|
+
* Returns the documents from the provided collection.
|
|
3930
3997
|
*
|
|
3931
|
-
* @param
|
|
3998
|
+
* @param collection - The collection to read.
|
|
3932
3999
|
* @param sinceReadTime - If not set to SnapshotVersion.min(), return only
|
|
3933
4000
|
* documents that have been read since this snapshot version (exclusive).
|
|
3934
4001
|
* @returns The set of matching documents.
|
|
3935
4002
|
*/
|
|
3936
|
-
|
|
4003
|
+
getAll(transaction: PersistenceTransaction, collection: _ResourcePath, sinceReadTime: SnapshotVersion): PersistencePromise<MutableDocumentMap>;
|
|
3937
4004
|
/**
|
|
3938
4005
|
* Provides access to add or update the contents of the cache. The buffer
|
|
3939
4006
|
* handles proper size accounting for the change.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firebase/firestore",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.5",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=10.10.0"
|
|
6
6
|
},
|
|
@@ -77,22 +77,22 @@
|
|
|
77
77
|
"lite/package.json"
|
|
78
78
|
],
|
|
79
79
|
"dependencies": {
|
|
80
|
-
"@firebase/component": "0.5.10
|
|
81
|
-
"@firebase/logger": "0.3.2
|
|
82
|
-
"@firebase/util": "1.4.3
|
|
83
|
-
"@firebase/webchannel-wrapper": "0.6.1
|
|
80
|
+
"@firebase/component": "0.5.10",
|
|
81
|
+
"@firebase/logger": "0.3.2",
|
|
82
|
+
"@firebase/util": "1.4.3",
|
|
83
|
+
"@firebase/webchannel-wrapper": "0.6.1",
|
|
84
84
|
"@grpc/grpc-js": "^1.3.2",
|
|
85
85
|
"@grpc/proto-loader": "^0.6.0",
|
|
86
86
|
"node-fetch": "2.6.7",
|
|
87
87
|
"tslib": "^2.1.0"
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {
|
|
90
|
-
"@firebase/app": "0.
|
|
90
|
+
"@firebase/app": "0.x"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
|
-
"@firebase/app": "0.7.
|
|
94
|
-
"@firebase/app-compat": "0.1.
|
|
95
|
-
"@firebase/auth": "0.19.
|
|
93
|
+
"@firebase/app": "0.7.17",
|
|
94
|
+
"@firebase/app-compat": "0.1.18",
|
|
95
|
+
"@firebase/auth": "0.19.9",
|
|
96
96
|
"@rollup/plugin-alias": "3.1.5",
|
|
97
97
|
"@rollup/plugin-json": "4.1.0",
|
|
98
98
|
"@types/eslint": "7.28.0",
|