@yolo-croket-dev/amqp-access 0.0.37 → 0.0.38

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.
@@ -31,6 +31,7 @@ export declare class ESStoreItemSearchDataPayload {
31
31
  isAbroadShipping?: boolean;
32
32
  isPrepay?: boolean;
33
33
  prepayPrice?: number;
34
+ isExistsMaxDiscountCoupon?: boolean;
34
35
  }
35
36
  export declare class ESStoreItemSearchDataResult {
36
37
  itemAllCount: number;
@@ -142,6 +142,11 @@ __decorate([
142
142
  (0, class_validator_1.IsNumber)(),
143
143
  __metadata("design:type", Number)
144
144
  ], ESStoreItemSearchDataPayload.prototype, "prepayPrice", void 0);
145
+ __decorate([
146
+ (0, class_validator_1.IsBoolean)(),
147
+ (0, class_validator_1.IsOptional)(),
148
+ __metadata("design:type", Boolean)
149
+ ], ESStoreItemSearchDataPayload.prototype, "isExistsMaxDiscountCoupon", void 0);
145
150
  class ESStoreItemSearchDataResult {
146
151
  }
147
152
  exports.ESStoreItemSearchDataResult = ESStoreItemSearchDataResult;
@@ -47,6 +47,7 @@ export declare class EsStoreItemV2GetDatasPayload {
47
47
  prepayPrice?: number;
48
48
  /** 전체 상품명 검색 포함할지 여부 */
49
49
  isAllItemNameInclude?: boolean;
50
+ isExistsMaxDiscountCoupon?: boolean;
50
51
  }
51
52
  export declare class EsStoreItemV2GetDatasResult {
52
53
  itemAllCount: number;
@@ -166,6 +166,11 @@ __decorate([
166
166
  (0, class_validator_1.IsOptional)(),
167
167
  __metadata("design:type", Boolean)
168
168
  ], EsStoreItemV2GetDatasPayload.prototype, "isAllItemNameInclude", void 0);
169
+ __decorate([
170
+ (0, class_validator_1.IsBoolean)(),
171
+ (0, class_validator_1.IsOptional)(),
172
+ __metadata("design:type", Boolean)
173
+ ], EsStoreItemV2GetDatasPayload.prototype, "isExistsMaxDiscountCoupon", void 0);
169
174
  class EsStoreItemV2GetDatasResult {
170
175
  }
171
176
  exports.EsStoreItemV2GetDatasResult = EsStoreItemV2GetDatasResult;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.0.37",
3
+ "version": "0.0.38",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -55,6 +55,7 @@ export declare class GetStoreItemLegaciesPayload {
55
55
  isShippingFeeFree?: boolean;
56
56
  /** 전체 상품명 검색 포함할지 여부 */
57
57
  isAllItemNameInclude?: boolean;
58
+ isExistsMaxDiscountCoupon?: boolean;
58
59
  }
59
60
  export interface GetStoreItemLegaciesResult {
60
61
  maxPage: number;
@@ -163,3 +163,8 @@ __decorate([
163
163
  (0, class_validator_1.IsOptional)(),
164
164
  __metadata("design:type", Boolean)
165
165
  ], GetStoreItemLegaciesPayload.prototype, "isAllItemNameInclude", void 0);
166
+ __decorate([
167
+ (0, class_validator_1.IsBoolean)(),
168
+ (0, class_validator_1.IsOptional)(),
169
+ __metadata("design:type", Boolean)
170
+ ], GetStoreItemLegaciesPayload.prototype, "isExistsMaxDiscountCoupon", void 0);