@finsys/core 2.7.0 → 3.2.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.
@@ -26,8 +26,8 @@
26
26
  },
27
27
  "category": {
28
28
  "type": "string",
29
- "enum": ["telco-carrier", "payment-network", "bank-statement"],
30
- "description": "Generic category this adapter implements. MUST be one declared by finsys-core's category catalogue."
29
+ "minLength": 1,
30
+ "description": "Generic category this adapter implements. SYS-2500: the schema validates STRUCTURE only (non-empty string) — category MEMBERSHIP is enforced at runtime against finsys-core's registry (assertAdapterCategory / categorySchemaOf), so adding a category is a data-file edit with no schema change. The host rejects manifests whose category is not in the loaded catalogue."
31
31
  },
32
32
  "version": {
33
33
  "type": "integer",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finsys/core",
3
- "version": "2.7.0",
3
+ "version": "3.2.0",
4
4
  "description": "Convert unified form configurations into Zod schemas, React Hook Form defaults, and SurveyJS JSON",
5
5
  "repository": {
6
6
  "type": "git",
@@ -58,6 +58,7 @@
58
58
  "zod": "^4.3.5"
59
59
  },
60
60
  "devDependencies": {
61
+ "@lavamoat/allow-scripts": "^5.0.2",
61
62
  "@types/node": "^25.0.10",
62
63
  "@types/semver": "^7.5.0",
63
64
  "survey-core": "^2.5.6",
@@ -78,6 +79,12 @@
78
79
  ],
79
80
  "license": "Apache-2.0",
80
81
  "engines": {
81
- "node": ">=18"
82
+ "node": ">=24",
83
+ "npm": ">=11.10.0"
84
+ },
85
+ "lavamoat": {
86
+ "allowScripts": {
87
+ "tsup>esbuild#0.27.3": false
88
+ }
82
89
  }
83
90
  }