@firebase/firestore 3.4.3 → 3.4.4-202202622812

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.
Files changed (49) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/firestore/src/api/database.d.ts +14 -9
  3. package/dist/firestore/src/api/index_configuration.d.ts +117 -0
  4. package/dist/firestore/src/api.d.ts +1 -0
  5. package/dist/firestore/src/core/firestore_client.d.ts +2 -0
  6. package/dist/firestore/src/model/field_index.d.ts +76 -0
  7. package/dist/firestore/test/integration/api/index_configuration.test.d.ts +17 -0
  8. package/dist/index.d.ts +15 -9
  9. package/dist/index.esm2017.js +663 -602
  10. package/dist/index.esm2017.js.map +1 -1
  11. package/dist/index.esm5.js +680 -617
  12. package/dist/index.esm5.js.map +1 -1
  13. package/dist/index.node.cjs.js +100 -13
  14. package/dist/index.node.cjs.js.map +1 -1
  15. package/dist/index.node.mjs +100 -14
  16. package/dist/index.node.mjs.map +1 -1
  17. package/dist/index.rn.js +705 -602
  18. package/dist/index.rn.js.map +1 -1
  19. package/dist/internal.d.ts +120 -9
  20. package/dist/lite/firestore/src/api/database.d.ts +14 -9
  21. package/dist/lite/firestore/src/api/index_configuration.d.ts +117 -0
  22. package/dist/lite/firestore/src/api.d.ts +1 -0
  23. package/dist/lite/firestore/src/core/firestore_client.d.ts +2 -0
  24. package/dist/lite/firestore/src/model/field_index.d.ts +76 -0
  25. package/dist/lite/firestore/test/integration/api/index_configuration.test.d.ts +17 -0
  26. package/dist/lite/index.browser.esm2017.js +2 -2
  27. package/dist/lite/index.browser.esm2017.js.map +1 -1
  28. package/dist/lite/index.browser.esm5.js +2 -2
  29. package/dist/lite/index.browser.esm5.js.map +1 -1
  30. package/dist/lite/index.node.cjs.js +2 -2
  31. package/dist/lite/index.node.mjs +2 -2
  32. package/dist/lite/index.node.mjs.map +1 -1
  33. package/dist/lite/index.rn.esm2017.js +2 -2
  34. package/dist/lite/index.rn.esm2017.js.map +1 -1
  35. package/dist/lite/packages/firestore/src/api/database.d.ts +14 -9
  36. package/dist/lite/packages/firestore/src/api/index_configuration.d.ts +117 -0
  37. package/dist/lite/packages/firestore/src/api.d.ts +1 -0
  38. package/dist/lite/packages/firestore/src/core/firestore_client.d.ts +2 -0
  39. package/dist/lite/packages/firestore/src/model/field_index.d.ts +76 -0
  40. package/dist/lite/packages/firestore/test/integration/api/index_configuration.test.d.ts +17 -0
  41. package/dist/packages/firestore/dist/index.esm2017.d.ts +152 -131
  42. package/dist/packages/firestore/src/api/database.d.ts +14 -9
  43. package/dist/packages/firestore/src/api/index_configuration.d.ts +117 -0
  44. package/dist/packages/firestore/src/api.d.ts +1 -0
  45. package/dist/packages/firestore/src/core/firestore_client.d.ts +2 -0
  46. package/dist/packages/firestore/src/model/field_index.d.ts +76 -0
  47. package/dist/packages/firestore/test/integration/api/index_configuration.test.d.ts +17 -0
  48. package/dist/private.d.ts +24 -9
  49. package/package.json +5 -5
