@firebase/firestore 3.4.3-202202014332 → 3.4.3-canary.2d04af91d

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 (44) hide show
  1. package/dist/firestore/src/api/database.d.ts +14 -9
  2. package/dist/firestore/src/api/index_configuration.d.ts +117 -0
  3. package/dist/firestore/src/api.d.ts +1 -0
  4. package/dist/firestore/src/model/field_index.d.ts +76 -0
  5. package/dist/firestore/test/integration/api/index_configuration.test.d.ts +17 -0
  6. package/dist/index.d.ts +15 -9
  7. package/dist/index.esm2017.js +70 -13
  8. package/dist/index.esm2017.js.map +1 -1
  9. package/dist/index.esm5.js +85 -28
  10. package/dist/index.esm5.js.map +1 -1
  11. package/dist/index.node.cjs.js +91 -11
  12. package/dist/index.node.cjs.js.map +1 -1
  13. package/dist/index.node.mjs +91 -12
  14. package/dist/index.node.mjs.map +1 -1
  15. package/dist/index.rn.js +112 -13
  16. package/dist/index.rn.js.map +1 -1
  17. package/dist/internal.d.ts +118 -9
  18. package/dist/lite/firestore/src/api/database.d.ts +14 -9
  19. package/dist/lite/firestore/src/api/index_configuration.d.ts +117 -0
  20. package/dist/lite/firestore/src/api.d.ts +1 -0
  21. package/dist/lite/firestore/src/model/field_index.d.ts +76 -0
  22. package/dist/lite/firestore/test/integration/api/index_configuration.test.d.ts +17 -0
  23. package/dist/lite/index.browser.esm2017.js +2 -2
  24. package/dist/lite/index.browser.esm2017.js.map +1 -1
  25. package/dist/lite/index.browser.esm5.js +42 -42
  26. package/dist/lite/index.browser.esm5.js.map +1 -1
  27. package/dist/lite/index.node.cjs.js +2 -2
  28. package/dist/lite/index.node.mjs +2 -2
  29. package/dist/lite/index.node.mjs.map +1 -1
  30. package/dist/lite/index.rn.esm2017.js +2 -2
  31. package/dist/lite/index.rn.esm2017.js.map +1 -1
  32. package/dist/lite/packages/firestore/src/api/database.d.ts +14 -9
  33. package/dist/lite/packages/firestore/src/api/index_configuration.d.ts +117 -0
  34. package/dist/lite/packages/firestore/src/api.d.ts +1 -0
  35. package/dist/lite/packages/firestore/src/model/field_index.d.ts +76 -0
  36. package/dist/lite/packages/firestore/test/integration/api/index_configuration.test.d.ts +17 -0
  37. package/dist/packages/firestore/dist/index.esm2017.d.ts +31 -10
  38. package/dist/packages/firestore/src/api/database.d.ts +14 -9
  39. package/dist/packages/firestore/src/api/index_configuration.d.ts +117 -0
  40. package/dist/packages/firestore/src/api.d.ts +1 -0
  41. package/dist/packages/firestore/src/model/field_index.d.ts +76 -0
  42. package/dist/packages/firestore/test/integration/api/index_configuration.test.d.ts +17 -0
  43. package/dist/private.d.ts +22 -9
  44. package/package.json +9 -9
@@ -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';
@@ -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 {};
package/dist/index.d.ts CHANGED
@@ -963,13 +963,13 @@ export declare function limitToLast(limit: number): QueryConstraint;
963
963
  /**
964
964
  * Loads a Firestore bundle into the local cache.
965
965
  *
966
- * @param firestore - The {@link Firestore} instance to load bundles for for.
967
- * @param bundleData - An object representing the bundle to be loaded. Valid objects are
968
- * `ArrayBuffer`, `ReadableStream<Uint8Array>` or `string`.
966
+ * @param firestore - The {@link Firestore} instance to load bundles for.
967
+ * @param bundleData - An object representing the bundle to be loaded. Valid
968
+ * objects are `ArrayBuffer`, `ReadableStream<Uint8Array>` or `string`.
969
969
  *
970
- * @returns
971
- * A `LoadBundleTask` object, which notifies callers with progress updates, and completion
972
- * or error events. It can be used as a `Promise<LoadBundleTaskProgress>`.
970
+ * @returns A `LoadBundleTask` object, which notifies callers with progress
971
+ * updates, and completion or error events. It can be used as a
972
+ * `Promise<LoadBundleTaskProgress>`.
973
973
  */
