@cocreate/api 1.5.14 → 1.5.16

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,18 @@
1
+ ## [1.5.16](https://github.com/CoCreate-app/CoCreate-api/compare/v1.5.15...v1.5.16) (2022-12-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * docs ([c271e98](https://github.com/CoCreate-app/CoCreate-api/commit/c271e98941dcb7110624945b11526a089c9fe562))
7
+
8
+ ## [1.5.15](https://github.com/CoCreate-app/CoCreate-api/compare/v1.5.14...v1.5.15) (2022-12-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * bump dependencies ([b5f7467](https://github.com/CoCreate-app/CoCreate-api/commit/b5f74678b46b51c0590ec38d76b1a6984c2761f9))
14
+ * set broadcastBrowser to false ([bf7a6de](https://github.com/CoCreate-app/CoCreate-api/commit/bf7a6dece8d5a4e479803e66125f4b1129ba249e))
15
+
1
16
  ## [1.5.14](https://github.com/CoCreate-app/CoCreate-api/compare/v1.5.13...v1.5.14) (2022-11-28)
2
17
 
3
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/api",
3
- "version": "1.5.14",
3
+ "version": "1.5.16",
4
4
  "description": "A simple api helper component in vanilla javascript used by JavaScript developers to create thirdparty api intergrations. CoCreate-api includes the client component and server side for api processing. Thirdparty apis can be accessible using HTML5 attributes and/or JavaScript API. ",
5
5
  "keywords": [
6
6
  "thirdparty-api-intergration",
@@ -62,12 +62,12 @@
62
62
  "webpack-log": "^3.0.1"
63
63
  },
64
64
  "dependencies": {
65
- "@cocreate/actions": "^1.5.26",
66
- "@cocreate/crud-client": "^1.15.8",
67
- "@cocreate/docs": "^1.4.8",
68
- "@cocreate/element-prototype": "^1.1.13",
69
- "@cocreate/hosting": "^1.6.7",
70
- "@cocreate/render": "^1.16.13",
71
- "@cocreate/socket-client": "^1.11.10"
65
+ "@cocreate/actions": "^1.5.28",
66
+ "@cocreate/crud-client": "^1.15.10",
67
+ "@cocreate/docs": "^1.4.11",
68
+ "@cocreate/element-prototype": "^1.1.15",
69
+ "@cocreate/hosting": "^1.6.9",
70
+ "@cocreate/render": "^1.16.15",
71
+ "@cocreate/socket-client": "^1.12.0"
72
72
  }
73
73
  }
package/src/client.js CHANGED
@@ -135,7 +135,7 @@ const CoCreateApi = {
135
135
  },
136
136
 
137
137
  send: function(component, action, data) {
138
- socket.send(component, {action, data});
138
+ socket.send(component, {action, data, broadcastBrowser: false});
139
139
  },
140
140
 
141
141
  render: function(action, data) {