/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { DirectionEnum } from './DirectionEnum'; /** * Start a migration run. Validates the request; the view kicks the task. * * ``selected_components`` is the OPTIONAL-set selection; mandatory * sets always run regardless. An empty/omitted list = full fidelity. */ export type PlatformMigrationRunCreate = { readonly run_id: string; direction: DirectionEnum; source_key?: string; target_key?: string; bundle_path?: string; bundle_storage_key?: string; selected_components?: any; admin_user?: string; email?: string; };