@opra/rabbitmq 1.24.3 → 1.25.1
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 +4 -4
- package/rabbitmq-adapter.d.ts +1 -1
- package/rabbitmq-context.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opra/rabbitmq",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.1",
|
|
4
4
|
"description": "Opra RabbitMQ adapter",
|
|
5
5
|
"author": "Panates",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@jsopen/objects": "^2.2.0",
|
|
9
|
-
"@browsery/type-is": "^2.0.
|
|
9
|
+
"@browsery/type-is": "^2.0.2-r1",
|
|
10
10
|
"content-type": "^1.0.5",
|
|
11
11
|
"iconv-lite": "^0.7.2",
|
|
12
12
|
"node-events-async": "^1.5.2",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"valgen": "^5.19.5"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@opra/common": "^1.
|
|
18
|
-
"@opra/core": "^1.
|
|
17
|
+
"@opra/common": "^1.25.1",
|
|
18
|
+
"@opra/core": "^1.25.1",
|
|
19
19
|
"rabbitmq-client": ">=5.0.0 <6"
|
|
20
20
|
},
|
|
21
21
|
"type": "module",
|
package/rabbitmq-adapter.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ApiDocument, MQApi, MQController, OpraException, OpraSchema } from '@opra/common';
|
|
2
2
|
import { PlatformAdapter } from '@opra/core';
|
|
3
3
|
import * as rabbit from 'rabbitmq-client';
|
|
4
|
-
import type { Envelope, MessageBody } from 'rabbitmq-client/lib/codec';
|
|
4
|
+
import type { Envelope, MessageBody } from 'rabbitmq-client/lib/codec.js';
|
|
5
5
|
import { ConfigBuilder } from './config-builder.js';
|
|
6
6
|
import { RabbitmqContext } from './rabbitmq-context.js';
|
|
7
7
|
/**
|
package/rabbitmq-context.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { MQController, MQOperation } from '@opra/common';
|
|
|
2
2
|
import { ExecutionContext } from '@opra/core';
|
|
3
3
|
import type { AsyncEventEmitter } from 'node-events-async';
|
|
4
4
|
import * as rabbit from 'rabbitmq-client';
|
|
5
|
-
import type { RabbitmqAdapter } from './rabbitmq-adapter';
|
|
5
|
+
import type { RabbitmqAdapter } from './rabbitmq-adapter.js';
|
|
6
6
|
/**
|
|
7
7
|
* RabbitmqContext class provides the context for handling RabbitMQ messages.
|
|
8
8
|
* It extends the ExecutionContext and implements the AsyncEventEmitter.
|