@xnestjs/rabbitmq 1.10.3 → 1.10.4

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/package.json +1 -1
  2. package/types/types.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xnestjs/rabbitmq",
3
- "version": "1.10.3",
3
+ "version": "1.10.4",
4
4
  "description": "NestJS extension library for RabbitMQ",
5
5
  "author": "Panates",
6
6
  "license": "MIT",
package/types/types.d.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  import type { LoggerService } from '@nestjs/common';
2
2
  import type { ModuleMetadata } from '@nestjs/common/interfaces';
3
3
  import type { InjectionToken } from '@nestjs/common/interfaces/modules/injection-token.interface';
4
- import { type AmqpConnectionManager, AmqpConnectionManagerClass, type AmqpConnectionManagerOptions, type ConnectionUrl } from 'amqp-connection-manager';
4
+ import { type AmqpConnectionManager, AmqpConnectionManagerClass, type AmqpConnectionManagerOptions, type Channel, type ChannelWrapper, type ConnectionUrl, type CreateChannelOpts, type SetupFunc } from 'amqp-connection-manager';
5
5
  export type RmqClient = AmqpConnectionManager;
6
6
  export declare const RmqClient: typeof AmqpConnectionManagerClass;
7
- export { AmqpConnectionManagerOptions, ConnectionUrl };
7
+ export { AmqpConnectionManagerOptions, Channel, ChannelWrapper, ConnectionUrl, CreateChannelOpts, SetupFunc, };
8
8
  export interface RabbitmqConnectionOptions extends AmqpConnectionManagerOptions {
9
9
  urls?: ConnectionUrl[];
10
10
  lazyConnect?: boolean;