db-vendo-client/p/hvv/index.js

25 lines
525 B
JavaScript
Raw Normal View History

2019-05-08 10:57:37 +02:00
'use strict'
const baseProfile = require('./base.json')
2019-05-08 10:57:37 +02:00
const products = require('./products')
const hvvProfile = {
...baseProfile,
2019-05-08 10:57:37 +02:00
locale: 'de-DE',
timezone: 'Europe/Berlin',
// baseProfile.salt is interpreted as hex by hafas-client
salt: Buffer.from('pqjM3iKEGOAhYbX76k9R5zutv', 'utf8'),
2019-05-08 10:57:37 +02:00
addMicMac: true,
products,
trip: true,
radar: true,
refreshJourney: true,
2020-09-16 17:21:59 +02:00
reachableFrom: true,
remarksGetPolyline: false,
2020-11-28 11:40:46 +01:00
lines: false, // fails with `FAIL` "HCI Service: request failed"
2019-05-08 10:57:37 +02:00
}
module.exports = hvvProfile