@yolo-croket-dev/amqp-access 0.0.37 → 0.0.38
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/es-store-item-v1/query/es-store-item-search-data.dto.d.ts +1 -0
- package/elastic-service/dto/es-store-item-v1/query/es-store-item-search-data.dto.js +5 -0
- package/elastic-service/dto/es-store-item-v2/query/es-store-item-v2-get-datas.dto.d.ts +1 -0
- package/elastic-service/dto/es-store-item-v2/query/es-store-item-v2-get-datas.dto.js +5 -0
- package/package.json +1 -1
- package/store-item-server/dto/store-item/query/get-store-item-legacies.dto.d.ts +1 -0
- package/store-item-server/dto/store-item/query/get-store-item-legacies.dto.js +5 -0
|
@@ -142,6 +142,11 @@ __decorate([
|
|
|
142
142
|
(0, class_validator_1.IsNumber)(),
|
|
143
143
|
__metadata("design:type", Number)
|
|
144
144
|
], ESStoreItemSearchDataPayload.prototype, "prepayPrice", void 0);
|
|
145
|
+
__decorate([
|
|
146
|
+
(0, class_validator_1.IsBoolean)(),
|
|
147
|
+
(0, class_validator_1.IsOptional)(),
|
|
148
|
+
__metadata("design:type", Boolean)
|
|
149
|
+
], ESStoreItemSearchDataPayload.prototype, "isExistsMaxDiscountCoupon", void 0);
|
|
145
150
|
class ESStoreItemSearchDataResult {
|
|
146
151
|
}
|
|
147
152
|
exports.ESStoreItemSearchDataResult = ESStoreItemSearchDataResult;
|
|
@@ -47,6 +47,7 @@ export declare class EsStoreItemV2GetDatasPayload {
|
|
|
47
47
|
prepayPrice?: number;
|
|
48
48
|
/** 전체 상품명 검색 포함할지 여부 */
|
|
49
49
|
isAllItemNameInclude?: boolean;
|
|
50
|
+
isExistsMaxDiscountCoupon?: boolean;
|
|
50
51
|
}
|
|
51
52
|
export declare class EsStoreItemV2GetDatasResult {
|
|
52
53
|
itemAllCount: number;
|
|
@@ -166,6 +166,11 @@ __decorate([
|
|
|
166
166
|
(0, class_validator_1.IsOptional)(),
|
|
167
167
|
__metadata("design:type", Boolean)
|
|
168
168
|
], EsStoreItemV2GetDatasPayload.prototype, "isAllItemNameInclude", void 0);
|
|
169
|
+
__decorate([
|
|
170
|
+
(0, class_validator_1.IsBoolean)(),
|
|
171
|
+
(0, class_validator_1.IsOptional)(),
|
|
172
|
+
__metadata("design:type", Boolean)
|
|
173
|
+
], EsStoreItemV2GetDatasPayload.prototype, "isExistsMaxDiscountCoupon", void 0);
|
|
169
174
|
class EsStoreItemV2GetDatasResult {
|
|
170
175
|
}
|
|
171
176
|
exports.EsStoreItemV2GetDatasResult = EsStoreItemV2GetDatasResult;
|
package/package.json
CHANGED
|
@@ -163,3 +163,8 @@ __decorate([
|
|
|
163
163
|
(0, class_validator_1.IsOptional)(),
|
|
164
164
|
__metadata("design:type", Boolean)
|
|
165
165
|
], GetStoreItemLegaciesPayload.prototype, "isAllItemNameInclude", void 0);
|
|
166
|
+
__decorate([
|
|
167
|
+
(0, class_validator_1.IsBoolean)(),
|
|
168
|
+
(0, class_validator_1.IsOptional)(),
|
|
169
|
+
__metadata("design:type", Boolean)
|
|
170
|
+
], GetStoreItemLegaciesPayload.prototype, "isExistsMaxDiscountCoupon", void 0);
|