eservices-core 1.0.603 → 1.0.604

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.
@@ -3,6 +3,7 @@ export default class Communication extends EventEmitter {
3
3
  /**
4
4
  * @description UniqID of Talk
5
5
  */
6
+ name: string;
6
7
  id: number;
7
8
  constructor(talkId: number);
8
9
  read: () => any;
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * eservices-core v1.0.603
2
+ * eservices-core v1.0.604
3
3
  * (c) 2023 ESERVICES
4
4
  */
5
5
  'use strict';
@@ -5294,6 +5294,10 @@ ListConfig.EVENT_DATA = 'list-config:update';
5294
5294
  class Communication extends EventEmitter {
5295
5295
  constructor(talkId) {
5296
5296
  super();
5297
+ /**
5298
+ * @description UniqID of Talk
5299
+ */
5300
+ this.name = "Communication";
5297
5301
  this.read = () => void {};
5298
5302
  this.id = talkId;
5299
5303
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eservices-core",
3
- "version": "1.0.603",
3
+ "version": "1.0.604",
4
4
  "description": "Core library",
5
5
  "author": "",
6
6
  "scripts": {