@navios/core 1.0.0-alpha.2 → 1.0.0-alpha.4

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.
Files changed (93) hide show
  1. package/CHANGELOG.md +90 -0
  2. package/lib/{index-BJjk2X1S.d.mts → index-6S7veHKD.d.mts} +845 -294
  3. package/lib/index-6S7veHKD.d.mts.map +1 -0
  4. package/lib/{index-DZ6NU03y.d.cts → index-r0i2txmg.d.cts} +845 -294
  5. package/lib/index-r0i2txmg.d.cts.map +1 -0
  6. package/lib/index.cjs +4420 -84
  7. package/lib/index.cjs.map +1 -0
  8. package/lib/index.d.cts +2 -2
  9. package/lib/index.d.mts +2 -2
  10. package/lib/index.mjs +4328 -3
  11. package/lib/index.mjs.map +1 -0
  12. package/lib/legacy-compat/index.cjs +41 -126
  13. package/lib/legacy-compat/index.cjs.map +1 -1
  14. package/lib/legacy-compat/index.d.cts +4 -60
  15. package/lib/legacy-compat/index.d.cts.map +1 -1
  16. package/lib/legacy-compat/index.d.mts +4 -60
  17. package/lib/legacy-compat/index.d.mts.map +1 -1
  18. package/lib/legacy-compat/index.mjs +14 -119
  19. package/lib/legacy-compat/index.mjs.map +1 -1
  20. package/lib/navios.factory-BanZIvtR.cjs +4134 -0
  21. package/lib/navios.factory-BanZIvtR.cjs.map +1 -0
  22. package/lib/navios.factory-C75yZCoD.mjs +3831 -0
  23. package/lib/navios.factory-C75yZCoD.mjs.map +1 -0
  24. package/lib/testing/index.cjs +3 -3
  25. package/lib/testing/index.cjs.map +1 -1
  26. package/lib/testing/index.d.cts +1 -1
  27. package/lib/testing/index.d.mts +1 -1
  28. package/lib/testing/index.mjs +2 -2
  29. package/lib/tokens-4J9sredA.mjs +100 -0
  30. package/lib/tokens-4J9sredA.mjs.map +1 -0
  31. package/lib/tokens-BuXXB01L.cjs +196 -0
  32. package/lib/tokens-BuXXB01L.cjs.map +1 -0
  33. package/lib/{use-guards.decorator-Be_QUx6b.mjs → use-guards.decorator-BecoQSmE.mjs} +3 -70
  34. package/lib/use-guards.decorator-BecoQSmE.mjs.map +1 -0
  35. package/lib/{use-guards.decorator-B6tghdxM.cjs → use-guards.decorator-DgD-kxF5.cjs} +7 -158
  36. package/lib/use-guards.decorator-DgD-kxF5.cjs.map +1 -0
  37. package/package.json +4 -4
  38. package/src/__tests__/attribute.factory.spec.mts +300 -0
  39. package/src/__tests__/console-logger.service.spec.mts +312 -0
  40. package/src/__tests__/guard-runner.service.spec.mts +399 -0
  41. package/src/__tests__/logger.service.spec.mts +147 -0
  42. package/src/__tests__/responders.spec.mts +6 -5
  43. package/src/factories/adapter.factory.mts +20 -0
  44. package/src/factories/endpoint-adapter.factory.mts +1 -1
  45. package/src/factories/http-adapter.factory.mts +1 -1
  46. package/src/factories/index.mts +1 -0
  47. package/src/factories/multipart-adapter.factory.mts +1 -1
  48. package/src/factories/reply.factory.mts +1 -1
  49. package/src/factories/request.factory.mts +1 -1
  50. package/src/factories/stream-adapter.factory.mts +1 -1
  51. package/src/factories/xml-stream-adapter.factory.mts +1 -1
  52. package/src/index.mts +1 -0
  53. package/src/interfaces/abstract-adapter.interface.mts +32 -0
  54. package/src/interfaces/abstract-http-adapter.interface.mts +27 -20
  55. package/src/interfaces/abstract-http-handler-adapter.interface.mts +86 -2
  56. package/src/interfaces/adapter-environment.interface.mts +74 -0
  57. package/src/interfaces/index.mts +2 -0
  58. package/src/interfaces/plugin.interface.mts +50 -16
  59. package/src/legacy-compat/attribute.factory.mts +2 -2
  60. package/src/legacy-compat/decorators/controller.decorator.mts +1 -1
  61. package/src/legacy-compat/decorators/endpoint.decorator.mts +1 -1
  62. package/src/legacy-compat/decorators/header.decorator.mts +2 -1
  63. package/src/legacy-compat/decorators/http-code.decorator.mts +2 -1
  64. package/src/legacy-compat/decorators/index.mts +2 -2
  65. package/src/legacy-compat/decorators/module.decorator.mts +1 -1
  66. package/src/legacy-compat/decorators/multipart.decorator.mts +1 -1
  67. package/src/legacy-compat/decorators/stream.decorator.mts +1 -1
  68. package/src/legacy-compat/decorators/use-guards.decorator.mts +1 -1
  69. package/src/legacy-compat/index.mts +10 -5
  70. package/src/logger/console-logger.service.mts +97 -7
  71. package/src/metadata/module.metadata.mts +43 -0
  72. package/src/navios.application.mts +172 -60
  73. package/src/navios.environment.mts +22 -12
  74. package/src/navios.factory.mts +31 -10
  75. package/src/services/abstract-handler-adapter.service.mts +366 -0
  76. package/src/services/index.mts +1 -0
  77. package/src/services/module-loader.service.mts +1 -0
  78. package/src/tokens/adapter.token.mts +6 -0
  79. package/src/tokens/http-adapter.token.mts +1 -1
  80. package/src/tokens/index.mts +1 -0
  81. package/src/utils/adapter-supports.util.mts +47 -0
  82. package/src/utils/index.mts +1 -0
  83. package/lib/index-BJjk2X1S.d.mts.map +0 -1
  84. package/lib/index-DZ6NU03y.d.cts.map +0 -1
  85. package/lib/src-C46ePe3d.cjs +0 -8022
  86. package/lib/src-C46ePe3d.cjs.map +0 -1
  87. package/lib/src-K2k0riYJ.mjs +0 -7587
  88. package/lib/src-K2k0riYJ.mjs.map +0 -1
  89. package/lib/use-guards.decorator-B6tghdxM.cjs.map +0 -1
  90. package/lib/use-guards.decorator-Be_QUx6b.mjs.map +0 -1
  91. package/src/legacy-compat/context-compat.mts +0 -95
  92. package/src/legacy-compat/decorators/factory.decorator.mts +0 -37
  93. package/src/legacy-compat/decorators/injectable.decorator.mts +0 -41
