firebase 9.4.1 → 9.5.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 +18 -0
- package/app/dist/index.cjs.js +1 -1
- package/app/dist/index.esm.js +1 -1
- package/app/dist/index.mjs +1 -1
- package/compat/app/dist/index.cjs.js +1 -1
- package/compat/app/dist/index.esm.js +1 -1
- package/compat/app/dist/index.mjs +1 -1
- package/compat/dist/index.esm.js +2 -2
- package/compat/dist/index.node.cjs +2 -2
- package/compat/dist/index.rn.cjs.js +2 -2
- package/firebase-analytics.js +3 -3
- package/firebase-app-check-compat.js +2 -2
- package/firebase-app-check-compat.js.map +1 -1
- package/firebase-app-check.js +285 -50
- package/firebase-app-check.js.map +1 -1
- package/firebase-app-compat.js +2 -2
- package/firebase-app-compat.js.map +1 -1
- package/firebase-app.js +9 -9
- package/firebase-auth.js +2 -2
- package/firebase-compat.js +4 -4
- package/firebase-compat.js.map +1 -1
- package/firebase-database.js +4 -4
- package/firebase-firestore-compat.js +1 -1
- package/firebase-firestore-compat.js.map +1 -1
- package/firebase-firestore-lite.js +7 -7
- package/firebase-firestore-lite.js.map +1 -1
- package/firebase-firestore.js +12 -12
- package/firebase-firestore.js.map +1 -1
- package/firebase-functions.js +2 -2
- package/firebase-messaging-sw.js +1 -1
- package/firebase-messaging.js +1 -1
- package/firebase-performance-standalone-compat.es2017.js +5 -5
- package/firebase-performance-standalone-compat.es2017.js.map +1 -1
- package/firebase-performance-standalone-compat.js +1 -1
- package/firebase-performance-standalone-compat.js.map +1 -1
- package/firebase-performance.js +3 -3
- package/firebase-remote-config.js +2 -2
- package/firebase-storage-compat.js +1 -1
- package/firebase-storage-compat.js.map +1 -1
- package/firebase-storage.js +177 -24
- package/firebase-storage.js.map +1 -1
- package/package.json +9 -9
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _registerComponent, registerVersion, _getProvider, getApp, _removeServiceInstance, SDK_VERSION } from 'https://www.gstatic.com/firebasejs/9.
|
|
1
|
+
import { _registerComponent, registerVersion, _getProvider, getApp, _removeServiceInstance, SDK_VERSION } from 'https://www.gstatic.com/firebasejs/9.5.0/firebase-app.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @license
|
|
@@ -635,7 +635,7 @@ h.MOCK_USER = new h("mock-user");
|
|
|
635
635
|
* See the License for the specific language governing permissions and
|
|
636
636
|
* limitations under the License.
|
|
637
637
|
*/
|
|
638
|
-
let l = "9.
|
|
638
|
+
let l = "9.5.0";
|
|
639
639
|
|
|
640
640
|
/**
|
|
641
641
|
* @license
|
|
@@ -3826,14 +3826,14 @@ class tn {
|
|
|
3826
3826
|
* {@link getFirestore}. If the custom settings are empty, this function is
|
|
3827
3827
|
* equivalent to calling {@link getFirestore}.
|
|
3828
3828
|
*
|
|
3829
|
-
* @param app - The {@link https://www.gstatic.com/firebasejs/9.
|
|
3829
|
+
* @param app - The {@link https://www.gstatic.com/firebasejs/9.5.0/firebase-app.js#FirebaseApp} with which the `Firestore` instance will
|
|
3830
3830
|
* be associated.
|
|
3831
3831
|
* @param settings - A settings object to configure the `Firestore` instance.
|
|
3832
3832
|
* @returns A newly initialized `Firestore` instance.
|
|
3833
3833
|
*/ (t));
|
|
3834
3834
|
}
|
|
3835
3835
|
/**
|
|
3836
|
-
* The {@link https://www.gstatic.com/firebasejs/9.
|
|
3836
|
+
* The {@link https://www.gstatic.com/firebasejs/9.5.0/firebase-app.js#FirebaseApp} associated with this `Firestore` service
|
|
3837
3837
|
* instance.
|
|
3838
3838
|
*/ get app() {
|
|
3839
3839
|
if (!this._app) throw new L($, "Firestore was not initialized using the Firebase SDK. 'app' is not available");
|
|
@@ -3904,10 +3904,10 @@ function nn(t, e) {
|
|
|
3904
3904
|
|
|
3905
3905
|
/**
|
|
3906
3906
|
* Returns the existing `Firestore` instance that is associated with the
|
|
3907
|
-
* provided {@link https://www.gstatic.com/firebasejs/9.
|
|
3907
|
+
* provided {@link https://www.gstatic.com/firebasejs/9.5.0/firebase-app.js#FirebaseApp}. If no instance exists, initializes a new
|
|
3908
3908
|
* instance with default settings.
|
|
3909
3909
|
*
|
|
3910
|
-
* @param app - The {@link https://www.gstatic.com/firebasejs/9.
|
|
3910
|
+
* @param app - The {@link https://www.gstatic.com/firebasejs/9.5.0/firebase-app.js#FirebaseApp} instance that the returned `Firestore`
|
|
3911
3911
|
* instance is associated with.
|
|
3912
3912
|
* @returns The `Firestore` instance of the provided app.
|
|
3913
3913
|
*/ function rn(e = getApp()) {
|
|
@@ -6483,7 +6483,7 @@ class Cr {
|
|
|
6483
6483
|
return e && r._setSettings(e), r;
|
|
6484
6484
|
}), "PUBLIC" /* PUBLIC */)),
|
|
6485
6485
|
// RUNTIME_ENV and BUILD_TARGET are replaced by real values during the compilation
|
|
6486
|
-
registerVersion("firestore-lite", "3.3.
|
|
6486
|
+
registerVersion("firestore-lite", "3.3.1", ""), registerVersion("firestore-lite", "3.3.1", "esm2017");
|
|
6487
6487
|
|
|
6488
6488
|
export { yn as Bytes, an as CollectionReference, un as DocumentReference, Gn as DocumentSnapshot, mn as FieldPath, _n as FieldValue, en as Firestore, L as FirestoreError, gn as GeoPoint, cn as Query, Jn as QueryConstraint, Wn as QueryDocumentSnapshot, Hn as QuerySnapshot, pt as Timestamp, Cr as Transaction, Dr as WriteBatch, Tr as addDoc, Rr as arrayRemove, Pr as arrayUnion, hn as collection, ln as collectionGroup, sn as connectFirestoreEmulator, Er as deleteDoc, Ir as deleteField, fn as doc, pn as documentId, lr as endAt, hr as endBefore, _r as getDoc, gr as getDocs, rn as getFirestore, Vr as increment, nn as initializeFirestore, sr as limit, ir as limitToLast, nr as orderBy, Zn as query, wn as queryEqual, dn as refEqual, Lr as runTransaction, Ar as serverTimestamp, br as setDoc, d as setLogLevel, Yn as snapshotEqual, cr as startAfter, ur as startAt, on as terminate, vr as updateDoc, tr as where, $r as writeBatch };
|
|
6489
6489
|
|