@yolo-croket-dev/amqp-access 0.7.213 → 0.7.214

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.
@@ -41,6 +41,8 @@ export declare class SellerTransactionHistory {
41
41
  itemName: string;
42
42
  /** 상품 옵션 */
43
43
  optionName: string;
44
+ /** 셀러 상품 메모 */
45
+ sellerMemo: string;
44
46
  /** 구매 개수 */
45
47
  optionNumber: string;
46
48
  /** 품번 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.7.213",
3
+ "version": "0.7.214",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -1,7 +1,8 @@
1
+ export declare const STORE_ITEM_SELLER_MEMO_MAX_LENGTH = 1000;
1
2
  /**
2
3
  * @author jun
3
4
  * @description 셀러 상품 관리 메모 수정 요청
4
- * @process 상품 식별자와 500자 이하 메모를 검증한다.
5
+ * @process 상품 식별자와 1,000자 이하 메모를 검증한다.
5
6
  */
6
7
  export declare class UpdateStoreItemSellerMemoPayload {
7
8
  itemId: string;
@@ -9,12 +9,13 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.UpdateStoreItemSellerMemoPayload = void 0;
12
+ exports.UpdateStoreItemSellerMemoPayload = exports.STORE_ITEM_SELLER_MEMO_MAX_LENGTH = void 0;
13
13
  const class_validator_1 = require("class-validator");
14
+ exports.STORE_ITEM_SELLER_MEMO_MAX_LENGTH = 1000;
14
15
  /**
15
16
  * @author jun
16
17
  * @description 셀러 상품 관리 메모 수정 요청
17
- * @process 상품 식별자와 500자 이하 메모를 검증한다.
18
+ * @process 상품 식별자와 1,000자 이하 메모를 검증한다.
18
19
  */
19
20
  class UpdateStoreItemSellerMemoPayload {
20
21
  }
@@ -25,6 +26,6 @@ __decorate([
25
26
  ], UpdateStoreItemSellerMemoPayload.prototype, "itemId", void 0);
26
27
  __decorate([
27
28
  (0, class_validator_1.IsString)(),
28
- (0, class_validator_1.MaxLength)(500),
29
+ (0, class_validator_1.MaxLength)(exports.STORE_ITEM_SELLER_MEMO_MAX_LENGTH),
29
30
  __metadata("design:type", String)
30
31
  ], UpdateStoreItemSellerMemoPayload.prototype, "sellerMemo", void 0);