mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 23:29:35 +02:00
28 lines
386 B
JavaScript
28 lines
386 B
JavaScript
|
'use strict'
|
||
|
|
||
|
const baseProfile = require('./base.json')
|
||
|
|
||
|
const products = [{
|
||
|
id: 'bus',
|
||
|
mode: 'bus',
|
||
|
bitmasks: [32],
|
||
|
name: 'Bus',
|
||
|
short: 'Bus',
|
||
|
default: true,
|
||
|
}]
|
||
|
|
||
|
const dartProfile = {
|
||
|
...baseProfile,
|
||
|
locale: 'en-US',
|
||
|
timezone: 'America/Chicago',
|
||
|
|
||
|
products,
|
||
|
|
||
|
refreshJourneyUseOutReconL: true,
|
||
|
trip: true,
|
||
|
reachableFrom: true,
|
||
|
radar: true,
|
||
|
}
|
||
|
|
||
|
module.exports = dartProfile
|