@elsikora/cladi 2.0.0 → 2.0.1

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 (65) hide show
  1. package/dist/cjs/application/utility/index.d.ts +1 -1
  2. package/dist/cjs/domain/enum/index.d.ts +1 -1
  3. package/dist/cjs/domain/index.d.ts +2 -2
  4. package/dist/cjs/domain/interface/factory.interface.d.ts +1 -1
  5. package/dist/cjs/domain/interface/index.d.ts +5 -5
  6. package/dist/cjs/domain/interface/logger/index.d.ts +2 -2
  7. package/dist/cjs/domain/interface/logger/interface.d.ts +1 -1
  8. package/dist/cjs/index.d.ts +4 -4
  9. package/dist/cjs/infrastructure/class/base/container.class.d.ts +2 -2
  10. package/dist/cjs/infrastructure/class/base/error.class.d.ts +2 -2
  11. package/dist/cjs/infrastructure/class/base/factory.class.d.ts +3 -3
  12. package/dist/cjs/infrastructure/class/base/index.d.ts +4 -4
  13. package/dist/cjs/infrastructure/class/base/registry.class.d.ts +2 -2
  14. package/dist/cjs/infrastructure/constant/console-logger-default-options.constant.d.ts +1 -1
  15. package/dist/cjs/infrastructure/constant/index.d.ts +1 -1
  16. package/dist/cjs/infrastructure/factory/core.factory.d.ts +2 -2
  17. package/dist/cjs/infrastructure/factory/index.d.ts +1 -1
  18. package/dist/cjs/infrastructure/index.d.ts +5 -5
  19. package/dist/cjs/infrastructure/interface/base/container-options.interface.d.ts +1 -1
  20. package/dist/cjs/infrastructure/interface/base/factory-options.interface.d.ts +1 -1
  21. package/dist/cjs/infrastructure/interface/base/index.d.ts +4 -4
  22. package/dist/cjs/infrastructure/interface/base/registry-options.interface.d.ts +1 -1
  23. package/dist/cjs/infrastructure/interface/console-logger-options.interface.d.ts +1 -1
  24. package/dist/cjs/infrastructure/interface/core-factory-options.interface.d.ts +1 -1
  25. package/dist/cjs/infrastructure/interface/index.d.ts +3 -3
  26. package/dist/cjs/infrastructure/service/console-logger.service.d.ts +2 -2
  27. package/dist/cjs/infrastructure/service/index.d.ts +1 -1
  28. package/dist/cjs/presentation/utility/create/container.utility.d.ts +2 -2
  29. package/dist/cjs/presentation/utility/create/factory.utility.d.ts +2 -2
  30. package/dist/cjs/presentation/utility/create/index.d.ts +4 -4
  31. package/dist/cjs/presentation/utility/create/logger.utility.d.ts +2 -2
  32. package/dist/cjs/presentation/utility/create/registry.utility.d.ts +2 -2
  33. package/dist/esm/application/utility/index.d.ts +1 -1
  34. package/dist/esm/domain/enum/index.d.ts +1 -1
  35. package/dist/esm/domain/index.d.ts +2 -2
  36. package/dist/esm/domain/interface/factory.interface.d.ts +1 -1
  37. package/dist/esm/domain/interface/index.d.ts +5 -5
  38. package/dist/esm/domain/interface/logger/index.d.ts +2 -2
  39. package/dist/esm/domain/interface/logger/interface.d.ts +1 -1
  40. package/dist/esm/index.d.ts +4 -4
  41. package/dist/esm/infrastructure/class/base/container.class.d.ts +2 -2
  42. package/dist/esm/infrastructure/class/base/error.class.d.ts +2 -2
  43. package/dist/esm/infrastructure/class/base/factory.class.d.ts +3 -3
  44. package/dist/esm/infrastructure/class/base/index.d.ts +4 -4
  45. package/dist/esm/infrastructure/class/base/registry.class.d.ts +2 -2
  46. package/dist/esm/infrastructure/constant/console-logger-default-options.constant.d.ts +1 -1
  47. package/dist/esm/infrastructure/constant/index.d.ts +1 -1
  48. package/dist/esm/infrastructure/factory/core.factory.d.ts +2 -2
  49. package/dist/esm/infrastructure/factory/index.d.ts +1 -1
  50. package/dist/esm/infrastructure/index.d.ts +5 -5
  51. package/dist/esm/infrastructure/interface/base/container-options.interface.d.ts +1 -1
  52. package/dist/esm/infrastructure/interface/base/factory-options.interface.d.ts +1 -1
  53. package/dist/esm/infrastructure/interface/base/index.d.ts +4 -4
  54. package/dist/esm/infrastructure/interface/base/registry-options.interface.d.ts +1 -1
  55. package/dist/esm/infrastructure/interface/console-logger-options.interface.d.ts +1 -1
  56. package/dist/esm/infrastructure/interface/core-factory-options.interface.d.ts +1 -1
  57. package/dist/esm/infrastructure/interface/index.d.ts +3 -3
  58. package/dist/esm/infrastructure/service/console-logger.service.d.ts +2 -2
  59. package/dist/esm/infrastructure/service/index.d.ts +1 -1
  60. package/dist/esm/presentation/utility/create/container.utility.d.ts +2 -2
  61. package/dist/esm/presentation/utility/create/factory.utility.d.ts +2 -2
  62. package/dist/esm/presentation/utility/create/index.d.ts +4 -4
  63. package/dist/esm/presentation/utility/create/logger.utility.d.ts +2 -2
  64. package/dist/esm/presentation/utility/create/registry.utility.d.ts +2 -2
  65. package/package.json +1 -1
