@msbci/form-server 1.0.2 → 1.1.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/README.md +5 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -158,6 +158,11 @@ datasource db {
|
|
|
158
158
|
|
|
159
159
|
All inputs validated with Zod. Errors returned as `{ status, message, data, errors }`.
|
|
160
160
|
|
|
161
|
+
## What's new in v1.1.0
|
|
162
|
+
|
|
163
|
+
- Version aligned with `@msbci/form-core` v1.1.0. The server transparently persists the extended `IFieldResponseMetadata` (8 new optional fields including `displayValue`, `variableLabel`, page / roster context) when host applications forward responses from `FormRenderer` — no API or schema change required.
|
|
164
|
+
- No breaking change. Drop-in upgrade from v1.0.x.
|
|
165
|
+
|
|
161
166
|
## License
|
|
162
167
|
|
|
163
168
|
Copyright (c) 2026 MOSOBI — All rights reserved.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@msbci/form-server",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Form server — REST API with Prisma, multi-tenant, multi-database",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@prisma/client": "^6.2.0",
|
|
26
26
|
"zod": "^3.24.0",
|
|
27
|
-
"@msbci/form-core": "1.0
|
|
27
|
+
"@msbci/form-core": "1.1.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"prisma": "^6.2.0",
|