backend base

This commit is contained in:
2025-07-15 17:32:19 +09:00
parent 99e08bb02f
commit 6b009b7c22
68 changed files with 13865 additions and 0 deletions

4
backend/dist/auth/dto/login-user.dto.d.ts vendored Executable file
View File

@@ -0,0 +1,4 @@
export declare class LoginUserDto {
readonly name: string;
readonly password: string;
}

28
backend/dist/auth/dto/login-user.dto.js vendored Executable file
View File

@@ -0,0 +1,28 @@
"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
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;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.LoginUserDto = void 0;
const class_validator_1 = require("class-validator");
class LoginUserDto {
name;
password;
}
exports.LoginUserDto = LoginUserDto;
__decorate([
(0, class_validator_1.IsString)(),
__metadata("design:type", String)
], LoginUserDto.prototype, "name", void 0);
__decorate([
(0, class_validator_1.IsString)(),
(0, class_validator_1.MinLength)(4),
__metadata("design:type", String)
], LoginUserDto.prototype, "password", void 0);
//# sourceMappingURL=login-user.dto.js.map

1
backend/dist/auth/dto/login-user.dto.js.map vendored Executable file
View File

@@ -0,0 +1 @@
{"version":3,"file":"login-user.dto.js","sourceRoot":"","sources":["../../../src/auth/dto/login-user.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAsD;AAEtD,MAAa,YAAY;IAEZ,IAAI,CAAS;IAIb,QAAQ,CAAS;CAC7B;AAPD,oCAOC;AALY;IADR,IAAA,0BAAQ,GAAE;;0CACW;AAIb;IAFR,IAAA,0BAAQ,GAAE;IACV,IAAA,2BAAS,EAAC,CAAC,CAAC;;8CACa"}