974
974
  export declare function loadBundle(firestore: Firestore, bundleData: ReadableStream<Uint8Array> | ArrayBuffer | string): LoadBundleTask;
975
975
  /**
@@ -1020,11 +1020,16 @@ export declare interface LoadBundleTaskProgress {
1020
1020
  }
1021
1021
  export { LogLevel };
1022
1022
  /**
1023
- * Reads a Firestore {@link Query} from local cache, identified by the given name.
1023
+ * Reads a Firestore {@link Query} from local cache, identified by the given
1024
+ * name.
1024
1025
  *
1025
1026
  * The named queries are packaged into bundles on the server side (along
1026
- * with resulting documents), and loaded to local cache using `loadBundle`. Once in local
1027
- * cache, use this method to extract a {@link Query} by name.
1027
+ * with resulting documents), and loaded to local cache using `loadBundle`. Once
1028
+ * in local cache, use this method to extract a {@link Query} by name.
1029
+ *
1030
+ * @param firestore - The {@link Firestore} instance to read the query from.
1031
+ * @param name - The name of the query.
1032
+ * @returns A `Promise` that is resolved with the Query or `null`.
1028
1033
  */
1029
1034
  export declare function namedQuery(firestore: Firestore, name: string): Promise<Query | null>;
1030
1035
  /**
@@ -1465,6 +1470,7 @@ export declare function setDoc<T>(reference: DocumentReference<T>, data: WithFie
1465
1470
  * to the backend (note that it won't resolve while you're offline).
1466
1471
  */
1467
1472
  export declare function setDoc<T>(reference: DocumentReference<T>, data: PartialWithFieldValue<T>, options: SetOptions): Promise<void>;
1473
+ /* Excluded from this release type: _setIndexConfiguration */
1468
1474
  /**
1469
1475
  * Sets the verbosity of Cloud Firestore logs (debug, error, or silent).
1470
1476
  *
@@ -66,7 +66,7 @@ C.MOCK_USER = new C("mock-user");
66
66
  * See the License for the specific language governing permissions and
67
67
  * limitations under the License.
68
68
  */
69
- let N = "9.6.4-202202014332";
69
+ let N = "9.6.4-canary.2d04af91d";
70
70
 
71
71
  /**
72
72
  * @license
@@ -15676,24 +15676,29 @@ function Wa(t) {
15676
15676
  /**
15677
15677
  * Loads a Firestore bundle into the local cache.
15678
15678
  *
15679
- * @param firestore - The {@link Firestore} instance to load bundles for for.
15680
- * @param bundleData - An object representing the bundle to be loaded. Valid objects are
15681
- * `ArrayBuffer`, `ReadableStream<Uint8Array>` or `string`.
15679
+ * @param firestore - The {@link Firestore} instance to load bundles for.
15680
+ * @param bundleData - An object representing the bundle to be loaded. Valid
15681
+ * objects are `ArrayBuffer`, `ReadableStream<Uint8Array>` or `string`.
15682
15682
  *
15683
- * @returns
15684
- * A `LoadBundleTask` object, which notifies callers with progress updates, and completion
15685
- * or error events. It can be used as a `Promise<LoadBundleTaskProgress>`.
15683
+ * @returns A `LoadBundleTask` object, which notifies callers with progress
15684
+ * updates, and completion or error events. It can be used as a
15685
+ * `Promise<LoadBundleTaskProgress>`.
15686
15686
  */ function Ya(t, e) {
15687
15687
  const n = Ua(t = Ea(t, Fa)), s = new Oa;
15688
15688
  return la(n, t._databaseId, e, s), s;
15689
15689
  }
15690
15690
 
