@yolo-croket-dev/amqp-access 0.5.80 → 0.5.81-sj1

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.80",
3
+ "version": "0.5.81-sj1",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -2,9 +2,5 @@ import { BrandForBuyerEntity } from '@yolo-croket-dev/entity-v2';
2
2
  export declare class GetBrandsByItemIdsPayload {
3
3
  itemIds: string[];
4
4
  }
5
- interface BrandBuyerInfo extends Pick<BrandForBuyerEntity, '_id' | 'brandName' | 'engBrandName' | 'isBookmarked'> {
5
+ export interface GetBrandsByItemIdsResult extends Pick<BrandForBuyerEntity, '_id' | 'brandName' | 'engBrandName' | 'isBookmarked'> {
6
6
  }
7
- export interface GetBrandsByItemIdsResult {
8
- brands: BrandBuyerInfo[];
9
- }
10
- export {};
@@ -1,6 +1,8 @@
1
1
  import { BrandForBuyerEntity } from '@yolo-croket-dev/entity-v2';
2
2
  export declare enum BrandSortTypeEnum {
3
- RECENTLY_BOOKMARKED = "RECENTLY_BOOKMARKED"
3
+ '최근_찜한_순' = "\uCD5C\uADFC \uCC1C\uD55C \uC21C",
4
+ '인기순' = "\uC778\uAE30\uC21C",
5
+ 'ㄱㄴㄷ순' = "\u3131\u3134\u3137\uC21C"
4
6
  }
5
7
  export declare class GetBookmarkedBrandsForBuyerPayload {
6
8
  page: number;
@@ -13,8 +13,9 @@ exports.GetBookmarkedBrandsForBuyerResult = exports.GetBookmarkedBrandsForBuyerP
13
13
  const class_validator_1 = require("class-validator");
14
14
  var BrandSortTypeEnum;
15
15
  (function (BrandSortTypeEnum) {
16
- // 최근 찜한
17
- BrandSortTypeEnum["RECENTLY_BOOKMARKED"] = "RECENTLY_BOOKMARKED";
16
+ BrandSortTypeEnum["\uCD5C\uADFC_\uCC1C\uD55C_\uC21C"] = "\uCD5C\uADFC \uCC1C\uD55C \uC21C";
17
+ BrandSortTypeEnum["\uC778\uAE30\uC21C"] = "\uC778\uAE30\uC21C";
18
+ BrandSortTypeEnum["\u3131\u3134\u3137\uC21C"] = "\u3131\u3134\u3137\uC21C";
18
19
  })(BrandSortTypeEnum || (exports.BrandSortTypeEnum = BrandSortTypeEnum = {}));
19
20
  class GetBookmarkedBrandsForBuyerPayload {
20
21
  }