@yolo-croket-dev/amqp-access 0.2.35 → 0.2.36-sj-2
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/dto/purchase-receipt/command/update-purchase-receipt-receive-info.dto.d.ts +1 -1
- package/order-server/dto/purchase-receipt/command/update-purchase-receipt-receive-info.dto.js +0 -1
- package/order-server/dto/purchase-receipt/query/check-can-update-purchase-receipt-receive-info.dto.d.ts +1 -0
- package/order-server/services/amqp.purchase-receipt.service.d.ts +2 -2
- package/order-server/services/amqp.purchase-receipt.service.js +2 -2
- package/package.json +2 -2
package/order-server/dto/purchase-receipt/command/update-purchase-receipt-receive-info.dto.js
CHANGED
|
@@ -64,6 +64,5 @@ __decorate([
|
|
|
64
64
|
], UpdatePurchaseReceiptReceiveInfoPayload.prototype, "purchaseReceiptId", void 0);
|
|
65
65
|
__decorate([
|
|
66
66
|
(0, class_transformer_1.Type)(() => PurchaseReceiptReceiveInfo),
|
|
67
|
-
(0, class_validator_1.IsOptional)(),
|
|
68
67
|
__metadata("design:type", PurchaseReceiptReceiveInfo)
|
|
69
68
|
], UpdatePurchaseReceiptReceiveInfoPayload.prototype, "receiveInfo", void 0);
|
|
@@ -12,6 +12,6 @@ export declare class AmqpPurchaseReceiptService {
|
|
|
12
12
|
searchPurchaseReceiptDetail(payload: SearchPurchaseReceiptDetailPayload, param: AbstractParam): Promise<SearchPurchaseReceiptDetailResult>;
|
|
13
13
|
reloadPurchaseReceipt(payload: ReloadPurchaseReceiptPayload, param: AbstractParam): Promise<ReloadPurchaseReceiptResult>;
|
|
14
14
|
searchPurchaseReceiptReceiveInfo(payload: SearchPurchaseReceiptReceiveInfoPayload, param: AbstractParam): Promise<SearchPurchaseReceiptReceiveInfoResult>;
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
checkCanUpdatePurchaseReceiptReceiveInfo(payload: CheckCanUpdatePurchaseReceiptReceiveInfoPayload, param: AbstractParam): Promise<CheckCanUpdatePurchaseReceiptReceiveInfoResult>;
|
|
16
|
+
updatePurchaseReceiptReceiveInfo(payload: UpdatePurchaseReceiptReceiveInfoPayload, param: AbstractParam): Promise<any>;
|
|
17
17
|
}
|
|
@@ -44,10 +44,10 @@ let AmqpPurchaseReceiptService = class AmqpPurchaseReceiptService {
|
|
|
44
44
|
async searchPurchaseReceiptReceiveInfo(payload, param) {
|
|
45
45
|
return this.amqpManager.call('구매자 주문서 수령 정보 조회', 'purchase-receipt.get.receive-info', payload, param, { isErrorThrowing: true });
|
|
46
46
|
}
|
|
47
|
-
async
|
|
47
|
+
async checkCanUpdatePurchaseReceiptReceiveInfo(payload, param) {
|
|
48
48
|
return this.amqpManager.call('구매자 주문서 수령 정보 수정 가능 여부 확인', 'purchase-receipt.get.check-can-update-receive-info', payload, param, { isErrorThrowing: true });
|
|
49
49
|
}
|
|
50
|
-
async
|
|
50
|
+
async updatePurchaseReceiptReceiveInfo(payload, param) {
|
|
51
51
|
return this.amqpManager.call('구매자 주문서 수령 정보 수정', 'purchase-receipt.update.receive-info', payload, param, { isErrorThrowing: true });
|
|
52
52
|
}
|
|
53
53
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yolo-croket-dev/amqp-access",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.36-sj-2",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "Yolo Co., Ltd.",
|
|
6
6
|
"description": "크로켓 amqp-access npm",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@yolo-croket-dev/dto-v2": "^0.0.162",
|
|
24
24
|
"@yolo-croket-dev/entity": "^0.1.133",
|
|
25
25
|
"@yolo-croket-dev/entity-v2": "^0.0.110",
|
|
26
|
-
"@yolo-croket-dev/domain": "^0.0.
|
|
26
|
+
"@yolo-croket-dev/domain": "^0.0.6-sj-1",
|
|
27
27
|
"class-transformer": "^0.5.1",
|
|
28
28
|
"class-validator": "^0.13.2",
|
|
29
29
|
"dotenv": "^16.3.1"
|