@cosmneo/onion-lasagna 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1923,6 +1923,7 @@ var InvalidRequestError = class _InvalidRequestError extends CodedError {
1923
1923
 
1924
1924
  // src/backend/core/onion-layers/presentation/classes/base-controller.class.ts
1925
1925
  var BaseController = class _BaseController {
1926
+ /* eslint-enable @typescript-eslint/no-invalid-void-type */
1926
1927
  /**
1927
1928
  * Creates a new BaseController instance.
1928
1929
  *
@@ -1941,6 +1942,7 @@ var BaseController = class _BaseController {
1941
1942
  * @param config - Controller configuration
1942
1943
  * @returns A new BaseController instance
1943
1944
  */
1945
+ /* eslint-disable @typescript-eslint/no-invalid-void-type */
1944
1946
  static create(config) {
1945
1947
  return new _BaseController(config.requestMapper, config.useCase, config.responseMapper);
1946
1948
  }
@@ -2091,6 +2093,7 @@ function createAllowAllGuard() {
2091
2093
  });
2092
2094
  }
2093
2095
  var GuardedController = class _GuardedController extends BaseController {
2096
+ /* eslint-enable @typescript-eslint/no-invalid-void-type */
2094
2097
  /** The access guard function for this controller. */
2095
2098
  accessGuard;
2096
2099
  /**
@@ -2111,6 +2114,7 @@ var GuardedController = class _GuardedController extends BaseController {
2111
2114
  * @param config - Controller configuration including optional access guard
2112
2115
  * @returns A new GuardedController instance
2113
2116
  */
2117
+ /* eslint-disable @typescript-eslint/no-invalid-void-type */
2114
2118
  static create(config) {
2115
2119
  return new _GuardedController(
2116
2120
  config.requestMapper,