@raclettejs/core 0.1.33-canary.1 → 0.1.33-canary.2
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 +6 -2
- package/dist/cli.js +52 -48
- package/dist/cli.js.map +3 -3
- package/package.json +2 -2
- package/services/backend/src/core/validation/schemaGenerator.ts +15 -15
- package/services/backend/src/shared/schemas/core/ProjectConfig.schema.ts +36 -0
- package/services/backend/src/shared/schemas/core/WorkSession.schema.ts +74 -0
- package/services/backend/src/shared/schemas/core/WorkSessionCreate.schema.ts +63 -0
- package/services/backend/src/shared/schemas/core/WorkSessionUpdate.schema.ts +63 -0
- package/services/backend/src/shared/types/core/ProjectConfig.types.ts +14 -0
- package/services/backend/src/shared/types/core/WorkSession.types.ts +24 -0
- package/services/backend/src/shared/types/core/WorkSessionCreate.types.ts +22 -0
- package/services/backend/src/shared/types/core/WorkSessionUpdate.types.ts +22 -0
- package/services/backend/src/shared/types/global/index.ts +1 -0
- package/services/backend/src/shared/types/index.ts +1 -0
- package/services/backend/src/types/index.ts +3 -0
- package/services/backend/types/index.d.ts +1 -15
- package/types/index.ts +4 -18
- package/services/backend/src/shared/types/global/search.ts +0 -13
- /package/services/backend/src/types/{custom-fastify-jwt.d.ts → custom-fastify-jwt.ts} +0 -0
- /package/services/backend/src/types/{custom-fastify.d.ts → custom-fastify.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -16,21 +16,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
16
16
|
|
|
17
17
|
- frontend: fixed typo in types export
|
|
18
18
|
- backend: fixed user hard delete
|
|
19
|
+
- CLI/root: bring back service types export and fix CLI trying to import from false types dir
|
|
19
20
|
|
|
20
21
|
### Updated
|
|
21
22
|
|
|
22
23
|
- set eslint version to latest
|
|
24
|
+
- backend: add latest auto generated files in shared/**/core
|
|
23
25
|
|
|
24
26
|
## [0.1.32] - 2026-04-30 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.31...v0.1.32" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
25
27
|
|
|
28
|
+
### Changed
|
|
29
|
+
|
|
26
30
|
- VFS revert due to build issues. Will be reapplied soon
|
|
27
31
|
|
|
28
32
|
## [0.1.31] - 2026-04-27 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.30...v0.1.31" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
29
33
|
|
|
30
34
|
### Changed
|
|
31
35
|
|
|
32
|
-
-
|
|
33
|
-
-
|
|
36
|
+
- CLI/Build: Increased default timeout to 240s
|
|
37
|
+
- CLI/Build: Added missing healthchecks to generated docker-compose example during `build` command
|
|
34
38
|
-
|
|
35
39
|
## [0.1.30] - 2026-04-27 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.29...v0.1.30" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
36
40
|
|