@yolo-croket-dev/amqp-access 0.2.11 → 0.2.12-sj-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.
- package/order-server/services/amqp.purchase-receipt.service.d.ts +1 -0
- package/order-server/services/amqp.purchase-receipt.service.js +3 -0
- package/order-server/services/amqp.purchased-info.service.d.ts +1 -0
- package/order-server/services/amqp.purchased-info.service.js +3 -0
- package/package.json +1 -1
|
@@ -7,4 +7,5 @@ export declare class AmqpPurchaseReceiptService {
|
|
|
7
7
|
constructor(client: ClientProxy);
|
|
8
8
|
createPurchaseReceipt(payload: CreatePurchaseReceiptPayload, param: AbstractParam): Promise<void>;
|
|
9
9
|
updatePurchaseReceipt(payload: UpdatePurchaseReceiptPayload, param: AbstractParam): Promise<void>;
|
|
10
|
+
migrationPurchaseReceipt(param: AbstractParam): Promise<void>;
|
|
10
11
|
}
|
|
@@ -27,6 +27,9 @@ let AmqpPurchaseReceiptService = class AmqpPurchaseReceiptService {
|
|
|
27
27
|
async updatePurchaseReceipt(payload, param) {
|
|
28
28
|
return this.amqpManager.call('주문서 수정', 'purchase-receipt.update', payload, param, { isErrorThrowing: true });
|
|
29
29
|
}
|
|
30
|
+
async migrationPurchaseReceipt(param) {
|
|
31
|
+
return this.amqpManager.call('주문서 데이터 마이그레이션', 'purchase-receipt.migration', {}, param, { isErrorThrowing: true });
|
|
32
|
+
}
|
|
30
33
|
};
|
|
31
34
|
exports.AmqpPurchaseReceiptService = AmqpPurchaseReceiptService;
|
|
32
35
|
exports.AmqpPurchaseReceiptService = AmqpPurchaseReceiptService = __decorate([
|
|
@@ -27,4 +27,5 @@ export declare class AmqpPurchasedInfoService {
|
|
|
27
27
|
getPNumsGroupItemId(payload: GetPNumsGroupItemIdPayload, param: AbstractParam): Promise<GetPNumsGroupItemIdResult>;
|
|
28
28
|
getPInfoIdsForPredictSettle(payload: GetPInfoIdsForPredictSettlePayload, param: AbstractParam): Promise<GetPInfoIdsForPredictSettleResult>;
|
|
29
29
|
getPInfosForBeforeDeliveryExcel(payload: GetPInfosForBeforeDeliveryExcelPayload, param: AbstractParam): Promise<GetPInfosForBeforeDeliveryExcelResult[]>;
|
|
30
|
+
migrationPayTryLogIdV2(param: AbstractParam): Promise<void>;
|
|
30
31
|
}
|
|
@@ -87,6 +87,9 @@ let AmqpPurchasedInfoService = class AmqpPurchasedInfoService {
|
|
|
87
87
|
async getPInfosForBeforeDeliveryExcel(payload, param) {
|
|
88
88
|
return this.amqpManager.call('발송준비중 결제건 리스트 엑셀 추출', 'purchased-info.get.p-infos-for-before-delivery-excel', payload, param, { isErrorThrowing: true });
|
|
89
89
|
}
|
|
90
|
+
async migrationPayTryLogIdV2(param) {
|
|
91
|
+
return this.amqpManager.call('payTrylogId_v2 데이터 마이그레이션', 'purchased-info.migration.pay-try-log-id-v2', {}, param, { isErrorThrowing: true });
|
|
92
|
+
}
|
|
90
93
|
};
|
|
91
94
|
exports.AmqpPurchasedInfoService = AmqpPurchasedInfoService;
|
|
92
95
|
exports.AmqpPurchasedInfoService = AmqpPurchasedInfoService = __decorate([
|