@firebase/database 0.13.3-canary.691292b8d → 0.13.3-canary.f32cc8f22

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.
@@ -1289,7 +1289,7 @@ var WebSocketConnection = /** @class */ (function () {
1289
1289
  }());
1290
1290
 
1291
1291
  var name = "@firebase/database";
1292
- var version = "0.13.3-canary.691292b8d";
1292
+ var version = "0.13.3-canary.f32cc8f22";
1293
1293
 
1294
1294
  /**
1295
1295
  * @license
@@ -13472,12 +13472,11 @@ function onChildRemoved(query, callback, cancelCallbackOrListenOptions, options)
13472
13472
  return addEventListener(query, 'child_removed', callback, cancelCallbackOrListenOptions, options);
13473
13473
  }
13474
13474
  /**
13475
- * Detaches a callback previously attached with `on()`.
13475
+ * Detaches a callback previously attached with the corresponding `on*()` (`onValue`, `onChildAdded`) listener.
13476
+ * Note: This is not the recommended way to remove a listener. Instead, please use the returned callback function from
13477
+ * the respective `on*` callbacks.
13476
13478
  *
13477
- * Detach a callback previously attached with `on()`. Note that if `on()` was
13478
- * called multiple times with the same eventType and callback, the callback
13479
- * will be called multiple times for each event, and `off()` must be called
13480
- * multiple times to remove the callback. Calling `off()` on a parent listener
13479
+ * Detach a callback previously attached with `on*()`. Calling `off()` on a parent listener
13481
13480
  * will not automatically remove listeners registered on child nodes, `off()`
13482
13481
  * must also be called on any child listeners to remove the callback.
13483
13482
  *