@golemio/waze-ccp 1.1.8-dev.1086068318 → 1.1.8-dev.1087911900

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.
@@ -26,14 +26,14 @@ paths:
26
26
  parameters:
27
27
  - name: from
28
28
  in: query
29
- description: Date in ISO8601, limits data measured from this datetime
29
+ description: Date in ISO8601, limit to pothole alerts published by Waze from this datetime
30
30
  required: false
31
31
  schema:
32
32
  type: string
33
33
  example: "2020-05-16T04:27:58.000Z"
34
34
  - name: to
35
35
  in: query
36
- description: Date in ISO8601, limits data measured up until this datetime (default 7 days into past)
36
+ description: Date in ISO8601, limit to pothole alerts published by Waze until this datetime (default 7 days into past)
37
37
  required: false
38
38
  schema:
39
39
  type: string
@@ -91,6 +91,7 @@ components:
91
91
  properties:
92
92
  geometry:
93
93
  type: object
94
+ description: incident location
94
95
  properties:
95
96
  coordinates:
96
97
  type: array
@@ -105,36 +106,47 @@ components:
105
106
  properties:
106
107
  uuid:
107
108
  type: string
109
+ description: incident unique ID according to Waze
108
110
  example: "a6771712-9256-b870-c6d3-e232d9bc7b1a"
109
111
  city:
110
112
  type: string
113
+ description: city
111
114
  example: "Praha"
112
115
  street:
113
116
  type: string
117
+ description: street
114
118
  example: "Liberecká"
115
119
  road_type:
116
- type: integer
120
+ type: string
121
+ description: road type/class/level
117
122
  example: 3
118
123
  event_direction:
119
124
  type: integer
125
+ description: driving angle in degrees according to the reporting driver; 0-359, 0=North
120
126
  example: 41
121
127
  published_at:
122
128
  type: string
129
+ description: uuid publication date and time from Waze
123
130
  example: "2023-11-20 15:38:04.105+01"
124
131
  valid_from:
125
132
  type: string
133
+ description: recording date and time to database
126
134
  example: "2023-11-20 15:38:04.105+01"
127
135
  last_reported_at:
128
136
  type: string
137
+ description: date and time of last received incident to database
129
138
  example: "2023-11-20 15:38:04.105+01"
130
139
  reliability:
131
140
  type: integer
141
+ description: reliability score based on other user’s reactions ('Thumbs up' etc.) and the level of the reporter; range 0-10, 10=max.
132
142
  example: 5
133
143
  confidence:
134
144
  type: integer
145
+ description: confidence score based only on other user’s reactions ('Thumbs up' etc.); range 0-10, 10=max.
135
146
  example: 0
136
147
  duplicate_count:
137
148
  type: integer
149
+ description: how many of one, two or more identical incidents with the same 'uuid' was dumped; 0=origin, 1=the first duplicate appeared
138
150
  example: 1
139
151
  type:
140
152
  type: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@golemio/waze-ccp",
3
- "version": "1.1.8-dev.1086068318",
3
+ "version": "1.1.8-dev.1087911900",
4
4
  "description": "Golemio Waze CCP Module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",