@@ -1,2 +1,2 @@
1
- export { safeDeepClone } from "./safe-deep-clone.utility";
1
+ export { safeDeepClone } from './safe-deep-clone.utility';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1,2 +1,2 @@
1
- export { ELoggerLogLevel } from "./logger-log-level.enum";
1
+ export { ELoggerLogLevel } from './logger-log-level.enum';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,3 @@
1
- export * from "./enum";
2
- export type * from "./interface";
1
+ export * from './enum/index';
2
+ export type * from './interface/index';
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- import type { IRegistry } from "./registry.interface";
1
+ import type { IRegistry } from './registry.interface';
2
2
  /**
3
3
  * Generic factory interface for creating items by name.
4
4
  * @template T The type of items created by the factory.
@@ -1,6 +1,6 @@
1
- export type { IContainer } from "./container.interface";
2
- export type { IError } from "./error.interface";
3
- export type { IFactory } from "./factory.interface";
4
- export type * from "./logger/index";
5
- export type { IRegistry } from "./registry.interface";
1
+ export type { IContainer } from './container.interface';
2
+ export type { IError } from './error.interface';
3
+ export type { IFactory } from './factory.interface';
4
+ export type * from './logger/index';
5
+ export type { IRegistry } from './registry.interface';
6
6
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,3 @@
1
- export { type ILogger } from "./interface";
2
- export { type ILoggerMethodOptions } from "./method-options.interface";
1
+ export { type ILogger } from './interface';
2
+ export { type ILoggerMethodOptions } from './method-options.interface';
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- import type { ILoggerMethodOptions } from '../../../src/domain/interface/index';
1
+ import type { ILoggerMethodOptions } from '../index';
2
2
  /**
3
3
  * Logger interface.
4
4
  * @see {@link https://elsikora.com/docs/cladi/services/logging}
@@ -1,5 +1,5 @@
1
- export * from "./application/utility";
2
- export * from "./domain";
3
- export * from "./infrastructure";
4
- export * from "./presentation/utility/create";
1
+ export * from './application/utility/index';
2
+ export * from './domain/index';
3
+ export * from './infrastructure/index';
4
+ export * from './presentation/utility/create/index';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- import type { IContainer } from '../../../src/domain/interface/index';
2
- import type { IBaseContainerOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { IContainer } from '../../../domain/interface/index';
2
+ import type { IBaseContainerOptions } from '../../interface/index';
3
3
  /**
4
4
  * Simple dependency injection container implementation.
5
5
  * @see {@link https://elsikora.com/docs/cladi/core-concepts/container}
@@ -1,5 +1,5 @@
1
- import type { IError } from '../../../src/domain/interface/index';
2
- import type { IBaseErrorOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { IError } from '../../../domain/interface/index';
2
+ import type { IBaseErrorOptions } from '../../interface/index';
3
3
  /**
4
4
  * Base error class.
5
5
  * @see {@link https://elsikora.com/docs/cladi/core-concepts/error-handling}
@@ -1,6 +1,6 @@
1
- import type { IFactory } from '../../../src/domain/interface/index';
2
- import type { IRegistry } from '../../../src/domain/interface/index';
3
- import type { IBaseFactoryOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { IFactory } from '../../../domain/interface/index';
2
+ import type { IRegistry } from '../../../domain/interface/index';
3
+ import type { IBaseFactoryOptions } from '../../interface/index';
4
4
  /**
5
5
  * Generic factory implementation that creates items by name using a registry as data source.
6
6
  * @template T The type of items created by the factory.
@@ -1,5 +1,5 @@
1
- export { BaseContainer } from "./container.class";
2
- export { BaseError } from "./error.class";
3
- export { BaseFactory } from "./factory.class";
4
- export { BaseRegistry } from "./registry.class";
1
+ export { BaseContainer } from './container.class';
2
+ export { BaseError } from './error.class';
3
+ export { BaseFactory } from './factory.class';
4
+ export { BaseRegistry } from './registry.class';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- import type { IRegistry } from '../../../src/domain/interface/index';
2
- import type { IBaseRegistryOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { IRegistry } from '../../../domain/interface/index';
2
+ import type { IBaseRegistryOptions } from '../../interface/index';
3
3
  /**
4
4
  * Generic registry implementation that stores items by name.
5
5
  * @template T The type of items stored in the registry.
@@ -1,4 +1,4 @@
1
- import type { IConsoleLoggerOptions } from '../../src/infrastructure/interface/index';
1
+ import type { IConsoleLoggerOptions } from '../interface/index';
2
2
  /**
3
3
  * The default options for the console logger.
4
4
  */
