@yolo-croket-dev/amqp-access 0.5.120 → 0.5.121

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.120",
3
+ "version": "0.5.121",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -0,0 +1,9 @@
1
+ import { GetItemsForCouponHotDealResult } from '../../summer-black-friday.modules';
2
+ export declare class GetStoreItemsByFreeBlackFridayTitlePayload {
3
+ title: string;
4
+ limit: number;
5
+ searchAfter?: string;
6
+ searchBefore?: string;
7
+ }
8
+ export declare class GetStoreItemsByFreeBlackFridayTitleResult extends GetItemsForCouponHotDealResult {
9
+ }
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.GetStoreItemsByFreeBlackFridayTitleResult = exports.GetStoreItemsByFreeBlackFridayTitlePayload = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ const summer_black_friday_modules_1 = require("../../summer-black-friday.modules");
15
+ class GetStoreItemsByFreeBlackFridayTitlePayload {
16
+ }
17
+ exports.GetStoreItemsByFreeBlackFridayTitlePayload = GetStoreItemsByFreeBlackFridayTitlePayload;
18
+ __decorate([
19
+ (0, class_validator_1.IsString)(),
20
+ __metadata("design:type", String)
21
+ ], GetStoreItemsByFreeBlackFridayTitlePayload.prototype, "title", void 0);
22
+ __decorate([
23
+ (0, class_validator_1.IsNumber)(),
24
+ __metadata("design:type", Number)
25
+ ], GetStoreItemsByFreeBlackFridayTitlePayload.prototype, "limit", void 0);
26
+ __decorate([
27
+ (0, class_validator_1.IsString)(),
28
+ (0, class_validator_1.IsOptional)(),
29
+ __metadata("design:type", String)
30
+ ], GetStoreItemsByFreeBlackFridayTitlePayload.prototype, "searchAfter", void 0);
31
+ __decorate([
32
+ (0, class_validator_1.IsString)(),
33
+ (0, class_validator_1.IsOptional)(),
34
+ __metadata("design:type", String)
35
+ ], GetStoreItemsByFreeBlackFridayTitlePayload.prototype, "searchBefore", void 0);
36
+ class GetStoreItemsByFreeBlackFridayTitleResult extends summer_black_friday_modules_1.GetItemsForCouponHotDealResult {
37
+ }
38
+ exports.GetStoreItemsByFreeBlackFridayTitleResult = GetStoreItemsByFreeBlackFridayTitleResult;
@@ -23,3 +23,4 @@ export * from './get-store-item-count-for-brand.dto';
23
23
  export * from './get-store-infos-by-item-ids.dto';
24
24
  export * from './get-coupon-codes-by-selling-item.dto';
25
25
  export * from './get-selling-store-items-for-chat.dto';
26
+ export * from './get-store-items-by-free-black-friday-title.dto';
@@ -39,3 +39,4 @@ __exportStar(require("./get-store-item-count-for-brand.dto"), exports);
39
39
  __exportStar(require("./get-store-infos-by-item-ids.dto"), exports);
40
40
  __exportStar(require("./get-coupon-codes-by-selling-item.dto"), exports);
41
41
  __exportStar(require("./get-selling-store-items-for-chat.dto"), exports);
42
+ __exportStar(require("./get-store-items-by-free-black-friday-title.dto"), exports);
@@ -6,11 +6,19 @@ export declare enum MegaDealTypeEnum {
6
6
  SNS_핫이슈템 = "SNSHotIssuePage",
7
7
  쿠폰_핫딜존 = "CouponHotDealZonePage",
8
8
  SUPER_WEEK = "SuperWeekPage",
9
- 트렌드_상품존 = "TrendProductZonePage"
9
+ 트렌드_상품존 = "TrendProductZonePage",
10
+ 프리블프 = "FreeBlackFridayPage"
10
11
  }
11
12
  export interface MegaDealTab {
12
13
  title: string;
13
14
  type: MegaDealTypeEnum;
15
+ /** 프리블프용 데이터 */
16
+ subTitle?: string;
17
+ tabImgInfo?: {
18
+ imgUrl: string;
19
+ couponCode?: string;
20
+ };
21
+ titleImgUrl?: string;
14
22
  }
15
23
  export declare class GetSummerBlackFridayTabResult {
16
24
  tabInfos: MegaDealTab[];
@@ -12,6 +12,7 @@ var MegaDealTypeEnum;
12
12
  // 추가
13
13
  MegaDealTypeEnum["SUPER_WEEK"] = "SuperWeekPage";
14
14
  MegaDealTypeEnum["\uD2B8\uB80C\uB4DC_\uC0C1\uD488\uC874"] = "TrendProductZonePage";
15
+ MegaDealTypeEnum["\uD504\uB9AC\uBE14\uD504"] = "FreeBlackFridayPage";
15
16
  })(MegaDealTypeEnum || (exports.MegaDealTypeEnum = MegaDealTypeEnum = {}));
16
17
  class GetSummerBlackFridayTabResult {
17
18
  }