@@ -1,7 +1,8 @@
1
- import { Cn as ControllerOptions, an as ModuleMetadata, at as MultipartResult, bn as EndpointParams, gn as HandlerMetadata, gt as HttpHeader, it as MultipartParams, nt as StreamParams, st as ModuleOptions, un as ControllerMetadata, vt as CanActivate, xn as EndpointResult } from "../index-DZ6NU03y.cjs";
2
- import { ClassType, ClassTypeWithInstance, FactoryOptions, InjectableOptions, InjectionToken } from "@navios/di";
1
+ import { Bn as ControllerOptions, Dn as ControllerMetadata, Et as HttpHeader, Ln as EndpointParams, Nn as HandlerMetadata, Ot as CanActivate, Rn as EndpointResult, _t as ModuleOptions, ft as StreamParams, ht as MultipartResult, mt as MultipartParams, xn as ModuleMetadata } from "../index-r0i2txmg.cjs";
2
+ import { ClassType, ClassTypeWithInstance, InjectionToken } from "@navios/di";
3
3
  import { ZodType, z as z$1 } from "zod/v4";
4
4
  import { BaseEndpointOptions, EndpointHandler, EndpointOptions, RequestArgs, StreamHandler } from "@navios/builder";
5
+ import { Factory, FactoryOptions, Injectable, InjectableOptions, createClassContext, createMethodContext } from "@navios/di/legacy-compat";
5
6
 
