@nestjstools/messaging 2.16.0 → 2.16.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.
Files changed (2) hide show
  1. package/README.md +7 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,6 +18,13 @@ A NestJS library for managing asynchronous and synchronous messages (service bus
18
18
  - **Extensibility**: Creating new channels is straightforward, allowing developers to expand and integrate with external systems or protocols effortlessly.
19
19
  - **Concurrent Handler Execution**: Messages dispatched to multiple handlers are processed concurrently, improving performance and responsiveness across your system.
20
20
 
21
+ ## Channels
22
+ - [Redis channel adapter](https://www.npmjs.com/package/@nestjstools/messaging-redis-extension)
23
+ - [RabbitMQ channel adapter](https://www.npmjs.com/package/@nestjstools/messaging-rabbitmq-extension)
24
+ - [Amazon SQS channel adapter](https://www.npmjs.com/package/@nestjstools/messaging-amazon-sqs-extension)
25
+ - [Google PubSub channel Adapter](https://www.npmjs.com/package/@nestjstools/messaging-google-pubsub-extension)
26
+ - [Nats channel Adapter](https://www.npmjs.com/package/@nestjstools/messaging-nats-extension)
27
+
21
28
  ---
22
29
 
23
30
  ## Documentation
@@ -591,9 +598,3 @@ Classes with `Injectable()` decorator must be defined as providers in somewhere
591
598
 
592
599
  ### Future features
593
600
  * INBOX & OUTBOX Pattern
594
-
595
- ### Links
596
- - [Redis channel adapter](https://www.npmjs.com/package/@nestjstools/messaging-redis-extension)
597
- - [RabbitMQ channel adapter](https://www.npmjs.com/package/@nestjstools/messaging-rabbitmq-extension)
598
- - [Amazon SQS channel adapter](https://www.npmjs.com/package/@nestjstools/messaging-amazon-sqs-extension)
599
- - [Google PubSub channel Adapter](https://www.npmjs.com/package/@nestjstools/messaging-google-pubsub-extension)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjstools/messaging",
3
- "version": "2.16.0",
3
+ "version": "2.16.1",
4
4
  "description": "Simplifies asynchronous and synchronous message handling with support for buses, handlers, channels, and consumers. Build scalable, decoupled applications with ease and reliability.",
5
5
  "author": "Sebastian Iwanczyszyn",
6
6
  "license": "MIT",