From 65865f2e2dcfd6ce722a85635303df804e4b1333 Mon Sep 17 00:00:00 2001 From: itskovacs Date: Sun, 2 Nov 2025 00:17:08 +0100 Subject: [PATCH] update interfaces: TripItem attachments --- 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 197c00f..818ce78 100644 --- a/src/src/app/types/trip.ts +++ b/src/src/app/types/trip.ts @@ -59,6 +59,7 @@ export interface TripItem { image_id?: number; gpx?: string; paid_by?: string; + attachments?: TripAttachment[]; } export interface TripStatus { @@ -85,6 +86,7 @@ export interface FlattenedTripItem { image_id?: number; gpx?: string; paid_by?: string; + attachments?: TripAttachment[]; } export interface TripMember {