@cocreate/socket-server 1.4.24 → 1.4.26

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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.4.26](https://github.com/CoCreate-app/CoCreate-socket-server/compare/v1.4.25...v1.4.26) (2022-12-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * bump @cocreate/indexdb ([d8a43f8](https://github.com/CoCreate-app/CoCreate-socket-server/commit/d8a43f86832108f1ead1153afae9ee6397309e16))
7
+
8
+ ## [1.4.25](https://github.com/CoCreate-app/CoCreate-socket-server/compare/v1.4.24...v1.4.25) (2022-12-08)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * remove commented code ([ec77bb2](https://github.com/CoCreate-app/CoCreate-socket-server/commit/ec77bb2261c5887894d9c6cec5b0065e57499c63))
14
+
1
15
  ## [1.4.24](https://github.com/CoCreate-app/CoCreate-socket-server/compare/v1.4.23...v1.4.24) (2022-12-08)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/socket-server",
3
- "version": "1.4.24",
3
+ "version": "1.4.26",
4
4
  "description": "CoCreate-socket-server",
5
5
  "keywords": [
6
6
  "cocreate-socket",
@@ -40,8 +40,8 @@
40
40
  },
41
41
  "homepage": "https://cocreate.app/docs/CoCreate-socket-server",
42
42
  "dependencies": {
43
- "@cocreate/docs": "^1.4.15",
44
- "@cocreate/uuid": "^1.2.34"
43
+ "@cocreate/docs": "^1.4.16",
44
+ "@cocreate/uuid": "^1.2.35"
45
45
  },
46
46
  "devDependencies": {
47
47
  "express": "^4.17.1",
package/src/index.js CHANGED
@@ -300,21 +300,6 @@ class SocketServer extends EventEmitter{
300
300
  data,
301
301
  organization_id
302
302
  });
303
-
304
- // let date = new Date();
305
- // let size = 0;
306
-
307
- // type = type || 'in'
308
-
309
- // if (data instanceof Buffer) {
310
- // size = data.byteLength;
311
- // } else if (data instanceof String || typeof data === 'string') {
312
- // size = Buffer.byteLength(data, 'utf8');
313
- // }
314
-
315
- // if (size > 0 && organization_id) {
316
- // console.log (`${organization_id} ---- ${type} \t ${date.toISOString()} \t ${size}`);
317
- // }
318
303
  }
319
304
  }
320
305