@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 +1 -1
- package/store-item-server/dto/brand/query/get-brands-by-item-ids.dto.d.ts +1 -5
- package/store-item-server/dto/brand-bookmark/query/get-bookmarked-brands-for-buyer.dto.d.ts +3 -1
- package/store-item-server/dto/brand-bookmark/query/get-bookmarked-brands-for-buyer.dto.js +3 -2
package/package.json
CHANGED
|
@@ -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
|
|
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
|
-
|
|
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["
|
|
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
|
}
|