@@ -1,2 +1,2 @@
1
- export { CONSOLE_LOGGER_DEFAULT_OPTIONS } from "./console-logger-default-options.constant";
1
+ export { CONSOLE_LOGGER_DEFAULT_OPTIONS } from './console-logger-default-options.constant';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- import type { IContainer, IFactory, ILogger, IRegistry } from '../../src/domain/interface/index';
2
- import type { IBaseContainerOptions, IBaseFactoryOptions, IBaseRegistryOptions, IConsoleLoggerOptions, ICoreFactoryOptions } from '../../src/infrastructure/interface/index';
1
+ import type { IContainer, IFactory, ILogger, IRegistry } from '../../domain/interface/index';
2
+ import type { IBaseContainerOptions, IBaseFactoryOptions, IBaseRegistryOptions, IConsoleLoggerOptions, ICoreFactoryOptions } from '../interface/index';
3
3
  /**
4
4
  * Factory for creating infrastructure components.
5
5
  * Provides methods to create instances of Registry, Factory, Container, and Logger.
@@ -1,2 +1,2 @@
1
- export { CoreFactory } from "./core.factory";
1
+ export { CoreFactory } from './core.factory';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1,6 +1,6 @@
1
- export * from "./class/base";
2
- export * from "./constant";
3
- export * from "./factory";
4
- export type * from "./interface";
5
- export * from "./service";
1
+ export * from './class/base/index';
2
+ export * from './constant/index';
3
+ export * from './factory/index';
4
+ export type * from './interface/index';
5
+ export * from './service/index';
6
6
  //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- import type { ILogger } from '../../../src/domain/interface/index';
1
+ import type { ILogger } from '../../../domain/interface/index';
2
2
  /**
3
3
  * The options for the base container.
4
4
  * @see {@link https://elsikora.com/docs/cladi/core-concepts/container} for more details.
@@ -1,4 +1,4 @@
1
- import type { ILogger, IRegistry } from '../../../src/domain/interface/index';
1
+ import type { ILogger, IRegistry } from '../../../domain/interface/index';
2
2
  /**
3
3
  * Base factory creation options.
4
4
  * @template T The type of items in the registry and created by the factory.
@@ -1,5 +1,5 @@
1
- export type { IBaseContainerOptions } from "./container-options.interface";
2
- export type { IBaseErrorOptions } from "./error-options.interface";
3
- export type { IBaseFactoryOptions } from "./factory-options.interface";
4
- export type { IBaseRegistryOptions } from "./registry-options.interface";
1
+ export type { IBaseContainerOptions } from './container-options.interface';
2
+ export type { IBaseErrorOptions } from './error-options.interface';
3
+ export type { IBaseFactoryOptions } from './factory-options.interface';
4
+ export type { IBaseRegistryOptions } from './registry-options.interface';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- import type { ILogger } from '../../../src/domain/interface/index';
1
+ import type { ILogger } from '../../../domain/interface/index';
2
2
  /**
3
3
  * Base registry creation options.
4
4
  * @see {@link https://elsikora.com/docs/cladi/core-concepts/registry} for more details.
@@ -1,4 +1,4 @@
1
- import type { ELoggerLogLevel } from '../../src/domain/enum/index';
1
+ import type { ELoggerLogLevel } from '../../domain/enum/index';
2
2
  /**
3
3
  * The options for the console logger.
4
4
  * @see {@link https://elsikora.com/docs/cladi/services/logging} for more details on logging options.
@@ -1,4 +1,4 @@
1
- import type { ILogger } from '../../src/domain/interface/index';
1
+ import type { ILogger } from '../../domain/interface/index';
2
2
  /**
3
3
  * Options for the CoreFactory.
4
4
  * @see {@link https://elsikora.com/docs/cladi/core-concepts/factory} for more details.
@@ -1,4 +1,4 @@
1
- export type * from "./base";
2
- export type { IConsoleLoggerOptions } from "./console-logger-options.interface";
3
- export type { ICoreFactoryOptions } from "./core-factory-options.interface";
1
+ export type * from './base/index';
2
+ export type { IConsoleLoggerOptions } from './console-logger-options.interface';
3
+ export type { ICoreFactoryOptions } from './core-factory-options.interface';
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- import type { ILogger, ILoggerMethodOptions } from '../../src/domain/interface/index';
2
- import type { IConsoleLoggerOptions } from '../../src/infrastructure/interface/index';
1
+ import type { ILogger, ILoggerMethodOptions } from '../../domain/interface/index';
2
+ import type { IConsoleLoggerOptions } from '../interface/index';
3
3
  /**
4
4
  * Console logger implementation.
5
5
  * @see {@link https://elsikora.com/docs/cladi/services/logging}
@@ -1,2 +1,2 @@
1
- export { ConsoleLoggerService } from "./console-logger.service";
1
+ export { ConsoleLoggerService } from './console-logger.service';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- import type { IContainer } from '../../../src/domain/interface/index';
2
- import type { IBaseContainerOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { IContainer } from '../../../domain/interface/index';
2
+ import type { IBaseContainerOptions } from '../../../infrastructure/interface/index';
3
3
  /**
4
4
  * Creates a new container instance.
5
5
  * @param {IBaseContainerOptions} options - The options to use for the container.
@@ -1,5 +1,5 @@
1
- import type { IFactory } from '../../../src/domain/interface/index';
2
- import type { IBaseFactoryOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { IFactory } from '../../../domain/interface/index';
2
+ import type { IBaseFactoryOptions } from '../../../infrastructure/interface/index';
3
3
  /**
4
4
  * Creates a new factory instance.
5
5
  * @param {IBaseFactoryOptions<T>} options - The options to use for the factory.
@@ -1,5 +1,5 @@
1
- export { createContainer } from "./container.utility";
2
- export { createFactory } from "./factory.utility";
3
- export { createLogger } from "./logger.utility";
4
- export { createRegistry } from "./registry.utility";
1
+ export { createContainer } from './container.utility';
2
+ export { createFactory } from './factory.utility';
3
+ export { createLogger } from './logger.utility';
4
+ export { createRegistry } from './registry.utility';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- import type { ILogger } from '../../../src/domain/interface/index';
2
- import type { IConsoleLoggerOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { ILogger } from '../../../domain/interface/index';
2
+ import type { IConsoleLoggerOptions } from '../../../infrastructure/interface/index';
3
3
  /**
4
4
  * Creates a new logger instance.
5
5
  * @param {IConsoleLoggerOptions} [options] - The options to use for the logger.
@@ -1,5 +1,5 @@
1
- import type { IRegistry } from '../../../src/domain/interface/index';
2
- import type { IBaseRegistryOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { IRegistry } from '../../../domain/interface/index';
2
+ import type { IBaseRegistryOptions } from '../../../infrastructure/interface/index';
3
3
  /**
4
4
  * Creates a new registry instance.
5
5
  * @param {IBaseRegistryOptions} options - The options to use for the registry.
@@ -1,2 +1,2 @@
1
- export { safeDeepClone } from "./safe-deep-clone.utility";
1
+ export { safeDeepClone } from './safe-deep-clone.utility';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1,2 +1,2 @@
1
- export { ELoggerLogLevel } from "./logger-log-level.enum";
1
+ export { ELoggerLogLevel } from './logger-log-level.enum';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,3 @@
1
- export * from "./enum";
2
- export type * from "./interface";
1
+ export * from './enum/index';
2
+ export type * from './interface/index';
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- import type { IRegistry } from "./registry.interface";
1
+ import type { IRegistry } from './registry.interface';
2
2
  /**
3
3
  * Generic factory interface for creating items by name.
4
4
  * @template T The type of items created by the factory.
@@ -1,6 +1,6 @@
1
- export type { IContainer } from "./container.interface";
2
- export type { IError } from "./error.interface";
3
- export type { IFactory } from "./factory.interface";
4
- export type * from "./logger/index";
5
- export type { IRegistry } from "./registry.interface";
1
+ export type { IContainer } from './container.interface';
2
+ export type { IError } from './error.interface';
3
+ export type { IFactory } from './factory.interface';
4
+ export type * from './logger/index';
5
+ export type { IRegistry } from './registry.interface';
6
6
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,3 @@
1
- export { type ILogger } from "./interface";
2
- export { type ILoggerMethodOptions } from "./method-options.interface";
1
+ export { type ILogger } from './interface';
2
+ export { type ILoggerMethodOptions } from './method-options.interface';
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- import type { ILoggerMethodOptions } from '../../../src/domain/interface/index';
1
+ import type { ILoggerMethodOptions } from '../index';
2
2
  /**
3
3
  * Logger interface.
4
4
  * @see {@link https://elsikora.com/docs/cladi/services/logging}
@@ -1,5 +1,5 @@
1
- export * from "./application/utility";
2
- export * from "./domain";
3
- export * from "./infrastructure";
4
- export * from "./presentation/utility/create";
1
+ export * from './application/utility/index';
2
+ export * from './domain/index';
3
+ export * from './infrastructure/index';
4
+ export * from './presentation/utility/create/index';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- import type { IContainer } from '../../../src/domain/interface/index';
2
- import type { IBaseContainerOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { IContainer } from '../../../domain/interface/index';
2
+ import type { IBaseContainerOptions } from '../../interface/index';
3
3
  /**
4
4
  * Simple dependency injection container implementation.
5
5
  * @see {@link https://elsikora.com/docs/cladi/core-concepts/container}
@@ -1,5 +1,5 @@
1
- import type { IError } from '../../../src/domain/interface/index';
2
- import type { IBaseErrorOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { IError } from '../../../domain/interface/index';
2
+ import type { IBaseErrorOptions } from '../../interface/index';
3
3
  /**
4
4
  * Base error class.
5
5
  * @see {@link https://elsikora.com/docs/cladi/core-concepts/error-handling}
@@ -1,6 +1,6 @@
1
- import type { IFactory } from '../../../src/domain/interface/index';
2
- import type { IRegistry } from '../../../src/domain/interface/index';
3
- import type { IBaseFactoryOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { IFactory } from '../../../domain/interface/index';
2
+ import type { IRegistry } from '../../../domain/interface/index';
3
+ import type { IBaseFactoryOptions } from '../../interface/index';
4
4
  /**
5
5
  * Generic factory implementation that creates items by name using a registry as data source.
6
6
  * @template T The type of items created by the factory.
@@ -1,5 +1,5 @@
1
- export { BaseContainer } from "./container.class";
2
- export { BaseError } from "./error.class";
3
- export { BaseFactory } from "./factory.class";
4
- export { BaseRegistry } from "./registry.class";
1
+ export { BaseContainer } from './container.class';
2
+ export { BaseError } from './error.class';
3
+ export { BaseFactory } from './factory.class';
4
+ export { BaseRegistry } from './registry.class';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- import type { IRegistry } from '../../../src/domain/interface/index';
2
- import type { IBaseRegistryOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { IRegistry } from '../../../domain/interface/index';
2
+ import type { IBaseRegistryOptions } from '../../interface/index';
3
3
  /**
4
4
  * Generic registry implementation that stores items by name.
5
5
  * @template T The type of items stored in the registry.
@@ -1,4 +1,4 @@
1
- import type { IConsoleLoggerOptions } from '../../src/infrastructure/interface/index';
1
+ import type { IConsoleLoggerOptions } from '../interface/index';
2
2
  /**
3
3
  * The default options for the console logger.
4
4
  */
