@flusys/nestjs-form-builder 4.0.0-rc → 4.0.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Form Builder Package Guide
2
2
 
3
3
  > **Package:** `@flusys/nestjs-form-builder`
4
- > **Version:** 3.0.1
4
+ > **Version:** 4.0.1
5
5
  > **Type:** Dynamic form management with schema versioning and access control
6
6
 
7
7
  This guide covers the NestJS form builder package - dynamic form creation, submission storage, and multi-tenant support.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flusys/nestjs-form-builder",
3
- "version": "4.0.0-rc",
3
+ "version": "4.0.1",
4
4
  "description": "Dynamic form builder module with schema versioning and access control",
5
5
  "main": "cjs/index.js",
6
6
  "module": "fesm/index.js",
@@ -80,10 +80,11 @@
80
80
  "@nestjs/typeorm": "^10.0.0 || ^11.0.0",
81
81
  "class-transformer": "^0.5.0",
82
82
  "class-validator": "^0.14.0",
83
- "typeorm": "^0.3.0"
83
+ "typeorm": "^0.3.0",
84
+ "express": "^4.18.0"
84
85
  },
85
86
  "dependencies": {
86
- "@flusys/nestjs-core": "4.0.0-rc",
87
- "@flusys/nestjs-shared": "4.0.0-rc"
87
+ "@flusys/nestjs-core": "4.0.1",
88
+ "@flusys/nestjs-shared": "4.0.1"
88
89
  }
89
90
  }