@yolo-croket-dev/amqp-access 0.5.173 → 0.5.174
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.
|
@@ -15,4 +15,5 @@ export declare class AmqpCouponTemplateService {
|
|
|
15
15
|
searchCouponTemplatesForAdmin(payload: SearchCouponTemplatesForAdminPayload, param: AbstractParam): Promise<SearchCouponTemplatesForAdminResult>;
|
|
16
16
|
getStoreItemCouponsForExtractionByType(payload: GetStoreItemCouponsForExtractionByTypePayload, param: AbstractParam): Promise<GetStoreItemCouponsForExtractionByTypeResult>;
|
|
17
17
|
getCouponTemplatesByThemeId(payload: GetCouponTemplatesByThemeIdPayload, param: AbstractParam): Promise<GetCouponTemplatesByThemeIdResult>;
|
|
18
|
+
updateStoreItemConnectedCouponByNotAppliedCouponTemplatesCronJob(payload: void, param: AbstractParam): Promise<void>;
|
|
18
19
|
}
|
|
@@ -51,6 +51,9 @@ let AmqpCouponTemplateService = class AmqpCouponTemplateService {
|
|
|
51
51
|
async getCouponTemplatesByThemeId(payload, param) {
|
|
52
52
|
return this.amqpManager.call('테마 ID로 쿠폰 템플릿 조회', 'coupon-template.get.by-theme-id', payload, param, { isErrorThrowing: true });
|
|
53
53
|
}
|
|
54
|
+
async updateStoreItemConnectedCouponByNotAppliedCouponTemplatesCronJob(payload, param) {
|
|
55
|
+
return this.amqpManager.call('쿠폰가 적용 크론 작업', 'coupon-template-cron.update.store-item-connected-coupon-by-not-applied-coupon-templates', payload, param, { isErrorThrowing: true });
|
|
56
|
+
}
|
|
54
57
|
};
|
|
55
58
|
exports.AmqpCouponTemplateService = AmqpCouponTemplateService;
|
|
56
59
|
exports.AmqpCouponTemplateService = AmqpCouponTemplateService = __decorate([
|