@golemio/waze-tt 1.1.6-dev.842074412 → 1.1.6-dev.846557806

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.
@@ -1,7 +1,7 @@
1
1
  import { LineString } from "geojson";
2
2
  export default interface ISubRoute {
3
3
  line_md5?: string;
4
- route_id?: number;
4
+ route_id?: string;
5
5
  line: LineString;
6
6
  from_name: string;
7
7
  to_name: string;
@@ -4,6 +4,6 @@ export default interface ISubRouteLives {
4
4
  length: number;
5
5
  time: number;
6
6
  update_time?: number;
7
- route_id?: number;
7
+ route_id?: string;
8
8
  subroute_line_md5?: string;
9
9
  }
@@ -106,7 +106,7 @@ const outputSubRoutesJsonSchema = {
106
106
  from_name: { type: "string" },
107
107
  line_md5: { type: "string" },
108
108
  line: { $ref: "#/definitions/geometry" },
109
- route_id: { type: "number" },
109
+ route_id: { type: "string" },
110
110
  to_name: { type: "string" },
111
111
  },
112
112
  required: ["line_md5", "route_id"],
@@ -120,7 +120,7 @@ const outputRouteLivesJsonSchema = {
120
120
  historic_time: { type: "number" },
121
121
  jam_level: { type: "number" },
122
122
  length: { type: "number" },
123
- route_id: { type: "number" },
123
+ route_id: { type: "string" },
124
124
  time: { type: "number" },
125
125
  update_time: { type: "number" },
126
126
  },
@@ -132,7 +132,7 @@ const outputSubRouteLivesJsonSchema = {
132
132
  historic_time: { type: "number" },
133
133
  jam_level: { type: "number" },
134
134
  length: { type: "number" },
135
- route_id: { type: "number" },
135
+ route_id: { type: "string" },
136
136
  subroute_line_md5: { type: "string" },
137
137
  time: { type: "number" },
138
138
  update_time: { type: "number" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@golemio/waze-tt",
3
- "version": "1.1.6-dev.842074412",
3
+ "version": "1.1.6-dev.846557806",
4
4
  "description": "Golemio Waze TT Module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",