/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { DirectionEnum } from './DirectionEnum'; import type { Status147Enum } from './Status147Enum'; /** * Read-only view of a platform migration run — the status/progress payload. * * ``run_id`` is the public task id callers poll on. ``report`` carries the * per-phase summaries, component selection, id-map totals and warnings written * by the runner. ``download_url`` is the link to pull the bundle as a ``.zip`` * once a completed export has one on disk (null otherwise). */ export type PlatformMigrationRun = { readonly run_id: string; readonly direction: DirectionEnum; readonly source_key: string; readonly target_key: string; readonly bundle_path: string; readonly bundle_storage_key: string; readonly status: Status147Enum; readonly phase: string; readonly cursor: any; readonly selected_components: any; readonly admin_user: string; readonly email: string; readonly report: any; readonly error_message: string; readonly download_url: string; readonly created_at: string; readonly updated_at: string; readonly started_at: string | null; readonly finished_at: string | null; };