db-vendo-client/p/pkp/products.js

39 lines
618 B
JavaScript
Raw Normal View History

2022-05-07 16:17:37 +02:00
const products = [
2020-03-11 20:00:54 +01:00
{
id: 'high-speed-train',
mode: 'train',
bitmasks: [1, 2],
name: 'ExpressInterCity & ExpressInterCity Premium & InterCityExpress',
short: 'EIC/EIP/ICE',
default: true
},
{
id: 'long-distance-train',
mode: 'train',
bitmasks: [4],
name: 'InterCity & Twoje Linie Kolejowe & EuroCity & EuroNight',
short: 'IC/TLK/EC/EN',
default: true
},
{
id: 'regional-train',
mode: 'train',
bitmasks: [8],
name: 'Regional',
short: 'R',
default: true
},
{
id: 'bus',
mode: 'bus',
bitmasks: [32],
name: 'Bus',
short: 'B',
default: true
}
2022-05-07 16:17:37 +02:00
]
export {
products,
}