@yolo-croket-dev/amqp-access 0.5.178 → 0.5.180-sj

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.5.178",
3
+ "version": "0.5.180-sj",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -21,10 +21,10 @@
21
21
  "@yolo-croket-dev/core": "1.7.17",
22
22
  "@yolo-croket-dev/domain": "^0.2.12",
23
23
  "@yolo-croket-dev/dto-v2": "^0.1.20",
24
- "@yolo-croket-dev/entity": "^0.2.41",
24
+ "@yolo-croket-dev/entity": "^0.2.43-sj",
25
25
  "@yolo-croket-dev/entity-v2": "^0.2.54",
26
26
  "class-transformer": "^0.5.1",
27
27
  "class-validator": "^0.13.2",
28
28
  "dotenv": "^16.3.1"
29
29
  }
30
- }
30
+ }
@@ -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);
@@ -10,7 +10,7 @@ export declare class SearchRegularPriceItemsForAdminPayload {
10
10
  itemId?: string;
11
11
  itemName?: string;
12
12
  }
13
- export interface SearchRegularPriceItemsForAdminItem extends Pick<StoreItemEntity, '_id' | 'itemName' | 'itemPriceForBuyer' | 'regularPrice' | 'regDate' | 'lastModifyDate'> {
13
+ export interface SearchRegularPriceItemsForAdminItem extends Pick<StoreItemEntity, '_id' | 'itemName' | 'itemPriceForBuyer' | 'regularPriceInfo'> {
14
14
  }
15
15
  export declare class SearchRegularPriceItemsForAdminResult {
16
16
  storeItems: SearchRegularPriceItemsForAdminItem[];