@golemio/pid 2.1.4-dev.429036521 → 2.1.5

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.
Files changed (60) hide show
  1. package/db/example/__truncate_tables.sql +1 -0
  2. package/db/example/ropidvymi_example.sql +12 -12
  3. package/db/migrations/postgresql/20211213120726-ropidvymi-refactoring.js +53 -0
  4. package/db/migrations/postgresql/package.json +3 -0
  5. package/db/migrations/postgresql/sqls/20211213120726-ropidvymi-refactoring-down.sql +45 -0
  6. package/db/migrations/postgresql/sqls/20211213120726-ropidvymi-refactoring-up.sql +54 -0
  7. package/db/migrations/postgresql/sqls/package.json +3 -0
  8. package/dist/integration-engine/queueDefinitions.js +13 -3
  9. package/dist/integration-engine/queueDefinitions.js.map +1 -1
  10. package/dist/integration-engine/ropid-gtfs/RopidGTFSMetadataModel.d.ts +2 -36
  11. package/dist/integration-engine/ropid-gtfs/RopidGTFSMetadataModel.js +18 -321
  12. package/dist/integration-engine/ropid-gtfs/RopidGTFSMetadataModel.js.map +1 -1
  13. package/dist/integration-engine/ropid-gtfs/RopidGTFSWorker.js +13 -12
  14. package/dist/integration-engine/ropid-gtfs/RopidGTFSWorker.js.map +1 -1
  15. package/dist/integration-engine/ropid-vymi/RopidVYMIEventsTransformation.d.ts +11 -11
  16. package/dist/integration-engine/ropid-vymi/RopidVYMIEventsTransformation.js +45 -39
  17. package/dist/integration-engine/ropid-vymi/RopidVYMIEventsTransformation.js.map +1 -1
  18. package/dist/integration-engine/ropid-vymi/RopidVYMIWorker.d.ts +15 -2
  19. package/dist/integration-engine/ropid-vymi/RopidVYMIWorker.js +115 -17
  20. package/dist/integration-engine/ropid-vymi/RopidVYMIWorker.js.map +1 -1
  21. package/dist/integration-engine/ropid-vymi/models/RopidVYMIEventsModel.d.ts +0 -16
  22. package/dist/integration-engine/ropid-vymi/models/RopidVYMIEventsModel.js +2 -46
  23. package/dist/integration-engine/ropid-vymi/models/RopidVYMIEventsModel.js.map +1 -1
  24. package/dist/integration-engine/ropid-vymi/models/RopidVYMIEventsRoutesModel.d.ts +0 -14
  25. package/dist/integration-engine/ropid-vymi/models/RopidVYMIEventsRoutesModel.js +2 -48
  26. package/dist/integration-engine/ropid-vymi/models/RopidVYMIEventsRoutesModel.js.map +1 -1
  27. package/dist/integration-engine/ropid-vymi/models/RopidVYMIEventsStopsModel.d.ts +0 -13
  28. package/dist/integration-engine/ropid-vymi/models/RopidVYMIEventsStopsModel.js +2 -50
  29. package/dist/integration-engine/ropid-vymi/models/RopidVYMIEventsStopsModel.js.map +1 -1
  30. package/dist/integration-engine/ropid-vymi/models/RopidVYMIMetadataModel.d.ts +8 -0
  31. package/dist/integration-engine/ropid-vymi/models/RopidVYMIMetadataModel.js +44 -0
  32. package/dist/integration-engine/ropid-vymi/models/RopidVYMIMetadataModel.js.map +1 -0
  33. package/dist/integration-engine/ropid-vymi/models/index.d.ts +1 -0
  34. package/dist/integration-engine/ropid-vymi/models/index.js +1 -0
  35. package/dist/integration-engine/ropid-vymi/models/index.js.map +1 -1
  36. package/dist/integration-engine/shared/RopidMetadataModel.d.ts +29 -0
  37. package/dist/integration-engine/shared/RopidMetadataModel.js +261 -0
  38. package/dist/integration-engine/shared/RopidMetadataModel.js.map +1 -0
  39. package/dist/integration-engine/shared/index.d.ts +1 -0
  40. package/dist/integration-engine/shared/index.js +14 -0
  41. package/dist/integration-engine/shared/index.js.map +1 -0
  42. package/dist/output-gateway/pid/models/PIDDepartureBoardsModel.js +1 -1
  43. package/dist/output-gateway/pid/models/PIDDepartureBoardsModel.js.map +1 -1
  44. package/dist/output-gateway/pid/models/RopidVYMIEventsStopsModel.js +2 -3
  45. package/dist/output-gateway/pid/models/RopidVYMIEventsStopsModel.js.map +1 -1
  46. package/dist/schema-definitions/ropid-gtfs/index.d.ts +2 -604
  47. package/dist/schema-definitions/ropid-gtfs/index.js +3 -24
  48. package/dist/schema-definitions/ropid-gtfs/index.js.map +1 -1
  49. package/dist/schema-definitions/ropid-vymi/RopidVYMIOutputSchemas.d.ts +135 -126
  50. package/dist/schema-definitions/ropid-vymi/RopidVYMIOutputSchemas.js +138 -129
  51. package/dist/schema-definitions/ropid-vymi/RopidVYMIOutputSchemas.js.map +1 -1
  52. package/dist/schema-definitions/ropid-vymi/RopidVYMISDMA.js +24 -23
  53. package/dist/schema-definitions/ropid-vymi/RopidVYMISDMA.js.map +1 -1
  54. package/dist/schema-definitions/ropid-vymi/index.d.ts +2 -181
  55. package/dist/schema-definitions/ropid-vymi/index.js +7 -0
  56. package/dist/schema-definitions/ropid-vymi/index.js.map +1 -1
  57. package/dist/schema-definitions/shared/index.d.ts +15 -0
  58. package/dist/schema-definitions/shared/index.js +29 -0
  59. package/dist/schema-definitions/shared/index.js.map +1 -0
  60. package/package.json +83 -83
