@exulu/backend 1.27.2 → 1.28.1
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/{release.yml → release-backend.yml} +2 -2
- package/.nvmrc +1 -1
- package/CHANGELOG.md +2 -2
- package/dist/index.cjs +1490 -572
- package/dist/index.d.cts +161 -28
- package/dist/index.d.ts +161 -28
- package/dist/index.js +1486 -569
- package/package.json +3 -3
- package/types/models/eval-run.ts +37 -0
- package/types/models/test-case.ts +25 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
name: Release
|
|
1
|
+
name: Release backend
|
|
2
2
|
on:
|
|
3
3
|
push:
|
|
4
4
|
branches:
|
|
@@ -24,7 +24,7 @@ jobs:
|
|
|
24
24
|
- name: Setup Node.js
|
|
25
25
|
uses: actions/setup-node@v4
|
|
26
26
|
with:
|
|
27
|
-
node-version: "22.
|
|
27
|
+
node-version: "22.18.0"
|
|
28
28
|
- name: Install dependencies
|
|
29
29
|
run: npm clean-install
|
|
30
30
|
- name: Build
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
v22.18.0
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [1.
|
|
1
|
+
## [1.28.1](https://github.com/Qventu/exulu-backend/compare/v1.28.0...v1.28.1) (2025-10-24)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* made fileUploads config in ExuluApp optional ([078bc9b](https://github.com/Qventu/exulu-backend/commit/078bc9ba3e294387e5cae5a25ee7144353aa6482))
|