feat: make the support require nothing

This commit is contained in:
Nathnael
2026-07-08 05:33:02 +00:00
parent 9cd3ac42b4
commit a817976db8
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[];