@yolo-croket-dev/amqp-access 0.5.77-jun.1 → 0.5.77-jun.2

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.77-jun.1",
3
+ "version": "0.5.77-jun.2",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -1 +1,2 @@
1
1
  export * from './command';
2
+ export * from './query';
@@ -15,3 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./command"), exports);
18
+ __exportStar(require("./query"), exports);
@@ -0,0 +1,15 @@
1
+ import { DemandForUser } from '@yolo-croket-dev/domain/demand/interface/demand.domain';
2
+ export declare enum GetDemandsForUserSortTypeEnum {
3
+ '최신순' = "\uCD5C\uC2E0\uC21C",
4
+ '인기순' = "\uC778\uAE30\uC21C"
5
+ }
6
+ export declare class GetDemandsForUserPayload {
7
+ page: number;
8
+ limit: number;
9
+ sortType: GetDemandsForUserSortTypeEnum;
10
+ title?: string;
11
+ }
12
+ export declare class GetDemandsForUserResult {
13
+ demands: DemandForUser[];
14
+ maxPage: number;
15
+ }
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetDemandsForUserResult = exports.GetDemandsForUserPayload = exports.GetDemandsForUserSortTypeEnum = void 0;
4
+ var GetDemandsForUserSortTypeEnum;
5
+ (function (GetDemandsForUserSortTypeEnum) {
6
+ GetDemandsForUserSortTypeEnum["\uCD5C\uC2E0\uC21C"] = "\uCD5C\uC2E0\uC21C";
7
+ GetDemandsForUserSortTypeEnum["\uC778\uAE30\uC21C"] = "\uC778\uAE30\uC21C";
8
+ })(GetDemandsForUserSortTypeEnum = exports.GetDemandsForUserSortTypeEnum || (exports.GetDemandsForUserSortTypeEnum = {}));
9
+ class GetDemandsForUserPayload {
10
+ }
11
+ exports.GetDemandsForUserPayload = GetDemandsForUserPayload;
12
+ class GetDemandsForUserResult {
13
+ }
14
+ exports.GetDemandsForUserResult = GetDemandsForUserResult;
@@ -0,0 +1 @@
1
+ export * from './get-demands-for-user.dto';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./get-demands-for-user.dto"), exports);