firebase 9.6.2 → 9.6.3
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 +12 -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-compat.js.map +1 -1
- package/firebase-analytics.js +3 -3
- package/firebase-analytics.js.map +1 -1
- package/firebase-app-check-compat.js.map +1 -1
- package/firebase-app-check.js +4 -4
- 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-app.js.map +1 -1
- package/firebase-auth-compat.js.map +1 -1
- package/firebase-auth.js +4 -4
- package/firebase-auth.js.map +1 -1
- package/firebase-compat.js +3 -3
- 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 +1141 -1141
- package/firebase-firestore-lite.js.map +1 -1
- package/firebase-firestore.js +874 -874
- package/firebase-firestore.js.map +1 -1
- package/firebase-functions-compat.js.map +1 -1
- package/firebase-functions.js +2 -2
- package/firebase-functions.js.map +1 -1
- package/firebase-messaging-compat.js +1 -1
- package/firebase-messaging-compat.js.map +1 -1
- package/firebase-messaging-sw.js +4 -4
- package/firebase-messaging-sw.js.map +1 -1
- package/firebase-messaging.js +3 -3
- package/firebase-messaging.js.map +1 -1
- package/firebase-performance-compat.js.map +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-performance.js.map +1 -1
- package/firebase-remote-config-compat.js.map +1 -1
- package/firebase-remote-config.js +2 -2
- package/firebase-remote-config.js.map +1 -1
- package/firebase-storage-compat.js.map +1 -1
- package/firebase-storage.js +1 -1
- package/firebase-storage.js.map +1 -1
- package/package.json +7 -7
package/firebase-database.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { getApp, _getProvider, _registerComponent, registerVersion, SDK_VERSION as SDK_VERSION$1 } from 'https://www.gstatic.com/firebasejs/9.6.
|
|
1
|
+
import { getApp, _getProvider, _registerComponent, registerVersion, SDK_VERSION as SDK_VERSION$1 } from 'https://www.gstatic.com/firebasejs/9.6.3/firebase-app.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @license
|
|
@@ -14915,7 +14915,7 @@ function repoManagerForceRestClient(forceRestClient) {
|
|
|
14915
14915
|
class Database {
|
|
14916
14916
|
/** @hideconstructor */
|
|
14917
14917
|
constructor(_repoInternal,
|
|
14918
|
-
/** The {@link https://www.gstatic.com/firebasejs/9.6.
|
|
14918
|
+
/** The {@link https://www.gstatic.com/firebasejs/9.6.3/firebase-app.js#FirebaseApp} associated with this Realtime Database instance. */
|
|
14919
14919
|
app) {
|
|
14920
14920
|
this._repoInternal = _repoInternal;
|
|
14921
14921
|
this.app = app;
|
|
@@ -14953,11 +14953,11 @@ class Database {
|
|
|
14953
14953
|
}
|
|
14954
14954
|
/**
|
|
14955
14955
|
* Returns the instance of the Realtime Database SDK that is associated
|
|
14956
|
-
* with the provided {@link https://www.gstatic.com/firebasejs/9.6.
|
|
14956
|
+
* with the provided {@link https://www.gstatic.com/firebasejs/9.6.3/firebase-app.js#FirebaseApp}. Initializes a new instance with
|
|
14957
14957
|
* with default settings if no instance exists or if the existing instance uses
|
|
14958
14958
|
* a custom database URL.
|
|
14959
14959
|
*
|
|
14960
|
-
* @param app - The {@link https://www.gstatic.com/firebasejs/9.6.
|
|
14960
|
+
* @param app - The {@link https://www.gstatic.com/firebasejs/9.6.3/firebase-app.js#FirebaseApp} instance that the returned Realtime
|
|
14961
14961
|
* Database instance is associated with.
|
|
14962
14962
|
* @param url - The URL of the Realtime Database instance to connect to. If not
|
|
14963
14963
|
* provided, the SDK connects to the default instance of the Firebase App.
|