@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.
- package/CHANGELOG.md +14 -0
- package/dist/firestore/src/api/reference_impl.d.ts +2 -1
- package/dist/firestore/src/lite-api/query.d.ts +14 -12
- package/dist/firestore/src/local/overlayed_document.d.ts +8 -4
- package/dist/firestore/test/unit/local/counting_query_engine.d.ts +12 -21
- package/dist/index.d.ts +2 -1
- package/dist/index.esm2017.js +36 -20
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +38 -20
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +36 -17
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.node.mjs +36 -17
- package/dist/index.node.mjs.map +1 -1
- package/dist/index.rn.js +36 -20
- package/dist/index.rn.js.map +1 -1
- package/dist/internal.d.ts +25 -18
- package/dist/lite/firestore/src/api/reference_impl.d.ts +2 -1
- package/dist/lite/firestore/src/lite-api/query.d.ts +14 -12
- package/dist/lite/firestore/src/local/overlayed_document.d.ts +8 -4
- package/dist/lite/firestore/test/unit/local/counting_query_engine.d.ts +12 -21
- package/dist/lite/index.browser.esm2017.js +16 -14
- package/dist/lite/index.browser.esm2017.js.map +1 -1
- package/dist/lite/index.browser.esm5.js +17 -15
- package/dist/lite/index.browser.esm5.js.map +1 -1
- package/dist/lite/index.node.cjs.js +16 -14
- package/dist/lite/index.node.cjs.js.map +1 -1
- package/dist/lite/index.node.mjs +16 -14
- package/dist/lite/index.node.mjs.map +1 -1
- package/dist/lite/index.rn.esm2017.js +16 -14
- package/dist/lite/index.rn.esm2017.js.map +1 -1
- package/dist/lite/internal.d.ts +15 -13
- package/dist/lite/packages/firestore/dist/lite/index.browser.esm2017.d.ts +15 -13
- package/dist/lite/packages/firestore/src/api/reference_impl.d.ts +2 -1
- package/dist/lite/packages/firestore/src/lite-api/query.d.ts +14 -12
- package/dist/lite/packages/firestore/src/local/overlayed_document.d.ts +8 -4
- package/dist/lite/packages/firestore/test/unit/local/counting_query_engine.d.ts +12 -21
- package/dist/packages/firestore/dist/index.esm2017.d.ts +17 -14
- package/dist/packages/firestore/src/api/reference_impl.d.ts +2 -1
- package/dist/packages/firestore/src/lite-api/query.d.ts +14 -12
- package/dist/packages/firestore/src/local/overlayed_document.d.ts +8 -4
- package/dist/packages/firestore/test/unit/local/counting_query_engine.d.ts +12 -21
- package/dist/private.d.ts +10 -5
- 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.
|
|
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.
|
|
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
|
|
7205
|
-
*
|
|
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
|
|
7208
|
-
*
|
|
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
|
|
7220
|
-
*
|
|
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
|
|
7223
|
-
*
|
|
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) {
|