@cocreate/crud-server 1.28.2 → 1.28.4
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 +17 -0
- package/CoCreate.config.js +24 -24
- package/LICENSE +656 -551
- package/package.json +4 -4
- package/src/index.js +22 -26
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## [1.28.4](https://github.com/CoCreate-app/CoCreate-crud-server/compare/v1.28.3...v1.28.4) (2023-09-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Add path and pathname ([32633f7](https://github.com/CoCreate-app/CoCreate-crud-server/commit/32633f701448af59dcb6da2339a9a43d6bda9612))
|
|
7
|
+
* Update dCoCreate dpendencies to latest versions ([2780cdb](https://github.com/CoCreate-app/CoCreate-crud-server/commit/2780cdb314ddbc348bbe01c67bf86a5b8f00815b))
|
|
8
|
+
|
|
9
|
+
## [1.28.3](https://github.com/CoCreate-app/CoCreate-crud-server/compare/v1.28.2...v1.28.3) (2023-09-17)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* merge send and crud functions to send ([9cee69e](https://github.com/CoCreate-app/CoCreate-crud-server/commit/9cee69ef3dfb5ccf922ca7f3cab5259bf4181b12))
|
|
15
|
+
* nested for loop [i] to [j] ([90c2523](https://github.com/CoCreate-app/CoCreate-crud-server/commit/90c2523f1e315d59c89e3a69427e3c6b25bae071))
|
|
16
|
+
* socket referenced in the data object. data.socket ([8023572](https://github.com/CoCreate-app/CoCreate-crud-server/commit/8023572223f4e91906333be7bf2fb022a7daa8f6))
|
|
17
|
+
|
|
1
18
|
## [1.28.2](https://github.com/CoCreate-app/CoCreate-crud-server/compare/v1.28.1...v1.28.2) (2023-08-21)
|
|
2
19
|
|
|
3
20
|
|
package/CoCreate.config.js
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
"organization_id": "",
|
|
3
|
-
"key": "",
|
|
4
|
-
"host": "",
|
|
5
|
-
"sources": [
|
|
6
|
-
{
|
|
7
|
-
"array": "files",
|
|
8
|
-
"object": {
|
|
9
|
-
"_id": "6204253480b409001727b73e",
|
|
10
|
-
"name": "index.html",
|
|
11
|
-
"path": "/docs/crud-server
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
]
|
|
24
|
-
}
|
|
1
|
+
module.exports = {
|
|
2
|
+
"organization_id": "",
|
|
3
|
+
"key": "",
|
|
4
|
+
"host": "",
|
|
5
|
+
"sources": [
|
|
6
|
+
{
|
|
7
|
+
"array": "files",
|
|
8
|
+
"object": {
|
|
9
|
+
"_id": "6204253480b409001727b73e",
|
|
10
|
+
"name": "index.html",
|
|
11
|
+
"path": "/docs/crud-server",
|
|
12
|
+
"pathname": "/docs/crud-server/index.html",
|
|
13
|
+
"src": "{{./docs/index.html}}",
|
|
14
|
+
"host": [
|
|
15
|
+
"*",
|
|
16
|
+
"general.cocreate.app"
|
|
17
|
+
],
|
|
18
|
+
"directory": "crud-server",
|
|
19
|
+
"content-type": "text/html",
|
|
20
|
+
"public": "true"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
};
|