Neues MRt eingefügt. Status 059 sind nun keine FMS status mehr

This commit is contained in:
PxlLoewe
2026-01-15 00:18:50 +01:00
parent edfaf7a228
commit 0b30936f73
47 changed files with 804 additions and 501 deletions

View File

@@ -1,4 +1,5 @@
import { Station } from "../../generated/client";
import { StationStatus } from "./SocketEvents";
import { PublicUser } from "./User";
export interface MissionVehicleLog {
@@ -37,6 +38,19 @@ export interface MissionSdsLog {
};
}
export interface MissionSdsStatusLog {
type: "sds-status-log";
auto: false;
timeStamp: string;
data: {
direction: "to-lst" | "to-aircraft";
stationId: number;
station: Station;
user: PublicUser;
status: string;
};
}
export interface MissionMessageLog {
type: "message-log";
auto: false;
@@ -90,4 +104,5 @@ export type MissionLog =
| MissionAlertLogAuto
| MissionCompletedLog
| MissionVehicleLog
| MissionReopenedLog;
| MissionReopenedLog
| MissionSdsStatusLog;