@cocreate/socket-server 1.2.0 → 1.3.0

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,24 @@
1
+ # [1.3.0](https://github.com/CoCreate-app/CoCreate-socket-server/compare/v1.2.2...v1.3.0) (2022-05-14)
2
+
3
+
4
+ ### Features
5
+
6
+ * function readDocumentList has been renamed to readDocuments ([f4714c0](https://github.com/CoCreate-app/CoCreate-socket-server/commit/f4714c060d169076b47a94493e11eb6b847194e3))
7
+
8
+ ## [1.2.2](https://github.com/CoCreate-app/CoCreate-socket-server/compare/v1.2.1...v1.2.2) (2022-05-06)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * update config organization_Id to organization_id ([2aa908d](https://github.com/CoCreate-app/CoCreate-socket-server/commit/2aa908d940c5a8ccef5faa79ea5658a84270257b))
14
+
15
+ ## [1.2.1](https://github.com/CoCreate-app/CoCreate-socket-server/compare/v1.2.0...v1.2.1) (2022-03-22)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * removed testing console.logs ([48358eb](https://github.com/CoCreate-app/CoCreate-socket-server/commit/48358eb3939e60c9401defb774161cbd65b6e774))
21
+
1
22
  # [1.2.0](https://github.com/CoCreate-app/CoCreate-socket-server/compare/v1.1.13...v1.2.0) (2022-03-06)
2
23
 
3
24
 
@@ -1,7 +1,7 @@
1
1
  module.exports = {
2
2
  config: {
3
3
  "apiKey": "2061acef-0451-4545-f754-60cf8160",
4
- "organization_Id": "5ff747727005da1c272740ab",
4
+ "organization_id": "5ff747727005da1c272740ab",
5
5
  "host": "general.cocreate.app"
6
6
  },
7
7
  "sources": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/socket-server",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "CoCreate-socket-server",
5
5
  "keywords": [
6
6
  "cocreate-socket",
package/src/index.js CHANGED
@@ -211,7 +211,6 @@ class SocketServer extends EventEmitter{
211
211
 
212
212
  } else {
213
213
  this.clients.forEach((value, key) => {
214
- console.log(value.length, key)
215
214
  if (key.includes(room_key)) {
216
215
  value.forEach(client => {
217
216
  if (socket != client || socket == client && data.broadcast_sender != false) {