@nxtedition/deepstream.io-client-js 24.0.1 → 24.0.2

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": "24.0.1",
3
+ "version": "24.0.2",
4
4
  "description": "the javascript client for deepstream.io",
5
5
  "homepage": "http://deepstream.io",
6
6
  "bugs": {
@@ -27,28 +27,32 @@ class Record {
27
27
  this._onPending(true)
28
28
  }
29
29
 
30
+ /** @type {string} */
30
31
  get name() {
31
32
  return this._name
32
33
  }
33
34
 
35
+ /** @type {string} */
34
36
  get version() {
35
37
  return this._version
36
38
  }
37
39
 
40
+ /** @type {Object} */
38
41
  get data() {
39
42
  return this._data
40
43
  }
41
44
 
45
+ /** @type {Number} */
42
46
  get state() {
43
47
  return this._state
44
48
  }
45
49
 
50
+ /** @type {Number} */
46
51
  get refs() {
47
52
  return this._refs
48
53
  }
49
54
 
50
55
  /**
51
- *
52
56
  * @returns {Record}
53
57
  */
54
58
  ref() {
@@ -61,7 +65,6 @@ class Record {
61
65
  }
62
66
 
63
67
  /**
64
- *
65
68
  * @returns {Record}
66
69
  */
67
70
  unref() {
@@ -73,7 +76,6 @@ class Record {
73
76
  }
74
77
 
75
78
  /**
76
- *
77
79
  * @param {*} fn
78
80
  * @param {*} opaque
79
81
  * @returns {Record}