15691
15691
  /**
15692
- * Reads a Firestore {@link Query} from local cache, identified by the given name.
15692
+ * Reads a Firestore {@link Query} from local cache, identified by the given
15693
+ * name.
15693
15694
  *
15694
15695
  * The named queries are packaged into bundles on the server side (along
15695
- * with resulting documents), and loaded to local cache using `loadBundle`. Once in local
15696
- * cache, use this method to extract a {@link Query} by name.
15696
+ * with resulting documents), and loaded to local cache using `loadBundle`. Once
15697
+ * in local cache, use this method to extract a {@link Query} by name.
15698
+ *
15699
+ * @param firestore - The {@link Firestore} instance to read the query from.
15700
+ * @param name - The name of the query.
15701
+ * @returns A `Promise` that is resolved with the Query or `null`.
15697
15702
  */ function Xa(t, e) {
15698
15703
  return fa(Ua(t = Ea(t, Fa)), e).then((e => e ? new va(t, null, e.query) : null));
15699
15704
  }
@@ -17829,6 +17834,58 @@ function Ah(t, e) {
17829
17834
  return Ua(t = Ea(t, Fa)), new uh(t, (e => Rh(t, e)));
17830
17835
  }
17831
17836
 
17837
+ /** An index component consisting of field path and index type. */ class $h {
17838
+ constructor(
17839
+ /** The field path of the component. */
17840
+ t,
17841
+ /** The fields sorting order. */
17842
+ e) {
17843
+ this.fieldPath = t, this.kind = e;
17844
+ }
17845
+ }
17846
+
17847
+ /**
17848
+ * @license
17849
+ * Copyright 2021 Google LLC
17850
+ *
17851
+ * Licensed under the Apache License, Version 2.0 (the "License");
17852
+ * you may not use this file except in compliance with the License.
17853
+ * You may obtain a copy of the License at
17854
+ *
17855
+ * http://www.apache.org/licenses/LICENSE-2.0
17856
+ *
17857
+ * Unless required by applicable law or agreed to in writing, software
17858
+ * distributed under the License is distributed on an "AS IS" BASIS,
17859
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17860
+ * See the License for the specific language governing permissions and
17861
+ * limitations under the License.
17862
+ */ function Oh(t, e) {
17863
+ Ua(t = Ea(t, Fa));
17864
+ const n = "string" == typeof e ? function(t) {
17865
+ try {
17866
+ return JSON.parse(t);
17867
+ } catch (t) {
17868
+ throw new Q(j.INVALID_ARGUMENT, "Failed to parse JSON:" + t.message);
17869
+ }
17870
+ }(e) : e;
17871
+ // PORTING NOTE: We don't return an error if the user has not enabled
17872
+ // persistence since `enableIndexeddbPersistence()` can fail on the Web.
17873
+ if (Array.isArray(n.indexes)) for (const t of n.indexes) {
17874
+ Mh(t, "collectionGroup"); const n = [];
17875
+ if (Array.isArray(t.fields)) for (const e of t.fields) {
17876
+ const t = Vu("setIndexConfiguration", Mh(e, "fieldPath"));
17877
+ "CONTAINS" === e.arrayConfig ? n.push(new $h(t, 2 /* CONTAINS */)) : "ASCENDING" === e.order ? n.push(new $h(t, 0 /* ASCENDING */)) : "DESCENDING" === e.order && n.push(new $h(t, 1 /* DESCENDING */));
17878
+ }
17879
+ }
17880
+ // TODO(indexing): Configure indexes
17881
+ return Promise.resolve();
17882
+ }
17883
+
17884
+ function Mh(t, e) {
17885
+ if ("string" != typeof t[e]) throw new Q(j.INVALID_ARGUMENT, "Missing string value for: " + e);
17886
+ return t[e];
17887
+ }
17888
+
17832
17889
  /**
17833
17890
  * Cloud Firestore
17834
17891
  *
@@ -17841,10 +17898,10 @@ function Ah(t, e) {
17841
17898
  return n = Object.assign({
17842
17899
  useFetchStreams: e
17843
17900
  }, n), i._setSettings(n), i;
17844
- }), "PUBLIC")), registerVersion(D, "3.4.3-202202014332", t),
17901
+ }), "PUBLIC")), registerVersion(D, "3.4.3-canary.2d04af91d", t),
17845
17902
  // BUILD_TARGET will be replaced by values like esm5, esm2017, cjs5, etc during the compilation
17846
- registerVersion(D, "3.4.3-202202014332", "esm2017");
17903
+ registerVersion(D, "3.4.3-canary.2d04af91d", "esm2017");
17847
17904
  }();
17848
17905
 
17849
- export { oh as AbstractUserDataWriter, nu as Bytes, Ma as CACHE_SIZE_UNLIMITED, Va as CollectionReference, Pa as DocumentReference, $u as DocumentSnapshot, tu as FieldPath, su as FieldValue, Fa as Firestore, Q as FirestoreError, iu as GeoPoint, Oa as LoadBundleTask, va as Query, Uu as QueryConstraint, Ou as QueryDocumentSnapshot, Mu as QuerySnapshot, xu as SnapshotMetadata, at as Timestamp, Ph as Transaction, uh as WriteBatch, wa as _DatabaseId, Dt as _DocumentKey, et as _EmptyAppCheckTokenProvider, z as _EmptyAuthCredentialsProvider, mt as _FieldPath, Ea as _cast, q as _debugAssert, yt as _isBase64Available, F as _logWarn, ga as _validateIsNotUsedTogether, Eh as addDoc, Ch as arrayRemove, Dh as arrayUnion, Wa as clearIndexedDbPersistence, Sa as collection, Da as collectionGroup, ba as connectFirestoreEmulator, Th as deleteDoc, Vh as deleteField, Ha as disableNetwork, Ca as doc, eu as documentId, Ka as enableIndexedDbPersistence, ja as enableMultiTabIndexedDbPersistence, za as enableNetwork, eh as endAt, th as endBefore, Ua as ensureFirestoreConfigured, Rh as executeWrite, lh as getDoc, dh as getDocFromCache, wh as getDocFromServer, _h as getDocs, mh as getDocsFromCache, gh as getDocsFromServer, Ba as getFirestore, Nh as increment, La as initializeFirestore, zu as limit, Hu as limitToLast, Ya as loadBundle, Xa as namedQuery, Ih as onSnapshot, Ah as onSnapshotsInSync, Wu as orderBy, qu as query, ka as queryEqual, Na as refEqual, vh as runTransaction, Sh as serverTimestamp, yh as setDoc, $ as setLogLevel, Lu as snapshotEqual, Xu as startAfter, Yu as startAt, Ja as terminate, ph as updateDoc, Ga as waitForPendingWrites, ju as where, kh as writeBatch };
17906
+ export { oh as AbstractUserDataWriter, nu as Bytes, Ma as CACHE_SIZE_UNLIMITED, Va as CollectionReference, Pa as DocumentReference, $u as DocumentSnapshot, tu as FieldPath, su as FieldValue, Fa as Firestore, Q as FirestoreError, iu as GeoPoint, Oa as LoadBundleTask, va as Query, Uu as QueryConstraint, Ou as QueryDocumentSnapshot, Mu as QuerySnapshot, xu as SnapshotMetadata, at as Timestamp, Ph as Transaction, uh as WriteBatch, wa as _DatabaseId, Dt as _DocumentKey, et as _EmptyAppCheckTokenProvider, z as _EmptyAuthCredentialsProvider, mt as _FieldPath, Ea as _cast, q as _debugAssert, yt as _isBase64Available, F as _logWarn, Oh as _setIndexConfiguration, ga as _validateIsNotUsedTogether, Eh as addDoc, Ch as arrayRemove, Dh as arrayUnion, Wa as clearIndexedDbPersistence, Sa as collection, Da as collectionGroup, ba as connectFirestoreEmulator, Th as deleteDoc, Vh as deleteField, Ha as disableNetwork, Ca as doc, eu as documentId, Ka as enableIndexedDbPersistence, ja as enableMultiTabIndexedDbPersistence, za as enableNetwork, eh as endAt, th as endBefore, Ua as ensureFirestoreConfigured, Rh as executeWrite, lh as getDoc, dh as getDocFromCache, wh as getDocFromServer, _h as getDocs, mh as getDocsFromCache, gh as getDocsFromServer, Ba as getFirestore, Nh as increment, La as initializeFirestore, zu as limit, Hu as limitToLast, Ya as loadBundle, Xa as namedQuery, Ih as onSnapshot, Ah as onSnapshotsInSync, Wu as orderBy, qu as query, ka as queryEqual, Na as refEqual, vh as runTransaction, Sh as serverTimestamp, yh as setDoc, $ as setLogLevel, Lu as snapshotEqual, Xu as startAfter, Yu as startAt, Ja as terminate, ph as updateDoc, Ga as waitForPendingWrites, ju as where, kh as writeBatch };
17850
17907
  //# sourceMappingURL=index.esm2017.js.map