@finsys/core 4.1.0 → 4.3.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 +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +144 -2
- package/dist/index.d.ts +144 -2
- package/dist/index.js.map +1 -1
- package/dist/schema/adapter-manifest.schema.json +75 -0
- package/package.json +5 -8
package/README.md
CHANGED
|
@@ -23,6 +23,10 @@ Partner-facing integration documentation lives in [`docs/`](./docs/):
|
|
|
23
23
|
- **Visibility-Aware Validation** — Conditional fields are only validated when visible (`visibleIf` expressions)
|
|
24
24
|
- **TypeScript-First** — Full type exports for all config types and generator outputs
|
|
25
25
|
|
|
26
|
+
## Prerequisites
|
|
27
|
+
|
|
28
|
+
This project targets Node 24.16.0 (see [`.nvmrc`](./.nvmrc)) and npm ≥ 12.0.1. After `nvm use`, upgrade npm with `npm install -g npm@12.0.1`.
|
|
29
|
+
|
|
26
30
|
## Installation
|
|
27
31
|
|
|
28
32
|
```bash
|