@yolo-croket-dev/amqp-access 0.4.26-slowquery.0 → 0.4.26-slowquery.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.4.26-slowquery.0",
3
+ "version": "0.4.26-slowquery.1",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -16,6 +16,8 @@ export declare class StoreItemPriceFluctuationItem {
16
16
  beforeItemPriceForBuyer?: number;
17
17
  /** 변경이 일어난 행위 타입 */
18
18
  causeType: CAUSE_TYPE;
19
+ /** 삭제여부 (cuaseType에 따라 쿠폰 혹은 상품이 삭제 처리 되는경우 true) */
20
+ isRemove?: boolean;
19
21
  }
20
22
  export declare class StoreItemPriceFluctuationUpdateBulkPayload {
21
23
  items: StoreItemPriceFluctuationItem[];
@@ -43,6 +43,11 @@ __decorate([
43
43
  (0, class_validator_1.IsString)(),
44
44
  __metadata("design:type", String)
45
45
  ], StoreItemPriceFluctuationItem.prototype, "causeType", void 0);
46
+ __decorate([
47
+ (0, class_validator_1.IsOptional)(),
48
+ (0, class_validator_1.IsBoolean)(),
49
+ __metadata("design:type", Boolean)
50
+ ], StoreItemPriceFluctuationItem.prototype, "isRemove", void 0);
46
51
  class StoreItemPriceFluctuationUpdateBulkPayload {
47
52
  }
48
53
  exports.StoreItemPriceFluctuationUpdateBulkPayload = StoreItemPriceFluctuationUpdateBulkPayload;