@cocreate/api 1.20.1 → 1.20.3

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.20.3](https://github.com/CoCreate-app/CoCreate-api/compare/v1.20.2...v1.20.3) (2024-02-18)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * broadcast false ([f74f7a4](https://github.com/CoCreate-app/CoCreate-api/commit/f74f7a4b138fcfe2e436b7dfd6f9edbd3c428bcd))
7
+
8
+ ## [1.20.2](https://github.com/CoCreate-app/CoCreate-api/compare/v1.20.1...v1.20.2) (2024-02-05)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Removed https://cdn.cocreate.app/latest/CoCreate.min.css ([6131c56](https://github.com/CoCreate-app/CoCreate-api/commit/6131c56920accaeaf5e2cae378468b4900de7046))
14
+
1
15
  ## [1.20.1](https://github.com/CoCreate-app/CoCreate-api/compare/v1.20.0...v1.20.1) (2024-02-05)
2
16
 
3
17
 
package/docs/server.html CHANGED
@@ -12,8 +12,6 @@
12
12
  <meta name="robots" content="index,follow" />
13
13
  <meta property="og:image" content="https://cdn.cocreate.app/docs/api.png">
14
14
 
15
- <!-- CoCreate CSS -->
16
- <link rel="stylesheet" href="https://cdn.cocreate.app/latest/CoCreate.min.css" type="text/css" />
17
15
  <link rel="stylesheet" href="/docs/index.css" array="files" object="60888216117c640e7596303f" key="src" type="text/css" save="true" />
18
16
  <link rel="manifest" href="/manifest.webmanifest">
19
17
  </head>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/api",
3
- "version": "1.20.1",
3
+ "version": "1.20.3",
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",
package/src/index.js CHANGED
@@ -121,7 +121,7 @@ const CoCreateApi = {
121
121
  },
122
122
 
123
123
  send: function (name, method, data) {
124
- Socket.send({ method: name + '.' + method, [name]: data, broadcastBrowser: false, status: 'await' });
124
+ Socket.send({ method: name + '.' + method, [name]: data, broadcast: false, broadcastBrowser: false, status: 'await' });
125
125
  },
126
126
 
127
127
  // TODO: handle $param operator