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

24 lines
555 B
JavaScript
Raw Normal View History

2020-02-06 16:25:21 +01:00
'use strict'
const baseProfile = require('./base.json')
2020-02-06 16:25:21 +01:00
const products = require('./products')
const vsnProfile = {
...baseProfile,
2020-02-06 16:25:21 +01:00
locale: 'de-DE',
timezone: 'Europe/Berlin',
// https://gist.github.com/n0emis/3b6887572793f4f54da9d83b30548332#file-haf_config_base-properties-L31
// https://runkit.com/derhuerst/hafas-decrypt-encrypted-mac-salt
salt: Buffer.from('SP31mBufSyCLmNxp', 'utf8'),
2020-02-06 16:25:21 +01:00
addMicMac: true,
products: products,
refreshJourneyUseOutReconL: true,
2020-02-06 16:25:21 +01:00
trip: true,
radar: true,
reachableFrom: true,
}
module.exports = vsnProfile