@yolo-croket-dev/amqp-access 0.0.87-jun.1 → 0.0.87-jun.3
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,5 +1,5 @@
|
|
|
1
1
|
import { UserForAdminEntity } from '@yolo-croket-dev/entity-v2/user/user-for-admin.entity';
|
|
2
|
-
export declare enum
|
|
2
|
+
export declare enum GetUsersForAdminSearchTypeEnum {
|
|
3
3
|
'날짜기준' = "\uB0A0\uC9DC\uAE30\uC900",
|
|
4
4
|
'유저아이디기준' = "\uC720\uC800\uC544\uC774\uB514\uAE30\uC900",
|
|
5
5
|
'이름기준' = "\uC774\uB984\uAE30\uC900",
|
|
@@ -10,7 +10,7 @@ export declare enum SearchTypeEnum {
|
|
|
10
10
|
export declare class GetUsersForAdminPayload {
|
|
11
11
|
limit: number;
|
|
12
12
|
page: number;
|
|
13
|
-
searchType:
|
|
13
|
+
searchType: GetUsersForAdminSearchTypeEnum;
|
|
14
14
|
regDateStart?: string;
|
|
15
15
|
regDateEnd?: string;
|
|
16
16
|
username?: string;
|
|
@@ -9,17 +9,17 @@ 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.GetUsersForAdminResult = exports.GetUsersForAdminPayload = exports.
|
|
12
|
+
exports.GetUsersForAdminResult = exports.GetUsersForAdminPayload = exports.GetUsersForAdminSearchTypeEnum = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
|
-
var
|
|
15
|
-
(function (
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
})(
|
|
14
|
+
var GetUsersForAdminSearchTypeEnum;
|
|
15
|
+
(function (GetUsersForAdminSearchTypeEnum) {
|
|
16
|
+
GetUsersForAdminSearchTypeEnum["\uB0A0\uC9DC\uAE30\uC900"] = "\uB0A0\uC9DC\uAE30\uC900";
|
|
17
|
+
GetUsersForAdminSearchTypeEnum["\uC720\uC800\uC544\uC774\uB514\uAE30\uC900"] = "\uC720\uC800\uC544\uC774\uB514\uAE30\uC900";
|
|
18
|
+
GetUsersForAdminSearchTypeEnum["\uC774\uB984\uAE30\uC900"] = "\uC774\uB984\uAE30\uC900";
|
|
19
|
+
GetUsersForAdminSearchTypeEnum["\uC774\uBA54\uC77C\uAE30\uC900"] = "\uC774\uBA54\uC77C\uAE30\uC900";
|
|
20
|
+
GetUsersForAdminSearchTypeEnum["\uD578\uB4DC\uD3F0\uAE30\uC900"] = "\uD578\uB4DC\uD3F0\uAE30\uC900";
|
|
21
|
+
GetUsersForAdminSearchTypeEnum["\uC2A4\uD1A0\uC5B4\uD0C0\uC774\uD2C0\uAE30\uC900"] = "\uC2A4\uD1A0\uC5B4\uD0C0\uC774\uD2C0\uAE30\uC900";
|
|
22
|
+
})(GetUsersForAdminSearchTypeEnum || (exports.GetUsersForAdminSearchTypeEnum = GetUsersForAdminSearchTypeEnum = {}));
|
|
23
23
|
class GetUsersForAdminPayload {
|
|
24
24
|
}
|
|
25
25
|
exports.GetUsersForAdminPayload = GetUsersForAdminPayload;
|
|
@@ -32,7 +32,7 @@ __decorate([
|
|
|
32
32
|
__metadata("design:type", Number)
|
|
33
33
|
], GetUsersForAdminPayload.prototype, "page", void 0);
|
|
34
34
|
__decorate([
|
|
35
|
-
(0, class_validator_1.IsEnum)(
|
|
35
|
+
(0, class_validator_1.IsEnum)(GetUsersForAdminSearchTypeEnum),
|
|
36
36
|
__metadata("design:type", String)
|
|
37
37
|
], GetUsersForAdminPayload.prototype, "searchType", void 0);
|
|
38
38
|
__decorate([
|
|
@@ -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("./get-user-info-by-id.dto"), exports);
|
|
18
|
+
__exportStar(require("./get-users-for-admin.dto"), exports);
|