@fonoster/voice 0.7.5 → 0.7.7

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.
@@ -56,7 +56,6 @@ class Stream {
56
56
  write(payload) {
57
57
  this.stream.emit("payloadIn", payload);
58
58
  }
59
- // TODO: We should hide this method from the public API
60
59
  // Private API
61
60
  onPayloadIn(callback) {
62
61
  this.stream.on("payloadIn", (payload) => {
@@ -46,7 +46,6 @@ class StreamGatherStream {
46
46
  close() {
47
47
  this.stream.removeAllListeners();
48
48
  }
49
- // TODO: We should hide this method from the public API
50
49
  // Private API
51
50
  onPayload(callback) {
52
51
  this.stream.on("data", (payload) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fonoster/voice",
3
- "version": "0.7.5",
3
+ "version": "0.7.7",
4
4
  "description": "Voice Server for Fonoster",
5
5
  "author": "Pedro Sanders <psanders@fonoster.com>",
6
6
  "homepage": "https://github.com/fonoster/fonoster#readme",
@@ -21,7 +21,7 @@
21
21
  "fonoster": "./dist/index.js"
22
22
  },
23
23
  "dependencies": {
24
- "@fonoster/common": "^0.7.5",
24
+ "@fonoster/common": "^0.7.7",
25
25
  "@fonoster/logger": "^0.7.5",
26
26
  "@grpc/grpc-js": "~1.10.6",
27
27
  "deepmerge": "^4.3.1",
@@ -43,5 +43,5 @@
43
43
  "bugs": {
44
44
  "url": "https://github.com/fonoster/fonoster/issues"
45
45
  },
46
- "gitHead": "cf28444503e4e698ccc001e061c7c918a4204757"
46
+ "gitHead": "f1cfa987ec4221dad9900bc377cccee49221164a"
47
47
  }