2018-06-03 17:10:01 -05:00
|
|
|
'use strict'
|
|
|
|
|
2021-04-18 19:02:54 +02:00
|
|
|
const baseProfile = require('./base.json')
|
2018-08-24 19:25:30 +02:00
|
|
|
const products = require('./products')
|
2018-06-03 17:10:01 -05:00
|
|
|
|
|
|
|
const cmtaProfile = {
|
2021-04-18 19:02:54 +02:00
|
|
|
...baseProfile,
|
2018-06-03 17:10:01 -05:00
|
|
|
locale: 'en-US',
|
|
|
|
timezone: 'America/Chicago',
|
2018-08-24 19:25:30 +02:00
|
|
|
|
|
|
|
products,
|
|
|
|
|
2021-04-18 22:31:41 +02:00
|
|
|
departuresGetPasslist: false,
|
|
|
|
departuresStbFltrEquiv: false,
|
|
|
|
refreshJourneyUseOutReconL: true,
|
2018-08-24 19:28:31 +02:00
|
|
|
trip: true,
|
|
|
|
radar: true,
|
2018-08-26 18:35:27 +02:00
|
|
|
refreshJourney: true,
|
2020-09-16 17:21:59 +02:00
|
|
|
reachableFrom: true,
|
2021-04-18 22:31:41 +02:00
|
|
|
remarks: true, // `.svcResL[0].res.msgL[]` is missing though 🤔
|
2018-06-03 17:10:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = cmtaProfile
|