6
7
  //#region src/legacy-compat/decorators/module.decorator.d.mts
7
8
 
@@ -210,48 +211,6 @@ type StreamMethodDescriptor<Config extends BaseEndpointOptions> = TypedPropertyD
210
211
  */
211
212
  declare function Stream<const Config extends BaseEndpointOptions>(endpoint: StreamHandler<Config, false>): (target: any, propertyKey: string | symbol, descriptor: StreamMethodDescriptor<Config>) => PropertyDescriptor | void;
212
213
  //#endregion
213
- //#region src/legacy-compat/decorators/injectable.decorator.d.mts
214
- /**
215
- * Legacy-compatible Injectable decorator.
216
- *
217
- * Works with TypeScript experimental decorators (legacy API).
218
- *
219
- * @param options - Injectable configuration options
220
- * @returns A class decorator compatible with legacy decorator API
221
- *
222
- * @example
223
- * ```typescript
224
- * @Injectable()
225
- * export class UserService {
226
- * getUser(id: string) {
227
- * return { id, name: 'John' }
228
- * }
229
- * }
230
- * ```
231
- */
232
- declare function Injectable(options?: InjectableOptions): (target: ClassType) => ClassType;
233
- //#endregion
234
- //#region src/legacy-compat/decorators/factory.decorator.d.mts
235
- /**
236
- * Legacy-compatible Factory decorator.
237
- *
238
- * Works with TypeScript experimental decorators (legacy API).
239
- *
240
- * @param options - Factory configuration options
241
- * @returns A class decorator compatible with legacy decorator API
242
- *
243
- * @example
244
- * ```typescript
245
- * @Factory()
246
- * export class DatabaseConnectionFactory {
247
- * create() {
248
- * return { host: 'localhost', port: 5432 }
249
- * }
250
- * }
251
- * ```
252
- */
253
- declare function Factory(options?: FactoryOptions): (target: ClassType) => ClassType;
254
- //#endregion
255
214
  //#region src/legacy-compat/attribute.factory.d.mts
256
215
  /**
257
216
  * Type for a legacy class/method attribute decorator without a value.
@@ -430,20 +389,5 @@ declare class LegacyAttributeFactory {
430
389
  static has<T extends ZodType>(attribute: LegacyClassSchemaAttribute<T>, target: ModuleMetadata | ControllerMetadata | HandlerMetadata<any>): boolean;
431
390
  }
432
391
  //#endregion
433
- //#region src/legacy-compat/context-compat.d.mts
434
- /**
435
- * Creates a mock ClassDecoratorContext for legacy class decorators.
436
- * @internal
437
- */
438
- declare function createClassContext(target: ClassType): ClassDecoratorContext;
439
- /**
440
- * Creates a mock ClassMethodDecoratorContext for legacy method decorators.
441
- *
442
- * Note: Method decorators need to share metadata with the class context
443
- * because endpoint metadata is stored at the class level.
444
- * @internal
445
- */
446
- declare function createMethodContext(target: any, propertyKey: string | symbol, descriptor: PropertyDescriptor): ClassMethodDecoratorContext;
447
- //#endregion
448
- export { LegacyAttributeFactory as AttributeFactory, LegacyAttributeFactory, Controller, type ControllerOptions, Endpoint, type EndpointParams, type EndpointResult, Factory, Header, HttpCode, Injectable, type LegacyClassAttribute, type LegacyClassSchemaAttribute, Module, type ModuleOptions, Multipart, type MultipartParams, type MultipartResult, Stream, type StreamParams, UseGuards, createClassContext, createMethodContext };
392
+ export { LegacyAttributeFactory as AttributeFactory, LegacyAttributeFactory, Controller, type ControllerOptions, Endpoint, type EndpointParams, type EndpointResult, Factory, type FactoryOptions, Header, HttpCode, Injectable, type InjectableOptions, type LegacyClassAttribute, type LegacyClassSchemaAttribute, Module, type ModuleOptions, Multipart, type MultipartParams, type MultipartResult, Stream, type StreamParams, UseGuards, createClassContext, createMethodContext };
449
393
  //# sourceMappingURL=index.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","names":[],"sources":["../../src/legacy-compat/decorators/module.decorator.mts","../../src/legacy-compat/decorators/controller.decorator.mts","../../src/legacy-compat/decorators/endpoint.decorator.mts","../../src/legacy-compat/decorators/use-guards.decorator.mts","../../src/legacy-compat/decorators/header.decorator.mts","../../src/legacy-compat/decorators/http-code.decorator.mts","../../src/legacy-compat/decorators/multipart.decorator.mts","../../src/legacy-compat/decorators/stream.decorator.mts","../../src/legacy-compat/decorators/injectable.decorator.mts","../../src/legacy-compat/decorators/factory.decorator.mts","../../src/legacy-compat/attribute.factory.mts","../../src/legacy-compat/context-compat.mts"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../../src/legacy-compat/decorators/module.decorator.mts","../../src/legacy-compat/decorators/controller.decorator.mts","../../src/legacy-compat/decorators/endpoint.decorator.mts","../../src/legacy-compat/decorators/use-guards.decorator.mts","../../src/legacy-compat/decorators/header.decorator.mts","../../src/legacy-compat/decorators/http-code.decorator.mts","../../src/legacy-compat/decorators/multipart.decorator.mts","../../src/legacy-compat/decorators/stream.decorator.mts","../../src/legacy-compat/attribute.factory.mts"],"sourcesContent":[],"mappings":"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"}
