@cocreate/crud-server 1.28.1 → 1.28.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/.github/workflows/automated.yml +1 -2
- package/CHANGELOG.md +16 -0
- package/LICENSE +656 -551
- package/package.json +2 -2
- package/src/index.js +22 -26
|
@@ -58,8 +58,7 @@ jobs:
|
|
|
58
58
|
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
|
|
59
59
|
- name: Install dependencies
|
|
60
60
|
run: yarn install
|
|
61
|
-
|
|
62
|
-
run: yarn build
|
|
61
|
+
|
|
63
62
|
- name: Set Environment Variables
|
|
64
63
|
run: |
|
|
65
64
|
echo "organization_id=${{ secrets.COCREATE_ORGANIZATION_ID }}" >> $GITHUB_ENV
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## [1.28.3](https://github.com/CoCreate-app/CoCreate-crud-server/compare/v1.28.2...v1.28.3) (2023-09-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* merge send and crud functions to send ([9cee69e](https://github.com/CoCreate-app/CoCreate-crud-server/commit/9cee69ef3dfb5ccf922ca7f3cab5259bf4181b12))
|
|
7
|
+
* nested for loop [i] to [j] ([90c2523](https://github.com/CoCreate-app/CoCreate-crud-server/commit/90c2523f1e315d59c89e3a69427e3c6b25bae071))
|
|
8
|
+
* socket referenced in the data object. data.socket ([8023572](https://github.com/CoCreate-app/CoCreate-crud-server/commit/8023572223f4e91906333be7bf2fb022a7daa8f6))
|
|
9
|
+
|
|
10
|
+
## [1.28.2](https://github.com/CoCreate-app/CoCreate-crud-server/compare/v1.28.1...v1.28.2) (2023-08-21)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* removed build as no webpack.config exist ([b496d33](https://github.com/CoCreate-app/CoCreate-crud-server/commit/b496d330cc8ef14d8addc84bebc2706087e6225d))
|
|
16
|
+
|
|
1
17
|
## [1.28.1](https://github.com/CoCreate-app/CoCreate-crud-server/compare/v1.28.0...v1.28.1) (2023-08-21)
|
|
2
18
|
|
|
3
19
|
|