feat: add updatedAt field to tour from DL Api

This commit is contained in:
Marcel Arndt
2025-06-30 07:53:53 +02:00
parent 5f37743019
commit b9fd09a79f
10 changed files with 38 additions and 0 deletions
@@ -364,6 +364,7 @@ type Tour {
totalKm: Float!
transportType: String
type: String!
updatedAt: DateTime
}
type TourCostBreakdown {
@@ -337,6 +337,7 @@ export type Tour = {
consumptionCosts: Generated<number>;
revenueDeviation: Generated<number>;
createdAt: Timestamp | null;
updatedAt: Timestamp | null;
deletedAt: Timestamp | null;
ticketId: string | null;
};
@@ -347,6 +348,7 @@ export type TourSource = {
id: string | null;
check: string | null;
createTime: string | null;
lastUpdate: string | null;
empfangenVonId: string | null;
endgen: string | null;
serienId: string | null;
@@ -459,6 +461,7 @@ export type TourStaging = {
revenueDeviation: Generated<number>;
consumptionCosts: Generated<number>;
createdAt: Timestamp | null;
updatedAt: Timestamp | null;
};
export type Trace = {
id: Generated<string>;