@nestjstools/messaging-amazon-sqs-extension 1.2.0 → 1.2.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/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<image src="nestjstools-logo.png" width="400">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
|
-
# @nestjstools/messaging-amazon-sqs
|
|
5
|
+
# @nestjstools/messaging-amazon-sqs-extension
|
|
6
6
|
|
|
7
7
|
A NestJS library for managing asynchronous and synchronous messages with support for buses, handlers, channels, and consumers. This library simplifies building scalable and decoupled applications by facilitating robust message handling pipelines while ensuring flexibility and reliability.
|
|
8
8
|
|
|
@@ -32,11 +32,11 @@ yarn add @nestjstools/messaging @nestjstools/messaging-amazon-sqs-extension
|
|
|
32
32
|
import { Module } from '@nestjs/common';
|
|
33
33
|
import { MessagingModule } from '@nestjstools/messaging';
|
|
34
34
|
import { SendMessageHandler } from './handlers/send-message.handler';
|
|
35
|
-
import {
|
|
35
|
+
import { AmazonSqsChannelConfig, MessagingAmazonSqsExtensionModule } from '@nestjstools/messaging-amazon-sqs-extension';
|
|
36
36
|
|
|
37
37
|
@Module({
|
|
38
38
|
imports: [
|
|
39
|
-
|
|
39
|
+
MessagingAmazonSqsExtensionModule, // Importing the SQS extension module
|
|
40
40
|
MessagingModule.forRoot({
|
|
41
41
|
buses: [
|
|
42
42
|
{
|
package/package.json
CHANGED