@@ -1,7 +1,8 @@
1
- import { Cn as ControllerOptions, an as ModuleMetadata, at as MultipartResult, bn as EndpointParams, gn as HandlerMetadata, gt as HttpHeader, it as MultipartParams, nt as StreamParams, st as ModuleOptions, un as ControllerMetadata, vt as CanActivate, xn as EndpointResult } from "../index-BJjk2X1S.mjs";
2
- import { ClassType, ClassTypeWithInstance, FactoryOptions, InjectableOptions, InjectionToken } from "@navios/di";
1
+ import { Bn as ControllerOptions, Dn as ControllerMetadata, Et as HttpHeader, Ln as EndpointParams, Nn as HandlerMetadata, Ot as CanActivate, Rn as EndpointResult, _t as ModuleOptions, ft as StreamParams, ht as MultipartResult, mt as MultipartParams, xn as ModuleMetadata } from "../index-6S7veHKD.mjs";
2
+ import { ClassType, ClassTypeWithInstance, InjectionToken } from "@navios/di";
3
3
  import { ZodType, z as z$1 } from "zod/v4";
4
4
  import { BaseEndpointOptions, EndpointHandler, EndpointOptions, RequestArgs, StreamHandler } from "@navios/builder";
5
+ import { Factory, FactoryOptions, Injectable, InjectableOptions, createClassContext, createMethodContext } from "@navios/di/legacy-compat";
5
6
 
6
7
  //#region src/legacy-compat/decorators/module.decorator.d.mts
7
8
 
@@ -210,48 +211,6 @@ type StreamMethodDescriptor<Config extends BaseEndpointOptions> = TypedPropertyD
210
211
  */
211
212
  declare function Stream<const Config extends BaseEndpointOptions>(endpoint: StreamHandler<Config, false>): (target: any, propertyKey: string | symbol, descriptor: StreamMethodDescriptor<Config>) => PropertyDescriptor | void;
212
213
  //#endregion
