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

26 lines
613 B
JavaScript
Raw Normal View History

2020-03-03 02:36:26 +01:00
'use strict'
const baseProfile = require('./base.json')
2020-03-03 02:36:26 +01:00
const products = require('./products')
const insaProfile = {
...baseProfile,
2020-03-03 02:36:26 +01:00
locale: 'de-DE',
timezone: 'Europe/Berlin',
// https://runkit.com/derhuerst/hafas-decrypt-encrypted-mac-salt
// https://gist.github.com/derhuerst/fd2f81a597bde66cb1f689006d574d7f#file-config-txt-L22-L23
salt: Buffer.from('SP31mBufSyCLmNxp', 'utf-8'),
addMicMac: true,
products: products,
trip: true,
radar: true,
reachableFrom: true,
refreshJourneyUseOutReconL: true,
2020-03-03 02:36:26 +01:00
departuresGetPasslist: false,
departuresStbFltrEquiv: false,
}
module.exports = insaProfile;