@yolo-croket-dev/amqp-access 0.5.60-jun.8 → 0.5.60-jun.9
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.
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { ClientProxy } from '@nestjs/microservices';
|
|
2
2
|
import { AbstractParam } from '@yolo-croket-dev/core';
|
|
3
3
|
import { SendExpiredIssuedReceiptCouponPayload } from '../dto/notification-bulk-send/command/send-expired-issued-receipt-coupon.dto';
|
|
4
|
+
import { SendExpiredIssuedCouponPayload } from '../dto/notification-bulk-send/command/send-expired-issued-coupon.dto';
|
|
4
5
|
export declare class AmqpNotificationBulkSendService {
|
|
5
6
|
private readonly client;
|
|
6
7
|
private readonly amqpManager;
|
|
7
8
|
constructor(client: ClientProxy);
|
|
8
9
|
sendExpiredIssuedReceiptCouponOnlyPublish(payload: SendExpiredIssuedReceiptCouponPayload, param: AbstractParam): Promise<boolean>;
|
|
10
|
+
sendExpiredIssuedCouponOnlyPublish(payload: SendExpiredIssuedCouponPayload, param: AbstractParam): Promise<boolean>;
|
|
9
11
|
}
|
|
@@ -24,6 +24,9 @@ let AmqpNotificationBulkSendService = class AmqpNotificationBulkSendService {
|
|
|
24
24
|
async sendExpiredIssuedReceiptCouponOnlyPublish(payload, param) {
|
|
25
25
|
return this.amqpManager.onlyPublish('만료 발급 쿠폰 알림 대량 보내기', 'notification-bulk-send.send.expired-issued-receipt-coupon', payload, param, { isInternal: true });
|
|
26
26
|
}
|
|
27
|
+
async sendExpiredIssuedCouponOnlyPublish(payload, param) {
|
|
28
|
+
return this.amqpManager.onlyPublish('만료 발급 쿠폰 알림 대량 보내기', 'notification-bulk-send.send.expired-issued-coupon', payload, param, { isInternal: true });
|
|
29
|
+
}
|
|
27
30
|
};
|
|
28
31
|
AmqpNotificationBulkSendService = __decorate([
|
|
29
32
|
(0, common_1.Injectable)(),
|