mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-04-20 23:23:56 +03:00
32 lines
622 B
JavaScript
32 lines
622 B
JavaScript
|
import baseProfile from './base.json' with { type: 'json' };
|
||
|
import {products} from '../../lib/products.js';
|
||
|
import {formatStationBoardReq} from './station-board-req.js';
|
||
|
|
||
|
const profile = {
|
||
|
...baseProfile,
|
||
|
locale: 'de-DE',
|
||
|
timezone: 'Europe/Berlin',
|
||
|
|
||
|
products,
|
||
|
|
||
|
formatStationBoardReq,
|
||
|
|
||
|
journeysOutFrwd: false,
|
||
|
departuresGetPasslist: true,
|
||
|
departuresStbFltrEquiv: true,
|
||
|
trip: false,
|
||
|
radar: false,
|
||
|
refreshJourney: false,
|
||
|
journeysFromTrip: false,
|
||
|
refreshJourneyUseOutReconL: false,
|
||
|
tripsByName: false,
|
||
|
remarks: false,
|
||
|
remarksGetPolyline: false,
|
||
|
reachableFrom: false,
|
||
|
lines: false,
|
||
|
};
|
||
|
|
||
|
export {
|
||
|
profile,
|
||
|
};
|