@flusys/nestjs-event-manager 4.0.0-rc → 4.0.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.
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
  # Event Manager Package Guide
2
2
 
3
3
  > **Package:** `@flusys/nestjs-event-manager`
4
- > **Version:** 3.0.1
4
+ > **Version:** 4.0.2
5
5
  > **Type:** Calendar event management with recurrence support and multi-tenant capabilities
6
6
 
7
7
  This comprehensive guide covers the event manager package - calendar-based event scheduling with participants and recurrence patterns.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flusys/nestjs-event-manager",
3
- "version": "4.0.0-rc",
3
+ "version": "4.0.2",
4
4
  "description": "Event manager module with calendar support and recurrence",
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.2",
88
+ "@flusys/nestjs-shared": "4.0.2"
88
89
  }
89
90
  }