Same missing-content-schema pattern as #312, #316, #326, #332, #340, #348. The three operations under /v1/timeentry/{id} (GET / PATCH / DELETE) all have only description: ... on their 200 responses; SDK code-gen treats the body as untyped.
Controllers emit:
- GET →
{message, timeEntry}
- PATCH →
{message, timeEntry}
- DELETE →
{message, id} (echoes the int teId — no entity body)
Fix: declare each envelope. Pin with a sweep test.
Proudly Made in Nebraska. Go Big Red! 🌽 https://xkcd.com/2347/
Same missing-content-schema pattern as #312, #316, #326, #332, #340, #348. The three operations under
/v1/timeentry/{id}(GET / PATCH / DELETE) all have onlydescription: ...on their 200 responses; SDK code-gen treats the body as untyped.Controllers emit:
{message, timeEntry}{message, timeEntry}{message, id}(echoes the int teId — no entity body)Fix: declare each envelope. Pin with a sweep test.
Proudly Made in Nebraska. Go Big Red! 🌽 https://xkcd.com/2347/