Merge pull request #526 from Tria-plc/freight/feat/chat-app

feat: make the support require nothing
This commit is contained in:
Nathnael Wondisha
2026-07-08 08:41:08 +03:00
committed by GitHub
11 changed files with 237 additions and 508 deletions

View File

@@ -79,6 +79,12 @@ export interface SendPassengerSupportMessageDto {
text: string;
}
/** The single device-scoped thread for the portal: conversation + its messages. */
export interface PassengerSupportThreadDto {
conversation: PassengerSupportConversationDto | null;
messages: PassengerSupportMessageDto[];
}
/** Paginated list envelope for the conversations list endpoints. */
export interface PassengerSupportConversationListResult {
items: PassengerSupportConversationDto[];