@yolo-croket-dev/amqp-access 0.2.65-jun.0 → 0.2.65

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.2.65-jun.0",
3
+ "version": "0.2.65",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -8,4 +8,3 @@ export * from './get-selling-item-ids-by-theme-id.dto';
8
8
  export * from './search-store-item-name-by-id.dto';
9
9
  export * from './atlas-search';
10
10
  export * from './get-selling-item-ids-by-catagory.dto';
11
- export * from './get-store-items-for-update-brand.dto';
@@ -24,4 +24,3 @@ __exportStar(require("./get-selling-item-ids-by-theme-id.dto"), exports);
24
24
  __exportStar(require("./search-store-item-name-by-id.dto"), exports);
25
25
  __exportStar(require("./atlas-search"), exports);
26
26
  __exportStar(require("./get-selling-item-ids-by-catagory.dto"), exports);
27
- __exportStar(require("./get-store-items-for-update-brand.dto"), exports);
@@ -1,18 +0,0 @@
1
- export declare class GetStoreItemsForUpdateBrandPayload {
2
- page: number;
3
- limit: number;
4
- startRegDate: Date | string;
5
- endRegDate: Date | string;
6
- }
7
- export declare class GetStoreItemsForUpdateBrandResult {
8
- items: GetStoreItemsForUpdateBrandItem[];
9
- totalCount?: number;
10
- }
11
- export declare class GetStoreItemsForUpdateBrandItem {
12
- itemId: string;
13
- itemName: string;
14
- sellerName: string;
15
- sellerUserId: string;
16
- mainCategory: string;
17
- subCategory: string;
18
- }
@@ -1,39 +0,0 @@
1
- "use strict";
2
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
- return c > 3 && r && Object.defineProperty(target, key, r), r;
7
- };
8
- var __metadata = (this && this.__metadata) || function (k, v) {
9
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.GetStoreItemsForUpdateBrandItem = exports.GetStoreItemsForUpdateBrandResult = exports.GetStoreItemsForUpdateBrandPayload = void 0;
13
- const class_validator_1 = require("class-validator");
14
- class GetStoreItemsForUpdateBrandPayload {
15
- }
16
- exports.GetStoreItemsForUpdateBrandPayload = GetStoreItemsForUpdateBrandPayload;
17
- __decorate([
18
- (0, class_validator_1.IsNumber)(),
19
- __metadata("design:type", Number)
20
- ], GetStoreItemsForUpdateBrandPayload.prototype, "page", void 0);
21
- __decorate([
22
- (0, class_validator_1.IsNumber)(),
23
- __metadata("design:type", Number)
24
- ], GetStoreItemsForUpdateBrandPayload.prototype, "limit", void 0);
25
- __decorate([
26
- (0, class_validator_1.IsDateString)(),
27
- __metadata("design:type", Object)
28
- ], GetStoreItemsForUpdateBrandPayload.prototype, "startRegDate", void 0);
29
- __decorate([
30
- (0, class_validator_1.IsDateString)(),
31
- __metadata("design:type", Object)
32
- ], GetStoreItemsForUpdateBrandPayload.prototype, "endRegDate", void 0);
33
- class GetStoreItemsForUpdateBrandResult {
34
- }
35
- exports.GetStoreItemsForUpdateBrandResult = GetStoreItemsForUpdateBrandResult;
36
- // 상품명, 상품ID, 셀러명, 셀러의 유저ID, 대카테고리, 소카테고리
37
- class GetStoreItemsForUpdateBrandItem {
38
- }
39
- exports.GetStoreItemsForUpdateBrandItem = GetStoreItemsForUpdateBrandItem;