mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 15:19:35 +02:00
24 lines
525 B
JavaScript
24 lines
525 B
JavaScript
'use strict'
|
|
|
|
const baseProfile = require('./base.json')
|
|
const products = require('./products')
|
|
|
|
const hvvProfile = {
|
|
...baseProfile,
|
|
locale: 'de-DE',
|
|
timezone: 'Europe/Berlin',
|
|
// baseProfile.salt is interpreted as hex by hafas-client
|
|
salt: Buffer.from('pqjM3iKEGOAhYbX76k9R5zutv', 'utf8'),
|
|
addMicMac: true,
|
|
|
|
products,
|
|
|
|
trip: true,
|
|
radar: true,
|
|
refreshJourney: true,
|
|
reachableFrom: true,
|
|
remarksGetPolyline: false,
|
|
lines: false, // fails with `FAIL` "HCI Service: request failed"
|
|
}
|
|
|
|
module.exports = hvvProfile
|