Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import { Controller } from '@nestjs/common/interfaces/controllers/controller.interface';
import { ExceptionsHandler } from '../../exceptions/exceptions-handler';
import { ContextId } from '../../injector/instance-wrapper';
export interface ExceptionsFilter {
create(instance: Controller, callback: Function, module: string, contextId?: ContextId, inquirerId?: string): ExceptionsHandler;
}

View File

@@ -0,0 +1,2 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });

View File

@@ -0,0 +1,15 @@
import { RequestMethod } from '@nestjs/common';
export interface ExcludeRouteMetadata {
/**
* Route path.
*/
path: string;
/**
* Regular expression representing the route path.
*/
pathRegex: RegExp;
/**
* HTTP request method (e.g., GET, POST).
*/
requestMethod: RequestMethod;
}

View File

@@ -0,0 +1,2 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });

View File

@@ -0,0 +1 @@
export * from './routes.interface';

4
node_modules/@nestjs/core/router/interfaces/index.js generated vendored Normal file
View File

@@ -0,0 +1,4 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
tslib_1.__exportStar(require("./routes.interface"), exports);

View File

@@ -0,0 +1,5 @@
export interface Resolver {
resolve(instance: any, basePath: string): void;
registerNotFoundHandler(): void;
registerExceptionHandler(): void;
}

View File

@@ -0,0 +1,2 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });

View File

@@ -0,0 +1,8 @@
import { RouteParamtypes } from '@nestjs/common/enums/route-paramtypes.enum';
export interface IRouteParamsFactory {
exchangeKeyForValue<TRequest extends Record<string, any> = any, TResponse = any, TResult = any>(key: RouteParamtypes | string, data: any, { req, res, next }: {
req: TRequest;
res: TResponse;
next: Function;
}): TResult | null;
}

View File

@@ -0,0 +1,2 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });

View File

@@ -0,0 +1,32 @@
import { VersioningOptions } from '@nestjs/common';
import { VersionValue } from '@nestjs/common/interfaces';
export interface RoutePathMetadata {
/**
* Controller-level path (e.g., @Controller('resource') = "resource").
*/
ctrlPath?: string;
/**
* Method-level path (e.g., @Get('resource') = "resource").
*/
methodPath?: string;
/**
* Global route prefix specified with the "NestApplication#setGlobalPrefix" method.
*/
globalPrefix?: string;
/**
* Module-level path registered through the "RouterModule".
*/
modulePath?: string;
/**
* Controller-level version (e.g., @Controller({ version: '1.0' }) = "1.0").
*/
controllerVersion?: VersionValue;
/**
* Method-level version (e.g., @Version('1.0') = "1.0").
*/
methodVersion?: VersionValue;
/**
* API versioning options object.
*/
versioningOptions?: VersioningOptions;
}

View File

@@ -0,0 +1,2 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });

View File

@@ -0,0 +1,7 @@
import { Type } from '@nestjs/common';
export interface RouteTree {
path: string;
module?: Type<any>;
children?: (RouteTree | Type<any>)[];
}
export type Routes = RouteTree[];

View File

@@ -0,0 +1,2 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });