@cocreate/utils 1.6.5 → 1.7.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 +21 -0
- package/CoCreate.config.js +2 -2
- package/demo/index.html +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
# [1.7.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.6.7...v1.7.0) (2022-05-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* function readDocumentList has been renamed to readDocuments ([19a402f](https://github.com/CoCreate-app/CoCreate-utils/commit/19a402f4a3372a6d88c75c729efc7ef38bdbb11b))
|
|
7
|
+
|
|
8
|
+
## [1.6.7](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.6.6...v1.6.7) (2022-05-06)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update config organization_Id to organization_id ([ea79e61](https://github.com/CoCreate-app/CoCreate-utils/commit/ea79e610fb1807e13516959697176253c38c8a9f))
|
|
14
|
+
|
|
15
|
+
## [1.6.6](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.6.5...v1.6.6) (2022-02-24)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* CoCreate.config replace CoCreate.app with * ([d651a4a](https://github.com/CoCreate-app/CoCreate-utils/commit/d651a4a5a88fd105a1986bb55ec9795aad52ffd6))
|
|
21
|
+
|
|
1
22
|
## [1.6.5](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.6.4...v1.6.5) (2022-02-16)
|
|
2
23
|
|
|
3
24
|
|
package/CoCreate.config.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
module.exports = {
|
|
2
2
|
"config": {
|
|
3
3
|
"apiKey": "2061acef-0451-4545-f754-60cf8160",
|
|
4
|
-
"
|
|
4
|
+
"organization_id": "5ff747727005da1c272740ab",
|
|
5
5
|
"host": "general.cocreate.app"
|
|
6
6
|
},
|
|
7
7
|
"sources": [
|
|
@@ -14,7 +14,7 @@ module.exports = {
|
|
|
14
14
|
"name": "index.html",
|
|
15
15
|
"path": "/docs/utils/index.html",
|
|
16
16
|
"domains": [
|
|
17
|
-
"
|
|
17
|
+
"*",
|
|
18
18
|
"general.cocreate.app"
|
|
19
19
|
],
|
|
20
20
|
"directory": "/docs/utils",
|
package/demo/index.html
CHANGED