@yolo-croket-dev/amqp-access 0.0.23-jun.2 → 0.0.23-jun.4
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/elastic-service/dto/elastic-search-store-item-v2/query/es-store-item-v2-get-datas.dto.d.ts
CHANGED
|
@@ -42,6 +42,8 @@ export declare class EsStoreItemV2GetDatasPayload {
|
|
|
42
42
|
isAbroadShipping?: boolean;
|
|
43
43
|
isPrepay?: boolean;
|
|
44
44
|
prepayPrice?: number;
|
|
45
|
+
/** 전체 상품명 검색 포함할지 여부 */
|
|
46
|
+
isAllItemNameInclude?: boolean;
|
|
45
47
|
}
|
|
46
48
|
export declare class EsStoreItemV2GetDatasResult {
|
|
47
49
|
itemAllCount: number;
|
package/elastic-service/dto/elastic-search-store-item-v2/query/es-store-item-v2-get-datas.dto.js
CHANGED
|
@@ -156,6 +156,11 @@ __decorate([
|
|
|
156
156
|
(0, class_validator_1.IsNumber)(),
|
|
157
157
|
__metadata("design:type", Number)
|
|
158
158
|
], EsStoreItemV2GetDatasPayload.prototype, "prepayPrice", void 0);
|
|
159
|
+
__decorate([
|
|
160
|
+
(0, class_validator_1.IsString)(),
|
|
161
|
+
(0, class_validator_1.IsOptional)(),
|
|
162
|
+
__metadata("design:type", Boolean)
|
|
163
|
+
], EsStoreItemV2GetDatasPayload.prototype, "isAllItemNameInclude", void 0);
|
|
159
164
|
class EsStoreItemV2GetDatasResult {
|
|
160
165
|
}
|
|
161
166
|
exports.EsStoreItemV2GetDatasResult = EsStoreItemV2GetDatasResult;
|