feat(service): P2.4 REST fallback POST /v1/threads/:id/messages (session-auth)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-01 01:13:45 +05:30
parent 50ef34dd90
commit 3165a5bb59
3 changed files with 48 additions and 3 deletions
@@ -0,0 +1,6 @@
import { IsOptional, IsString } from 'class-validator';
export class SendMessageDto {
@IsString() content!: string;
@IsOptional() @IsString() contentRef?: string;
}