nesthub 1.0.1 → 1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nesthub",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "All-in-one modular toolkit for NestJS",
5
5
  "keywords": [
6
6
  "nestjs",
@@ -79,4 +79,4 @@ BullModule.forRootAsync({
79
79
  |---|---|---|
80
80
  | `store` | `'valkey'` | Backend store: `'valkey'` or `'redis'` |
81
81
  | `prefix` | `'{default}'` | BullMQ key prefix |
82
- | `defaultJobOptions` | | Default job options for all queues (e.g. `{ attempts: 3 }`) |
82
+ | `defaultJobOptions` | `{ removeOnComplete: true, removeOnFail: true }` | Default job options (auto-removes jobs to prevent memory overflow; override by passing same keys) |