@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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. 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 -extension
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 { MessagerAmazonSQSExtensionModule, AmazonSQSChannelConfig } from "@nestjstools/messager-amazon-sqs-extension";
35
+ import { AmazonSqsChannelConfig, MessagingAmazonSqsExtensionModule } from '@nestjstools/messaging-amazon-sqs-extension';
36
36
 
37
37
  @Module({
38
38
  imports: [
39
- MessagerAmazonSQSExtensionModule, // Importing the SQS extension module
39
+ MessagingAmazonSqsExtensionModule, // Importing the SQS extension module
40
40
  MessagingModule.forRoot({
41
41
  buses: [
42
42
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjstools/messaging-amazon-sqs-extension",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Extension to handle messages and dispatch them over Amazon SQS",
5
5
  "author": "Sebastian Iwanczyszyn",
6
6
  "private": false,