@firebase/firestore 3.1.0-2021822203916 → 3.1.0
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 +8 -6
- package/dist/firestore/src/util/input_validation.d.ts +1 -1
- package/dist/index.esm2017.js +4 -7
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +4 -8
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.esm2017.js +4 -8
- package/dist/index.node.cjs.esm2017.js.map +1 -1
- package/dist/index.node.cjs.js +4 -8
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.rn.js +4 -7
- package/dist/index.rn.js.map +1 -1
- package/dist/lite/firestore/src/util/input_validation.d.ts +1 -1
- package/dist/lite/index.browser.esm2017.js +1085 -1088
- package/dist/lite/index.browser.esm2017.js.map +1 -1
- package/dist/lite/index.browser.esm5.js +12 -16
- package/dist/lite/index.browser.esm5.js.map +1 -1
- package/dist/lite/index.node.cjs.js +4 -8
- package/dist/lite/index.node.cjs.js.map +1 -1
- package/dist/lite/index.node.esm2017.js +4 -8
- package/dist/lite/index.node.esm2017.js.map +1 -1
- package/dist/lite/index.rn.esm2017.js +4 -7
- package/dist/lite/index.rn.esm2017.js.map +1 -1
- package/dist/lite/packages/firestore/dist/lite/index.browser.esm2017.d.ts +109 -109
- package/dist/lite/packages/firestore/src/util/input_validation.d.ts +1 -1
- package/dist/packages/firestore/src/util/input_validation.d.ts +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @firebase/firestore
|
|
2
2
|
|
|
3
|
-
## 3.1.0
|
|
3
|
+
## 3.1.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -8,11 +8,13 @@
|
|
|
8
8
|
|
|
9
9
|
### Patch Changes
|
|
10
10
|
|
|
11
|
-
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
- @firebase/
|
|
15
|
-
- @firebase/
|
|
11
|
+
- [`a99943fe3`](https://github.com/firebase/firebase-js-sdk/commit/a99943fe3bd5279761aa29d138ec91272b06df39) [#5539](https://github.com/firebase/firebase-js-sdk/pull/5539) - use `constructor.name` for Object type
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [[`a99943fe3`](https://github.com/firebase/firebase-js-sdk/commit/a99943fe3bd5279761aa29d138ec91272b06df39), [`456d664ae`](https://github.com/firebase/firebase-js-sdk/commit/456d664aef582fc18326ffbd418de0d7d3ef86b7), [`b835b4cba`](https://github.com/firebase/firebase-js-sdk/commit/b835b4cbabc4b7b180ae38b908c49205ce31a422)]:
|
|
14
|
+
- @firebase/logger@0.3.0
|
|
15
|
+
- @firebase/util@1.4.0
|
|
16
|
+
- @firebase/webchannel-wrapper@0.6.0
|
|
17
|
+
- @firebase/component@0.5.7
|
|
16
18
|
|
|
17
19
|
## 3.0.2
|
|
18
20
|
|
|
@@ -40,7 +40,7 @@ export declare function validateCollectionPath(path: ResourcePath): void;
|
|
|
40
40
|
export declare function isPlainObject(input: unknown): boolean;
|
|
41
41
|
/** Returns a string describing the type / value of the provided input. */
|
|
42
42
|
export declare function valueDescription(input: unknown): string;
|
|
43
|
-
/**
|
|
43
|
+
/** try to get the constructor name for an object. */
|
|
44
44
|
export declare function tryGetCustomObjectType(input: object): string | null;
|
|
45
45
|
/**
|
|
46
46
|
* Casts `obj` to `T`, optionally unwrapping Compat types to expose the
|
package/dist/index.esm2017.js
CHANGED
|
@@ -68,7 +68,7 @@ S.MOCK_USER = new S("mock-user");
|
|
|
68
68
|
* See the License for the specific language governing permissions and
|
|
69
69
|
* limitations under the License.
|
|
70
70
|
*/
|
|
71
|
-
let D = "9.1.0
|
|
71
|
+
let D = "9.1.0";
|
|
72
72
|
|
|
73
73
|
/**
|
|
74
74
|
* @license
|
|
@@ -14611,12 +14611,9 @@ function _c(t) {
|
|
|
14611
14611
|
if (t instanceof Array) return "an array";
|
|
14612
14612
|
{
|
|
14613
14613
|
const e =
|
|
14614
|
-
/**
|
|
14614
|
+
/** try to get the constructor name for an object. */
|
|
14615
14615
|
function(t) {
|
|
14616
|
-
if (t.constructor)
|
|
14617
|
-
const e = /function\s+([^\s(]+)\s*\(/.exec(t.constructor.toString());
|
|
14618
|
-
if (e && e.length > 1) return e[1];
|
|
14619
|
-
}
|
|
14616
|
+
if (t.constructor) return t.constructor.name;
|
|
14620
14617
|
return null;
|
|
14621
14618
|
}
|
|
14622
14619
|
/**
|
|
@@ -17780,7 +17777,7 @@ function yh(t, e) {
|
|
|
17780
17777
|
return e = Object.assign({
|
|
17781
17778
|
useFetchStreams: !0
|
|
17782
17779
|
}, e), s._setSettings(e), s;
|
|
17783
|
-
}), "PUBLIC" /* PUBLIC */)), s("@firebase/firestore", "3.1.0
|
|
17780
|
+
}), "PUBLIC" /* PUBLIC */)), s("@firebase/firestore", "3.1.0", Sh);
|
|
17784
17781
|
|
|
17785
17782
|
export { eh as AbstractUserDataWriter, Yc as Bytes, Nc as CACHE_SIZE_UNLIMITED, Ac as CollectionReference, Tc as DocumentReference, Du as DocumentSnapshot, Hc as FieldPath, Xc as FieldValue, xc as Firestore, K as FirestoreError, Zc as GeoPoint, Cc as LoadBundleTask, Ic as Query, Ou as QueryConstraint, Cu as QueryDocumentSnapshot, Nu as QuerySnapshot, Su as SnapshotMetadata, st as Timestamp, Th as Transaction, ih as WriteBatch, uc as _DatabaseId, bt as _DocumentKey, W as _EmptyCredentialsProvider, lt as _FieldPath, mc as _cast, B as _debugAssert, dt as _isBase64Available, O as _logWarn, fc as _validateIsNotUsedTogether, mh as addDoc, Ph as arrayRemove, bh as arrayUnion, Uc as clearIndexedDbPersistence, Rc as collection, bc as collectionGroup, Ec as connectFirestoreEmulator, _h as deleteDoc, Ah as deleteField, jc as disableNetwork, Pc as doc, Jc as documentId, Mc as enableIndexedDbPersistence, Lc as enableMultiTabIndexedDbPersistence, Kc as enableNetwork, Ju as endAt, Hu as endBefore, Oc as ensureFirestoreConfigured, ph as executeWrite, oh as getDoc, ch as getDocFromCache, uh as getDocFromServer, hh as getDocs, lh as getDocsFromCache, fh as getDocsFromServer, $c as getFirestore, vh as increment, kc as initializeFirestore, Ku as limit, ju as limitToLast, Wc as loadBundle, Gc as namedQuery, gh as onSnapshot, yh as onSnapshotsInSync, Uu as orderBy, Fu as query, Vc as queryEqual, vc as refEqual, Ih as runTransaction, Rh as serverTimestamp, dh as setDoc, x as setLogLevel, ku as snapshotEqual, Gu as startAfter, Wu as startAt, Qc as terminate, wh as updateDoc, qc as waitForPendingWrites, Lu as where, Vh as writeBatch };
|
|
17786
17783
|
//# sourceMappingURL=index.esm2017.js.map
|