@yolo-croket-dev/amqp-access 0.5.92-jun.10 → 0.5.92-jun.12

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.92-jun.10",
3
+ "version": "0.5.92-jun.12",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -4,6 +4,7 @@ import { StoreItemExcelLogTypeEnum } from '@yolo-croket-dev/entity-v2/store-item
4
4
  * @description 엑셀 상품 등록 로그 생성 DTO
5
5
  */
6
6
  export declare class CreateStoreItemExcelLogPayload {
7
+ excelFileName: string;
7
8
  traceId: string;
8
9
  logType: StoreItemExcelLogTypeEnum;
9
10
  totalTryCount: number;
@@ -19,6 +19,10 @@ const class_validator_1 = require("class-validator");
19
19
  class CreateStoreItemExcelLogPayload {
20
20
  }
21
21
  exports.CreateStoreItemExcelLogPayload = CreateStoreItemExcelLogPayload;
22
+ __decorate([
23
+ (0, class_validator_1.IsString)(),
24
+ __metadata("design:type", String)
25
+ ], CreateStoreItemExcelLogPayload.prototype, "excelFileName", void 0);
22
26
  __decorate([
23
27
  (0, class_validator_1.IsString)(),
24
28
  __metadata("design:type", String)
@@ -1,2 +1,2 @@
1
- export * from './reg-store-item-by-store-bot.dto';
2
1
  export * from './create-store-item-excel-log.dto';
2
+ export * from './reg-store-item-by-excel.dto';
@@ -14,5 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./reg-store-item-by-store-bot.dto"), exports);
18
17
  __exportStar(require("./create-store-item-excel-log.dto"), exports);
18
+ __exportStar(require("./reg-store-item-by-excel.dto"), exports);
@@ -16,6 +16,7 @@ export declare class RegStoreItemByExcelPayloadData extends RegStoreItemPayload
16
16
  export declare class RegStoreItemByExcelPayload {
17
17
  data: RegStoreItemByExcelPayloadData;
18
18
  sellerId: string;
19
+ excelFileName: string;
19
20
  }
20
21
  export declare class RegStoreItemByExcelResult {
21
22
  itemId: string;
@@ -65,6 +65,10 @@ __decorate([
65
65
  (0, class_validator_1.IsMongoId)(),
66
66
  __metadata("design:type", String)
67
67
  ], RegStoreItemByExcelPayload.prototype, "sellerId", void 0);
68
+ __decorate([
69
+ (0, class_validator_1.IsString)(),
70
+ __metadata("design:type", String)
71
+ ], RegStoreItemByExcelPayload.prototype, "excelFileName", void 0);
68
72
  class RegStoreItemByExcelResult {
69
73
  }
70
74
  exports.RegStoreItemByExcelResult = RegStoreItemByExcelResult;