@firebase/firestore 3.8.0 → 3.8.1

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/CHANGELOG.md +14 -0
  2. package/dist/firestore/src/api/reference_impl.d.ts +2 -1
  3. package/dist/firestore/src/lite-api/query.d.ts +14 -12
  4. package/dist/firestore/src/local/overlayed_document.d.ts +8 -4
  5. package/dist/firestore/test/unit/local/counting_query_engine.d.ts +12 -21
  6. package/dist/index.d.ts +2 -1
  7. package/dist/index.esm2017.js +36 -20
  8. package/dist/index.esm2017.js.map +1 -1
  9. package/dist/index.esm5.js +38 -20
  10. package/dist/index.esm5.js.map +1 -1
  11. package/dist/index.node.cjs.js +36 -17
  12. package/dist/index.node.cjs.js.map +1 -1
  13. package/dist/index.node.mjs +36 -17
  14. package/dist/index.node.mjs.map +1 -1
  15. package/dist/index.rn.js +36 -20
  16. package/dist/index.rn.js.map +1 -1
  17. package/dist/internal.d.ts +25 -18
  18. package/dist/lite/firestore/src/api/reference_impl.d.ts +2 -1
  19. package/dist/lite/firestore/src/lite-api/query.d.ts +14 -12
  20. package/dist/lite/firestore/src/local/overlayed_document.d.ts +8 -4
  21. package/dist/lite/firestore/test/unit/local/counting_query_engine.d.ts +12 -21
  22. package/dist/lite/index.browser.esm2017.js +16 -14
  23. package/dist/lite/index.browser.esm2017.js.map +1 -1
  24. package/dist/lite/index.browser.esm5.js +17 -15
  25. package/dist/lite/index.browser.esm5.js.map +1 -1
  26. package/dist/lite/index.node.cjs.js +16 -14
  27. package/dist/lite/index.node.cjs.js.map +1 -1
  28. package/dist/lite/index.node.mjs +16 -14
  29. package/dist/lite/index.node.mjs.map +1 -1
  30. package/dist/lite/index.rn.esm2017.js +16 -14
  31. package/dist/lite/index.rn.esm2017.js.map +1 -1
  32. package/dist/lite/internal.d.ts +15 -13
  33. package/dist/lite/packages/firestore/dist/lite/index.browser.esm2017.d.ts +15 -13
  34. package/dist/lite/packages/firestore/src/api/reference_impl.d.ts +2 -1
  35. package/dist/lite/packages/firestore/src/lite-api/query.d.ts +14 -12
  36. package/dist/lite/packages/firestore/src/local/overlayed_document.d.ts +8 -4
  37. package/dist/lite/packages/firestore/test/unit/local/counting_query_engine.d.ts +12 -21
  38. package/dist/packages/firestore/dist/index.esm2017.d.ts +17 -14
  39. package/dist/packages/firestore/src/api/reference_impl.d.ts +2 -1
  40. package/dist/packages/firestore/src/lite-api/query.d.ts +14 -12
  41. package/dist/packages/firestore/src/local/overlayed_document.d.ts +8 -4
  42. package/dist/packages/firestore/test/unit/local/counting_query_engine.d.ts +12 -21
  43. package/dist/private.d.ts +10 -5
  44. package/package.json +6 -6
@@ -66,7 +66,7 @@ w.MOCK_USER = new w("mock-user");
66
66
  * See the License for the specific language governing permissions and
67
67
  * limitations under the License.
68
68
  */
69
- let m = "9.15.0";
69
+ let m = "9.16.0";
70
70
 
