@teqfw/di 2.6.0 → 2.6.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.6.1 - 2026-06-07 - Type declarations cleanup
4
+
5
+ * Removed stale `TeqFw_Di_Def_Parser` and `ExportSelector` aliases from `types.d.ts`.
6
+ * Updated the parser type alias to `TeqFw_Di_Parser` and aligned it with the moved `src/Parser.mjs` component.
7
+ * Updated package version metadata to `2.6.1`.
8
+
3
9
  ## 2.6.0 - 2026-06-07 - Parser relocation and contract clarification
4
10
 
5
11
  * Moved the parser component from the legacy `Def/` path to `src/Parser.mjs` and aligned the related unit test layout with the component structure.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teqfw/di",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "description": "Dependency Injection container for ES6 modules that works in both browser and Node.js apps.",
5
5
  "keywords": [
6
6
  "dependency injection",
package/types.d.ts CHANGED
@@ -1,12 +1,11 @@
1
1
  declare global {
2
2
  type TeqFw_Di_Config_NamespaceRegistry = import("./src/Config/NamespaceRegistry.mjs").default;
3
3
  type TeqFw_Di_Container = import("./src/Container.mjs").default;
4
- type TeqFw_Di_Container_Instantiate_ExportSelector = import("./src/Container/Instantiate/ExportSelector.mjs").default;
5
4
  type TeqFw_Di_Container_Instantiate_Instantiator = import("./src/Container/Instantiate/Instantiator.mjs").default;
6
5
  type TeqFw_Di_Container_Lifecycle_Registry = import("./src/Container/Lifecycle/Registry.mjs").default;
7
6
  type TeqFw_Di_Container_Resolve_GraphResolver = import("./src/Container/Resolve/GraphResolver.mjs").default;
8
7
  type TeqFw_Di_Container_Wrapper_Executor = import("./src/Container/Wrapper/Executor.mjs").default;
9
- type TeqFw_Di_Def_Parser = import("./src/Def/Parser.mjs").default;
8
+ type TeqFw_Di_Parser = import("./src/Parser.mjs").default;
10
9
  type TeqFw_Di_DepId = import("./src/Dto/DepId.mjs").default;
11
10
  type TeqFw_Di_DepId__DTO = import("./src/Dto/DepId.mjs").default;
12
11
  type TeqFw_Di_DepId$Factory = InstanceType<typeof import("./src/Dto/DepId.mjs").Factory>;