/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type HostingProject = { readonly id: number; /** * Sanitized project name segment supplied by the user */ name: string; /** * Full platform-username-project name. NOT necessarily the *.vercel.app subdomain: Vercel right-truncates long names when minting the auto-alias — see vercel_alias. */ vercel_project_name: string; readonly url: string; /** * Vercel-confirmed production host (e.g. truncated-name.vercel.app), learned from create/deployment/project alias responses; empty until a deploy response carries it */ vercel_alias?: string; vercel_project_id?: string; last_deployment_id?: string; last_deployment_url?: string; last_ready_state?: string; readonly push_state: string; readonly push_error: string; readonly username: string; readonly created_at: string; readonly updated_at: string; };