first commit

This commit is contained in:
DerJesen
2025-11-29 12:26:58 +01:00
parent 2fae31f20f
commit fe5bbc1410
142 changed files with 19585 additions and 1 deletions

5
dist/events/dto/create-event.dto.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
export declare class CreateEventDto {
name: string;
date: string;
location: string;
}

7
dist/events/dto/create-event.dto.js vendored Normal file
View File

@@ -0,0 +1,7 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CreateEventDto = void 0;
class CreateEventDto {
}
exports.CreateEventDto = CreateEventDto;
//# sourceMappingURL=create-event.dto.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"create-event.dto.js","sourceRoot":"","sources":["../../../src/events/dto/create-event.dto.ts"],"names":[],"mappings":";;;AAAA,MAAa,cAAc;CAI1B;AAJD,wCAIC"}

5
dist/events/dto/update-event.dto.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
import { CreateEventDto } from './create-event.dto';
declare const UpdateEventDto_base: import("@nestjs/mapped-types").MappedType<Partial<CreateEventDto>>;
export declare class UpdateEventDto extends UpdateEventDto_base {
}
export {};

9
dist/events/dto/update-event.dto.js vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.UpdateEventDto = void 0;
const mapped_types_1 = require("@nestjs/mapped-types");
const create_event_dto_1 = require("./create-event.dto");
class UpdateEventDto extends (0, mapped_types_1.PartialType)(create_event_dto_1.CreateEventDto) {
}
exports.UpdateEventDto = UpdateEventDto;
//# sourceMappingURL=update-event.dto.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"update-event.dto.js","sourceRoot":"","sources":["../../../src/events/dto/update-event.dto.ts"],"names":[],"mappings":";;;AAAA,uDAAmD;AACnD,yDAAoD;AAEpD,MAAa,cAAe,SAAQ,IAAA,0BAAW,EAAC,iCAAc,CAAC;CAAG;AAAlE,wCAAkE"}