Contents
PR Summary
What problems was I solving
The UriComponent codec in architect/codecs/main was exported from the barrel but had no importers or callers anywhere in the codebase, so it was unused dead code cluttering the codecs package.
What user-facing changes did I ship
None. This change removes only unused internal library code and does not alter runtime behavior, user interfaces, or service contracts.
How I implemented it
Deleted the uri-component.ts module and removed its re-export from architect/codecs/main/index.ts, shrinking the public API surface for codecs/main.
Description for the changelog
Removed the unused UriComponent codec and its barrel export from architect/codecs/main. The functionality is unused across the codebase and can be restored or inlined if ever needed again.
codecs/main: Remove dead UriComponent codec
low2 filesRemoves the unused `UriComponent` codec module and its barrel re-export from codecs/main.