213
- //#region src/legacy-compat/decorators/injectable.decorator.d.mts
214
- /**
215
- * Legacy-compatible Injectable decorator.
216
- *
217
- * Works with TypeScript experimental decorators (legacy API).
218
- *
219
- * @param options - Injectable configuration options
220
- * @returns A class decorator compatible with legacy decorator API
221
- *
222
- * @example
223
- * ```typescript
224
- * @Injectable()
225
- * export class UserService {
226
- * getUser(id: string) {
227
- * return { id, name: 'John' }
228
- * }
229
- * }
230
- * ```
231
- */
232
- declare function Injectable(options?: InjectableOptions): (target: ClassType) => ClassType;
233
- //#endregion
234
- //#region src/legacy-compat/decorators/factory.decorator.d.mts
235
- /**
236
- * Legacy-compatible Factory decorator.
237
- *
238
- * Works with TypeScript experimental decorators (legacy API).
239
- *
240
- * @param options - Factory configuration options
241
- * @returns A class decorator compatible with legacy decorator API
242
- *
243
- * @example
244
- * ```typescript
245
- * @Factory()
246
- * export class DatabaseConnectionFactory {
247
- * create() {
248
- * return { host: 'localhost', port: 5432 }
249
- * }
250
- * }
251
- * ```
252
- */
253
- declare function Factory(options?: FactoryOptions): (target: ClassType) => ClassType;
254
- //#endregion
255
214
  //#region src/legacy-compat/attribute.factory.d.mts
256
215
  /**
257
216
  * Type for a legacy class/method attribute decorator without a value.
@@ -430,20 +389,5 @@ declare class LegacyAttributeFactory {
430
389
  static has<T extends ZodType>(attribute: LegacyClassSchemaAttribute<T>, target: ModuleMetadata | ControllerMetadata | HandlerMetadata<any>): boolean;
431
390
  }
432
391
  //#endregion
433
- //#region src/legacy-compat/context-compat.d.mts
434
- /**
435
- * Creates a mock ClassDecoratorContext for legacy class decorators.
436
- * @internal
437
- */
438
- declare function createClassContext(target: ClassType): ClassDecoratorContext;
439
- /**
440
- * Creates a mock ClassMethodDecoratorContext for legacy method decorators.
441
- *
442
- * Note: Method decorators need to share metadata with the class context
443
- * because endpoint metadata is stored at the class level.
444
- * @internal
445
- */
446
- declare function createMethodContext(target: any, propertyKey: string | symbol, descriptor: PropertyDescriptor): ClassMethodDecoratorContext;
447
- //#endregion
448
- export { LegacyAttributeFactory as AttributeFactory, LegacyAttributeFactory, Controller, type ControllerOptions, Endpoint, type EndpointParams, type EndpointResult, Factory, Header, HttpCode, Injectable, type LegacyClassAttribute, type LegacyClassSchemaAttribute, Module, type ModuleOptions, Multipart, type MultipartParams, type MultipartResult, Stream, type StreamParams, UseGuards, createClassContext, createMethodContext };
392
+ export { LegacyAttributeFactory as AttributeFactory, LegacyAttributeFactory, Controller, type ControllerOptions, Endpoint, type EndpointParams, type EndpointResult, Factory, type FactoryOptions, Header, HttpCode, Injectable, type InjectableOptions, type LegacyClassAttribute, type LegacyClassSchemaAttribute, Module, type ModuleOptions, Multipart, type MultipartParams, type MultipartResult, Stream, type StreamParams, UseGuards, createClassContext, createMethodContext };
449
393
  //# sourceMappingURL=index.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../../src/legacy-compat/decorators/module.decorator.mts","../../src/legacy-compat/decorators/controller.decorator.mts","../../src/legacy-compat/decorators/endpoint.decorator.mts","../../src/legacy-compat/decorators/use-guards.decorator.mts","../../src/legacy-compat/decorators/header.decorator.mts","../../src/legacy-compat/decorators/http-code.decorator.mts","../../src/legacy-compat/decorators/multipart.decorator.mts","../../src/legacy-compat/decorators/stream.decorator.mts","../../src/legacy-compat/decorators/injectable.decorator.mts","../../src/legacy-compat/decorators/factory.decorator.mts","../../src/legacy-compat/attribute.factory.mts","../../src/legacy-compat/context-compat.mts"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../../src/legacy-compat/decorators/module.decorator.mts","../../src/legacy-compat/decorators/controller.decorator.mts","../../src/legacy-compat/decorators/endpoint.decorator.mts","../../src/legacy-compat/decorators/use-guards.decorator.mts","../../src/legacy-compat/decorators/header.decorator.mts","../../src/legacy-compat/decorators/http-code.decorator.mts","../../src/legacy-compat/decorators/multipart.decorator.mts","../../src/legacy-compat/decorators/stream.decorator.mts","../../src/legacy-compat/attribute.factory.mts"],"sourcesContent":[],"mappings":"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"}
