@yolo-croket-dev/amqp-access 0.0.199-jun.1 → 0.0.200
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,6 +1,6 @@
|
|
|
1
1
|
import { ClientProxy } from '@nestjs/microservices';
|
|
2
2
|
import { AbstractParam } from '@yolo-croket-dev/core';
|
|
3
|
-
import { AddBundlePInfoPayload, RegBundlePInfoPayload, GetBundlePInfoForPayLogPayload, GetBundlePInfoForPayLogResult, SyncProcessBulkPayload } from '../dto/bundle-p-info';
|
|
3
|
+
import { AddBundlePInfoPayload, RegBundlePInfoPayload, GetBundlePInfoForPayLogPayload, GetBundlePInfoForPayLogResult, SyncProcessBulkPayload, UpdateNotEqualParentPaymentDatePayload } from '../dto/bundle-p-info';
|
|
4
4
|
export declare class AmqpBundlePInfoService {
|
|
5
5
|
private readonly client;
|
|
6
6
|
private readonly amqpManager;
|
|
@@ -9,4 +9,5 @@ export declare class AmqpBundlePInfoService {
|
|
|
9
9
|
regBundlePInfo(payload: RegBundlePInfoPayload, param: AbstractParam): Promise<void>;
|
|
10
10
|
getBundlePInfoForPayLog(payload: GetBundlePInfoForPayLogPayload, param: AbstractParam): Promise<GetBundlePInfoForPayLogResult>;
|
|
11
11
|
syncProcessBulk(payload: SyncProcessBulkPayload, param: AbstractParam): Promise<void>;
|
|
12
|
+
updateNotEqualParentPaymentDate(payload: UpdateNotEqualParentPaymentDatePayload, param: AbstractParam): Promise<void>;
|
|
12
13
|
}
|
|
@@ -35,6 +35,9 @@ let AmqpBundlePInfoService = class AmqpBundlePInfoService {
|
|
|
35
35
|
async syncProcessBulk(payload, param) {
|
|
36
36
|
return this.amqpManager.call('묶음 결제 process sync', 'bundle-p-info.sync.process-bulk', payload, param, { isErrorThrowing: true });
|
|
37
37
|
}
|
|
38
|
+
async updateNotEqualParentPaymentDate(payload, param) {
|
|
39
|
+
return this.amqpManager.call('묶음 결제 부모 결제 업데이트', 'bundle-p-info.update.not-equal-parent-payment-date', payload, param, { isErrorThrowing: true });
|
|
40
|
+
}
|
|
38
41
|
};
|
|
39
42
|
exports.AmqpBundlePInfoService = AmqpBundlePInfoService;
|
|
40
43
|
exports.AmqpBundlePInfoService = AmqpBundlePInfoService = __decorate([
|