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,7 @@
/**
* @publicApi
*/
export interface NestHybridApplicationOptions {
inheritAppConfig?: boolean;
deferInitialization?: boolean;
}

View File

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

View File

@@ -0,0 +1,5 @@
import { NestApplicationContextOptions } from '../nest-application-context-options.interface';
/**
* @publicApi
*/
export type NestMicroserviceOptions = NestApplicationContextOptions;

View File

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

View File

@@ -0,0 +1,22 @@
import { Observable } from 'rxjs';
import { ExecutionContext } from '../features/execution-context.interface.js';
/**
* Interface describing a global preRequest hook for microservices.
*
* Hooks are executed before guards, allowing setup of context (e.g. AsyncLocalStorage)
* that is available to all downstream enhancers.
*
* @example
* ```typescript
* const als = new AsyncLocalStorage();
* app.registerPreRequestHook((context, next) => {
* als.enterWith({ correlationId: uuid() });
* return next();
* });
* ```
*
* @publicApi
*/
export interface PreRequestHook {
(context: ExecutionContext, next: () => Observable<unknown>): Observable<unknown>;
}

View File

@@ -0,0 +1 @@
export {};