@yolo-croket-dev/amqp-access 0.5.180 → 0.5.181-beta.0

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.180",
3
+ "version": "0.5.181-beta.0",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -16,9 +16,11 @@
16
16
  "postpublish": "npm run clean"
17
17
  },
18
18
  "license": "UNLICENSED",
19
+ "peerDependencies": {
20
+ "@nestjs/common": "^11.0.0"
21
+ },
19
22
  "dependencies": {
20
- "@nestjs/common": "^10.3.10",
21
- "@yolo-croket-dev/core": "1.7.17",
23
+ "@yolo-croket-dev/core": "1.7.46",
22
24
  "@yolo-croket-dev/domain": "^0.2.12",
23
25
  "@yolo-croket-dev/dto-v2": "^0.1.20",
24
26
  "@yolo-croket-dev/entity": "^0.2.43",
@@ -26,5 +28,8 @@
26
28
  "class-transformer": "^0.5.1",
27
29
  "class-validator": "^0.13.2",
28
30
  "dotenv": "^16.3.1"
31
+ },
32
+ "devDependencies": {
33
+ "@nestjs/common": "^11.1.8"
29
34
  }
30
- }
35
+ }
@@ -1,7 +1,7 @@
1
- import { WeeklyMegaDealCouponHotDealItemData } from '../../../weekly-mega-deal';
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 WeeklyMegaDealCouponHotDealItemData {
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;