@@ -1,141 +1,150 @@
1
1
  declare const outputEventsJsonSchema: {
2
2
  type: string;
3
- properties: {
4
- vymi_id: {
5
- type: string;
6
- };
7
- vymi_id_dtb: {
8
- type: string;
9
- };
10
- state: {
11
- type: string;
12
- };
13
- pa_01: {
14
- type: string;
15
- };
16
- pa_02: {
17
- type: string;
18
- };
19
- pa_03: {
20
- type: string;
21
- };
22
- pa_04: {
23
- type: string;
24
- };
25
- record_type: {
26
- type: string;
27
- };
28
- event_type: {
29
- type: string[];
30
- };
31
- channels: {
32
- type: string;
33
- };
34
- title: {
35
- type: string;
36
- };
37
- time_from: {
38
- type: string;
39
- };
40
- time_to_type: {
41
- type: string;
42
- };
43
- time_to: {
44
- type: string[];
45
- };
46
- expiration_date: {
47
- type: string[];
48
- };
49
- transportation_type: {
50
- type: string;
51
- };
52
- priority: {
53
- type: string[];
54
- };
55
- cause: {
56
- type: string[];
57
- };
58
- link: {
59
- type: string[];
60
- };
61
- ropid_action: {
62
- type: string[];
63
- };
64
- dpp_action: {
65
- type: string[];
66
- };
67
- description: {
68
- type: string[];
3
+ items: {
4
+ type: string;
5
+ properties: {
6
+ vymi_id: {
7
+ type: string;
8
+ };
9
+ vymi_id_dtb: {
10
+ type: string;
11
+ };
12
+ state: {
13
+ type: string;
14
+ };
15
+ pa_01: {
16
+ type: string;
17
+ };
18
+ pa_02: {
19
+ type: string;
20
+ };
21
+ pa_03: {
22
+ type: string;
23
+ };
24
+ pa_04: {
25
+ type: string;
26
+ };
27
+ record_type: {
28
+ type: string;
29
+ };
30
+ event_type: {
31
+ type: string[];
32
+ };
33
+ channels: {
34
+ type: string;
35
+ };
36
+ title: {
37
+ type: string;
38
+ };
39
+ time_from: {
40
+ type: string;
41
+ };
42
+ time_to_type: {
43
+ type: string;
44
+ };
45
+ time_to: {
46
+ type: string[];
47
+ };
48
+ expiration_date: {
49
+ type: string[];
50
+ };
51
+ transportation_type: {
52
+ type: string;
53
+ };
54
+ priority: {
55
+ type: string[];
56
+ };
57
+ cause: {
58
+ type: string[];
59
+ };
60
+ link: {
61
+ type: string[];
62
+ };
63
+ ropid_action: {
64
+ type: string[];
65
+ };
66
+ dpp_action: {
67
+ type: string[];
68
+ };
69
+ description: {
70
+ type: string[];
71
+ };
69
72
  };
70
73
  };
71
74
  };
72
75
  declare const outputEventsRoutesJsonSchema: {
73
76
  type: string;
74
- properties: {
75
- event_id: {
76
- type: string;
77
- };
78
- gtfs_route_id: {
79
- type: string[];
80
- };
81
- vymi_id: {
82
- type: string;
83
- };
84
- vymi_id_dtb: {
85
- type: string;
86
- };
87
- number: {
88
- type: string;
89
- };
90
- name: {
91
- type: string;
92
- };
93
- route_type: {
94
- type: string;
95
- };
96
- valid_from: {
97
- type: string[];
98
- };
99
- valid_to: {
100
- type: string[];
101
- };
102
- text: {
103
- type: string[];
77
+ items: {
78
+ type: string;
79
+ properties: {
80
+ event_id: {
81
+ type: string;
82
+ };
83
+ gtfs_route_id: {
84
+ type: string[];
85
+ };
86
+ vymi_id: {
87
+ type: string;
88
+ };
89
+ vymi_id_dtb: {
90
+ type: string;
91
+ };
92
+ number: {
93
+ type: string;
94
+ };
95
+ name: {
96
+ type: string;
97
+ };
98
+ route_type: {
99
+ type: string;
100
+ };
101
+ valid_from: {
102
+ type: string[];
103
+ };
104
+ valid_to: {
105
+ type: string[];
106
+ };
107
+ text: {
108
+ type: string[];
109
+ };
104
110
  };
105
111
  };
106
112
  };
107
113
  declare const outputEventsStopsJsonSchema: {
108
114
  type: string;
109
- properties: {
110
- event_id: {
111
- type: string;
112
- };
113
- gtfs_stop_id: {
114
- type: string[];
115
- };
116
- vymi_id: {
117
- type: string;
118
- };
119
- vymi_id_dtb: {
120
- type: string;
121
- };
122
- node_number: {
123
- type: string;
124
- };
125
- stop_number: {
126
- type: string;
127
- };
128
- stop_type: {
129
- type: string;
130
- };
131
- valid_from: {
132
- type: string[];
133
- };
134
- valid_to: {
135
- type: string[];
136
- };
137
- text: {
138
- type: string[];
115
+ items: {
116
+ type: string;
117
+ properties: {
118
+ event_id: {
119
+ type: string;
120
+ };
121
+ gtfs_stop_id: {
122
+ type: string[];
123
+ };
124
+ vymi_id: {
125
+ type: string;
126
+ };
127
+ vymi_id_dtb: {
128
+ type: string;
129
+ };
130
+ node_number: {
131
+ type: string;
132
+ };
133
+ stop_number: {
134
+ type: string;
135
+ };
136
+ stop_type: {
137
+ type: string;
138
+ };
139
+ valid_from: {
140
+ type: string[];
141
+ };
142
+ valid_to: {
143
+ type: string[];
144
+ };
145
+ text: {
146
+ type: string[];
147
+ };
139
148
  };
140
149
  };
141
150
  };
@@ -2,145 +2,154 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.outputEventsStopsJsonSchema = exports.outputEventsRoutesJsonSchema = exports.outputEventsJsonSchema = void 0;
4
4
  const outputEventsJsonSchema = {
5
- type: "object",
6
- properties: {
7
- vymi_id: {
8
- type: "number",
9
- },
10
- vymi_id_dtb: {
11
- type: "number",
12
- },
13
- state: {
14
- type: "number",
15
- },
16
- pa_01: {
17
- type: "string",
18
- },
19
- pa_02: {
20
- type: "string",
21
- },
22
- pa_03: {
23
- type: "string",
24
- },
25
- pa_04: {
26
- type: "string",
27
- },
28
- record_type: {
29
- type: "number",
30
- },
31
- event_type: {
32
- type: ["null", "number"],
33
- },
34
- channels: {
35
- type: "number",
36
- },
37
- title: {
38
- type: "string",
39
- },
40
- time_from: {
41
- type: "string",
42
- },
43
- time_to_type: {
44
- type: "number",
45
- },
46
- time_to: {
47
- type: ["null", "string"],
48
- },
49
- expiration_date: {
50
- type: ["null", "string"],
51
- },
52
- transportation_type: {
53
- type: "number",
54
- },
55
- priority: {
56
- type: ["null", "number"],
57
- },
58
- cause: {
59
- type: ["null", "string"],
60
- },
61
- link: {
62
- type: ["null", "string"],
63
- },
64
- ropid_action: {
65
- type: ["null", "string"],
66
- },
67
- dpp_action: {
68
- type: ["null", "string"],
69
- },
70
- description: {
71
- type: ["null", "string"],
5
+ type: "array",
6
+ items: {
7
+ type: "object",
8
+ properties: {
9
+ vymi_id: {
10
+ type: "number",
11
+ },
12
+ vymi_id_dtb: {
13
+ type: "number",
14
+ },
15
+ state: {
16
+ type: "number",
17
+ },
18
+ pa_01: {
19
+ type: "string",
20
+ },
21
+ pa_02: {
22
+ type: "string",
23
+ },
24
+ pa_03: {
25
+ type: "string",
26
+ },
27
+ pa_04: {
28
+ type: "string",
29
+ },
30
+ record_type: {
31
+ type: "number",
32
+ },
33
+ event_type: {
34
+ type: ["null", "number"],
35
+ },
36
+ channels: {
37
+ type: "number",
38
+ },
39
+ title: {
40
+ type: "string",
41
+ },
42
+ time_from: {
43
+ type: "string",
44
+ },
45
+ time_to_type: {
46
+ type: "number",
47
+ },
48
+ time_to: {
49
+ type: ["null", "string"],
50
+ },
51
+ expiration_date: {
52
+ type: ["null", "string"],
53
+ },
54
+ transportation_type: {
55
+ type: "number",
56
+ },
57
+ priority: {
58
+ type: ["null", "number"],
59
+ },
60
+ cause: {
61
+ type: ["null", "string"],
62
+ },
63
+ link: {
64
+ type: ["null", "string"],
65
+ },
66
+ ropid_action: {
67
+ type: ["null", "string"],
68
+ },
69
+ dpp_action: {
70
+ type: ["null", "string"],
71
+ },
72
+ description: {
73
+ type: ["null", "string"],
74
+ },
72
75
  },
73
76
  },
74
77
  };
75
78
  exports.outputEventsJsonSchema = outputEventsJsonSchema;
76
79
  const outputEventsRoutesJsonSchema = {
77
- type: "object",
78
- properties: {
79
- event_id: {
80
- type: "number",
81
- },
82
- gtfs_route_id: {
83
- type: ["null", "string"],
84
- },
85
- vymi_id: {
86
- type: "number",
87
- },
88
- vymi_id_dtb: {
89
- type: "number",
90
- },
91
- number: {
92
- type: "number",
93
- },
94
- name: {
95
- type: "string",
96
- },
97
- route_type: {
98
- type: "number",
99
- },
100
- valid_from: {
101
- type: ["null", "string"],
102
- },
103
- valid_to: {
104
- type: ["null", "string"],
105
- },
106
- text: {
107
- type: ["null", "string"],
80
+ type: "array",
81
+ items: {
82
+ type: "object",
83
+ properties: {
84
+ event_id: {
85
+ type: "number",
86
+ },
87
+ gtfs_route_id: {
88
+ type: ["null", "string"],
89
+ },
90
+ vymi_id: {
91
+ type: "number",
92
+ },
93
+ vymi_id_dtb: {
94
+ type: "number",
95
+ },
96
+ number: {
97
+ type: "number",
98
+ },
99
+ name: {
100
+ type: "string",
101
+ },
102
+ route_type: {
103
+ type: "number",
104
+ },
105
+ valid_from: {
106
+ type: ["null", "string"],
107
+ },
108
+ valid_to: {
109
+ type: ["null", "string"],
110
+ },
111
+ text: {
112
+ type: ["null", "string"],
113
+ },
108
114
  },
109
115
  },
110
116
  };
111
117
  exports.outputEventsRoutesJsonSchema = outputEventsRoutesJsonSchema;
112
118
  const outputEventsStopsJsonSchema = {
113
- type: "object",
114
- properties: {
115
- event_id: {
116
- type: "number",
117
- },
118
- gtfs_stop_id: {
119
- type: ["null", "string"],
120
- },
121
- vymi_id: {
122
- type: "number",
123
- },
124
- vymi_id_dtb: {
125
- type: "number",
126
- },
127
- node_number: {
128
- type: "number",
129
- },
130
- stop_number: {
131
- type: "number",
132
- },
133
- stop_type: {
134
- type: "number",
135
- },
136
- valid_from: {
137
- type: ["null", "string"],
138
- },
139
- valid_to: {
140
- type: ["null", "string"],
141
- },
142
- text: {
143
- type: ["null", "string"],
119
+ type: "array",
120
+ items: {
121
+ type: "object",
122
+ properties: {
123
+ event_id: {
124
+ type: "number",
125
+ },
126
+ gtfs_stop_id: {
127
+ type: ["null", "string"],
128
+ },
129
+ vymi_id: {
130
+ type: "number",
131
+ },
132
+ vymi_id_dtb: {
133
+ type: "number",
134
+ },
135
+ node_number: {
136
+ type: "number",
137
+ },
138
+ stop_number: {
139
+ type: "number",
140
+ },
141
+ stop_type: {
142
+ type: "number",
143
+ },
144
+ valid_from: {
145
+ type: ["null", "string"],
146
+ },
147
+ valid_to: {
148
+ type: ["null", "string"],
149
+ },
150
+ text: {
151
+ type: ["null", "string"],
152
+ },
144
153
  },
145
154
  },
146
155
  };
@@ -1 +1 @@
1
- {"version":3,"file":"RopidVYMIOutputSchemas.js","sourceRoot":"","sources":["../../../src/schema-definitions/ropid-vymi/RopidVYMIOutputSchemas.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"RopidVYMIOutputSchemas.js","sourceRoot":"","sources":["../../../src/schema-definitions/ropid-vymi/RopidVYMIOutputSchemas.ts"],"names":[],"mappings":"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"}