@yolo-croket-dev/amqp-access 0.0.73 → 0.0.74-jun.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/package.json +1 -1
- package/store-item-server/dto/store-item/query/atlas-search/get-legacy-store-items-by-atlas-search.dto.d.ts +5 -23
- package/store-item-server/dto/store-item/query/atlas-search/get-legacy-store-items-by-atlas-search.dto.js +10 -35
- package/store-item-server/dto/store-item/query/atlas-search/get-store-item-ids-by-atlas-search.dto.d.ts +79 -0
- package/store-item-server/dto/store-item/query/atlas-search/get-store-item-ids-by-atlas-search.dto.js +204 -0
- package/store-item-server/dto/store-item/query/atlas-search/index.d.ts +1 -0
- package/store-item-server/dto/store-item/query/atlas-search/index.js +1 -0
package/package.json
CHANGED
|
@@ -1,24 +1,6 @@
|
|
|
1
1
|
import { StoreItemLegacyEntity } from '@yolo-croket-dev/entity/src/store-item/store-item-legacy.entity';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
'택배' = "\uD0DD\uBC30",
|
|
5
|
-
'전체' = "\uC804\uCCB4"
|
|
6
|
-
}
|
|
7
|
-
export declare enum GetLegacyStoreItemsSortTypeEnum {
|
|
8
|
-
'최신순' = "\uCD5C\uC2E0\uC21C",
|
|
9
|
-
'인기순' = "\uC778\uAE30\uC21C",
|
|
10
|
-
'만료일순' = "\uB9CC\uB8CC\uC77C\uC21C",
|
|
11
|
-
'거래예정일순' = "\uAC70\uB798\uC608\uC815\uC77C\uC21C",
|
|
12
|
-
'가격낮은순' = "\uAC00\uACA9\uB0AE\uC740\uC21C",
|
|
13
|
-
'리뷰많은순' = "\uB9AC\uBDF0\uB9CE\uC740\uC21C",
|
|
14
|
-
'구매많은순' = "\uAD6C\uB9E4\uB9CE\uC740\uC21C",
|
|
15
|
-
'찜많은순' = "\uCC1C\uB9CE\uC740\uC21C",
|
|
16
|
-
'검색어기준' = "\uAC80\uC0C9\uC5B4\uAE30\uC900"
|
|
17
|
-
}
|
|
18
|
-
export declare class GetLegacyCategoryInfo {
|
|
19
|
-
mainCategory: string;
|
|
20
|
-
subCategory?: string;
|
|
21
|
-
}
|
|
2
|
+
import { GetStoreItemByAtlasSortTypeEnum, GetStoreItemByAtlasDTypeEnum, GetStoreItemByAtlasCategoryInfo } from './get-store-item-ids-by-atlas-search.dto';
|
|
3
|
+
export { GetStoreItemByAtlasSortTypeEnum, GetStoreItemByAtlasDTypeEnum, GetStoreItemByAtlasCategoryInfo, };
|
|
22
4
|
export declare class GetLegacyStoreItemsByAtlasSearchPayload {
|
|
23
5
|
/** 다음 페이징 토큰 */
|
|
24
6
|
searchAfter?: string;
|
|
@@ -31,17 +13,17 @@ export declare class GetLegacyStoreItemsByAtlasSearchPayload {
|
|
|
31
13
|
/** 상품 수 */
|
|
32
14
|
limit: number;
|
|
33
15
|
/** 정렬 방법 */
|
|
34
|
-
sortType:
|
|
16
|
+
sortType: GetStoreItemByAtlasSortTypeEnum;
|
|
35
17
|
/** 솔드아웃도 보여줘? */
|
|
36
18
|
isViewSoldOut?: boolean;
|
|
37
19
|
/** 스토어 아이디 */
|
|
38
20
|
storeId?: string;
|
|
39
21
|
/** 검색 카테고리 리스트 */
|
|
40
|
-
categoryInfos?:
|
|
22
|
+
categoryInfos?: GetStoreItemByAtlasCategoryInfo[];
|
|
41
23
|
/** 검색 나라 리스트 */
|
|
42
24
|
nations?: string[];
|
|
43
25
|
/** 배송 방법 */
|
|
44
|
-
DType?:
|
|
26
|
+
DType?: GetStoreItemByAtlasDTypeEnum;
|
|
45
27
|
/** 검색어 */
|
|
46
28
|
inputText?: string;
|
|
47
29
|
/** 검색 키워드로 검색한 상품 리스트인가 */
|
|
@@ -9,39 +9,13 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.GetLegacyStoreItemsByAtlasSearchPayload = exports.
|
|
12
|
+
exports.GetLegacyStoreItemsByAtlasSearchPayload = exports.GetStoreItemByAtlasCategoryInfo = exports.GetStoreItemByAtlasDTypeEnum = exports.GetStoreItemByAtlasSortTypeEnum = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
const class_transformer_1 = require("class-transformer");
|
|
15
|
-
|
|
16
|
-
(function (
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
GetLegacyStoreItemsDTypeEnum["\uC804\uCCB4"] = "\uC804\uCCB4";
|
|
20
|
-
})(GetLegacyStoreItemsDTypeEnum || (exports.GetLegacyStoreItemsDTypeEnum = GetLegacyStoreItemsDTypeEnum = {}));
|
|
21
|
-
var GetLegacyStoreItemsSortTypeEnum;
|
|
22
|
-
(function (GetLegacyStoreItemsSortTypeEnum) {
|
|
23
|
-
GetLegacyStoreItemsSortTypeEnum["\uCD5C\uC2E0\uC21C"] = "\uCD5C\uC2E0\uC21C";
|
|
24
|
-
GetLegacyStoreItemsSortTypeEnum["\uC778\uAE30\uC21C"] = "\uC778\uAE30\uC21C";
|
|
25
|
-
GetLegacyStoreItemsSortTypeEnum["\uB9CC\uB8CC\uC77C\uC21C"] = "\uB9CC\uB8CC\uC77C\uC21C";
|
|
26
|
-
GetLegacyStoreItemsSortTypeEnum["\uAC70\uB798\uC608\uC815\uC77C\uC21C"] = "\uAC70\uB798\uC608\uC815\uC77C\uC21C";
|
|
27
|
-
GetLegacyStoreItemsSortTypeEnum["\uAC00\uACA9\uB0AE\uC740\uC21C"] = "\uAC00\uACA9\uB0AE\uC740\uC21C";
|
|
28
|
-
GetLegacyStoreItemsSortTypeEnum["\uB9AC\uBDF0\uB9CE\uC740\uC21C"] = "\uB9AC\uBDF0\uB9CE\uC740\uC21C";
|
|
29
|
-
GetLegacyStoreItemsSortTypeEnum["\uAD6C\uB9E4\uB9CE\uC740\uC21C"] = "\uAD6C\uB9E4\uB9CE\uC740\uC21C";
|
|
30
|
-
GetLegacyStoreItemsSortTypeEnum["\uCC1C\uB9CE\uC740\uC21C"] = "\uCC1C\uB9CE\uC740\uC21C";
|
|
31
|
-
GetLegacyStoreItemsSortTypeEnum["\uAC80\uC0C9\uC5B4\uAE30\uC900"] = "\uAC80\uC0C9\uC5B4\uAE30\uC900";
|
|
32
|
-
})(GetLegacyStoreItemsSortTypeEnum || (exports.GetLegacyStoreItemsSortTypeEnum = GetLegacyStoreItemsSortTypeEnum = {}));
|
|
33
|
-
class GetLegacyCategoryInfo {
|
|
34
|
-
}
|
|
35
|
-
exports.GetLegacyCategoryInfo = GetLegacyCategoryInfo;
|
|
36
|
-
__decorate([
|
|
37
|
-
(0, class_validator_1.IsString)(),
|
|
38
|
-
__metadata("design:type", String)
|
|
39
|
-
], GetLegacyCategoryInfo.prototype, "mainCategory", void 0);
|
|
40
|
-
__decorate([
|
|
41
|
-
(0, class_validator_1.IsString)(),
|
|
42
|
-
(0, class_validator_1.IsOptional)(),
|
|
43
|
-
__metadata("design:type", String)
|
|
44
|
-
], GetLegacyCategoryInfo.prototype, "subCategory", void 0);
|
|
15
|
+
const get_store_item_ids_by_atlas_search_dto_1 = require("./get-store-item-ids-by-atlas-search.dto");
|
|
16
|
+
Object.defineProperty(exports, "GetStoreItemByAtlasSortTypeEnum", { enumerable: true, get: function () { return get_store_item_ids_by_atlas_search_dto_1.GetStoreItemByAtlasSortTypeEnum; } });
|
|
17
|
+
Object.defineProperty(exports, "GetStoreItemByAtlasDTypeEnum", { enumerable: true, get: function () { return get_store_item_ids_by_atlas_search_dto_1.GetStoreItemByAtlasDTypeEnum; } });
|
|
18
|
+
Object.defineProperty(exports, "GetStoreItemByAtlasCategoryInfo", { enumerable: true, get: function () { return get_store_item_ids_by_atlas_search_dto_1.GetStoreItemByAtlasCategoryInfo; } });
|
|
45
19
|
class GetLegacyStoreItemsByAtlasSearchPayload {
|
|
46
20
|
}
|
|
47
21
|
exports.GetLegacyStoreItemsByAtlasSearchPayload = GetLegacyStoreItemsByAtlasSearchPayload;
|
|
@@ -68,13 +42,14 @@ __decorate([
|
|
|
68
42
|
], GetLegacyStoreItemsByAtlasSearchPayload.prototype, "limit", void 0);
|
|
69
43
|
__decorate([
|
|
70
44
|
(0, class_validator_1.IsString)(),
|
|
71
|
-
(0, class_validator_1.IsEnum)(
|
|
45
|
+
(0, class_validator_1.IsEnum)(get_store_item_ids_by_atlas_search_dto_1.GetStoreItemByAtlasSortTypeEnum)
|
|
72
46
|
/** 정렬 방법 */
|
|
73
47
|
,
|
|
74
48
|
__metadata("design:type", String)
|
|
75
49
|
], GetLegacyStoreItemsByAtlasSearchPayload.prototype, "sortType", void 0);
|
|
76
50
|
__decorate([
|
|
77
|
-
(0, class_validator_1.IsBoolean)()
|
|
51
|
+
(0, class_validator_1.IsBoolean)(),
|
|
52
|
+
(0, class_validator_1.IsOptional)()
|
|
78
53
|
/** 솔드아웃도 보여줘? */
|
|
79
54
|
,
|
|
80
55
|
__metadata("design:type", Boolean)
|
|
@@ -90,7 +65,7 @@ __decorate([
|
|
|
90
65
|
(0, class_validator_1.IsArray)(),
|
|
91
66
|
(0, class_validator_1.IsOptional)(),
|
|
92
67
|
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
93
|
-
(0, class_transformer_1.Type)(() =>
|
|
68
|
+
(0, class_transformer_1.Type)(() => get_store_item_ids_by_atlas_search_dto_1.GetStoreItemByAtlasCategoryInfo)
|
|
94
69
|
/** 검색 카테고리 리스트 */
|
|
95
70
|
,
|
|
96
71
|
__metadata("design:type", Array)
|
|
@@ -106,7 +81,7 @@ __decorate([
|
|
|
106
81
|
__decorate([
|
|
107
82
|
(0, class_validator_1.IsString)(),
|
|
108
83
|
(0, class_validator_1.IsOptional)(),
|
|
109
|
-
(0, class_validator_1.IsEnum)(
|
|
84
|
+
(0, class_validator_1.IsEnum)(get_store_item_ids_by_atlas_search_dto_1.GetStoreItemByAtlasDTypeEnum)
|
|
110
85
|
/** 배송 방법 */
|
|
111
86
|
,
|
|
112
87
|
__metadata("design:type", String)
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/** atlas 상품 검색 시 DType */
|
|
2
|
+
export declare enum GetStoreItemByAtlasDTypeEnum {
|
|
3
|
+
'직거래' = "\uC9C1\uAC70\uB798",
|
|
4
|
+
'택배' = "\uD0DD\uBC30",
|
|
5
|
+
'전체' = "\uC804\uCCB4"
|
|
6
|
+
}
|
|
7
|
+
/** atlas 상품 검색 정렬 enum */
|
|
8
|
+
export declare enum GetStoreItemByAtlasSortTypeEnum {
|
|
9
|
+
'최신순' = "\uCD5C\uC2E0\uC21C",
|
|
10
|
+
'인기순' = "\uC778\uAE30\uC21C",
|
|
11
|
+
'만료일순' = "\uB9CC\uB8CC\uC77C\uC21C",
|
|
12
|
+
'거래예정일순' = "\uAC70\uB798\uC608\uC815\uC77C\uC21C",
|
|
13
|
+
'가격낮은순' = "\uAC00\uACA9\uB0AE\uC740\uC21C",
|
|
14
|
+
'리뷰많은순' = "\uB9AC\uBDF0\uB9CE\uC740\uC21C",
|
|
15
|
+
'구매많은순' = "\uAD6C\uB9E4\uB9CE\uC740\uC21C",
|
|
16
|
+
'찜많은순' = "\uCC1C\uB9CE\uC740\uC21C",
|
|
17
|
+
'검색어기준' = "\uAC80\uC0C9\uC5B4\uAE30\uC900"
|
|
18
|
+
}
|
|
19
|
+
/** atlas 상품 카테고리 정보 */
|
|
20
|
+
export declare class GetStoreItemByAtlasCategoryInfo {
|
|
21
|
+
mainCategory: string;
|
|
22
|
+
subCategory?: string;
|
|
23
|
+
}
|
|
24
|
+
export declare class GetStoreItemIdsByAtlasSearchPayload {
|
|
25
|
+
/** 다음 페이징 토큰 */
|
|
26
|
+
searchAfter?: string;
|
|
27
|
+
/** 이전 페이징 토큰 */
|
|
28
|
+
searchBefore?: string;
|
|
29
|
+
/** 상품 수 */
|
|
30
|
+
limit: number;
|
|
31
|
+
/** 정렬 방법 */
|
|
32
|
+
sortType: GetStoreItemByAtlasSortTypeEnum;
|
|
33
|
+
/** 솔드아웃도 보여줘? */
|
|
34
|
+
isViewSoldOut?: boolean;
|
|
35
|
+
/** 스토어 아이디 */
|
|
36
|
+
storeId?: string;
|
|
37
|
+
/** 검색 카테고리 리스트 */
|
|
38
|
+
categoryInfos?: GetStoreItemByAtlasCategoryInfo[];
|
|
39
|
+
/** 검색 나라 리스트 */
|
|
40
|
+
nations?: string[];
|
|
41
|
+
/** 배송 방법 */
|
|
42
|
+
DType?: GetStoreItemByAtlasDTypeEnum;
|
|
43
|
+
/** 검색어 */
|
|
44
|
+
inputText?: string;
|
|
45
|
+
/** 검색 키워드로 검색한 상품 리스트인가 */
|
|
46
|
+
searchKeywordId?: string;
|
|
47
|
+
/** 최소 가격 */
|
|
48
|
+
minPrice?: number;
|
|
49
|
+
/** 최대 가격 */
|
|
50
|
+
maxPrice?: number;
|
|
51
|
+
/** 상품 가격 배송비 포함하여 검색할것인가 */
|
|
52
|
+
isItemPriceWithShippingFee?: boolean;
|
|
53
|
+
exceptItemIds?: string[];
|
|
54
|
+
/** @description 셀렉션 프레임 아이디 */
|
|
55
|
+
selectionFrameDataId?: string;
|
|
56
|
+
/** @description 픽한 상품 인가 - selectionFrameId 값 필요 */
|
|
57
|
+
isPick?: boolean;
|
|
58
|
+
/** @description 배송비 무료인가 */
|
|
59
|
+
isShippingFeeFree?: boolean;
|
|
60
|
+
/** 전체 상품명 검색 포함할지 여부 */
|
|
61
|
+
isAllItemNameInclude?: boolean;
|
|
62
|
+
isExistsMaxDiscountCoupon?: boolean;
|
|
63
|
+
itemNames?: string[];
|
|
64
|
+
isSticker?: boolean;
|
|
65
|
+
minBookNums?: number;
|
|
66
|
+
selectionFrameIds?: string[];
|
|
67
|
+
isSelectionItemConnect?: boolean;
|
|
68
|
+
isAbroadShipping?: boolean;
|
|
69
|
+
isBundleShipping?: boolean;
|
|
70
|
+
bundleShippingFee?: number;
|
|
71
|
+
isPrepay?: boolean;
|
|
72
|
+
prepayPrice?: number;
|
|
73
|
+
}
|
|
74
|
+
export interface GetStoreItemIdsByAtlasSearchResult {
|
|
75
|
+
allCount: number;
|
|
76
|
+
itemIds: string[];
|
|
77
|
+
searchAfter: string;
|
|
78
|
+
searchBefore: string;
|
|
79
|
+
}
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.GetStoreItemIdsByAtlasSearchPayload = exports.GetStoreItemByAtlasCategoryInfo = exports.GetStoreItemByAtlasSortTypeEnum = exports.GetStoreItemByAtlasDTypeEnum = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
/** atlas 상품 검색 시 DType */
|
|
16
|
+
var GetStoreItemByAtlasDTypeEnum;
|
|
17
|
+
(function (GetStoreItemByAtlasDTypeEnum) {
|
|
18
|
+
GetStoreItemByAtlasDTypeEnum["\uC9C1\uAC70\uB798"] = "\uC9C1\uAC70\uB798";
|
|
19
|
+
GetStoreItemByAtlasDTypeEnum["\uD0DD\uBC30"] = "\uD0DD\uBC30";
|
|
20
|
+
GetStoreItemByAtlasDTypeEnum["\uC804\uCCB4"] = "\uC804\uCCB4";
|
|
21
|
+
})(GetStoreItemByAtlasDTypeEnum || (exports.GetStoreItemByAtlasDTypeEnum = GetStoreItemByAtlasDTypeEnum = {}));
|
|
22
|
+
/** atlas 상품 검색 정렬 enum */
|
|
23
|
+
var GetStoreItemByAtlasSortTypeEnum;
|
|
24
|
+
(function (GetStoreItemByAtlasSortTypeEnum) {
|
|
25
|
+
GetStoreItemByAtlasSortTypeEnum["\uCD5C\uC2E0\uC21C"] = "\uCD5C\uC2E0\uC21C";
|
|
26
|
+
GetStoreItemByAtlasSortTypeEnum["\uC778\uAE30\uC21C"] = "\uC778\uAE30\uC21C";
|
|
27
|
+
GetStoreItemByAtlasSortTypeEnum["\uB9CC\uB8CC\uC77C\uC21C"] = "\uB9CC\uB8CC\uC77C\uC21C";
|
|
28
|
+
GetStoreItemByAtlasSortTypeEnum["\uAC70\uB798\uC608\uC815\uC77C\uC21C"] = "\uAC70\uB798\uC608\uC815\uC77C\uC21C";
|
|
29
|
+
GetStoreItemByAtlasSortTypeEnum["\uAC00\uACA9\uB0AE\uC740\uC21C"] = "\uAC00\uACA9\uB0AE\uC740\uC21C";
|
|
30
|
+
GetStoreItemByAtlasSortTypeEnum["\uB9AC\uBDF0\uB9CE\uC740\uC21C"] = "\uB9AC\uBDF0\uB9CE\uC740\uC21C";
|
|
31
|
+
GetStoreItemByAtlasSortTypeEnum["\uAD6C\uB9E4\uB9CE\uC740\uC21C"] = "\uAD6C\uB9E4\uB9CE\uC740\uC21C";
|
|
32
|
+
GetStoreItemByAtlasSortTypeEnum["\uCC1C\uB9CE\uC740\uC21C"] = "\uCC1C\uB9CE\uC740\uC21C";
|
|
33
|
+
GetStoreItemByAtlasSortTypeEnum["\uAC80\uC0C9\uC5B4\uAE30\uC900"] = "\uAC80\uC0C9\uC5B4\uAE30\uC900";
|
|
34
|
+
})(GetStoreItemByAtlasSortTypeEnum || (exports.GetStoreItemByAtlasSortTypeEnum = GetStoreItemByAtlasSortTypeEnum = {}));
|
|
35
|
+
/** atlas 상품 카테고리 정보 */
|
|
36
|
+
class GetStoreItemByAtlasCategoryInfo {
|
|
37
|
+
}
|
|
38
|
+
exports.GetStoreItemByAtlasCategoryInfo = GetStoreItemByAtlasCategoryInfo;
|
|
39
|
+
__decorate([
|
|
40
|
+
(0, class_validator_1.IsString)(),
|
|
41
|
+
__metadata("design:type", String)
|
|
42
|
+
], GetStoreItemByAtlasCategoryInfo.prototype, "mainCategory", void 0);
|
|
43
|
+
__decorate([
|
|
44
|
+
(0, class_validator_1.IsString)(),
|
|
45
|
+
(0, class_validator_1.IsOptional)(),
|
|
46
|
+
__metadata("design:type", String)
|
|
47
|
+
], GetStoreItemByAtlasCategoryInfo.prototype, "subCategory", void 0);
|
|
48
|
+
class GetStoreItemIdsByAtlasSearchPayload {
|
|
49
|
+
}
|
|
50
|
+
exports.GetStoreItemIdsByAtlasSearchPayload = GetStoreItemIdsByAtlasSearchPayload;
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, class_validator_1.IsString)(),
|
|
53
|
+
(0, class_validator_1.IsOptional)(),
|
|
54
|
+
__metadata("design:type", String)
|
|
55
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "searchAfter", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, class_validator_1.IsString)(),
|
|
58
|
+
(0, class_validator_1.IsOptional)(),
|
|
59
|
+
__metadata("design:type", String)
|
|
60
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "searchBefore", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, class_validator_1.IsNumber)(),
|
|
63
|
+
__metadata("design:type", Number)
|
|
64
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "limit", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, class_validator_1.IsString)(),
|
|
67
|
+
(0, class_validator_1.IsEnum)(GetStoreItemByAtlasSortTypeEnum),
|
|
68
|
+
__metadata("design:type", String)
|
|
69
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "sortType", void 0);
|
|
70
|
+
__decorate([
|
|
71
|
+
(0, class_validator_1.IsBoolean)(),
|
|
72
|
+
(0, class_validator_1.IsOptional)(),
|
|
73
|
+
__metadata("design:type", Boolean)
|
|
74
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "isViewSoldOut", void 0);
|
|
75
|
+
__decorate([
|
|
76
|
+
(0, class_validator_1.IsMongoId)(),
|
|
77
|
+
(0, class_validator_1.IsOptional)(),
|
|
78
|
+
__metadata("design:type", String)
|
|
79
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "storeId", void 0);
|
|
80
|
+
__decorate([
|
|
81
|
+
(0, class_validator_1.IsArray)(),
|
|
82
|
+
(0, class_validator_1.IsOptional)(),
|
|
83
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
84
|
+
(0, class_transformer_1.Type)(() => GetStoreItemByAtlasCategoryInfo),
|
|
85
|
+
__metadata("design:type", Array)
|
|
86
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "categoryInfos", void 0);
|
|
87
|
+
__decorate([
|
|
88
|
+
(0, class_validator_1.IsOptional)(),
|
|
89
|
+
(0, class_validator_1.IsArray)(),
|
|
90
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
91
|
+
__metadata("design:type", Array)
|
|
92
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "nations", void 0);
|
|
93
|
+
__decorate([
|
|
94
|
+
(0, class_validator_1.IsString)(),
|
|
95
|
+
(0, class_validator_1.IsOptional)(),
|
|
96
|
+
(0, class_validator_1.IsEnum)(GetStoreItemByAtlasDTypeEnum),
|
|
97
|
+
__metadata("design:type", String)
|
|
98
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "DType", void 0);
|
|
99
|
+
__decorate([
|
|
100
|
+
(0, class_validator_1.IsString)(),
|
|
101
|
+
(0, class_validator_1.IsOptional)(),
|
|
102
|
+
__metadata("design:type", String)
|
|
103
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "inputText", void 0);
|
|
104
|
+
__decorate([
|
|
105
|
+
(0, class_validator_1.IsString)(),
|
|
106
|
+
(0, class_validator_1.IsOptional)(),
|
|
107
|
+
__metadata("design:type", String)
|
|
108
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "searchKeywordId", void 0);
|
|
109
|
+
__decorate([
|
|
110
|
+
(0, class_validator_1.IsOptional)(),
|
|
111
|
+
(0, class_validator_1.IsNumber)(),
|
|
112
|
+
__metadata("design:type", Number)
|
|
113
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "minPrice", void 0);
|
|
114
|
+
__decorate([
|
|
115
|
+
(0, class_validator_1.IsOptional)(),
|
|
116
|
+
(0, class_validator_1.IsNumber)(),
|
|
117
|
+
__metadata("design:type", Number)
|
|
118
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "maxPrice", void 0);
|
|
119
|
+
__decorate([
|
|
120
|
+
(0, class_validator_1.IsBoolean)(),
|
|
121
|
+
(0, class_validator_1.IsOptional)(),
|
|
122
|
+
__metadata("design:type", Boolean)
|
|
123
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "isItemPriceWithShippingFee", void 0);
|
|
124
|
+
__decorate([
|
|
125
|
+
(0, class_validator_1.IsArray)(),
|
|
126
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
127
|
+
(0, class_validator_1.IsOptional)(),
|
|
128
|
+
__metadata("design:type", Array)
|
|
129
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "exceptItemIds", void 0);
|
|
130
|
+
__decorate([
|
|
131
|
+
(0, class_validator_1.IsMongoId)(),
|
|
132
|
+
(0, class_validator_1.IsOptional)(),
|
|
133
|
+
__metadata("design:type", String)
|
|
134
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "selectionFrameDataId", void 0);
|
|
135
|
+
__decorate([
|
|
136
|
+
(0, class_validator_1.IsBoolean)(),
|
|
137
|
+
(0, class_validator_1.IsOptional)(),
|
|
138
|
+
__metadata("design:type", Boolean)
|
|
139
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "isPick", void 0);
|
|
140
|
+
__decorate([
|
|
141
|
+
(0, class_validator_1.IsBoolean)(),
|
|
142
|
+
(0, class_validator_1.IsOptional)(),
|
|
143
|
+
__metadata("design:type", Boolean)
|
|
144
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "isShippingFeeFree", void 0);
|
|
145
|
+
__decorate([
|
|
146
|
+
(0, class_validator_1.IsBoolean)(),
|
|
147
|
+
(0, class_validator_1.IsOptional)(),
|
|
148
|
+
__metadata("design:type", Boolean)
|
|
149
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "isAllItemNameInclude", void 0);
|
|
150
|
+
__decorate([
|
|
151
|
+
(0, class_validator_1.IsBoolean)(),
|
|
152
|
+
(0, class_validator_1.IsOptional)(),
|
|
153
|
+
__metadata("design:type", Boolean)
|
|
154
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "isExistsMaxDiscountCoupon", void 0);
|
|
155
|
+
__decorate([
|
|
156
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
157
|
+
(0, class_validator_1.IsOptional)(),
|
|
158
|
+
__metadata("design:type", Array)
|
|
159
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "itemNames", void 0);
|
|
160
|
+
__decorate([
|
|
161
|
+
(0, class_validator_1.IsBoolean)(),
|
|
162
|
+
(0, class_validator_1.IsOptional)(),
|
|
163
|
+
__metadata("design:type", Boolean)
|
|
164
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "isSticker", void 0);
|
|
165
|
+
__decorate([
|
|
166
|
+
(0, class_validator_1.IsNumber)(),
|
|
167
|
+
(0, class_validator_1.IsOptional)(),
|
|
168
|
+
__metadata("design:type", Number)
|
|
169
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "minBookNums", void 0);
|
|
170
|
+
__decorate([
|
|
171
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
172
|
+
(0, class_validator_1.IsOptional)(),
|
|
173
|
+
__metadata("design:type", Array)
|
|
174
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "selectionFrameIds", void 0);
|
|
175
|
+
__decorate([
|
|
176
|
+
(0, class_validator_1.IsBoolean)(),
|
|
177
|
+
(0, class_validator_1.IsOptional)(),
|
|
178
|
+
__metadata("design:type", Boolean)
|
|
179
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "isSelectionItemConnect", void 0);
|
|
180
|
+
__decorate([
|
|
181
|
+
(0, class_validator_1.IsBoolean)(),
|
|
182
|
+
(0, class_validator_1.IsOptional)(),
|
|
183
|
+
__metadata("design:type", Boolean)
|
|
184
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "isAbroadShipping", void 0);
|
|
185
|
+
__decorate([
|
|
186
|
+
(0, class_validator_1.IsBoolean)(),
|
|
187
|
+
(0, class_validator_1.IsOptional)(),
|
|
188
|
+
__metadata("design:type", Boolean)
|
|
189
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "isBundleShipping", void 0);
|
|
190
|
+
__decorate([
|
|
191
|
+
(0, class_validator_1.IsNumber)(),
|
|
192
|
+
(0, class_validator_1.IsOptional)(),
|
|
193
|
+
__metadata("design:type", Number)
|
|
194
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "bundleShippingFee", void 0);
|
|
195
|
+
__decorate([
|
|
196
|
+
(0, class_validator_1.IsBoolean)(),
|
|
197
|
+
(0, class_validator_1.IsOptional)(),
|
|
198
|
+
__metadata("design:type", Boolean)
|
|
199
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "isPrepay", void 0);
|
|
200
|
+
__decorate([
|
|
201
|
+
(0, class_validator_1.IsNumber)(),
|
|
202
|
+
(0, class_validator_1.IsOptional)(),
|
|
203
|
+
__metadata("design:type", Number)
|
|
204
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "prepayPrice", void 0);
|
|
@@ -15,3 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./get-legacy-store-items-by-atlas-search.dto"), exports);
|
|
18
|
+
__exportStar(require("./get-store-item-ids-by-atlas-search.dto"), exports);
|