@@ -1,60 +1,7 @@
1
- import { M as getEndpointMetadata, O as getControllerMetadata, T as hasModuleMetadata, a as HttpCode$1, b as getManagedMetadata, i as Module$1, k as hasControllerMetadata, n as Stream$1, o as Header$1, r as Multipart$1, s as Endpoint$1, t as UseGuards$1, v as Controller$1, w as getModuleMetadata, x as hasManagedMetadata } from "../use-guards.decorator-Be_QUx6b.mjs";
2
- import { Factory as Factory$1, Injectable as Injectable$1 } from "@navios/di";
1
+ import { a as HttpCode$1, c as Controller$1, d as hasManagedMetadata, h as hasControllerMetadata, i as Module$1, m as getControllerMetadata, n as Stream$1, o as Header$1, r as Multipart$1, s as Endpoint$1, t as UseGuards$1, u as getManagedMetadata, v as getEndpointMetadata } from "../use-guards.decorator-BecoQSmE.mjs";
2
+ import { g as hasModuleMetadata, h as getModuleMetadata } from "../tokens-4J9sredA.mjs";
3
+ import { Factory, Injectable, createClassContext, createClassContext as createClassContext$1, createMethodContext, createMethodContext as createMethodContext$1 } from "@navios/di/legacy-compat";
3
4
 
4
- //#region src/legacy-compat/context-compat.mts
5
- /**
6
- * Compatibility layer for converting legacy decorator signatures to Stage 3 format.
7
- *
8
- * This module provides utilities to create mock Stage 3 decorator contexts
9
- * from legacy decorator arguments, and manages metadata storage using WeakMap.
10
- */ const classMetadataMap = /* @__PURE__ */ new WeakMap();
11
- /**
12
- * Gets the constructor from a prototype (for method decorators).
13
- */ function getConstructor(prototype) {
14
- if (!prototype || typeof prototype !== "object") return null;
15
- const constructor = prototype.constructor;
16
- if (constructor && typeof constructor === "function") return constructor;
17
- return null;
18
- }
19
- /**
20
- * Creates a mock ClassDecoratorContext for legacy class decorators.
21
- * @internal
22
- */ function createClassContext(target) {
23
- if (!classMetadataMap.has(target)) classMetadataMap.set(target, {});
24
- const metadata = classMetadataMap.get(target);
25
- return {
26
- kind: "class",
27
- name: target.name,
28
- metadata,
29
- addInitializer() {}
30
- };
31
- }
32
- /**
33
- * Creates a mock ClassMethodDecoratorContext for legacy method decorators.
34
- *
35
- * Note: Method decorators need to share metadata with the class context
36
- * because endpoint metadata is stored at the class level.
37
- * @internal
38
- */ function createMethodContext(target, propertyKey, descriptor) {
39
- const constructor = getConstructor(target);
40
- if (!constructor) throw new Error("[Navios] Could not determine class constructor from method decorator target.");
41
- if (!classMetadataMap.has(constructor)) classMetadataMap.set(constructor, {});
42
- return {
43
- kind: "method",
44
- name: propertyKey,
45
- metadata: classMetadataMap.get(constructor),
46
- static: false,
47
- private: false,
48
- access: {
49
- has: () => true,
50
- get: () => descriptor.value,
51
- set: () => {}
52
- },
53
- addInitializer() {}
54
- };
55
- }
56
-
57
- //#endregion
58
5
  //#region src/legacy-compat/decorators/module.decorator.mts
