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

45 lines
688 B
JavaScript
Raw Permalink Normal View History

2018-03-24 18:18:34 +01:00
'use strict'
// 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',
2018-03-24 18:18:34 +01:00
default: true
},
{
id: 'metro',
2018-03-24 18:18:34 +01:00
mode: 'train',
bitmasks: [8],
name: 'Foo Bar Metro',
short: 'M',
2018-03-24 18:18:34 +01:00
default: true
}
]
const transformReqBody = (body) => {
// get these from the recorded app requests
// body.client = { … }
// body.ver = …
// body.auth = { … }
// body.lang = …
return body
}
const insaProfile = {
// locale: …,
// timezone: …,
// endpoint: …,
transformReqBody,
products: products,
trip: false,
2018-03-24 18:18:34 +01:00
radar: false
}
module.exports = insaProfile