@yolo-croket-dev/amqp-access 0.5.178 → 0.5.179
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
CHANGED
|
@@ -56,6 +56,8 @@ export declare class GetStoreItemLegaciesPayload {
|
|
|
56
56
|
/** 전체 상품명 검색 포함할지 여부 */
|
|
57
57
|
isAllItemNameInclude?: boolean;
|
|
58
58
|
isExistsMaxDiscountCoupon?: boolean;
|
|
59
|
+
/** 브랜드 명 리스트 */
|
|
60
|
+
brandNames?: string[];
|
|
59
61
|
}
|
|
60
62
|
export interface GetStoreItemLegaciesResult {
|
|
61
63
|
maxPage: number;
|
|
@@ -168,3 +168,11 @@ __decorate([
|
|
|
168
168
|
(0, class_validator_1.IsOptional)(),
|
|
169
169
|
__metadata("design:type", Boolean)
|
|
170
170
|
], GetStoreItemLegaciesPayload.prototype, "isExistsMaxDiscountCoupon", void 0);
|
|
171
|
+
__decorate([
|
|
172
|
+
(0, class_validator_1.IsArray)(),
|
|
173
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
174
|
+
(0, class_validator_1.IsOptional)()
|
|
175
|
+
/** 브랜드 명 리스트 */
|
|
176
|
+
,
|
|
177
|
+
__metadata("design:type", Array)
|
|
178
|
+
], GetStoreItemLegaciesPayload.prototype, "brandNames", void 0);
|