Files
stack/apps/api/src/speech/dto/index.ts
Jason Woltje 7b4fda6011
All checks were successful
ci/woodpecker/push/api Pipeline was successful
feat(#398): add audio/text validation pipes and speech DTOs
Create AudioValidationPipe for MIME type and file size validation,
TextValidationPipe for TTS text input validation, and DTOs for
transcribe/synthesize endpoints. Includes 36 unit tests.

Fixes #398
2026-02-15 02:37:54 -06:00

9 lines
155 B
TypeScript

/**
* Speech DTOs barrel export
*
* Issue #398
*/
export { TranscribeDto } from "./transcribe.dto";
export { SynthesizeDto } from "./synthesize.dto";