@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
@@ -14,7 +14,7 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
14
14
 
15
15
  var nodeFetch__default = /*#__PURE__*/_interopDefaultLegacy(nodeFetch);
16
16
 
17
- const version$1 = "3.8.0";
17
+ const version$1 = "3.8.1";
18
18
 
19
19
  /**
20
20
  * @license
@@ -67,7 +67,7 @@ User.GOOGLE_CREDENTIALS = new User('google-credentials-uid');
67
67
  User.FIRST_PARTY = new User('first-party-uid');
68
68
  User.MOCK_USER = new User('mock-user');
69
69
 
70
- const version = "9.15.0";
70
+ const version = "9.16.0";
71
71
 
72
72
  /**
73
73
  * @license
@@ -7201,13 +7201,14 @@ class QueryCompositeFilterConstraint extends AppliableConstraint {
7201
7201
  }
7202
7202
  }
7203
7203
  /**
7204
- * Creates a {@link QueryCompositeFilterConstraint} that performs a logical OR
7205
- * of all the provided {@link QueryFilterConstraint}s.
7204
+ * Creates a new {@link QueryCompositeFilterConstraint} that is a disjunction of
7205
+ * the given filter constraints. A disjunction filter includes a document if it
7206
+ * satisfies any of the given filters.
7206
7207
  *
7207
- * @param queryConstraints - Optional. The {@link QueryFilterConstraint}s
7208
- * for OR operation. These must be created with calls to {@link where},
7209
- * {@link or}, or {@link and}.
7210
- * @returns The created {@link QueryCompositeFilterConstraint}.
7208
+ * @param queryConstraints - Optional. The list of
7209
+ * {@link QueryFilterConstraint}s to perform a disjunction for. These must be
7210
+ * created with calls to {@link where}, {@link or}, or {@link and}.
7211
+ * @returns The newly created {@link QueryCompositeFilterConstraint}.
7211
7212
  * @internal TODO remove this internal tag with OR Query support in the server
7212
7213
  */
7213
7214
  function or(...queryConstraints) {
@@ -7216,13 +7217,14 @@ function or(...queryConstraints) {
7216
7217
  return QueryCompositeFilterConstraint._create("or" /* CompositeOperator.OR */, queryConstraints);
7217
7218
  }
7218
7219
  /**
7219
- * Creates a {@link QueryCompositeFilterConstraint} that performs a logical AND
7220
- * of all the provided {@link QueryFilterConstraint}s.
7220
+ * Creates a new {@link QueryCompositeFilterConstraint} that is a conjunction of
7221
+ * the given filter constraints. A conjunction filter includes a document if it
7222
+ * satisfies all of the given filters.
7221
7223
  *
7222
- * @param queryConstraints - Optional. The {@link QueryFilterConstraint}s
7223
- * for AND operation. These must be created with calls to {@link where},
7224
- * {@link or}, or {@link and}.
7225
- * @returns The created {@link QueryCompositeFilterConstraint}.
7224
+ * @param queryConstraints - Optional. The list of
7225
+ * {@link QueryFilterConstraint}s to perform a conjunction for. These must be
7226
+ * created with calls to {@link where}, {@link or}, or {@link and}.
7227
+ * @returns The newly created {@link QueryCompositeFilterConstraint}.
7226
7228
  * @internal TODO remove this internal tag with OR Query support in the server
7227
7229
  */
7228
7230
  function and(...queryConstraints) {