@yolo-croket-dev/amqp-access 0.2.29-sj-2 → 0.2.30-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.
|
@@ -5,7 +5,8 @@ export declare class SearchPurchaseReceiptsPayload {
|
|
|
5
5
|
eDate?: Date;
|
|
6
6
|
processList?: PurchasedProcessV2Enum[];
|
|
7
7
|
limit: number;
|
|
8
|
-
|
|
8
|
+
searchAfter?: string;
|
|
9
|
+
searchBefore?: string;
|
|
9
10
|
}
|
|
10
11
|
export declare class SearchPurchaseReceiptsResult implements Pick<PurchaseReceiptDomain, '_id' | 'paymentNumber' | 'paymentMethod' | 'purchasedInfos' | 'paymentDate'> {
|
|
11
12
|
_id: string;
|
|
@@ -40,7 +40,12 @@ __decorate([
|
|
|
40
40
|
(0, class_validator_1.IsString)(),
|
|
41
41
|
(0, class_validator_1.IsOptional)(),
|
|
42
42
|
__metadata("design:type", String)
|
|
43
|
-
], SearchPurchaseReceiptsPayload.prototype, "
|
|
43
|
+
], SearchPurchaseReceiptsPayload.prototype, "searchAfter", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, class_validator_1.IsString)(),
|
|
46
|
+
(0, class_validator_1.IsOptional)(),
|
|
47
|
+
__metadata("design:type", String)
|
|
48
|
+
], SearchPurchaseReceiptsPayload.prototype, "searchBefore", void 0);
|
|
44
49
|
// eslint-disable-next-line max-len
|
|
45
50
|
class SearchPurchaseReceiptsResult {
|
|
46
51
|
}
|
|
@@ -35,7 +35,7 @@ let AmqpPurchaseReceiptService = class AmqpPurchaseReceiptService {
|
|
|
35
35
|
}
|
|
36
36
|
// eslint-disable-next-line max-len
|
|
37
37
|
async searchPurchaseReceiptDetail(payload, param) {
|
|
38
|
-
return this.amqpManager.call('구매자 주문서
|
|
38
|
+
return this.amqpManager.call('구매자 주문서 상세 조회', 'purchase-receipt.get.detail', payload, param, { isErrorThrowing: true });
|
|
39
39
|
}
|
|
40
40
|
};
|
|
41
41
|
exports.AmqpPurchaseReceiptService = AmqpPurchaseReceiptService;
|
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.30-sj-1",
|
|
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.3
|
|
26
|
+
"@yolo-croket-dev/domain": "^0.0.3",
|
|
27
27
|
"class-transformer": "^0.5.1",
|
|
28
28
|
"class-validator": "^0.13.2",
|
|
29
29
|
"dotenv": "^16.3.1"
|