71
71
  /**
72
72
  * @license
@@ -5463,13 +5463,14 @@ function br(t, e, ...n) {
5463
5463
  }
5464
5464
 
5465
5465
  /**
5466
- * Creates a {@link QueryCompositeFilterConstraint} that performs a logical OR
5467
- * of all the provided {@link QueryFilterConstraint}s.
5466
+ * Creates a new {@link QueryCompositeFilterConstraint} that is a disjunction of
5467
+ * the given filter constraints. A disjunction filter includes a document if it
5468
+ * satisfies any of the given filters.
5468
5469
  *
5469
- * @param queryConstraints - Optional. The {@link QueryFilterConstraint}s
5470
- * for OR operation. These must be created with calls to {@link where},
5471
- * {@link or}, or {@link and}.
5472
- * @returns The created {@link QueryCompositeFilterConstraint}.
5470
+ * @param queryConstraints - Optional. The list of
5471
+ * {@link QueryFilterConstraint}s to perform a disjunction for. These must be
5472
+ * created with calls to {@link where}, {@link or}, or {@link and}.
5473
+ * @returns The newly created {@link QueryCompositeFilterConstraint}.
5473
5474
  * @internal TODO remove this internal tag with OR Query support in the server
5474
5475
  */ function Tr(...t) {
5475
5476
  // Only support QueryFilterConstraints
@@ -5477,13 +5478,14 @@ function br(t, e, ...n) {
5477
5478
  }
5478
5479
 
5479
5480
  /**
5480
- * Creates a {@link QueryCompositeFilterConstraint} that performs a logical AND
5481
- * of all the provided {@link QueryFilterConstraint}s.
5481
+ * Creates a new {@link QueryCompositeFilterConstraint} that is a conjunction of
5482
+ * the given filter constraints. A conjunction filter includes a document if it
5483
+ * satisfies all of the given filters.
5482
5484
  *
5483
- * @param queryConstraints - Optional. The {@link QueryFilterConstraint}s
5484
- * for AND operation. These must be created with calls to {@link where},
5485
- * {@link or}, or {@link and}.
5486
- * @returns The created {@link QueryCompositeFilterConstraint}.
5485
+ * @param queryConstraints - Optional. The list of
5486
+ * {@link QueryFilterConstraint}s to perform a conjunction for. These must be
5487
+ * created with calls to {@link where}, {@link or}, or {@link and}.
5488
+ * @returns The newly created {@link QueryCompositeFilterConstraint}.
5487
5489
  * @internal TODO remove this internal tag with OR Query support in the server
5488
5490
  */ function Rr(...t) {
5489
5491
  // Only support QueryFilterConstraints
@@ -6963,7 +6965,7 @@ class ws {
6963
6965
  return n && s._setSettings(n), s;
6964
6966
  }), "PUBLIC").setMultipleInstances(!0)),
6965
6967
  // RUNTIME_ENV and BUILD_TARGET are replaced by real values during the compilation
6966
- r("firestore-lite", "3.8.0", "rn"), r("firestore-lite", "3.8.0", "esm2017");
6968
+ r("firestore-lite", "3.8.1", "rn"), r("firestore-lite", "3.8.1", "esm2017");
6967
6969
 
6968
6970
  export { Rn as AggregateField, Pn as AggregateQuerySnapshot, kn as Bytes, Dn as CollectionReference, $n as DocumentReference, wr as DocumentSnapshot, Cn as FieldPath, Mn as FieldValue, bn as Firestore, j as FirestoreError, Un as GeoPoint, Nn as Query, Ar as QueryCompositeFilterConstraint, vr as QueryConstraint, mr as QueryDocumentSnapshot, qr as QueryEndAtConstraint, Er as QueryFieldFilterConstraint, $r as QueryLimitConstraint, Pr as QueryOrderByConstraint, pr as QuerySnapshot, Fr as QueryStartAtConstraint, Nt as Timestamp, ws as Transaction, is as WriteBatch, Jr as addDoc, Zr as aggregateQuerySnapshotEqual, Rr as and, rs as arrayRemove, ns as arrayUnion, Fn as collection, xn as collectionGroup, An as connectFirestoreEmulator, Hr as deleteDoc, ts as deleteField, Sn as doc, Ln as documentId, kr as endAt, Or as endBefore, Xr as getCount, Wr as getDoc, Gr as getDocs, In as getFirestore, ss as increment, En as initializeFirestore, Nr as limit, Dr as limitToLast, Tr as or, Vr as orderBy, br as query, On as queryEqual, qn as refEqual, ms as runTransaction, es as serverTimestamp, Kr as setDoc, y as setLogLevel, yr as snapshotEqual, Sr as startAfter, xr as startAt, Tn as terminate, Yr as updateDoc, Ir as where, us as writeBatch };
6969
6971
  //# sourceMappingURL=index.rn.esm2017.js.map