@cocreate/unique 1.3.0 → 1.4.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 +1 -1
- package/package.json +1 -1
- package/src/client.js +1 -1
- package/src/server.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
# [1.4.0](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.3.2...v1.4.0) (2022-05-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* function readDocumentList has been renamed to readDocuments ([e353862](https://github.com/CoCreate-app/CoCreate-unique/commit/e353862b9288d70525918cae6921f5cc2092aa1b))
|
|
7
|
+
|
|
8
|
+
## [1.3.2](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.3.1...v1.3.2) (2022-05-06)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update config organization_Id to organization_id ([20b4914](https://github.com/CoCreate-app/CoCreate-unique/commit/20b49147c2ec9510bca2fd447e7e4b78affc69b0))
|
|
14
|
+
|
|
15
|
+
## [1.3.1](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.3.0...v1.3.1) (2022-03-06)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* update param roomInfo to socketInfo ([3e2cf6c](https://github.com/CoCreate-app/CoCreate-unique/commit/3e2cf6c4a18d03301934ea9681910f3890829fbe))
|
|
21
|
+
|
|
1
22
|
# [1.3.0](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.2.33...v1.3.0) (2022-03-03)
|
|
2
23
|
|
|
3
24
|
|
package/CoCreate.config.js
CHANGED
package/package.json
CHANGED
package/src/client.js
CHANGED
|
@@ -50,7 +50,7 @@ const CoCreateUnique = {
|
|
|
50
50
|
input.addEventListener('input', function(e) {
|
|
51
51
|
let request_data = {};
|
|
52
52
|
let value = input.getValue(input);
|
|
53
|
-
request_data['organization_id'] = window.config.
|
|
53
|
+
request_data['organization_id'] = window.config.organization_id;
|
|
54
54
|
request_data['apiKey'] = window.config.apiKey;
|
|
55
55
|
request_data['collection'] = input.getAttribute('collection');
|
|
56
56
|
request_data['name'] = input.getAttribute('name');
|
package/src/server.js
CHANGED