db-vendo-client/docs/profile-boilerplate.js

46 lines
680 B
JavaScript
Raw Normal View History

// Refer to the the ./writing-a-profile.md guide.
2018-03-24 18:18:34 +01:00
const products = [
{
id: 'commuterTrain',
2018-03-24 18:18:34 +01:00
mode: 'train',
bitmasks: [16],
name: 'ACME Commuter Rail',
short: 'CR',
default: true,
2018-03-24 18:18:34 +01:00
},
{
id: 'metro',
2018-03-24 18:18:34 +01:00
mode: 'train',
bitmasks: [8],
name: 'Foo Bar Metro',
short: 'M',
default: true,
},
];
2018-03-24 18:18:34 +01:00
const transformReqBody = (body) => {
// get these from the recorded app requests
// body.client = { … }
// body.ver = …
// body.auth = { … }
// body.lang = …
return body;
};
2018-03-24 18:18:34 +01:00
const insaProfile = {
// locale: …,
// timezone: …,
// endpoint: …,
transformReqBody,
products: products,
trip: false,
radar: false,
};
2018-03-24 18:18:34 +01:00
2022-05-07 16:17:37 +02:00
export {
insaProfile,
};