bus-mj 1.2.2 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/data/bus.js CHANGED
@@ -5,7 +5,7 @@ module.exports = {
5
5
  "L6": { "label": "ligne 6", "color": "white", "band": ["green"], "board": null },
6
6
  "L70": { "label": "ligne 7", "color": "yellow", "band": ["blue", "red"], "board": "red" },
7
7
  "L71": { "label": "ligne 7", "color": "yellow", "band": ["blue", "red"], "board": "blue" },
8
- "L8": { "label": "ligne 9", "color": "white", "band": ["red"], "board": null },
8
+ "L8": { "label": "ligne 8", "color": "white", "band": ["red"], "board": null },
9
9
  "L9": { "label": "ligne 9", "color": "blue", "band": ["yellow"], "board": null },
10
10
  "L11": { "label": "ligne 11", "color": "white", "band": ["green"], "board": null },
11
11
  "L12": { "label": "ligne 12", "color": "white", "band": ["yellow"], "board": null },
@@ -39,7 +39,6 @@ module.exports = {
39
39
  "S23": "bognet",
40
40
  "S24": "boina beach(caveau,elevage)",
41
41
  "S25": "bois sacré",
42
- "S26": "bonet",
43
42
  "S27": "bord",
44
43
  "S28": "caserne",
45
44
  "S29": "cnaps",
package/index.d.ts CHANGED
@@ -6,7 +6,8 @@ declare module 'bus-mj' {
6
6
  export function getAllBus(): [{
7
7
  label: string,
8
8
  color: string,
9
- band: string[]
9
+ band: string[],
10
+ board: string | null
10
11
  }];
11
12
  export function busAt(busId: string): {label: string,color: string,band: string[], board: string | null};
12
13
  export function getAllStop(): { key: string, value: string }[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bus-mj",
3
- "version": "1.2.2",
3
+ "version": "1.2.4",
4
4
  "description": "package for BUS station in Mahajanga",
5
5
  "main": "index.js",
6
6
  "typings": "index.d.ts",