feat: add updatedAt field to tour from DL Api
This commit is contained in:
@@ -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>;
|
||||
|
||||
Reference in New Issue
Block a user