@yolo-croket-dev/amqp-access 0.0.25-jun.5 → 0.0.25-jun.7
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,5 +1,5 @@
|
|
|
1
1
|
export declare enum ESStoreItemV2SortTypeEnum {
|
|
2
|
-
'
|
|
2
|
+
'검색어기준' = "\uAC80\uC0C9\uC5B4\uAE30\uC900",
|
|
3
3
|
'최신순' = "\uCD5C\uC2E0\uC21C",
|
|
4
4
|
'인기순' = "\uC778\uAE30\uC21C",
|
|
5
5
|
'만료일순' = "\uB9CC\uB8CC\uC77C\uC21C",
|
|
@@ -19,7 +19,10 @@ export declare class EsStoreItemV2GetDatasPayload {
|
|
|
19
19
|
isViewSoldOut?: boolean;
|
|
20
20
|
isItemPriceWithShippingFee?: boolean;
|
|
21
21
|
storeId?: string;
|
|
22
|
+
/** 일반 상품명 검색 */
|
|
22
23
|
itemName?: string;
|
|
24
|
+
/** searchKeyword 검색으로 or 처리해야함 */
|
|
25
|
+
itemNames?: string[];
|
|
23
26
|
nations?: string[];
|
|
24
27
|
categoryInfos?: ESStoreItemV2Category[];
|
|
25
28
|
sortType?: ESStoreItemV2SortTypeEnum;
|
|
@@ -13,7 +13,7 @@ exports.EsStoreItemV2GetDatasResult = exports.EsStoreItemV2GetDatasPayload = exp
|
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
var ESStoreItemV2SortTypeEnum;
|
|
15
15
|
(function (ESStoreItemV2SortTypeEnum) {
|
|
16
|
-
ESStoreItemV2SortTypeEnum["\uAE30\
|
|
16
|
+
ESStoreItemV2SortTypeEnum["\uAC80\uC0C9\uC5B4\uAE30\uC900"] = "\uAC80\uC0C9\uC5B4\uAE30\uC900";
|
|
17
17
|
ESStoreItemV2SortTypeEnum["\uCD5C\uC2E0\uC21C"] = "\uCD5C\uC2E0\uC21C";
|
|
18
18
|
ESStoreItemV2SortTypeEnum["\uC778\uAE30\uC21C"] = "\uC778\uAE30\uC21C";
|
|
19
19
|
ESStoreItemV2SortTypeEnum["\uB9CC\uB8CC\uC77C\uC21C"] = "\uB9CC\uB8CC\uC77C\uC21C";
|
|
@@ -66,6 +66,11 @@ __decorate([
|
|
|
66
66
|
(0, class_validator_1.IsString)(),
|
|
67
67
|
__metadata("design:type", String)
|
|
68
68
|
], EsStoreItemV2GetDatasPayload.prototype, "itemName", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, class_validator_1.IsOptional)(),
|
|
71
|
+
(0, class_validator_1.IsString)(),
|
|
72
|
+
__metadata("design:type", Array)
|
|
73
|
+
], EsStoreItemV2GetDatasPayload.prototype, "itemNames", void 0);
|
|
69
74
|
__decorate([
|
|
70
75
|
(0, class_validator_1.IsOptional)(),
|
|
71
76
|
(0, class_validator_1.IsArray)(),
|