@yolo-croket-dev/amqp-access 0.5.180 → 0.5.181-beta.1
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 +2 -2
- package/store-item-server/dto/summer-black-friday.modules/main-black-friday/black-friday-top-rank-tab/query/get-store-items-by-top-rank-tab.dto.d.ts +2 -2
- package/store-item-server/dto/summer-black-friday.modules/weekly-mega-deal/query/get-items-for-coupon-hot-deal.dto.d.ts +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yolo-croket-dev/amqp-access",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.181-beta.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "Yolo Co., Ltd.",
|
|
6
6
|
"description": "크로켓 amqp-access npm",
|
|
@@ -27,4 +27,4 @@
|
|
|
27
27
|
"class-validator": "^0.13.2",
|
|
28
28
|
"dotenv": "^16.3.1"
|
|
29
29
|
}
|
|
30
|
-
}
|
|
30
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { StoreItemLegacyEntity } from '@yolo-croket-dev/entity/src/store-item/store-item-legacy.entity';
|
|
2
2
|
export declare class GetStoreItemsByTopRankTabPayload {
|
|
3
3
|
blackFridayTopRankTabId: string;
|
|
4
4
|
topRankTitle: string;
|
|
5
5
|
}
|
|
6
|
-
export interface GetStoreItemsByTopRankTabResult extends
|
|
6
|
+
export interface GetStoreItemsByTopRankTabResult extends StoreItemLegacyEntity {
|
|
7
7
|
}
|
|
@@ -5,14 +5,19 @@ export interface WeeklyMegaDealCouponHotDealItemData {
|
|
|
5
5
|
itemImg: string;
|
|
6
6
|
itemName: string;
|
|
7
7
|
itemPriceForBuyer: number;
|
|
8
|
+
isShipping: boolean;
|
|
8
9
|
shippingFee: number;
|
|
9
10
|
isBooked: boolean;
|
|
10
11
|
stickerInfo?: StoreItemLegacyStickerInfo;
|
|
11
12
|
maxDiscountCouponPriceInfo?: MaxDiscountCouponPriceInfo;
|
|
12
13
|
isAbroadShipping: boolean;
|
|
13
14
|
regularPrice?: number;
|
|
15
|
+
storeTitle: string;
|
|
16
|
+
area: string;
|
|
17
|
+
nation: string;
|
|
18
|
+
remainCount: number;
|
|
19
|
+
/** @deprecated 기존 legacy api 에서 없던 값 */
|
|
14
20
|
isSoldOut?: boolean;
|
|
15
|
-
storeTitle?: string;
|
|
16
21
|
}
|
|
17
22
|
export declare class GetItemsForCouponHotDealPayload {
|
|
18
23
|
searchAfter?: string;
|