@nestjstools/messaging-google-pubsub-extension 1.2.0 → 1.3.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 +10 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,6 +6,14 @@
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
 
9
+ ---
10
+
11
+ ## Documentation
12
+
13
+ https://nestjstools.gitbook.io/nestjstools-messaging-docs
14
+
15
+ ---
16
+
9
17
  ## Installation
10
18
 
11
19
  ```bash
@@ -25,11 +33,11 @@ yarn add @nestjstools/messaging @nestjstools/messaging-google-pubsub-extension
25
33
  import { Module } from '@nestjs/common';
26
34
  import { MessagingModule } from '@nestjstools/messaging';
27
35
  import { SendMessageHandler } from './handlers/send-message.handler';
28
- import { MessagingGooglePubSubExtensionModule, GooglePubSubChannelConfig } from "@nestjstools/messager-google-pubsub-extension";
36
+ import { MessagingGooglePubSubExtensionModule, GooglePubSubChannelConfig } from '@nestjstools/messaging-google-pubsub-extension';
29
37
 
30
38
  @Module({
31
39
  imports: [
32
- MessagingGooglePubSubExtensionModule, // Importing the SQS extension module
40
+ MessagingGooglePubSubExtensionModule, // Importing the GooglePubSub extension module
33
41
  MessagingModule.forRoot({
34
42
  buses: [
35
43
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjstools/messaging-google-pubsub-extension",
3
- "version": "1.2.0",
3
+ "version": "1.3.1",
4
4
  "description": "Extension to handle messages and dispatch them over Google PubSub",
5
5
  "author": "Sebastian Iwanczyszyn",
6
6
  "private": false,