From f5f76f8a7b405b67aa03574647ff1b2f61d10bc8 Mon Sep 17 00:00:00 2001 From: itskovacs Date: Sat, 25 Oct 2025 10:56:35 +0200 Subject: [PATCH] Update TripDay models: add date --- src/src/app/types/trip.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/src/app/types/trip.ts b/src/src/app/types/trip.ts index df51fda..197c00f 100644 --- a/src/src/app/types/trip.ts +++ b/src/src/app/types/trip.ts @@ -39,6 +39,7 @@ export interface TripAttachment { export interface TripDay { id: number; + dt?: string; label: string; items: TripItem[]; } @@ -68,6 +69,7 @@ export interface TripStatus { export interface FlattenedTripItem { td_id: number; td_label: string; + td_date?: string; id: number; time: string; text: string;