@yolo-croket-dev/amqp-access 0.5.66-jun.4 → 0.5.66-jun.5

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.66-jun.4",
3
+ "version": "0.5.66-jun.5",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -0,0 +1,23 @@
1
+ import { StoreItemForStoreBotDomain } from '@yolo-croket-dev/domain/store-item/interface/store-item-for-store-bot.domain';
2
+ /**
3
+ * @author jun
4
+ * @description 스토어 봇 상품 리스트 조회 요청 DTO
5
+ */
6
+ export declare class GetStoreItemListForStoreBotPayload {
7
+ /** 페이지 */
8
+ page: number;
9
+ /** 페이지 당 상품 개수 */
10
+ limit: number;
11
+ /** 판매중 여부 */
12
+ isSelling?: boolean;
13
+ }
14
+ /**
15
+ * @author jun
16
+ * @description 스토어 봇 상품 조회 응답 DTO
17
+ */
18
+ export declare class GetStoreItemListForStoreBotResult {
19
+ /** 전체 상품 개수 (페이지가 1일때만 존재) */
20
+ allCount?: number;
21
+ /** 상품 목록 */
22
+ storeItems: StoreItemForStoreBotDomain[];
23
+ }
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetStoreItemListForStoreBotResult = exports.GetStoreItemListForStoreBotPayload = void 0;
4
+ /**
5
+ * @author jun
6
+ * @description 스토어 봇 상품 리스트 조회 요청 DTO
7
+ */
8
+ class GetStoreItemListForStoreBotPayload {
9
+ }
10
+ exports.GetStoreItemListForStoreBotPayload = GetStoreItemListForStoreBotPayload;
11
+ /**
12
+ * @author jun
13
+ * @description 스토어 봇 상품 조회 응답 DTO
14
+ */
15
+ class GetStoreItemListForStoreBotResult {
16
+ }
17
+ exports.GetStoreItemListForStoreBotResult = GetStoreItemListForStoreBotResult;
@@ -1,3 +1,4 @@
1
1
  export * from './get-store-item-for-store-bot.dto';
2
+ export * from './get-store-item-list-for-store-bot.dto';
2
3
  export * from './area-nation-city';
3
4
  export * from './category';
@@ -15,5 +15,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./get-store-item-for-store-bot.dto"), exports);
18
+ __exportStar(require("./get-store-item-list-for-store-bot.dto"), exports);
18
19
  __exportStar(require("./area-nation-city"), exports);
19
20
  __exportStar(require("./category"), exports);