2018-02-26 22:14:11 +01:00
|
|
|
'use strict'
|
|
|
|
|
2021-04-18 19:02:54 +02:00
|
|
|
const baseProfile = require('./base.json')
|
2018-02-26 22:14:11 +01:00
|
|
|
const products = require('./products')
|
|
|
|
|
|
|
|
const insaProfile = {
|
2021-04-18 19:02:54 +02:00
|
|
|
...baseProfile,
|
2018-02-26 22:14:11 +01:00
|
|
|
locale: 'de-DE',
|
|
|
|
timezone: 'Europe/Berlin',
|
|
|
|
|
2018-03-16 17:00:06 +01:00
|
|
|
products: products,
|
2018-02-26 22:14:11 +01:00
|
|
|
|
2018-06-29 15:14:26 +02:00
|
|
|
trip: true,
|
2018-07-24 18:28:33 +02:00
|
|
|
radar: true,
|
2021-04-18 22:31:41 +02:00
|
|
|
refreshJourneyUseOutReconL: true,
|
2020-03-07 00:35:32 +01:00
|
|
|
reachableFrom: true,
|
2018-02-26 22:14:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = insaProfile;
|