@yolo-croket-dev/amqp-access 0.5.123 → 0.5.125

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.
@@ -106,6 +106,8 @@ export declare class SellerTransactionHistory {
106
106
  isPOptionChanged?: boolean;
107
107
  /** 정산 예정일 - yyyy. MM. dd || 목표액 미도달 */
108
108
  expectSettleDate?: string;
109
+ /** 사방넷 상품 등록 여부 */
110
+ isSabang?: boolean;
109
111
  }
110
112
  export declare class SearchSellerTransactionHistoryByProcessResult {
111
113
  sellerTransactionHistories: SellerTransactionHistory[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.5.123",
3
+ "version": "0.5.125",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -47,6 +47,8 @@ export declare class RegStoreItemPayload {
47
47
  htmlContent?: string;
48
48
  /** 관리자 등록 정보 */
49
49
  adminRegInfo?: RegStoreItemAdminRegInfo;
50
+ /** 사방넷 상품 등록 여부 */
51
+ isSabang?: boolean;
50
52
  }
51
53
  export declare class RegStoreItemResult {
52
54
  itemId: string;
@@ -194,6 +194,13 @@ __decorate([
194
194
  (0, class_transformer_1.Type)(() => RegStoreItemAdminRegInfo),
195
195
  __metadata("design:type", RegStoreItemAdminRegInfo)
196
196
  ], RegStoreItemPayload.prototype, "adminRegInfo", void 0);
197
+ __decorate([
198
+ (0, class_validator_1.IsBoolean)(),
199
+ (0, class_validator_1.IsOptional)()
200
+ /** 사방넷 상품 등록 여부 */
201
+ ,
202
+ __metadata("design:type", Boolean)
203
+ ], RegStoreItemPayload.prototype, "isSabang", void 0);
197
204
  class RegStoreItemResult {
198
205
  }
199
206
  exports.RegStoreItemResult = RegStoreItemResult;