@yolo-croket-dev/amqp-access 0.0.56 → 0.0.58
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/purchasedinfos/query/search-seller-transaction-history-by-process.dto.d.ts
CHANGED
|
@@ -4,8 +4,6 @@ export declare class SearchSellerTransactionHistoryByProcessPayload {
|
|
|
4
4
|
startDate: string;
|
|
5
5
|
/** 끝 날짜 */
|
|
6
6
|
endDate: string;
|
|
7
|
-
/** 페이지 */
|
|
8
|
-
page: number;
|
|
9
7
|
/** 제한 갯수 */
|
|
10
8
|
limit: number;
|
|
11
9
|
/** 주문 진행 상태 */
|
|
@@ -88,4 +86,5 @@ export declare class SellerTransactionHistory {
|
|
|
88
86
|
}
|
|
89
87
|
export declare class SearchSellerTransactionHistoryByProcessResult {
|
|
90
88
|
sellerTransactionHistories: SellerTransactionHistory[];
|
|
89
|
+
lastId: string;
|
|
91
90
|
}
|
package/order-server/dto/purchasedinfos/query/search-seller-transaction-history-by-process.dto.js
CHANGED
|
@@ -12,7 +12,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.SearchSellerTransactionHistoryByProcessResult = exports.SellerTransactionHistory = exports.SearchSellerTransactionHistoryByProcessPayload = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
const entity_1 = require("@yolo-croket-dev/entity");
|
|
15
|
-
const class_transformer_1 = require("class-transformer");
|
|
16
15
|
class SearchSellerTransactionHistoryByProcessPayload {
|
|
17
16
|
}
|
|
18
17
|
exports.SearchSellerTransactionHistoryByProcessPayload = SearchSellerTransactionHistoryByProcessPayload;
|
|
@@ -26,19 +25,12 @@ __decorate([
|
|
|
26
25
|
(0, class_validator_1.IsNotEmpty)(),
|
|
27
26
|
__metadata("design:type", String)
|
|
28
27
|
], SearchSellerTransactionHistoryByProcessPayload.prototype, "endDate", void 0);
|
|
29
|
-
__decorate([
|
|
30
|
-
(0, class_validator_1.IsNumber)(),
|
|
31
|
-
__metadata("design:type", Number)
|
|
32
|
-
], SearchSellerTransactionHistoryByProcessPayload.prototype, "page", void 0);
|
|
33
28
|
__decorate([
|
|
34
29
|
(0, class_validator_1.IsNumber)(),
|
|
35
30
|
__metadata("design:type", Number)
|
|
36
31
|
], SearchSellerTransactionHistoryByProcessPayload.prototype, "limit", void 0);
|
|
37
32
|
__decorate([
|
|
38
|
-
(0, class_validator_1.IsArray)(),
|
|
39
|
-
(0, class_validator_1.ArrayNotEmpty)(),
|
|
40
33
|
(0, class_validator_1.IsEnum)(entity_1.PurchasedProcessEnum, { each: true }),
|
|
41
|
-
(0, class_transformer_1.Type)(() => String),
|
|
42
34
|
__metadata("design:type", Array)
|
|
43
35
|
], SearchSellerTransactionHistoryByProcessPayload.prototype, "purchasedProcess", void 0);
|
|
44
36
|
__decorate([
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yolo-croket-dev/amqp-access",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.58",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "Yolo Co., Ltd.",
|
|
6
6
|
"description": "크로켓 amqp-access npm",
|
|
@@ -27,4 +27,4 @@
|
|
|
27
27
|
"class-validator": "^0.13.2",
|
|
28
28
|
"dotenv": "^16.3.1"
|
|
29
29
|
}
|
|
30
|
-
}
|
|
30
|
+
}
|