@nxtedition/deepstream.io-client-js 26.0.15 → 26.0.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/deepstream.io-client-js",
3
- "version": "26.0.15",
3
+ "version": "26.0.17",
4
4
  "description": "the javascript client for deepstream.io",
5
5
  "homepage": "http://deepstream.io",
6
6
  "type": "module",
@@ -68,7 +68,7 @@ export default class Listener {
68
68
  if (this.connected && provider.accepted) {
69
69
  this._connection.sendMsg(this._topic, C.ACTIONS.LISTEN_REJECT, [
70
70
  this._pattern,
71
- provider.key,
71
+ provider.name,
72
72
  ])
73
73
  }
74
74
 
@@ -101,7 +101,7 @@ export default class Listener {
101
101
  this._connection.sendMsg(
102
102
  this._topic,
103
103
  accepted ? C.ACTIONS.LISTEN_ACCEPT : C.ACTIONS.LISTEN_REJECT,
104
- [this._pattern, provider.key],
104
+ [this._pattern, provider.name],
105
105
  )
106
106
 
107
107
  provider.version = null
@@ -157,7 +157,7 @@ export default class Listener {
157
157
  if (provider.version !== version) {
158
158
  provider.version = version
159
159
  this._connection.sendMsg(C.TOPIC.RECORD, C.ACTIONS.UPDATE, [
160
- provider.key,
160
+ provider.name,
161
161
  version,
162
162
  body,
163
163
  ])