@yolo-croket-dev/amqp-access 0.5.143 → 0.5.144
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
|
@@ -77,6 +77,8 @@ export declare class GetStoreItemIdsByAtlasSearchPayload {
|
|
|
77
77
|
prepayPrice?: number;
|
|
78
78
|
/** 브랜드 명 리스트 */
|
|
79
79
|
brandNames?: string[];
|
|
80
|
+
/** @description 스티커 상품 우선 노출 여부 */
|
|
81
|
+
isStickerPriority?: boolean;
|
|
80
82
|
}
|
|
81
83
|
export interface GetStoreItemIdsByAtlasSearchResult {
|
|
82
84
|
allCount: number;
|
|
@@ -221,3 +221,8 @@ __decorate([
|
|
|
221
221
|
,
|
|
222
222
|
__metadata("design:type", Array)
|
|
223
223
|
], GetStoreItemIdsByAtlasSearchPayload.prototype, "brandNames", void 0);
|
|
224
|
+
__decorate([
|
|
225
|
+
(0, class_validator_1.IsOptional)(),
|
|
226
|
+
(0, class_validator_1.IsBoolean)(),
|
|
227
|
+
__metadata("design:type", Boolean)
|
|
228
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "isStickerPriority", void 0);
|