db-vendo-client/format/trip-req.js

16 lines
231 B
JavaScript
Raw Permalink Normal View History

2024-12-18 01:16:57 +00:00
const formatTripReq = ({profile, opt}, id) => {
2019-10-31 20:08:56 +01:00
return {
2024-12-18 01:16:57 +00:00
endpoint: profile.tripEndpoint,
path: '',
query: {
journeyId: id,
poly: opt.polyline || opt.polylines,
},
2024-12-18 01:16:57 +00:00
method: 'get',
};
};
2019-10-31 20:08:56 +01:00
2022-05-07 16:17:37 +02:00
export {
formatTripReq,
};