@@ -1513,6 +1513,7 @@ declare class FirestoreClient {
1513
1513
  private user;
1514
1514
  private readonly clientId;
1515
1515
  private authCredentialListener;
1516
+ private appCheckCredentialListener;
1516
1517
  offlineComponents?: OfflineComponentProvider;
1517
1518
  onlineComponents?: OnlineComponentProvider;
1518
1519
  constructor(authCredentials: CredentialsProvider<User>, appCheckCredentials: CredentialsProvider<string>,
@@ -1527,6 +1528,7 @@ declare class FirestoreClient {
1527
1528
  asyncQueue: AsyncQueue, databaseInfo: DatabaseInfo);
1528
1529
  getConfiguration(): Promise<ComponentConfiguration>;
1529
1530
  setCredentialChangeListener(listener: (user: User) => Promise<void>): void;
1531
+ setAppCheckTokenChangeListener(listener: (appCheckToken: string, user: User) => Promise<void>): void;
1530
1532
  /**
1531
1533
  * Checks that the client has not been terminated. Ensures that other methods on
1532
1534
  * this class cannot be called after the client is terminated.
@@ -2300,6 +2302,58 @@ export declare function getFirestore(app?: FirebaseApp): Firestore;
2300
2302
  */
2301
2303
  export declare function increment(n: number): FieldValue;
2302
2304
 
2305
+ /**
2306
+ * The SDK definition of a Firestore index.
2307
+ *
2308
+ * @internal
2309
+ */
2310
+ declare interface Index {
2311
+ /** The ID of the collection to index. */
2312
+ readonly collectionGroup: string;
2313
+ /** A list of fields to index. */
2314
+ readonly fields?: IndexField[];
2315
+ [key: string]: unknown;
2316
+ }
2317
+
2318
+ /**
2319
+ * A list of Firestore indexes to speed up local query execution.
2320
+ *
2321
+ * See {@link https://firebase.google.com/docs/reference/firestore/indexes/#json_format | JSON Format}
2322
+ * for a description of the format of the index definition.
2323
+ *
2324
+ * @internal
2325
+ */
2326
+ declare interface IndexConfiguration {
2327
+ /** A list of all Firestore indexes. */
2328
+ readonly indexes?: Index[];
2329
+ [key: string]: unknown;
2330
+ }
2331
+
2332
+ /**
2333
+ * A single field element in an index configuration.
2334
+ *
2335
+ * @internal
2336
+ */
2337
+ declare interface IndexField {
2338
+ /** The field path to index. */
2339
+ readonly fieldPath: string;
2340
+ /**
2341
+ * What type of array index to create. Set to `CONTAINS` for `array-contains`
2342
+ * and `array-contains-any` indexes.
2343
+ *
2344
+ * Only one of `arrayConfig` or `order` should be set;
2345
+ */
2346
+ readonly arrayConfig?: 'CONTAINS';
2347
+ /**
2348
+ * What type of array index to create. Set to `ASCENDING` or 'DESCENDING` for
2349
+ * `==`, `!=`, `<=`, `<=`, `in` and `not-in` filters.
2350
+ *
2351
+ * Only one of `arrayConfig` or `order` should be set.
2352
+ */
2353
+ readonly order?: 'ASCENDING' | 'DESCENDING';
2354
+ [key: string]: unknown;
2355
+ }
2356
+
2303
2357
  declare type IndexFieldMode = 'MODE_UNSPECIFIED' | 'ASCENDING' | 'DESCENDING';
2304
2358
 
2305
2359
  /**
@@ -2432,13 +2486,13 @@ declare class LLRBNode<K, V> {
2432
2486
  /**
2433
2487
  * Loads a Firestore bundle into the local cache.
2434
2488
  *
2435
- * @param firestore - The {@link Firestore} instance to load bundles for for.
2436
- * @param bundleData - An object representing the bundle to be loaded. Valid objects are
2437
- * `ArrayBuffer`, `ReadableStream<Uint8Array>` or `string`.
2489
+ * @param firestore - The {@link Firestore} instance to load bundles for.
2490
+ * @param bundleData - An object representing the bundle to be loaded. Valid
2491
+ * objects are `ArrayBuffer`, `ReadableStream<Uint8Array>` or `string`.
2438
2492
  *
2439
- * @returns
2440
- * A `LoadBundleTask` object, which notifies callers with progress updates, and completion
2441
- * or error events. It can be used as a `Promise<LoadBundleTaskProgress>`.
2493
+ * @returns A `LoadBundleTask` object, which notifies callers with progress
2494
+ * updates, and completion or error events. It can be used as a
2495
+ * `Promise<LoadBundleTaskProgress>`.
2442
2496
  */
2443
2497
  export declare function loadBundle(firestore: Firestore, bundleData: ReadableStream<Uint8Array> | ArrayBuffer | string): LoadBundleTask;
2444
2498
 
@@ -2916,11 +2970,16 @@ declare interface NamedQuery {
2916
2970
  }
2917
2971
 
2918
2972
  /**
2919
- * Reads a Firestore {@link Query} from local cache, identified by the given name.
2973
+ * Reads a Firestore {@link Query} from local cache, identified by the given
2974
+ * name.
2920
2975
  *
2921
2976
  * The named queries are packaged into bundles on the server side (along
2922
- * with resulting documents), and loaded to local cache using `loadBundle`. Once in local
2923
- * cache, use this method to extract a {@link Query} by name.
2977
+ * with resulting documents), and loaded to local cache using `loadBundle`. Once
2978
+ * in local cache, use this method to extract a {@link Query} by name.
2979
+ *
2980
+ * @param firestore - The {@link Firestore} instance to read the query from.
2981
+ * @param name - The name of the query.
2982
+ * @returns A `Promise` that is resolved with the Query or `null`.
2924
2983
  */
2925
2984
  export declare function namedQuery(firestore: Firestore, name: string): Promise<Query | null>;
2926
2985
 
@@ -4216,6 +4275,58 @@ export declare function setDoc<T>(reference: DocumentReference<T>, data: WithFie
4216
4275
  */
4217
4276
  export declare function setDoc<T>(reference: DocumentReference<T>, data: PartialWithFieldValue<T>, options: SetOptions): Promise<void>;
4218
4277
 
4278
+ /**
4279
+ * Configures indexing for local query execution. Any previous index
4280
+ * configuration is overridden. The `Promise` resolves once the index
4281
+ * configuration has been persisted.
4282
+ *
4283
+ * The index entries themselves are created asynchronously. You can continue to
4284
+ * use queries that require indexing even if the indices are not yet available.
4285
+ * Query execution will automatically start using the index once the index
4286
+ * entries have been written.
4287
+ *
4288
+ * Indexes are only supported with IndexedDb persistence. Invoke either
4289
+ * `enableIndexedDbPersistence()` or `enableMultiTabIndexedDbPersistence()`
4290
+ * before setting an index configuration. If IndexedDb is not enabled, any
4291
+ * index configuration is ignored.
4292
+ *
4293
+ * @internal
4294
+ * @param firestore - The {@link Firestore} instance to configure indexes for.
4295
+ * @param configuration -The index definition.
4296
+ * @throws FirestoreError if the JSON format is invalid.
4297
+ * @returns A `Promise` that resolves once all indices are successfully
4298
+ * configured.
4299
+ */
4300
+ export declare function _setIndexConfiguration(firestore: Firestore, configuration: IndexConfiguration): Promise<void>;
4301
+
4302
+ /**
4303
+ * Configures indexing for local query execution. Any previous index
4304
+ * configuration is overridden. The `Promise` resolves once the index
4305
+ * configuration has been persisted.
4306
+ *
4307
+ * The index entries themselves are created asynchronously. You can continue to
4308
+ * use queries that require indexing even if the indices are not yet available.
4309
+ * Query execution will automatically start using the index once the index
4310
+ * entries have been written.
4311
+ *
4312
+ * Indexes are only supported with IndexedDb persistence. Invoke either
4313
+ * `enableIndexedDbPersistence()` or `enableMultiTabIndexedDbPersistence()`
4314
+ * before setting an index configuration. If IndexedDb is not enabled, any
4315
+ * index configuration is ignored.
4316
+ *
4317
+ * The method accepts the JSON format exported by the Firebase CLI (`firebase
4318
+ * firestore:indexes`). If the JSON format is invalid, this method throws an
4319
+ * error.
4320
+ *
4321
+ * @internal
4322
+ * @param firestore - The {@link Firestore} instance to configure indexes for.
4323
+ * @param json -The JSON format exported by the Firebase CLI.
4324
+ * @throws FirestoreError if the JSON format is invalid.
4325
+ * @returns A `Promise` that resolves once all indices are successfully
4326
+ * configured.
4327
+ */
4328
+ export declare function _setIndexConfiguration(firestore: Firestore, json: string): Promise<void>;
4329
+
4219
4330
  /**
4220
4331
  * Sets the verbosity of Cloud Firestore logs (debug, error, or silent).
4221
4332
  *
@@ -209,20 +209,25 @@ export declare function terminate(firestore: Firestore): Promise<void>;
209
209
  /**
210
210
  * Loads a Firestore bundle into the local cache.
211
211
  *
212
- * @param firestore - The {@link Firestore} instance to load bundles for for.
213
- * @param bundleData - An object representing the bundle to be loaded. Valid objects are
214
- * `ArrayBuffer`, `ReadableStream<Uint8Array>` or `string`.
212
+ * @param firestore - The {@link Firestore} instance to load bundles for.
213
+ * @param bundleData - An object representing the bundle to be loaded. Valid
214
+ * objects are `ArrayBuffer`, `ReadableStream<Uint8Array>` or `string`.
215
215
  *
216
- * @returns
217
- * A `LoadBundleTask` object, which notifies callers with progress updates, and completion
218
- * or error events. It can be used as a `Promise<LoadBundleTaskProgress>`.
216
+ * @returns A `LoadBundleTask` object, which notifies callers with progress
217
+ * updates, and completion or error events. It can be used as a
218
+ * `Promise<LoadBundleTaskProgress>`.
219
219
  */
220
220
  export declare function loadBundle(firestore: Firestore, bundleData: ReadableStream<Uint8Array> | ArrayBuffer | string): LoadBundleTask;
221
221
  /**
222
- * Reads a Firestore {@link Query} from local cache, identified by the given name.
222
+ * Reads a Firestore {@link Query} from local cache, identified by the given
223
+ * name.
223
224
  *
224
225
  * The named queries are packaged into bundles on the server side (along
225
- * with resulting documents), and loaded to local cache using `loadBundle`. Once in local
226
- * cache, use this method to extract a {@link Query} by name.
226
+ * with resulting documents), and loaded to local cache using `loadBundle`. Once
227
+ * in local cache, use this method to extract a {@link Query} by name.
228
+ *
229
+ * @param firestore - The {@link Firestore} instance to read the query from.
230
+ * @param name - The name of the query.
231
+ * @returns A `Promise` that is resolved with the Query or `null`.
227
232
  */
228
233
  export declare function namedQuery(firestore: Firestore, name: string): Promise<Query | null>;
@@ -0,0 +1,117 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2021 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 { Firestore } from './database';
18
+ export { connectFirestoreEmulator, EmulatorMockTokenOptions } from '../lite-api/database';
19
+ /**
20
+ * A single field element in an index configuration.
21
+ *
22
+ * @internal
23
+ */
24
+ export interface IndexField {
25
+ /** The field path to index. */
26
+ readonly fieldPath: string;
27
+ /**
28
+ * What type of array index to create. Set to `CONTAINS` for `array-contains`
29
+ * and `array-contains-any` indexes.
30
+ *
31
+ * Only one of `arrayConfig` or `order` should be set;
32
+ */
33
+ readonly arrayConfig?: 'CONTAINS';
34
+ /**
35
+ * What type of array index to create. Set to `ASCENDING` or 'DESCENDING` for
36
+ * `==`, `!=`, `<=`, `<=`, `in` and `not-in` filters.
37
+ *
38
+ * Only one of `arrayConfig` or `order` should be set.
39
+ */
40
+ readonly order?: 'ASCENDING' | 'DESCENDING';
41
+ [key: string]: unknown;
42
+ }
43
+ /**
44
+ * The SDK definition of a Firestore index.
45
+ *
46
+ * @internal
47
+ */
48
+ export interface Index {
49
+ /** The ID of the collection to index. */
50
+ readonly collectionGroup: string;
51
+ /** A list of fields to index. */
52
+ readonly fields?: IndexField[];
53
+ [key: string]: unknown;
54
+ }
55
+ /**
56
+ * A list of Firestore indexes to speed up local query execution.
57
+ *
58
+ * See {@link https://firebase.google.com/docs/reference/firestore/indexes/#json_format | JSON Format}
59
+ * for a description of the format of the index definition.
60
+ *
61
+ * @internal
62
+ */
63
+ export interface IndexConfiguration {
64
+ /** A list of all Firestore indexes. */
65
+ readonly indexes?: Index[];
66
+ [key: string]: unknown;
67
+ }
68
+ /**
69
+ * Configures indexing for local query execution. Any previous index
70
+ * configuration is overridden. The `Promise` resolves once the index
71
+ * configuration has been persisted.
72
+ *
73
+ * The index entries themselves are created asynchronously. You can continue to
74
+ * use queries that require indexing even if the indices are not yet available.
75
+ * Query execution will automatically start using the index once the index
76
+ * entries have been written.
77
+ *
78
+ * Indexes are only supported with IndexedDb persistence. Invoke either
79
+ * `enableIndexedDbPersistence()` or `enableMultiTabIndexedDbPersistence()`
80
+ * before setting an index configuration. If IndexedDb is not enabled, any
81
+ * index configuration is ignored.
82
+ *
83
+ * @internal
84
+ * @param firestore - The {@link Firestore} instance to configure indexes for.
85
+ * @param configuration -The index definition.
86
+ * @throws FirestoreError if the JSON format is invalid.
87
+ * @returns A `Promise` that resolves once all indices are successfully
88
+ * configured.
89
+ */
90
+ export declare function setIndexConfiguration(firestore: Firestore, configuration: IndexConfiguration): Promise<void>;
91
+ /**
92
+ * Configures indexing for local query execution. Any previous index
93
+ * configuration is overridden. The `Promise` resolves once the index
94
+ * configuration has been persisted.
95
+ *
96
+ * The index entries themselves are created asynchronously. You can continue to
97
+ * use queries that require indexing even if the indices are not yet available.
98
+ * Query execution will automatically start using the index once the index
99
+ * entries have been written.
100
+ *
101
+ * Indexes are only supported with IndexedDb persistence. Invoke either
102
+ * `enableIndexedDbPersistence()` or `enableMultiTabIndexedDbPersistence()`
103
+ * before setting an index configuration. If IndexedDb is not enabled, any
104
+ * index configuration is ignored.
105
+ *
106
+ * The method accepts the JSON format exported by the Firebase CLI (`firebase
107
+ * firestore:indexes`). If the JSON format is invalid, this method throws an
108
+ * error.
109
+ *
110
+ * @internal
111
+ * @param firestore - The {@link Firestore} instance to configure indexes for.
112
+ * @param json -The JSON format exported by the Firebase CLI.
113
+ * @throws FirestoreError if the JSON format is invalid.
114
+ * @returns A `Promise` that resolves once all indices are successfully
115
+ * configured.
116
+ */
117
+ export declare function setIndexConfiguration(firestore: Firestore, json: string): Promise<void>;
@@ -49,3 +49,4 @@ export type { ByteString as _ByteString } from './util/byte_string';
49
49
  export { logWarn as _logWarn } from './util/log';
50
50
  export { EmptyAuthCredentialsProvider as _EmptyAuthCredentialsProvider } from './api/credentials';
51
51
  export { EmptyAppCheckTokenProvider as _EmptyAppCheckTokenProvider } from './api/credentials';
52
+ export { setIndexConfiguration as _setIndexConfiguration } from './api/index_configuration';
@@ -53,6 +53,7 @@ export declare class FirestoreClient {
53
53
  private user;
54
54
  private readonly clientId;
55
55
  private authCredentialListener;
56
+ private appCheckCredentialListener;
56
57
  offlineComponents?: OfflineComponentProvider;
57
58
  onlineComponents?: OnlineComponentProvider;
58
59
  constructor(authCredentials: CredentialsProvider<User>, appCheckCredentials: CredentialsProvider<string>,
@@ -67,6 +68,7 @@ export declare class FirestoreClient {
67
68
  asyncQueue: AsyncQueue, databaseInfo: DatabaseInfo);
68
69
  getConfiguration(): Promise<ComponentConfiguration>;
69
70
  setCredentialChangeListener(listener: (user: User) => Promise<void>): void;
71
+ setAppCheckTokenChangeListener(listener: (appCheckToken: string, user: User) => Promise<void>): void;
70
72
  /**
71
73
  * Checks that the client has not been terminated. Ensures that other methods on
72
74
  * this class cannot be called after the client is terminated.
@@ -0,0 +1,76 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2021 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 { FieldPath } from './path';
18
+ /**
19
+ * An index definition for field indexes in Firestore.
20
+ *
21
+ * Every index is associated with a collection. The definition contains a list
22
+ * of fields and their index kind (which can be `ASCENDING`, `DESCENDING` or
23
+ * `CONTAINS` for ArrayContains/ArrayContainsAny queries).
24
+ *
25
+ * Unlike the backend, the SDK does not differentiate between collection or
26
+ * collection group-scoped indices. Every index can be used for both single
27
+ * collection and collection group queries.
28
+ */
29
+ export declare class FieldIndex {
30
+ /**
31
+ * The index ID. Returns -1 if the index ID is not available (e.g. the index
32
+ * has not yet been persisted).
33
+ */
34
+ readonly indexId: number;
35
+ /** The collection ID this index applies to. */
36
+ readonly collectionGroup: string;
37
+ /** The field segments for this index. */
38
+ readonly segments: Segment[];
39
+ /** An ID for an index that has not yet been added to persistence. */
40
+ static UNKNOWN_ID: -1;
41
+ constructor(
42
+ /**
43
+ * The index ID. Returns -1 if the index ID is not available (e.g. the index
44
+ * has not yet been persisted).
45
+ */
46
+ indexId: number,
47
+ /** The collection ID this index applies to. */
48
+ collectionGroup: string,
49
+ /** The field segments for this index. */
50
+ segments: Segment[]);
51
+ }
52
+ /** The type of the index, e.g. for which type of query it can be used. */
53
+ export declare const enum Kind {
54
+ /**
55
+ * Ordered index. Can be used for <, <=, ==, >=, >, !=, IN and NOT IN queries.
56
+ */
57
+ ASCENDING = 0,
58
+ /**
59
+ * Ordered index. Can be used for <, <=, ==, >=, >, !=, IN and NOT IN queries.
60
+ */
61
+ DESCENDING = 1,
62
+ /** Contains index. Can be used for ArrayContains and ArrayContainsAny. */
63
+ CONTAINS = 2
64
+ }
65
+ /** An index component consisting of field path and index type. */
66
+ export declare class Segment {
67
+ /** The field path of the component. */
68
+ readonly fieldPath: FieldPath;
69
+ /** The fields sorting order. */
70
+ readonly kind: Kind;
71
+ constructor(
72
+ /** The field path of the component. */
73
+ fieldPath: FieldPath,
74
+ /** The fields sorting order. */
75
+ kind: Kind);
76
+ }
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2021 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 {};
@@ -63,7 +63,7 @@ l.MOCK_USER = new l("mock-user");
63
63
  * See the License for the specific language governing permissions and
64
64
  * limitations under the License.
65
65
  */
66
- let f = "9.6.3";
66
+ let f = "9.6.5-202202622812";
67
67
 
68
68
  /**
69
69
  * @license
@@ -5938,7 +5938,7 @@ class kr {
5938
5938
  return n && r._setSettings(n), r;
5939
5939
  }), "PUBLIC")),
5940
5940
  // RUNTIME_ENV and BUILD_TARGET are replaced by real values during the compilation
5941
- registerVersion("firestore-lite", "3.4.3", ""), registerVersion("firestore-lite", "3.4.3", "esm2017");
5941
+ registerVersion("firestore-lite", "3.4.4-202202622812", ""), registerVersion("firestore-lite", "3.4.4-202202622812", "esm2017");
5942
5942
 
5943
5943
  export { ve as Bytes, fe as CollectionReference, he as DocumentReference, He as DocumentSnapshot, _e as FieldPath, be as FieldValue, ie as Firestore, U as FirestoreError, Ee as GeoPoint, le as Query, tr as QueryConstraint, Ke as QueryDocumentSnapshot, Je as QuerySnapshot, gt as Timestamp, kr as Transaction, Sr as WriteBatch, Rr as addDoc, Nr as arrayRemove, Dr as arrayUnion, de as collection, we as collectionGroup, ce as connectFirestoreEmulator, Ar as deleteDoc, Pr as deleteField, me as doc, ge as documentId, wr as endAt, dr as endBefore, br as getDoc, Er as getDocs, ue as getFirestore, $r as increment, oe as initializeFirestore, ur as limit, cr as limitToLast, ir as orderBy, nr as query, ye as queryEqual, pe as refEqual, jr as runTransaction, Vr as serverTimestamp, Tr as setDoc, w as setLogLevel, Xe as snapshotEqual, lr as startAfter, hr as startAt, ae as terminate, Ir as updateDoc, rr as where, xr as writeBatch };
5944
5944
  //# sourceMappingURL=index.browser.esm2017.js.map