@jsnw/nestjs-rabbitmq 1.3.5 → 1.3.6

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.
@@ -1,5 +1,7 @@
1
1
  import type { RabbitmqConstructorParams, RabbitmqExchange, RabbitmqQueue, RabbitmqSubscribeParams } from './rabbitmq';
2
- export type RabbitmqForRootParams = RabbitmqConstructorParams & Omit<RabbitmqForFeatureParams, 'name'> & {
2
+ export type RabbitmqForRootParams = RabbitmqConstructorParams & {
3
+ name?: string;
4
+ } & Omit<RabbitmqForFeatureParams, 'name'> & {
3
5
  isDefault?: boolean;
4
6
  };
5
7
  export type RabbitmqForFeatureParams = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsnw/nestjs-rabbitmq",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "description": "NestJS module for RabbitMQ integration with decorator-based consumers, message validation, and dead-letter exchange support",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/types/index.d.ts",