/** * The status of the tune job. */ export type TuneStatus = "pending" | "running" | "succeeded" | "cancelled" | "failed";