🚀 Address features
Address features are SDK composers, not Express middleware; addressService mounts the Address feature with the required route context.
Inventory
| Feature | Composed schema(s) | Composed route(s) | Purpose |
|---|---|---|---|
findAddressFeature | findAddressSchema | findAddressRoute | Validated postal-code lookup. |
Details
Each feature is mounted by addressService. The source definitions below show the exact schema-to-route composition.
findAddressFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by addressService or a compatible custom service context.View complete source
export const findAddressFeature = compose(findAddressSchema, findAddressRoute);