import {getHeaders} from './header.js'; const formatStationBoardReq = (ctx, station, type) => { const {profile, opt} = ctx; return { endpoint: profile.boardEndpoint, path: type == 'departures' ? 'abfahrt' : 'ankunft', body: {anfragezeit: profile.formatTimeOfDay(profile, opt.when), datum: profile.formatDate(profile, opt.when), ursprungsBahnhofId: profile.formatStation(station).lid, verkehrsmittel: profile.formatProductsFilter(ctx, opt.products || {}, 'dbnav')}, method: 'POST', headers: getHeaders('application/x.db.vendo.mob.bahnhofstafeln.v2+json'), }; }; export { formatStationBoardReq, };