@golemio/flow 1.2.6-dev.985218732 → 1.2.6-rc.1017524207
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.
|
@@ -112,8 +112,8 @@ const outputODMeasurementsJsonSchema = {
|
|
|
112
112
|
cube_id: { type: "number" },
|
|
113
113
|
sequence_number: { type: "number" },
|
|
114
114
|
analytic_id: { type: "number" },
|
|
115
|
-
start_timestamp: { type: "
|
|
116
|
-
end_timestamp: { type: "
|
|
115
|
+
start_timestamp: { type: "object", required: ["toISOString"] },
|
|
116
|
+
end_timestamp: { type: "object", required: ["toISOString"] },
|
|
117
117
|
category: { type: "string" },
|
|
118
118
|
origin: { type: "string" },
|
|
119
119
|
destination: { type: "string" },
|
package/docs/openapi.yaml
CHANGED
|
@@ -5,26 +5,26 @@ info:
|
|
|
5
5
|
description: Locations and Measurements of movement
|
|
6
6
|
version: 1.0.0
|
|
7
7
|
contact:
|
|
8
|
-
name: Golemio Prague Data
|
|
8
|
+
name: Golemio Prague Data Platform
|
|
9
9
|
email: golemio@operatorict.cz
|
|
10
10
|
url: https://golemio.cz
|
|
11
11
|
|
|
12
12
|
servers:
|
|
13
|
-
- url: https://api.golemio.cz
|
|
13
|
+
- url: https://api.golemio.cz
|
|
14
14
|
description: Main (production) server
|
|
15
|
-
- url: https://rabin.golemio.cz
|
|
15
|
+
- url: https://rabin.golemio.cz
|
|
16
16
|
description: Test (development) server
|
|
17
17
|
|
|
18
18
|
tags:
|
|
19
|
-
- name: 🚶 Pedestrians
|
|
19
|
+
- name: 🚶 Pedestrians (v2)
|
|
20
20
|
description: 💡 Locations and Measurements of movement
|
|
21
21
|
paths:
|
|
22
|
-
/pedestrians/locations:
|
|
22
|
+
/v2/pedestrians/locations:
|
|
23
23
|
get:
|
|
24
24
|
summary: Get locations and directions
|
|
25
25
|
description: ""
|
|
26
26
|
tags:
|
|
27
|
-
- 🚶 Pedestrians
|
|
27
|
+
- 🚶 Pedestrians (v2)
|
|
28
28
|
parameters:
|
|
29
29
|
- name: locationId
|
|
30
30
|
in: query
|
|
@@ -65,12 +65,12 @@ paths:
|
|
|
65
65
|
"404":
|
|
66
66
|
description: Location not found
|
|
67
67
|
|
|
68
|
-
/pedestrians/measurements:
|
|
68
|
+
/v2/pedestrians/measurements:
|
|
69
69
|
get:
|
|
70
70
|
summary: GET measurements of pedestrian traffic
|
|
71
71
|
description: ""
|
|
72
72
|
tags:
|
|
73
|
-
- 🚶 Pedestrians
|
|
73
|
+
- 🚶 Pedestrians (v2)
|
|
74
74
|
parameters:
|
|
75
75
|
- name: locationId
|
|
76
76
|
in: query
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@golemio/flow",
|
|
3
|
-
"version": "1.2.6-
|
|
3
|
+
"version": "1.2.6-rc.1017524207",
|
|
4
4
|
"description": "Golemio Flow Module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@commitlint/cli": "^11.0.0",
|
|
35
35
|
"@commitlint/config-conventional": "^11.0.0",
|
|
36
|
-
"@golemio/cli": "1.
|
|
37
|
-
"@golemio/core": "1.
|
|
36
|
+
"@golemio/cli": "1.5.0",
|
|
37
|
+
"@golemio/core": "1.9.2-dev.1008079941",
|
|
38
38
|
"@golemio/db-common": "1.1.1",
|
|
39
39
|
"@golemio/eslint-config": "1.1.1",
|
|
40
40
|
"@types/chai": "4.2.3",
|
|
@@ -66,6 +66,6 @@
|
|
|
66
66
|
"JSONStream": "^1.0.4"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
|
-
"@golemio/core": ">=1.
|
|
69
|
+
"@golemio/core": ">=1.9.0"
|
|
70
70
|
}
|
|
71
71
|
}
|