@cocreate/api 1.4.0 → 1.4.2

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.2](https://github.com/CoCreate-app/CoCreate-api/compare/v1.4.1...v1.4.2) (2022-09-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * bump dependencies ([eaf9556](https://github.com/CoCreate-app/CoCreate-api/commit/eaf95569d81f066f1131350ce115bebaf9178ded))
7
+
8
+ ## [1.4.1](https://github.com/CoCreate-app/CoCreate-api/compare/v1.4.0...v1.4.1) (2022-09-29)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * config renameed to CoCreateConfig ([150088f](https://github.com/CoCreate-app/CoCreate-api/commit/150088f86b0e86afa6f6dc2902c7eec222050737))
14
+
1
15
  # [1.4.0](https://github.com/CoCreate-app/CoCreate-api/compare/v1.3.7...v1.4.0) (2022-09-28)
2
16
 
3
17
 
package/demo/index.html CHANGED
@@ -44,7 +44,7 @@
44
44
  <h1>Result</h1>
45
45
 
46
46
  <script>
47
- var config = {
47
+ var CoCreateConfig = {
48
48
  apiKey: 'c2b08663-06e3-440c-ef6f-13978b42883a',
49
49
  organization_id: '5de0387b12e200ea63204d6c'
50
50
  }
package/docs/index.html CHANGED
@@ -100,7 +100,7 @@
100
100
  <p class="padding:10px_0px line-height:1.5">
101
101
  In order to the client to use the local server, it should be set as follows.
102
102
  <pre><code class="language-javascript">
103
- var config = {
103
+ var CoCreateConfig = {
104
104
  apiKey: 'c2b08663-06e3-440c-ef6f-13978b42883a',
105
105
  organization_id: '5de0387b12e200ea63204d6c',
106
106
  host: 'localhost:8081'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/api",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
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.0",
66
- "@cocreate/crud-client": "^1.10.0",
67
- "@cocreate/docs": "^1.3.5",
65
+ "@cocreate/actions": "^1.5.2",
66
+ "@cocreate/crud-client": "^1.12.1",
67
+ "@cocreate/docs": "^1.3.8",
68
68
  "@cocreate/elements": "^1.12.0",
69
69
  "@cocreate/hosting": "^1.3.4",
70
- "@cocreate/render": "^1.14.0",
70
+ "@cocreate/render": "^1.15.0",
71
71
  "@cocreate/socket-client": "^1.5.6"
72
72
  }
73
73
  }