@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
@@ -67,7 +67,7 @@ v.MOCK_USER = new v("mock-user");
67
67
  * See the License for the specific language governing permissions and
68
68
  * limitations under the License.
69
69
  */
70
- var g = "9.15.0", w = new l("@firebase/firestore");
70
+ var g = "9.16.0", w = new l("@firebase/firestore");
71
71
 
72
72
  /**
73
73
  * @license
@@ -4959,13 +4959,14 @@ function hr(t, e) {
4959
4959
  }(pr);
4960
4960
 
4961
4961
  /**
4962
- * Creates a {@link QueryCompositeFilterConstraint} that performs a logical OR
4963
- * of all the provided {@link QueryFilterConstraint}s.
4962
+ * Creates a new {@link QueryCompositeFilterConstraint} that is a disjunction of
4963
+ * the given filter constraints. A disjunction filter includes a document if it
4964
+ * satisfies any of the given filters.
4964
4965
  *
4965
- * @param queryConstraints - Optional. The {@link QueryFilterConstraint}s
4966
- * for OR operation. These must be created with calls to {@link where},
4967
- * {@link or}, or {@link and}.
4968
- * @returns The created {@link QueryCompositeFilterConstraint}.
4966
+ * @param queryConstraints - Optional. The list of
4967
+ * {@link QueryFilterConstraint}s to perform a disjunction for. These must be
4968
+ * created with calls to {@link where}, {@link or}, or {@link and}.
4969
+ * @returns The newly created {@link QueryCompositeFilterConstraint}.
4969
4970
  * @internal TODO remove this internal tag with OR Query support in the server
4970
4971
  */ function wr() {
4971
4972
  for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e];
@@ -4974,13 +4975,14 @@ function hr(t, e) {
4974
4975
  return xr("or", t);
4975
4976
  })), gr._create("or" /* CompositeOperator.OR */ , t)
4976
4977
  /**
4977
- * Creates a {@link QueryCompositeFilterConstraint} that performs a logical AND
4978
- * of all the provided {@link QueryFilterConstraint}s.
4979
- *
4980
- * @param queryConstraints - Optional. The {@link QueryFilterConstraint}s
4981
- * for AND operation. These must be created with calls to {@link where},
4982
- * {@link or}, or {@link and}.
4983
- * @returns The created {@link QueryCompositeFilterConstraint}.
4978
+ * Creates a new {@link QueryCompositeFilterConstraint} that is a conjunction of
4979
+ * the given filter constraints. A conjunction filter includes a document if it
4980
+ * satisfies all of the given filters.
4981
+ *
4982
+ * @param queryConstraints - Optional. The list of
4983
+ * {@link QueryFilterConstraint}s to perform a conjunction for. These must be
4984
+ * created with calls to {@link where}, {@link or}, or {@link and}.
4985
+ * @returns The newly created {@link QueryCompositeFilterConstraint}.
4984
4986
  * @internal TODO remove this internal tag with OR Query support in the server
4985
4987
  */;
4986
4988
  }
@@ -6475,7 +6477,7 @@ ai = "".concat(i, "_lite"), g = ai, o(new c("firestore/lite", (function(t, e) {
6475
6477
  return r && o._setSettings(r), o;
6476
6478
  }), "PUBLIC").setMultipleInstances(!0)),
6477
6479
  // RUNTIME_ENV and BUILD_TARGET are replaced by real values during the compilation
6478
- a("firestore-lite", "3.8.0", ""), a("firestore-lite", "3.8.0", "esm5");
6480
+ a("firestore-lite", "3.8.1", ""), a("firestore-lite", "3.8.1", "esm5");
6479
6481
 
6480
6482
  export { _n as AggregateField, bn as AggregateQuerySnapshot, Dn as Bytes, Sn as CollectionReference, En as DocumentReference, sr as DocumentSnapshot, On as FieldPath, qn as FieldValue, yn as Firestore, B as FirestoreError, Rn as GeoPoint, kn as Query, gr as QueryCompositeFilterConstraint, dr as QueryConstraint, cr as QueryDocumentSnapshot, Vr as QueryEndAtConstraint, mr as QueryFieldFilterConstraint, Er as QueryLimitConstraint, br as QueryOrderByConstraint, lr as QuerySnapshot, Ir as QueryStartAtConstraint, Vt as Timestamp, ci as Transaction, $r as WriteBatch, zr as addDoc, Wr as aggregateQuerySnapshotEqual, _r as and, Jr as arrayRemove, Xr as arrayUnion, In as collection, An as collectionGroup, gn as connectFirestoreEmulator, Qr as deleteDoc, Hr as deleteField, Fn as doc, Nn as documentId, Dr as endAt, Pr as endBefore, Kr as getCount, Mr as getDoc, Ur as getDocs, vn as getFirestore, Zr as increment, mn as initializeFirestore, kr as limit, Sr as limitToLast, wr as or, Tr as orderBy, yr as query, Pn as queryEqual, Vn as refEqual, li as runTransaction, Yr as serverTimestamp, Br as setDoc, _ as setLogLevel, fr as snapshotEqual, Fr as startAfter, Ar as startAt, wn as terminate, Gr as updateDoc, vr as where, ei as writeBatch };
6481
6483
  //# sourceMappingURL=index.browser.esm5.js.map