From c97e85fd56880c1d44b3fb1ba32131835331081a Mon Sep 17 00:00:00 2001 From: Syed Muhammad Bilal Date: Mon, 22 Jun 2026 00:44:49 +0200 Subject: [PATCH] fix: correct property name from 'pubsubname' to 'pubsubName' in event routes --- src/events/event.controller.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/events/event.controller.ts b/src/events/event.controller.ts index 06a01d0..8ea6293 100644 --- a/src/events/event.controller.ts +++ b/src/events/event.controller.ts @@ -41,23 +41,23 @@ export class EventController { topic: 'order/order/created', route: 'order-created', }, { - pubsubname: 'pubsub', + pubsubName: 'pubsub', topic: 'payment/payment/payment-enabled', route: 'payment-enabled' }, { - pubsubname: 'pubsub', + pubsubName: 'pubsub', topic: 'payment/payment/payment-failed', route: 'payment-failed' }, { - pubsubname: 'pubsub', + pubsubName: 'pubsub', topic: 'shipment/shipment/status-updated', route: 'shipment-status-updated' }, { - pubsubname: 'pubsub', + pubsubName: 'pubsub', topic: 'shipment/shipment/created', route: 'shipment-created' }, { - pubsubname: 'pubsub', + pubsubName: 'pubsub', topic: 'discount/order/validation-failed', route: 'discount-validation-failed' }