docs(furniture-bff): add service boundary notes

This commit is contained in:
José René White Enciso 2026-02-24 05:26:54 -06:00
parent fd2d61701d
commit 0d86a012b4
3 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,13 @@
# Furniture BFF Service Boundary
## Purpose
Preserve BFF as an edge adapter layer that depends on service contracts only.
## BFF Responsibilities
- REST edge exposure
- Service client adaptation
- Correlation/tracing propagation
## Prohibited
- Direct DAL access
- Domain business decision ownership

View File

@ -0,0 +1,6 @@
# Correlation Propagation Checks
## Checks
- Correlation identifiers are preserved across BFF -> Service calls.
- No new correlation behavior is introduced at edge.
- Trace metadata pass-through remains stable.

View File

@ -0,0 +1,9 @@
# Post-Domain Contract Alignment
## Goal
Align BFF adapter usage with service contracts after domain extraction.
## Steps
1. Map current BFF contract usage to updated service contracts.
2. Keep edge contract behavior stable.
3. Validate adapter compatibility.