lila/apps/api
lila 075a691849 feat(api): add answer evaluation endpoint
Complete the game answer flow:

- Add evaluateAnswer service function: looks up the session in the
  GameSessionStore, compares the submitted optionId against the stored
  correct answer, returns an AnswerResult.
- Add submitAnswer controller with safeParse validation and error
  handling (session/question not found → 404).
- Add POST /api/v1/game/answer route.
- Fix createGameSession: was missing the answerKey tracking and the
  gameSessionStore.create() call, so sessions were never persisted.

The full singleplayer game loop now works end-to-end:
POST /game/start → GameSession, POST /game/answer → AnswerResult.
2026-04-11 12:12:54 +02:00
..
src feat(api): add answer evaluation endpoint 2026-04-11 12:12:54 +02:00
Dockerfile infra: add Docker Compose setup for local development 2026-03-25 18:56:04 +01:00
package.json feat(api): scaffold express server with /api/health endpoint 2026-03-21 10:17:53 +01:00
tsconfig.json feat(api): add in-memory GameSessionStore 2026-04-11 11:42:13 +02:00
vitest.config.ts chore: configure vitest with project-based setup and coverage 2026-03-20 19:25:00 +01:00