async create(request: RunRequest): Promise<Run> {
    const path = '/runs'
    return await this.post<Run, RunRequest>(path, request)
  }