2022-05-07 16:17:37 +02:00
|
|
|
// todo: use import assertions once they're supported by Node.js & ESLint
|
|
|
|
// https://github.com/tc39/proposal-import-assertions
|
2024-02-06 22:58:49 +01:00
|
|
|
import {createRequire} from 'module';
|
|
|
|
const require = createRequire(import.meta.url);
|
2018-06-03 17:10:01 -05:00
|
|
|
|
2024-02-06 22:58:49 +01:00
|
|
|
const baseProfile = require('./base.json');
|
|
|
|
import {products} from './products.js';
|
2018-06-03 17:10:01 -05:00
|
|
|
|
2022-05-07 16:17:37 +02:00
|
|
|
const profile = {
|
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
|
|
|
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 🤔
|
2024-02-06 22:58:49 +01:00
|
|
|
};
|
2018-06-03 17:10:01 -05:00
|
|
|
|
2022-05-07 16:17:37 +02:00
|
|
|
export {
|
|
|
|
profile,
|
2024-02-06 22:58:49 +01:00
|
|
|
};
|