Revert "Revert "PR v2.0.7""
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user