@midwayjs/rabbitmq 3.12.8 → 3.13.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.
Files changed (2) hide show
  1. package/dist/mq.d.ts +1 -2
  2. package/package.json +5 -6
package/dist/mq.d.ts CHANGED
@@ -5,9 +5,8 @@
5
5
  import * as amqp from 'amqp-connection-manager';
6
6
  import { IRabbitMQApplication } from './interface';
7
7
  import { ConsumeMessage } from 'amqplib/properties';
8
- import { RabbitMQListenerOptions } from '@midwayjs/core';
8
+ import { RabbitMQListenerOptions, ILogger } from '@midwayjs/core';
9
9
  import type { Channel } from 'amqplib';
10
- import { ILogger } from '@midwayjs/logger';
11
10
  import { EventEmitter } from 'events';
12
11
  export declare class RabbitMQServer extends EventEmitter implements IRabbitMQApplication {
13
12
  protected channelManagerSet: Set<Channel>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@midwayjs/rabbitmq",
3
- "version": "3.12.8",
3
+ "version": "3.13.0",
4
4
  "description": "Midway Framework for rabbitmq",
5
5
  "main": "dist/index.js",
6
6
  "typings": "index.d.ts",
@@ -24,14 +24,13 @@
24
24
  ],
25
25
  "license": "MIT",
26
26
  "devDependencies": {
27
- "@midwayjs/mock": "^3.12.8",
28
- "@types/amqplib": "0.10.3",
27
+ "@midwayjs/mock": "^3.13.0",
28
+ "@types/amqplib": "0.10.4",
29
29
  "amqplib": "0.10.3",
30
30
  "fs-extra": "11.1.1"
31
31
  },
32
32
  "dependencies": {
33
- "@midwayjs/core": "^3.12.3",
34
- "@midwayjs/logger": "^2.15.0",
33
+ "@midwayjs/core": "^3.13.0",
35
34
  "amqp-connection-manager": "4.1.14"
36
35
  },
37
36
  "peerDependencies": {
@@ -46,5 +45,5 @@
46
45
  "engines": {
47
46
  "node": ">=12"
48
47
  },
49
- "gitHead": "598bf3584d655d41889237010edd8b3223d8f059"
48
+ "gitHead": "9f55734afa5b08dcf46bc89493ec8edaa8c6202b"
50
49
  }