@firebase/database 0.12.0-canary.a4b7003fd → 0.12.0-canary.a5d87bc5c

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.
@@ -1,10 +1,10 @@
1
- import { getApp, _getProvider, _registerComponent, registerVersion, SDK_VERSION as SDK_VERSION$1 } from '@firebase/app';
1
+ import { getApp, _getProvider, SDK_VERSION as SDK_VERSION$1, _registerComponent, registerVersion } from '@firebase/app';
2
2
  import { Component } from '@firebase/component';
3
3
  import { stringify, jsonEval, contains, assert, base64, stringToByteArray, Sha1, isNodeSdk, deepCopy, base64Encode, isMobileCordova, stringLength, Deferred, safeGet, isAdmin, isValidFormat, isEmpty, isReactNative, assertionError, map, querystring, errorPrefix, getModularInstance, createMockUserToken } from '@firebase/util';
4
4
  import { Logger, LogLevel } from '@firebase/logger';
5
5
 
6
6
  const name = "@firebase/database";
7
- const version = "0.12.0-canary.a4b7003fd";
7
+ const version = "0.12.0-canary.a5d87bc5c";
8
8
 
9
9
  /**
10
10
  * @license
@@ -13920,6 +13920,7 @@ transactionUpdate, options) {
13920
13920
  * See the License for the specific language governing permissions and
13921
13921
  * limitations under the License.
13922
13922
  */
13923
+ PersistentConnection;
13923
13924
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
13924
13925
  PersistentConnection.prototype.simpleListen = function (pathString, onComplete) {
13925
13926
  this.sendRequest('q', { p: pathString }, onComplete);
@@ -13928,6 +13929,8 @@ PersistentConnection.prototype.simpleListen = function (pathString, onComplete)
13928
13929
  PersistentConnection.prototype.echo = function (data, onEcho) {
13929
13930
  this.sendRequest('echo', { d: data }, onEcho);
13930
13931
  };
13932
+ // RealTimeConnection properties that we use in tests.
13933
+ Connection;
13931
13934
  /**
13932
13935
  * @internal
13933
13936
  */
@@ -13943,6 +13946,7 @@ const hijackHash = function (newHash) {
13943
13946
  PersistentConnection.prototype.put = oldPut;
13944
13947
  };
13945
13948
  };
13949
+ RepoInfo;
13946
13950
  /**
13947
13951
  * Forces the RepoManager to create Repos that use ReadonlyRestClient instead of PersistentConnection.
13948
13952
  * @internal