59
6
  /**
60
7
  * Legacy-compatible Module decorator.
@@ -79,7 +26,7 @@ import { Factory as Factory$1, Injectable as Injectable$1 } from "@navios/di";
79
26
  guards: []
80
27
  }) {
81
28
  return function(target) {
82
- const context = createClassContext(target);
29
+ const context = createClassContext$1(target);
83
30
  return Module$1(options)(target, context);
84
31
  };
85
32
  }
@@ -104,7 +51,7 @@ import { Factory as Factory$1, Injectable as Injectable$1 } from "@navios/di";
104
51
  * ```
105
52
  */ function Controller(options = {}) {
106
53
  return function(target) {
107
- const context = createClassContext(target);
54
+ const context = createClassContext$1(target);
108
55
  return Controller$1(options)(target, context);
109
56
  };
110
57
  }
@@ -134,7 +81,7 @@ import { Factory as Factory$1, Injectable as Injectable$1 } from "@navios/di";
134
81
  return function(target, propertyKey, descriptor) {
135
82
  if (!descriptor) throw new Error("[Navios] @Endpoint decorator requires a method descriptor. Make sure experimentalDecorators is enabled.");
136
83
  const typedDescriptor = descriptor;
137
- const context = createMethodContext(target, propertyKey, typedDescriptor);
84
+ const context = createMethodContext$1(target, propertyKey, typedDescriptor);
138
85
  const result = Endpoint$1(endpoint)(typedDescriptor.value, context);
139
86
  if (result !== typedDescriptor.value) typedDescriptor.value = result;
140
87
  return typedDescriptor;
@@ -170,12 +117,12 @@ import { Factory as Factory$1, Injectable as Injectable$1 } from "@navios/di";
170
117
  */ function UseGuards(...guards) {
171
118
  function decoratorImpl(target, propertyKey, descriptor) {
172
119
  if (propertyKey !== void 0 && descriptor !== void 0) {
173
- const context = createMethodContext(target, propertyKey, descriptor);
120
+ const context = createMethodContext$1(target, propertyKey, descriptor);
174
121
  const result = UseGuards$1(...guards)(descriptor.value, context);
175
122
  if (result !== descriptor.value) descriptor.value = result;
176
123
  return descriptor;
177
124
  } else {
178
- const context = createClassContext(target);
125
+ const context = createClassContext$1(target);
179
126
  return UseGuards$1(...guards)(target, context);
180
127
  }
181
128
  }
@@ -206,7 +153,7 @@ import { Factory as Factory$1, Injectable as Injectable$1 } from "@navios/di";
206
153
  * ```
207
154
  */ function Header(name, value) {
208
155
  return function(target, propertyKey, descriptor) {
209
- const context = createMethodContext(target, propertyKey, descriptor);
156
+ const context = createMethodContext$1(target, propertyKey, descriptor);
210
157
  const result = Header$1(name, value)(descriptor.value, context);
211
158
  if (result !== descriptor.value) descriptor.value = result;
212
159
  return descriptor;
@@ -236,7 +183,7 @@ import { Factory as Factory$1, Injectable as Injectable$1 } from "@navios/di";
236
183
  * ```
237
184
  */ function HttpCode(code) {
238
185
  return function(target, propertyKey, descriptor) {
239
- const context = createMethodContext(target, propertyKey, descriptor);
186
+ const context = createMethodContext$1(target, propertyKey, descriptor);
240
187
  const result = HttpCode$1(code)(descriptor.value, context);
241
188
  if (result !== descriptor.value) descriptor.value = result;
242
189
  return descriptor;
@@ -268,7 +215,7 @@ import { Factory as Factory$1, Injectable as Injectable$1 } from "@navios/di";
268
215
  */ function Multipart(endpoint) {
269
216
  return function(target, propertyKey, descriptor) {
270
217
  if (!descriptor) throw new Error("[Navios] @Multipart decorator requires a method descriptor. Make sure experimentalDecorators is enabled.");
271
- const context = createMethodContext(target, propertyKey, descriptor);
218
+ const context = createMethodContext$1(target, propertyKey, descriptor);
272
219
  const result = Multipart$1(endpoint)(descriptor.value, context);
273
220
  if (result !== descriptor.value) descriptor.value = result;
274
221
  return descriptor;
@@ -301,65 +248,13 @@ import { Factory as Factory$1, Injectable as Injectable$1 } from "@navios/di";
301
248
  return function(target, propertyKey, descriptor) {
302
249
  if (!descriptor || !descriptor.value) throw new Error("[Navios] @Stream decorator requires a method descriptor. Make sure experimentalDecorators is enabled.");
303
250
  const typedDescriptor = descriptor;
304
- const context = createMethodContext(target, propertyKey, typedDescriptor);
251
+ const context = createMethodContext$1(target, propertyKey, typedDescriptor);
305
252
  const result = Stream$1(endpoint)(typedDescriptor.value, context);
306
253
  if (result && result !== typedDescriptor.value) typedDescriptor.value = result;
307
254
  return typedDescriptor;
308
255
  };
309
256
  }
310
257
 
311
- //#endregion
312
- //#region src/legacy-compat/decorators/injectable.decorator.mts
313
- /**
314
- * Legacy-compatible Injectable decorator.
315
- *
316
- * Works with TypeScript experimental decorators (legacy API).
317
- *
318
- * @param options - Injectable configuration options
319
- * @returns A class decorator compatible with legacy decorator API
320
- *
321
- * @example
322
- * ```typescript
323
- * @Injectable()
324
- * export class UserService {
325
- * getUser(id: string) {
326
- * return { id, name: 'John' }
327
- * }
328
- * }
329
- * ```
330
- */ function Injectable(options = {}) {
331
- return function(target) {
332
- const context = createClassContext(target);
333
- return (Object.keys(options).length === 0 ? Injectable$1() : Injectable$1(options))(target, context);
334
- };
335
- }
336
-
337
- //#endregion
338
- //#region src/legacy-compat/decorators/factory.decorator.mts
339
- /**
340
- * Legacy-compatible Factory decorator.
341
- *
342
- * Works with TypeScript experimental decorators (legacy API).
343
- *
344
- * @param options - Factory configuration options
345
- * @returns A class decorator compatible with legacy decorator API
346
- *
347
- * @example
348
- * ```typescript
349
- * @Factory()
350
- * export class DatabaseConnectionFactory {
351
- * create() {
352
- * return { host: 'localhost', port: 5432 }
353
- * }
354
- * }
355
- * ```
356
- */ function Factory(options = {}) {
357
- return function(target) {
358
- const context = createClassContext(target);
359
- return (Object.keys(options).length === 0 ? Factory$1() : Factory$1(options))(target, context);
360
- };
361
- }
362
-
363
258
  //#endregion
364
259
  //#region src/legacy-compat/attribute.factory.mts
365
260
  /**
@@ -408,7 +303,7 @@ import { Factory as Factory$1, Injectable as Injectable$1 } from "@navios/di";
408
303
  const res = (value) => {
409
304
  function decorator(target, propertyKey, descriptor) {
410
305
  if (propertyKey !== void 0 && descriptor !== void 0) {
411
- const context = createMethodContext(target, propertyKey, descriptor);
306
+ const context = createMethodContext$1(target, propertyKey, descriptor);
412
307
  const metadata = getEndpointMetadata(descriptor.value, context);
413
308
  if (schema) {
414
309
  const validatedValue = schema.safeParse(value);
@@ -421,7 +316,7 @@ import { Factory as Factory$1, Injectable as Injectable$1 } from "@navios/di";
421
316
  const isModule = hasModuleMetadata(target);
422
317
  const isManaged = hasManagedMetadata(target);
423
318
  if (!isController && !isModule && !isManaged) throw new Error("[Navios] Attribute can only be applied to classes with @Controller, @Module, or other Navios-managed decorators");
424
- const context = createClassContext(target);
319
+ const context = createClassContext$1(target);
425
320
  const metadata = isController ? getControllerMetadata(target, context) : isModule ? getModuleMetadata(target, context) : isManaged ? getManagedMetadata(target) : null;
426
321
  if (!metadata) throw new Error("[Navios] Could not determine metadata for attribute target");
427
322
  if (schema) {