@@ -1,2 +1,2 @@
1
- export { CONSOLE_LOGGER_DEFAULT_OPTIONS } from "./console-logger-default-options.constant";
1
+ export { CONSOLE_LOGGER_DEFAULT_OPTIONS } from './console-logger-default-options.constant';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- import type { IContainer, IFactory, ILogger, IRegistry } from '../../src/domain/interface/index';
2
- import type { IBaseContainerOptions, IBaseFactoryOptions, IBaseRegistryOptions, IConsoleLoggerOptions, ICoreFactoryOptions } from '../../src/infrastructure/interface/index';
1
+ import type { IContainer, IFactory, ILogger, IRegistry } from '../../domain/interface/index';
2
+ import type { IBaseContainerOptions, IBaseFactoryOptions, IBaseRegistryOptions, IConsoleLoggerOptions, ICoreFactoryOptions } from '../interface/index';
3
3
  /**
4
4
  * Factory for creating infrastructure components.
5
5
  * Provides methods to create instances of Registry, Factory, Container, and Logger.
@@ -1,2 +1,2 @@
1
- export { CoreFactory } from "./core.factory";
1
+ export { CoreFactory } from './core.factory';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1,6 +1,6 @@
1
- export * from "./class/base";
2
- export * from "./constant";
3
- export * from "./factory";
4
- export type * from "./interface";
5
- export * from "./service";
1
+ export * from './class/base/index';
2
+ export * from './constant/index';
3
+ export * from './factory/index';
4
+ export type * from './interface/index';
5
+ export * from './service/index';
6
6
  //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- import type { ILogger } from '../../../src/domain/interface/index';
1
+ import type { ILogger } from '../../../domain/interface/index';
2
2
  /**
3
3
  * The options for the base container.
4
4
  * @see {@link https://elsikora.com/docs/cladi/core-concepts/container} for more details.
@@ -1,4 +1,4 @@
1
- import type { ILogger, IRegistry } from '../../../src/domain/interface/index';
1
+ import type { ILogger, IRegistry } from '../../../domain/interface/index';
2
2
  /**
3
3
  * Base factory creation options.
4
4
  * @template T The type of items in the registry and created by the factory.
@@ -1,5 +1,5 @@
1
- export type { IBaseContainerOptions } from "./container-options.interface";
2
- export type { IBaseErrorOptions } from "./error-options.interface";
3
- export type { IBaseFactoryOptions } from "./factory-options.interface";
4
- export type { IBaseRegistryOptions } from "./registry-options.interface";
1
+ export type { IBaseContainerOptions } from './container-options.interface';
2
+ export type { IBaseErrorOptions } from './error-options.interface';
3
+ export type { IBaseFactoryOptions } from './factory-options.interface';
4
+ export type { IBaseRegistryOptions } from './registry-options.interface';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- import type { ILogger } from '../../../src/domain/interface/index';
1
+ import type { ILogger } from '../../../domain/interface/index';
2
2
  /**
3
3
  * Base registry creation options.
4
4
  * @see {@link https://elsikora.com/docs/cladi/core-concepts/registry} for more details.
@@ -1,4 +1,4 @@
1
- import type { ELoggerLogLevel } from '../../src/domain/enum/index';
1
+ import type { ELoggerLogLevel } from '../../domain/enum/index';
2
2
  /**
3
3
  * The options for the console logger.
4
4
  * @see {@link https://elsikora.com/docs/cladi/services/logging} for more details on logging options.
@@ -1,4 +1,4 @@
1
- import type { ILogger } from '../../src/domain/interface/index';
1
+ import type { ILogger } from '../../domain/interface/index';
2
2
  /**
3
3
  * Options for the CoreFactory.
4
4
  * @see {@link https://elsikora.com/docs/cladi/core-concepts/factory} for more details.
@@ -1,4 +1,4 @@
1
- export type * from "./base";
2
- export type { IConsoleLoggerOptions } from "./console-logger-options.interface";
3
- export type { ICoreFactoryOptions } from "./core-factory-options.interface";
1
+ export type * from './base/index';
2
+ export type { IConsoleLoggerOptions } from './console-logger-options.interface';
3
+ export type { ICoreFactoryOptions } from './core-factory-options.interface';
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- import type { ILogger, ILoggerMethodOptions } from '../../src/domain/interface/index';
2
- import type { IConsoleLoggerOptions } from '../../src/infrastructure/interface/index';
1
+ import type { ILogger, ILoggerMethodOptions } from '../../domain/interface/index';
2
+ import type { IConsoleLoggerOptions } from '../interface/index';
3
3
  /**
4
4
  * Console logger implementation.
5
5
  * @see {@link https://elsikora.com/docs/cladi/services/logging}
@@ -1,2 +1,2 @@
1
- export { ConsoleLoggerService } from "./console-logger.service";
1
+ export { ConsoleLoggerService } from './console-logger.service';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- import type { IContainer } from '../../../src/domain/interface/index';
2
- import type { IBaseContainerOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { IContainer } from '../../../domain/interface/index';
2
+ import type { IBaseContainerOptions } from '../../../infrastructure/interface/index';
3
3
  /**
4
4
  * Creates a new container instance.
5
5
  * @param {IBaseContainerOptions} options - The options to use for the container.
@@ -1,5 +1,5 @@
1
- import type { IFactory } from '../../../src/domain/interface/index';
2
- import type { IBaseFactoryOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { IFactory } from '../../../domain/interface/index';
2
+ import type { IBaseFactoryOptions } from '../../../infrastructure/interface/index';
3
3
  /**
4
4
  * Creates a new factory instance.
5
5
  * @param {IBaseFactoryOptions<T>} options - The options to use for the factory.
@@ -1,5 +1,5 @@
1
- export { createContainer } from "./container.utility";
2
- export { createFactory } from "./factory.utility";
3
- export { createLogger } from "./logger.utility";
4
- export { createRegistry } from "./registry.utility";
1
+ export { createContainer } from './container.utility';
2
+ export { createFactory } from './factory.utility';
3
+ export { createLogger } from './logger.utility';
4
+ export { createRegistry } from './registry.utility';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- import type { ILogger } from '../../../src/domain/interface/index';
2
- import type { IConsoleLoggerOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { ILogger } from '../../../domain/interface/index';
2
+ import type { IConsoleLoggerOptions } from '../../../infrastructure/interface/index';
3
3
  /**
4
4
  * Creates a new logger instance.
5
5
  * @param {IConsoleLoggerOptions} [options] - The options to use for the logger.
@@ -1,5 +1,5 @@
1
- import type { IRegistry } from '../../../src/domain/interface/index';
2
- import type { IBaseRegistryOptions } from '../../../src/infrastructure/interface/index';
1
+ import type { IRegistry } from '../../../domain/interface/index';
2
+ import type { IBaseRegistryOptions } from '../../../infrastructure/interface/index';
3
3
  /**
4
4
  * Creates a new registry instance.
5
5
  * @param {IBaseRegistryOptions} options - The options to use for the registry.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elsikora/cladi",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "ClaDI is a library for creating and managing classes in TypeScript.",
5
5
  "keywords": [
6
6
  "typescript",