@xnestjs/rabbitmq 1.13.1 → 1.14.0
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/get-rabbitmq-config.d.ts +1 -1
- package/package.json +2 -2
- package/rabbitmq-core.module.d.ts +1 -1
- package/types.d.ts +1 -3
package/get-rabbitmq-config.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { RabbitmqConnectionOptions } from './types';
|
|
1
|
+
import type { RabbitmqConnectionOptions } from './types.js';
|
|
2
2
|
export declare function getRabbitmqConfig(init?: string | string[] | Partial<RabbitmqConnectionOptions>, prefix?: string): RabbitmqConnectionOptions;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xnestjs/rabbitmq",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"description": "NestJS extension library for RabbitMQ",
|
|
5
5
|
"author": "Panates",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@jsopen/objects": "^2.
|
|
8
|
+
"@jsopen/objects": "^2.2.3",
|
|
9
9
|
"ansi-colors": "^4.1.3",
|
|
10
10
|
"putil-varhelpers": "^1.7.0",
|
|
11
11
|
"tslib": "^2.8.1"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DynamicModule, Logger, OnApplicationBootstrap, OnApplicationShutdown } from '@nestjs/common';
|
|
1
|
+
import { type DynamicModule, Logger, type OnApplicationBootstrap, type OnApplicationShutdown } from '@nestjs/common';
|
|
2
2
|
import { type RabbitmqConnectionOptions, type RabbitmqModuleAsyncOptions, type RabbitmqModuleOptions, RmqClient } from './types.js';
|
|
3
3
|
export declare class RabbitmqCoreModule implements OnApplicationShutdown, OnApplicationBootstrap {
|
|
4
4
|
protected client: RmqClient;
|
package/types.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
import type { LoggerService } from '@nestjs/common';
|
|
2
|
-
import type { ModuleMetadata } from '@nestjs/common/interfaces';
|
|
3
|
-
import type { InjectionToken } from '@nestjs/common/interfaces/modules/injection-token.interface';
|
|
1
|
+
import type { InjectionToken, LoggerService, ModuleMetadata } from '@nestjs/common';
|
|
4
2
|
import * as rabbit from 'rabbitmq-client';
|
|
5
3
|
export type RmqClient = rabbit.Connection;
|
|
6
4
|
export declare const RmqClient: typeof rabbit.Connection;
|