mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 23:29:35 +02:00
23 lines
555 B
JavaScript
23 lines
555 B
JavaScript
'use strict'
|
|
|
|
const baseProfile = require('./base.json')
|
|
const products = require('./products')
|
|
|
|
const vsnProfile = {
|
|
...baseProfile,
|
|
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'),
|
|
addMicMac: true,
|
|
|
|
products: products,
|
|
|
|
refreshJourneyUseOutReconL: true,
|
|
trip: true,
|
|
radar: true,
|
|
reachableFrom: true,
|
|
}
|
|
|
|
module.exports = vsnProfile
|