Update the `main` field to point to the `lib` directory instead of `dist/lib` and add the `types` field to specify the TypeScript definition file location. This change aligns the package configuration with the actual file structure and improves TypeScript support.
The check for ExecutionContext was only considering 'guard' type, which excluded 'interceptor' type functions. This change ensures that both 'guard' and 'interceptor' types are handled correctly when retrieving the Request from the ExecutionContext.
This commit introduces an empty yarn.lock file to the dist directory to ensure consistency in the project's dependency management. The file is currently empty and will be populated as dependencies are installed and managed.
Introduce new decorators `LoggedGuard` and `LoggedInterceptor` to extend logging capabilities for NestJS guards and interceptors. This enhances the logging functionality to cover more aspects of the application, improving debugging and monitoring. The version is updated to `3.2.0-beta.1` to reflect these additions.
Added `up:beta` script to publish with the beta tag and updated `up` script to use `yarn npm publish` instead of `yarn publish` for consistency with npm commands.
The scopeKey symbol and its associated code were no longer used in the codebase. This commit removes them to clean up the code and improve maintainability.
This commit introduces LoggedGuard and LoggedInterceptor to the list of exported modules in the index.ts file, enhancing the logging capabilities of the application by making these additional decorators available for use.