@golemio/pid 2.4.1-dev.756134724 → 2.4.1-dev.756544986

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 (370) hide show
  1. package/dist/integration-engine/index.d.ts +1 -1
  2. package/dist/integration-engine/index.js +14 -11
  3. package/dist/integration-engine/index.js.map +1 -1
  4. package/dist/integration-engine/queueDefinitions.js +0 -99
  5. package/dist/integration-engine/queueDefinitions.js.map +1 -1
  6. package/dist/integration-engine/ropid-gtfs/RopidGTFSScheduledTripsModel.d.ts +3 -3
  7. package/dist/integration-engine/ropid-gtfs/RopidGTFSScheduledTripsModel.js +3 -3
  8. package/dist/integration-engine/ropid-gtfs/RopidGTFSScheduledTripsModel.js.map +1 -1
  9. package/dist/integration-engine/ropid-gtfs/data-access/DelayComputationRedisRepository.d.ts +4 -0
  10. package/dist/integration-engine/ropid-gtfs/data-access/DelayComputationRedisRepository.js +18 -0
  11. package/dist/integration-engine/ropid-gtfs/data-access/DelayComputationRedisRepository.js.map +1 -0
  12. package/dist/integration-engine/ropid-gtfs/helpers/RouteTypeEnums.d.ts +29 -0
  13. package/dist/integration-engine/ropid-gtfs/helpers/RouteTypeEnums.js +35 -0
  14. package/dist/integration-engine/ropid-gtfs/helpers/RouteTypeEnums.js.map +1 -0
  15. package/dist/integration-engine/ropid-gtfs/interfaces/IGtfsRunTripCache.d.ts +28 -0
  16. package/dist/integration-engine/{vehicle-positions/VehiclePositionsInterfaces.js → ropid-gtfs/interfaces/IGtfsRunTripCache.js} +1 -1
  17. package/dist/integration-engine/ropid-gtfs/interfaces/IGtfsRunTripCache.js.map +1 -0
  18. package/dist/integration-engine/vehicle-positions/index.d.ts +3 -3
  19. package/dist/integration-engine/vehicle-positions/index.js +3 -3
  20. package/dist/integration-engine/vehicle-positions/index.js.map +1 -1
  21. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/GtfsRealTimeWorker.d.ts +5 -0
  22. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/GtfsRealTimeWorker.js +16 -0
  23. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/GtfsRealTimeWorker.js.map +1 -0
  24. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/data-access/GtfsRtRedisRepository.d.ts +4 -0
  25. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/data-access/GtfsRtRedisRepository.js +14 -0
  26. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/data-access/GtfsRtRedisRepository.js.map +1 -0
  27. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/helpers/AlertCauseMapper.d.ts +2 -0
  28. package/dist/integration-engine/{gtfsrt-alerts/transformations/GtfsAlertCauseMapper.js → vehicle-positions/workers/gtfs-rt/helpers/AlertCauseMapper.js} +12 -12
  29. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/helpers/AlertCauseMapper.js.map +1 -0
  30. package/dist/integration-engine/{gtfsrt-alerts/transformations/GtfsEffectMapper.d.ts → vehicle-positions/workers/gtfs-rt/helpers/AlertEffectMapper.d.ts} +2 -2
  31. package/dist/integration-engine/{gtfsrt-alerts/transformations/GtfsEffectMapper.js → vehicle-positions/workers/gtfs-rt/helpers/AlertEffectMapper.js} +9 -9
  32. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/helpers/AlertEffectMapper.js.map +1 -0
  33. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/helpers/AlertsGenerator.d.ts +9 -0
  34. package/dist/integration-engine/{gtfsrt-alerts/GtfsRtAlertsController.js → vehicle-positions/workers/gtfs-rt/helpers/AlertsGenerator.js} +19 -15
  35. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/helpers/AlertsGenerator.js.map +1 -0
  36. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/helpers/enums/AlertCauseEnum.d.ts +14 -0
  37. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/helpers/enums/AlertCauseEnum.js +19 -0
  38. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/helpers/enums/AlertCauseEnum.js.map +1 -0
  39. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/helpers/enums/AlertEffectEnum.d.ts +11 -0
  40. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/helpers/enums/AlertEffectEnum.js +16 -0
  41. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/helpers/enums/AlertEffectEnum.js.map +1 -0
  42. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/interfaces/AlertsInterfaces.d.ts +31 -0
  43. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/interfaces/AlertsInterfaces.js +3 -0
  44. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/interfaces/AlertsInterfaces.js.map +1 -0
  45. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/interfaces/IGtfsRtFeedEntity.d.ts +26 -0
  46. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/interfaces/IGtfsRtFeedEntity.js +3 -0
  47. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/interfaces/IGtfsRtFeedEntity.js.map +1 -0
  48. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/tasks/GenerateFilesTask.d.ts +10 -0
  49. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/tasks/GenerateFilesTask.js +130 -0
  50. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/tasks/GenerateFilesTask.js.map +1 -0
  51. package/dist/integration-engine/{gtfsrt-alerts/transformations/GtfsRtAlertTransformation.d.ts → vehicle-positions/workers/gtfs-rt/transformations/AlertsTransformation.d.ts} +6 -6
  52. package/dist/integration-engine/{gtfsrt-alerts/transformations/GtfsRtAlertTransformation.js → vehicle-positions/workers/gtfs-rt/transformations/AlertsTransformation.js} +9 -9
  53. package/dist/integration-engine/vehicle-positions/workers/gtfs-rt/transformations/AlertsTransformation.js.map +1 -0
  54. package/dist/integration-engine/vehicle-positions/workers/runs/RunsWorker.js +7 -3
  55. package/dist/integration-engine/vehicle-positions/workers/runs/RunsWorker.js.map +1 -1
  56. package/dist/integration-engine/vehicle-positions/{models/VehiclePositionsRunsMessagesModel.d.ts → workers/runs/data-access/CommonRunsMessagesRepository.d.ts} +3 -3
  57. package/dist/integration-engine/vehicle-positions/{models/VehiclePositionsRunsMessagesModel.js → workers/runs/data-access/CommonRunsMessagesRepository.js} +12 -11
  58. package/dist/integration-engine/vehicle-positions/workers/runs/data-access/CommonRunsMessagesRepository.js.map +1 -0
  59. package/dist/integration-engine/vehicle-positions/workers/runs/data-access/CommonRunsRepository.d.ts +32 -0
  60. package/dist/integration-engine/vehicle-positions/{models/VehiclePositionsRunsModel.js → workers/runs/data-access/CommonRunsRepository.js} +21 -17
  61. package/dist/integration-engine/vehicle-positions/workers/runs/data-access/CommonRunsRepository.js.map +1 -0
  62. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/data-access → data-access}/MetroRunsMessagesRepository.d.ts +1 -1
  63. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/data-access → data-access}/MetroRunsMessagesRepository.js +10 -10
  64. package/dist/integration-engine/vehicle-positions/workers/runs/data-access/MetroRunsMessagesRepository.js.map +1 -0
  65. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/data-access → data-access}/RunTripsRedisRepository.d.ts +0 -0
  66. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/data-access → data-access}/RunTripsRedisRepository.js +1 -1
  67. package/dist/integration-engine/vehicle-positions/workers/runs/data-access/RunTripsRedisRepository.js.map +1 -0
  68. package/dist/integration-engine/vehicle-positions/workers/runs/helpers/CommonMessageProcessor.d.ts +10 -0
  69. package/dist/integration-engine/vehicle-positions/workers/runs/helpers/CommonMessageProcessor.js +42 -0
  70. package/dist/integration-engine/vehicle-positions/workers/runs/helpers/CommonMessageProcessor.js.map +1 -0
  71. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/helpers → helpers}/MetroMessageFilter.d.ts +1 -1
  72. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/helpers → helpers}/MetroMessageFilter.js +0 -0
  73. package/dist/integration-engine/vehicle-positions/workers/runs/helpers/MetroMessageFilter.js.map +1 -0
  74. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/helpers → helpers}/MetroRouteHelper.d.ts +0 -0
  75. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/helpers → helpers}/MetroRouteHelper.js +0 -0
  76. package/dist/integration-engine/vehicle-positions/workers/runs/helpers/MetroRouteHelper.js.map +1 -0
  77. package/dist/integration-engine/vehicle-positions/workers/runs/interfaces/CommonRunsMessageInterfaces.d.ts +33 -0
  78. package/dist/integration-engine/vehicle-positions/workers/runs/interfaces/CommonRunsMessageInterfaces.js +3 -0
  79. package/dist/integration-engine/vehicle-positions/workers/runs/interfaces/CommonRunsMessageInterfaces.js.map +1 -0
  80. package/dist/integration-engine/vehicle-positions/workers/runs/interfaces/ICommonRunWithMessage.d.ts +6 -0
  81. package/dist/integration-engine/vehicle-positions/workers/runs/interfaces/ICommonRunWithMessage.js +3 -0
  82. package/dist/integration-engine/vehicle-positions/workers/runs/interfaces/ICommonRunWithMessage.js.map +1 -0
  83. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/interfaces → interfaces}/IDataDeletionParams.d.ts +0 -0
  84. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/interfaces → interfaces}/IDataDeletionParams.js +0 -0
  85. package/dist/integration-engine/vehicle-positions/workers/runs/interfaces/IDataDeletionParams.js.map +1 -0
  86. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/interfaces → interfaces}/IMetroRunInputForProcessing.d.ts +1 -1
  87. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/interfaces → interfaces}/IMetroRunInputForProcessing.js +0 -0
  88. package/dist/integration-engine/vehicle-positions/workers/runs/interfaces/IMetroRunInputForProcessing.js.map +1 -0
  89. package/dist/integration-engine/vehicle-positions/workers/runs/interfaces/IProcessMetroRunsMessagesInput.d.ts +5 -0
  90. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/interfaces → interfaces}/IProcessMetroRunsMessagesInput.js +0 -0
  91. package/dist/integration-engine/vehicle-positions/workers/runs/interfaces/IProcessMetroRunsMessagesInput.js.map +1 -0
  92. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/interfaces → interfaces}/MetroRunsMessageInterfaces.d.ts +0 -0
  93. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/interfaces → interfaces}/MetroRunsMessageInterfaces.js +0 -0
  94. package/dist/integration-engine/vehicle-positions/workers/runs/interfaces/MetroRunsMessageInterfaces.js.map +1 -0
  95. package/dist/integration-engine/vehicle-positions/workers/runs/schema/CommonRunsSchema.d.ts +4 -0
  96. package/dist/integration-engine/vehicle-positions/workers/runs/schema/CommonRunsSchema.js +98 -0
  97. package/dist/integration-engine/vehicle-positions/workers/runs/schema/CommonRunsSchema.js.map +1 -0
  98. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/schema → schema}/DataDeletionSchema.d.ts +0 -0
  99. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/schema → schema}/DataDeletionSchema.js +0 -0
  100. package/dist/integration-engine/vehicle-positions/workers/runs/schema/DataDeletionSchema.js.map +1 -0
  101. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/schema → schema}/MetroRunsSchema.d.ts +0 -0
  102. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/schema → schema}/MetroRunsSchema.js +1 -1
  103. package/dist/integration-engine/vehicle-positions/workers/runs/schema/MetroRunsSchema.js.map +1 -0
  104. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/schema → schema}/MetroTransformedRunsSchema.d.ts +1 -1
  105. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/schema → schema}/MetroTransformedRunsSchema.js +1 -1
  106. package/dist/integration-engine/vehicle-positions/workers/runs/schema/MetroTransformedRunsSchema.js.map +1 -0
  107. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/DeleteDataTask.d.ts +4 -3
  108. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/DeleteDataTask.js +7 -4
  109. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/DeleteDataTask.js.map +1 -1
  110. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/ProcessMetroRunsMessagesTask.d.ts +2 -2
  111. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/ProcessMetroRunsMessagesTask.js +13 -12
  112. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/ProcessMetroRunsMessagesTask.js.map +1 -1
  113. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/SaveBusRunsToDBTask.d.ts +14 -0
  114. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/SaveBusRunsToDBTask.js +48 -0
  115. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/SaveBusRunsToDBTask.js.map +1 -0
  116. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/SaveMetroRunsToDBTask.d.ts +2 -2
  117. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/SaveMetroRunsToDBTask.js +4 -4
  118. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/SaveMetroRunsToDBTask.js.map +1 -1
  119. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/SaveTramRunsToDBTask.d.ts +14 -0
  120. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/SaveTramRunsToDBTask.js +43 -0
  121. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/SaveTramRunsToDBTask.js.map +1 -0
  122. package/dist/integration-engine/vehicle-positions/workers/runs/transformations/CommonRunsMessagesTransformation.d.ts +11 -0
  123. package/dist/integration-engine/vehicle-positions/{transformations/VehiclePositionsRunsTransformation.js → workers/runs/transformations/CommonRunsMessagesTransformation.js} +6 -7
  124. package/dist/integration-engine/vehicle-positions/workers/runs/transformations/CommonRunsMessagesTransformation.js.map +1 -0
  125. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/transformations → transformations}/MetroRunsMessageProcessingTransformation.d.ts +3 -3
  126. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/transformations → transformations}/MetroRunsMessageProcessingTransformation.js +1 -1
  127. package/dist/integration-engine/vehicle-positions/workers/runs/transformations/MetroRunsMessageProcessingTransformation.js.map +1 -0
  128. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/transformations → transformations}/MetroRunsMessagesTransformation.d.ts +1 -1
  129. package/dist/integration-engine/vehicle-positions/workers/runs/{tasks/transformations → transformations}/MetroRunsMessagesTransformation.js +0 -0
  130. package/dist/integration-engine/vehicle-positions/workers/runs/transformations/MetroRunsMessagesTransformation.js.map +1 -0
  131. package/dist/integration-engine/vehicle-positions/workers/{VPWorker.d.ts → vehicle-positions/VPWorker.d.ts} +0 -0
  132. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/VPWorker.js +28 -0
  133. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/VPWorker.js.map +1 -0
  134. package/dist/integration-engine/vehicle-positions/{models/VehiclePositionsTripsHistoryModel.d.ts → workers/vehicle-positions/data-access/PositionsHistoryRepository.d.ts} +1 -1
  135. package/dist/integration-engine/vehicle-positions/{models/VehiclePositionsPositionsHistoryModel.js → workers/vehicle-positions/data-access/PositionsHistoryRepository.js} +6 -6
  136. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/PositionsHistoryRepository.js.map +1 -0
  137. package/dist/integration-engine/vehicle-positions/{models/VehiclePositionsPositionsModel.d.ts → workers/vehicle-positions/data-access/PositionsRepository.d.ts} +8 -8
  138. package/dist/integration-engine/vehicle-positions/{models/VehiclePositionsPositionsModel.js → workers/vehicle-positions/data-access/PositionsRepository.js} +11 -11
  139. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/PositionsRepository.js.map +1 -0
  140. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/TripStopsRedisRepository.d.ts +4 -0
  141. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/TripStopsRedisRepository.js +18 -0
  142. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/TripStopsRedisRepository.js.map +1 -0
  143. package/dist/integration-engine/vehicle-positions/{models/VehiclePositionsPositionsHistoryModel.d.ts → workers/vehicle-positions/data-access/TripsHistoryRepository.d.ts} +1 -1
  144. package/dist/integration-engine/vehicle-positions/{models/VehiclePositionsTripsHistoryModel.js → workers/vehicle-positions/data-access/TripsHistoryRepository.js} +6 -6
  145. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/TripsHistoryRepository.js.map +1 -0
  146. package/dist/integration-engine/vehicle-positions/{models/VehiclePositionsTripsModel.d.ts → workers/vehicle-positions/data-access/TripsRepository.d.ts} +12 -66
  147. package/dist/integration-engine/vehicle-positions/{models/VehiclePositionsTripsModel.js → workers/vehicle-positions/data-access/TripsRepository.js} +22 -52
  148. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/TripsRepository.js.map +1 -0
  149. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/helpers/PositionsMapper.d.ts +9 -0
  150. package/dist/integration-engine/vehicle-positions/{models/helpers/VPPositionsMapper.js → workers/vehicle-positions/data-access/helpers/PositionsMapper.js} +7 -7
  151. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/helpers/PositionsMapper.js.map +1 -0
  152. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/helpers/TripsIdGenerator.d.ts +13 -0
  153. package/dist/integration-engine/vehicle-positions/{models/helpers/VPTripsIdGenerator.js → workers/vehicle-positions/data-access/helpers/TripsIdGenerator.js} +3 -3
  154. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/helpers/TripsIdGenerator.js.map +1 -0
  155. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/helpers/TripsMapper.d.ts +10 -0
  156. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/helpers/TripsMapper.js +85 -0
  157. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/data-access/helpers/TripsMapper.js.map +1 -0
  158. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/DPPUtils.d.ts +2 -2
  159. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/DPPUtils.js +1 -1
  160. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/DPPUtils.js.map +1 -0
  161. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/DateTimeUtils.d.ts +0 -0
  162. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/DateTimeUtils.js +0 -0
  163. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/DateTimeUtils.js.map +1 -0
  164. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/DelayComputationManager.d.ts +32 -0
  165. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/DelayComputationManager.js +271 -0
  166. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/DelayComputationManager.js.map +1 -0
  167. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/PositionCalculator.d.ts +1 -1
  168. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/PositionCalculator.js +0 -0
  169. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/PositionCalculator.js.map +1 -0
  170. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/PositionHandlerEnum.d.ts +0 -0
  171. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/PositionHandlerEnum.js +0 -0
  172. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/PositionHandlerEnum.js.map +1 -0
  173. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/PositionsManager.d.ts +3 -3
  174. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/PositionsManager.js +3 -3
  175. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/PositionsManager.js.map +1 -0
  176. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/TripStopsManager.d.ts +15 -0
  177. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/TripStopsManager.js +47 -0
  178. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/TripStopsManager.js.map +1 -0
  179. package/dist/integration-engine/vehicle-positions/{VehiclePositionsUtils.d.ts → workers/vehicle-positions/helpers/VPUtils.d.ts} +5 -15
  180. package/dist/integration-engine/vehicle-positions/{VehiclePositionsUtils.js → workers/vehicle-positions/helpers/VPUtils.js} +12 -32
  181. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/VPUtils.js.map +1 -0
  182. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/ValidToCalculator.d.ts +3 -3
  183. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/ValidToCalculator.js +3 -3
  184. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/ValidToCalculator.js.map +1 -0
  185. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/compute-positions/ComputeDelayHelper.d.ts +4 -4
  186. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/compute-positions/ComputeDelayHelper.js +0 -0
  187. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/compute-positions/ComputeDelayHelper.js.map +1 -0
  188. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/compute-positions/strategy/AbstractDelayAtStop.d.ts +3 -3
  189. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/compute-positions/strategy/AbstractDelayAtStop.js +1 -1
  190. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/compute-positions/strategy/AbstractDelayAtStop.js.map +1 -0
  191. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/compute-positions/strategy/BusDelayAtStop.d.ts +3 -3
  192. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/compute-positions/strategy/BusDelayAtStop.js +1 -1
  193. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/compute-positions/strategy/BusDelayAtStop.js.map +1 -0
  194. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/compute-positions/strategy/FactoryDelayAtStop.d.ts +1 -1
  195. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/compute-positions/strategy/FactoryDelayAtStop.js +2 -2
  196. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/compute-positions/strategy/FactoryDelayAtStop.js.map +1 -0
  197. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/compute-positions/strategy/TramDelayAtStop.d.ts +3 -3
  198. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/compute-positions/strategy/TramDelayAtStop.js +1 -1
  199. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/compute-positions/strategy/TramDelayAtStop.js.map +1 -0
  200. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/gtfs-trip-run/AbstractGTFSTripRunManager.d.ts +29 -0
  201. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/gtfs-trip-run/AbstractGTFSTripRunManager.js +2 -2
  202. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/gtfs-trip-run/AbstractGTFSTripRunManager.js.map +1 -0
  203. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/gtfs-trip-run/GTFSTripCommonRunManager.d.ts +4 -4
  204. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/gtfs-trip-run/GTFSTripCommonRunManager.js +5 -5
  205. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/gtfs-trip-run/GTFSTripCommonRunManager.js.map +1 -0
  206. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/gtfs-trip-run/GTFSTripMetroRunManager.d.ts +3 -3
  207. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/gtfs-trip-run/GTFSTripMetroRunManager.js +1 -1
  208. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/gtfs-trip-run/GTFSTripMetroRunManager.js.map +1 -0
  209. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/gtfs-trip-run/GTFSTripRunManagerFactory.d.ts +0 -0
  210. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/gtfs-trip-run/GTFSTripRunManagerFactory.js +0 -0
  211. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/gtfs-trip-run/GTFSTripRunManagerFactory.js.map +1 -0
  212. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/gtfs-trip-run/interfaces/IDelayMessage.d.ts +7 -0
  213. package/dist/integration-engine/vehicle-positions/{helpers → workers/vehicle-positions/helpers}/gtfs-trip-run/interfaces/IDelayMessage.js +0 -0
  214. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/helpers/gtfs-trip-run/interfaces/IDelayMessage.js.map +1 -0
  215. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/IDataDeletionParams.d.ts +3 -0
  216. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/IDataDeletionParams.js +3 -0
  217. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/IDataDeletionParams.js.map +1 -0
  218. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/IPropagateDelayInput.d.ts +6 -0
  219. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/IPropagateDelayInput.js +3 -0
  220. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/IPropagateDelayInput.js.map +1 -0
  221. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/IUpdateDelayInput.d.ts +8 -0
  222. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/IUpdateDelayInput.js +3 -0
  223. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/IUpdateDelayInput.js.map +1 -0
  224. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/IUpdateGtfsTripIdInput.d.ts +6 -0
  225. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/IUpdateGtfsTripIdInput.js +3 -0
  226. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/IUpdateGtfsTripIdInput.js.map +1 -0
  227. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/MpvMessageInterfaces.d.ts +49 -0
  228. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/MpvMessageInterfaces.js +3 -0
  229. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/MpvMessageInterfaces.js.map +1 -0
  230. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/TransformationInterfaces.d.ts +53 -0
  231. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/TransformationInterfaces.js +3 -0
  232. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/TransformationInterfaces.js.map +1 -0
  233. package/dist/integration-engine/vehicle-positions/{VehiclePositionsInterfaces.d.ts → workers/vehicle-positions/interfaces/VPInterfaces.d.ts} +6 -6
  234. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/VPInterfaces.js +3 -0
  235. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/interfaces/VPInterfaces.js.map +1 -0
  236. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/DataDeletionSchema.d.ts +4 -0
  237. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/DataDeletionSchema.js +22 -0
  238. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/DataDeletionSchema.js.map +1 -0
  239. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/PropagateDelaySchema.d.ts +7 -0
  240. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/PropagateDelaySchema.js +27 -0
  241. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/PropagateDelaySchema.js.map +1 -0
  242. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/SaveDataToDBSchema.d.ts +4 -0
  243. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/SaveDataToDBSchema.js +218 -0
  244. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/SaveDataToDBSchema.js.map +1 -0
  245. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/UpdateDelaySchema.d.ts +9 -0
  246. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/UpdateDelaySchema.js +33 -0
  247. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/UpdateDelaySchema.js.map +1 -0
  248. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/UpdateGtfsTripIdSchema.d.ts +7 -0
  249. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/UpdateGtfsTripIdSchema.js +27 -0
  250. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/UpdateGtfsTripIdSchema.js.map +1 -0
  251. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/UpdateRunsGtfsTripIdSchema.d.ts +7 -0
  252. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/UpdateRunsGtfsTripIdSchema.js +25 -0
  253. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/schema/UpdateRunsGtfsTripIdSchema.js.map +1 -0
  254. package/dist/integration-engine/vehicle-positions/workers/{tasks → vehicle-positions/tasks}/DataRetentionTask.d.ts +0 -0
  255. package/dist/integration-engine/vehicle-positions/workers/{tasks → vehicle-positions/tasks}/DataRetentionTask.js +2 -2
  256. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/DataRetentionTask.js.map +1 -0
  257. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/DeleteDataTask.d.ts +14 -0
  258. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/DeleteDataTask.js +39 -0
  259. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/DeleteDataTask.js.map +1 -0
  260. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/PropagateDelayTask.d.ts +16 -0
  261. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/PropagateDelayTask.js +110 -0
  262. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/PropagateDelayTask.js.map +1 -0
  263. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/SaveDataToDBTask.d.ts +12 -0
  264. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/SaveDataToDBTask.js +77 -0
  265. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/SaveDataToDBTask.js.map +1 -0
  266. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/UpdateDelayTask.d.ts +22 -0
  267. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/UpdateDelayTask.js +176 -0
  268. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/UpdateDelayTask.js.map +1 -0
  269. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/UpdateGtfsTripIdTask.d.ts +18 -0
  270. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/UpdateGtfsTripIdTask.js +143 -0
  271. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/UpdateGtfsTripIdTask.js.map +1 -0
  272. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/UpdateRunsGtfsTripIdTask.d.ts +22 -0
  273. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/UpdateRunsGtfsTripIdTask.js +73 -0
  274. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/tasks/UpdateRunsGtfsTripIdTask.js.map +1 -0
  275. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/transformations/PositionsTransformation.d.ts +58 -0
  276. package/dist/integration-engine/vehicle-positions/{transformations/VehiclePositionsTransformation.js → workers/vehicle-positions/transformations/PositionsTransformation.js} +23 -24
  277. package/dist/integration-engine/vehicle-positions/workers/vehicle-positions/transformations/PositionsTransformation.js.map +1 -0
  278. package/dist/schema-definitions/vehicle-positions/index.d.ts +0 -16
  279. package/dist/schema-definitions/vehicle-positions/index.js +0 -130
  280. package/dist/schema-definitions/vehicle-positions/index.js.map +1 -1
  281. package/dist/schema-definitions/vehicle-positions/models/CommonRunsMessagesModel.d.ts +20 -0
  282. package/dist/schema-definitions/vehicle-positions/models/CommonRunsMessagesModel.js +80 -0
  283. package/dist/schema-definitions/vehicle-positions/models/CommonRunsMessagesModel.js.map +1 -0
  284. package/dist/schema-definitions/vehicle-positions/models/CommonRunsModel.d.ts +16 -0
  285. package/dist/schema-definitions/vehicle-positions/models/CommonRunsModel.js +61 -0
  286. package/dist/schema-definitions/vehicle-positions/models/CommonRunsModel.js.map +1 -0
  287. package/dist/schema-definitions/vehicle-positions/models/index.d.ts +2 -0
  288. package/dist/schema-definitions/vehicle-positions/models/index.js +2 -0
  289. package/dist/schema-definitions/vehicle-positions/models/index.js.map +1 -1
  290. package/dist/schema-definitions/vehicle-positions/models/interfaces/ICommonRunsMessagesModel.d.ts +14 -0
  291. package/dist/schema-definitions/vehicle-positions/models/interfaces/ICommonRunsMessagesModel.js +3 -0
  292. package/dist/schema-definitions/vehicle-positions/models/interfaces/ICommonRunsMessagesModel.js.map +1 -0
  293. package/dist/schema-definitions/vehicle-positions/models/interfaces/ICommonRunsModel.d.ts +10 -0
  294. package/dist/schema-definitions/vehicle-positions/models/interfaces/ICommonRunsModel.js +3 -0
  295. package/dist/schema-definitions/vehicle-positions/models/interfaces/ICommonRunsModel.js.map +1 -0
  296. package/docs/implementation_documentation.md +123 -50
  297. package/package.json +1 -1
  298. package/dist/integration-engine/gtfsrt-alerts/GtfsRtAlertsController.d.ts +0 -10
  299. package/dist/integration-engine/gtfsrt-alerts/GtfsRtAlertsController.js.map +0 -1
  300. package/dist/integration-engine/gtfsrt-alerts/transformations/GtfsAlertCauseMapper.d.ts +0 -2
  301. package/dist/integration-engine/gtfsrt-alerts/transformations/GtfsAlertCauseMapper.js.map +0 -1
  302. package/dist/integration-engine/gtfsrt-alerts/transformations/GtfsEffectMapper.js.map +0 -1
  303. package/dist/integration-engine/gtfsrt-alerts/transformations/GtfsRtAlertTransformation.js.map +0 -1
  304. package/dist/integration-engine/vehicle-positions/VehiclePositionsInterfaces.js.map +0 -1
  305. package/dist/integration-engine/vehicle-positions/VehiclePositionsUtils.js.map +0 -1
  306. package/dist/integration-engine/vehicle-positions/VehiclePositionsWorker.d.ts +0 -105
  307. package/dist/integration-engine/vehicle-positions/VehiclePositionsWorker.js +0 -897
  308. package/dist/integration-engine/vehicle-positions/VehiclePositionsWorker.js.map +0 -1
  309. package/dist/integration-engine/vehicle-positions/helpers/DPPUtils.js.map +0 -1
  310. package/dist/integration-engine/vehicle-positions/helpers/DateTimeUtils.js.map +0 -1
  311. package/dist/integration-engine/vehicle-positions/helpers/PositionCalculator.js.map +0 -1
  312. package/dist/integration-engine/vehicle-positions/helpers/PositionHandlerEnum.js.map +0 -1
  313. package/dist/integration-engine/vehicle-positions/helpers/PositionsManager.js.map +0 -1
  314. package/dist/integration-engine/vehicle-positions/helpers/ValidToCalculator.js.map +0 -1
  315. package/dist/integration-engine/vehicle-positions/helpers/compute-positions/ComputeDelayHelper.js.map +0 -1
  316. package/dist/integration-engine/vehicle-positions/helpers/compute-positions/strategy/AbstractDelayAtStop.js.map +0 -1
  317. package/dist/integration-engine/vehicle-positions/helpers/compute-positions/strategy/BusDelayAtStop.js.map +0 -1
  318. package/dist/integration-engine/vehicle-positions/helpers/compute-positions/strategy/FactoryDelayAtStop.js.map +0 -1
  319. package/dist/integration-engine/vehicle-positions/helpers/compute-positions/strategy/TramDelayAtStop.js.map +0 -1
  320. package/dist/integration-engine/vehicle-positions/helpers/gtfs-trip-run/AbstractGTFSTripRunManager.d.ts +0 -26
  321. package/dist/integration-engine/vehicle-positions/helpers/gtfs-trip-run/AbstractGTFSTripRunManager.js.map +0 -1
  322. package/dist/integration-engine/vehicle-positions/helpers/gtfs-trip-run/GTFSTripCommonRunManager.js.map +0 -1
  323. package/dist/integration-engine/vehicle-positions/helpers/gtfs-trip-run/GTFSTripMetroRunManager.js.map +0 -1
  324. package/dist/integration-engine/vehicle-positions/helpers/gtfs-trip-run/GTFSTripRunManagerFactory.js.map +0 -1
  325. package/dist/integration-engine/vehicle-positions/helpers/gtfs-trip-run/interfaces/IDelayMessage.d.ts +0 -6
  326. package/dist/integration-engine/vehicle-positions/helpers/gtfs-trip-run/interfaces/IDelayMessage.js.map +0 -1
  327. package/dist/integration-engine/vehicle-positions/models/VehiclePositionsPositionsHistoryModel.js.map +0 -1
  328. package/dist/integration-engine/vehicle-positions/models/VehiclePositionsPositionsModel.js.map +0 -1
  329. package/dist/integration-engine/vehicle-positions/models/VehiclePositionsRunsMessagesModel.js.map +0 -1
  330. package/dist/integration-engine/vehicle-positions/models/VehiclePositionsRunsModel.d.ts +0 -58
  331. package/dist/integration-engine/vehicle-positions/models/VehiclePositionsRunsModel.js.map +0 -1
  332. package/dist/integration-engine/vehicle-positions/models/VehiclePositionsTripsHistoryModel.js.map +0 -1
  333. package/dist/integration-engine/vehicle-positions/models/VehiclePositionsTripsModel.js.map +0 -1
  334. package/dist/integration-engine/vehicle-positions/models/helpers/VPPositionsMapper.d.ts +0 -8
  335. package/dist/integration-engine/vehicle-positions/models/helpers/VPPositionsMapper.js.map +0 -1
  336. package/dist/integration-engine/vehicle-positions/models/helpers/VPTripsIdGenerator.d.ts +0 -13
  337. package/dist/integration-engine/vehicle-positions/models/helpers/VPTripsIdGenerator.js.map +0 -1
  338. package/dist/integration-engine/vehicle-positions/models/helpers/VPTripsMapper.d.ts +0 -10
  339. package/dist/integration-engine/vehicle-positions/models/helpers/VPTripsMapper.js +0 -85
  340. package/dist/integration-engine/vehicle-positions/models/helpers/VPTripsMapper.js.map +0 -1
  341. package/dist/integration-engine/vehicle-positions/models/index.d.ts +0 -4
  342. package/dist/integration-engine/vehicle-positions/models/index.js +0 -21
  343. package/dist/integration-engine/vehicle-positions/models/index.js.map +0 -1
  344. package/dist/integration-engine/vehicle-positions/transformations/VehiclePositionsRunsTransformation.d.ts +0 -69
  345. package/dist/integration-engine/vehicle-positions/transformations/VehiclePositionsRunsTransformation.js.map +0 -1
  346. package/dist/integration-engine/vehicle-positions/transformations/VehiclePositionsTransformation.d.ts +0 -108
  347. package/dist/integration-engine/vehicle-positions/transformations/VehiclePositionsTransformation.js.map +0 -1
  348. package/dist/integration-engine/vehicle-positions/transformations/index.d.ts +0 -2
  349. package/dist/integration-engine/vehicle-positions/transformations/index.js +0 -19
  350. package/dist/integration-engine/vehicle-positions/transformations/index.js.map +0 -1
  351. package/dist/integration-engine/vehicle-positions/workers/VPWorker.js +0 -16
  352. package/dist/integration-engine/vehicle-positions/workers/VPWorker.js.map +0 -1
  353. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/data-access/MetroRunsMessagesRepository.js.map +0 -1
  354. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/data-access/RunTripsRedisRepository.js.map +0 -1
  355. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/helpers/MetroMessageFilter.js.map +0 -1
  356. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/helpers/MetroRouteHelper.js.map +0 -1
  357. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/interfaces/IDataDeletionParams.js.map +0 -1
  358. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/interfaces/IMetroRunInputForProcessing.js.map +0 -1
  359. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/interfaces/IProcessMetroRunsMessagesInput.d.ts +0 -5
  360. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/interfaces/IProcessMetroRunsMessagesInput.js.map +0 -1
  361. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/interfaces/MetroRunsMessageInterfaces.js.map +0 -1
  362. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/schema/DataDeletionSchema.js.map +0 -1
  363. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/schema/MetroRunsSchema.js.map +0 -1
  364. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/schema/MetroTransformedRunsSchema.js.map +0 -1
  365. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/transformations/MetroRunsMessageProcessingTransformation.js.map +0 -1
  366. package/dist/integration-engine/vehicle-positions/workers/runs/tasks/transformations/MetroRunsMessagesTransformation.js.map +0 -1
  367. package/dist/integration-engine/vehicle-positions/workers/tasks/DataRetentionTask.js.map +0 -1
  368. package/dist/schema-definitions/gtfsrt-alerts/GtfsRtAlert.d.ts +0 -56
  369. package/dist/schema-definitions/gtfsrt-alerts/GtfsRtAlert.js +0 -29
  370. package/dist/schema-definitions/gtfsrt-alerts/GtfsRtAlert.js.map +0 -1
@@ -12,12 +12,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
12
12
  return (mod && mod.__esModule) ? mod : { "default": mod };
13
13
  };
14
14
  Object.defineProperty(exports, "__esModule", { value: true });
15
- exports.VehiclePositionsTransformation = void 0;
16
- const moment_timezone_1 = __importDefault(require("@golemio/core/dist/shared/moment-timezone"));
15
+ exports.PositionsTransformation = void 0;
16
+ const vehicle_positions_1 = require("../../../../../schema-definitions/vehicle-positions");
17
17
  const transformations_1 = require("@golemio/core/dist/integration-engine/transformations");
18
- const vehicle_positions_1 = require("../../../schema-definitions/vehicle-positions");
19
- const const_1 = require("../../../const");
20
- class VehiclePositionsTransformation extends transformations_1.BaseTransformation {
18
+ const moment_timezone_1 = __importDefault(require("@golemio/core/dist/shared/moment-timezone"));
19
+ const const_1 = require("../../../../../const");
20
+ class PositionsTransformation extends transformations_1.BaseTransformation {
21
21
  constructor() {
22
22
  super();
23
23
  /**
@@ -42,6 +42,7 @@ class VehiclePositionsTransformation extends transformations_1.BaseTransformatio
42
42
  return res;
43
43
  });
44
44
  this.transformElement = (element) => __awaiter(this, void 0, void 0, function* () {
45
+ var _a, _b;
45
46
  const attributes = element.$;
46
47
  // Trips of DPP to be excluded in HTTP ingress
47
48
  const isDPPTrip = attributes.dopr === "DP PRAHA";
@@ -52,7 +53,7 @@ class VehiclePositionsTransformation extends transformations_1.BaseTransformatio
52
53
  }
53
54
  attributes.lin = attributes.lin || "none";
54
55
  attributes.alias = attributes.alias || "none";
55
- attributes.cpoz = attributes.cpoz || moment_timezone_1.default.tz("Europe/Prague").format(VehiclePositionsTransformation.ORIGIN_TIME_FORMAT);
56
+ attributes.cpoz = attributes.cpoz || moment_timezone_1.default.tz("Europe/Prague").format(PositionsTransformation.ORIGIN_TIME_FORMAT);
56
57
  const stops = element.zast;
57
58
  const { startTimestamp, positionTimestamp } = yield this.deduceTimestamps(stops[0], attributes.cpoz);
58
59
  // filter out position with future time (set to be far than 5 minutes from now)
@@ -61,7 +62,7 @@ class VehiclePositionsTransformation extends transformations_1.BaseTransformatio
61
62
  }
62
63
  // primary key for t = 0 (vehicle type is train) -> start_timestamp, cis_number
63
64
  // primary key for t != 0 -> start_timestamp, cis_id, cis_short_name, cis_number
64
- const primaryKeySuffix = attributes.t == 0 ? `_${attributes.spoj}` : `_${attributes.lin}` + `_${attributes.alias}` + `_${attributes.spoj}`;
65
+ const primaryKeySuffix = attributes.t === "0" ? `_${attributes.spoj}` : `_${attributes.lin}` + `_${attributes.alias}` + `_${attributes.spoj}`;
65
66
  const primaryKey = startTimestamp.utc().format() + primaryKeySuffix;
66
67
  /*
67
68
  MPV route types:
@@ -85,13 +86,10 @@ class VehiclePositionsTransformation extends transformations_1.BaseTransformatio
85
86
  Ostatní: 17
86
87
  Trolejbus: 18
87
88
  */
88
- // exceptions for DP PRAHA agency trips
89
- // FIXME this is impossible due to the isDPPTrip constraint
90
- const agencyDPPRAHAException = attributes.dopr === "DP PRAHA";
91
- const bearing = agencyDPPRAHAException ? null : attributes.azimut;
92
- const speed = agencyDPPRAHAException ? null : attributes.rychl;
93
- const aswLastStopId = agencyDPPRAHAException ? attributes.asw : null;
94
- const cisLastStopId = agencyDPPRAHAException ? null : attributes.zast;
89
+ const bearing = attributes.azimut;
90
+ const speed = attributes.rychl;
91
+ const aswLastStopId = null;
92
+ const cisLastStopId = attributes.zast;
95
93
  let res = {
96
94
  position: {
97
95
  asw_last_stop_id: aswLastStopId ? this.formatASWStopId(aswLastStopId) : null,
@@ -126,9 +124,9 @@ class VehiclePositionsTransformation extends transformations_1.BaseTransformatio
126
124
  is_canceled: attributes.zrus === "true",
127
125
  origin_route_name: attributes.kmenl ? parseInt(attributes.kmenl, 10) : null,
128
126
  sequence_id: attributes.po !== undefined ? parseInt(attributes.po, 10) : null,
129
- start_asw_stop_id: agencyDPPRAHAException ? this.formatASWStopId(stops[0].$.asw) : null,
130
- start_cis_stop_id: !agencyDPPRAHAException ? parseInt(stops[0].$.zast, 10) : null,
131
- start_cis_stop_platform_code: stops[0].$.stan,
127
+ start_asw_stop_id: null,
128
+ start_cis_stop_id: stops[0].$.zast ? parseInt(stops[0].$.zast, 10) : null,
129
+ start_cis_stop_platform_code: (_a = stops[0].$.stan) !== null && _a !== void 0 ? _a : null,
132
130
  start_time: startTimestamp.tz("Europe/Prague").format("HH:mm"),
133
131
  start_timestamp: startTimestamp.utc().valueOf(),
134
132
  vehicle_registration_number: attributes.vuzevc ? parseInt(attributes.vuzevc, 10) : null,
@@ -170,21 +168,22 @@ class VehiclePositionsTransformation extends transformations_1.BaseTransformatio
170
168
  const delayDepartureType = stop.$.zpoz_typ || stop.$.zpoz_typ_odj;
171
169
  const cisStopSequence = i + 1;
172
170
  // finding cis_last_stop_sequence (positions table)
173
- if (res.position.cis_last_stop_id === parseInt(stop.$.zast, 10) &&
171
+ if (stop.$.zast &&
172
+ res.position.cis_last_stop_id === parseInt(stop.$.zast, 10) &&
174
173
  ((delayDepartureType && parseInt(delayDepartureType, 10) === 3) ||
175
174
  (stop.$.zpoz_typ_prij && parseInt(stop.$.zpoz_typ_prij, 10) === 3))) {
176
175
  res.position.cis_last_stop_sequence = cisStopSequence;
177
176
  }
178
177
  // assign formatted stop id according to agency's stop ids
179
- const aswStopId = agencyDPPRAHAException ? this.formatASWStopId(stop.$.asw) : null;
180
- const cisStopId = !agencyDPPRAHAException ? parseInt(stop.$.zast, 10) : null;
178
+ const aswStopId = null;
179
+ const cisStopId = stop.$.zast ? parseInt(stop.$.zast, 10) : null;
181
180
  res.stops.push({
182
181
  arrival_delay_type: stop.$.zpoz_typ_prij ? parseInt(stop.$.zpoz_typ_prij, 10) : null,
183
182
  arrival_time: arrival ? stop.$.prij : null,
184
183
  arrival_timestamp: arrival ? arrival.utc().valueOf() : null,
185
184
  asw_stop_id: aswStopId,
186
185
  cis_stop_id: cisStopId,
187
- cis_stop_platform_code: stop.$.stan,
186
+ cis_stop_platform_code: (_b = stop.$.stan) !== null && _b !== void 0 ? _b : null,
188
187
  cis_stop_sequence: cisStopSequence,
189
188
  delay_arrival: stop.$.zpoz_prij ? parseInt(stop.$.zpoz_prij, 10) : null,
190
189
  delay_departure: stop.$.zpoz_odj ? parseInt(stop.$.zpoz_odj, 10) : null,
@@ -278,6 +277,6 @@ class VehiclePositionsTransformation extends transformations_1.BaseTransformatio
278
277
  return aswParsedStopNodeId + "/" + aswParsedStopPostId;
279
278
  }
280
279
  }
281
- exports.VehiclePositionsTransformation = VehiclePositionsTransformation;
282
- VehiclePositionsTransformation.ORIGIN_TIME_FORMAT = "HH:mm:ss";
283
- //# sourceMappingURL=VehiclePositionsTransformation.js.map
280
+ exports.PositionsTransformation = PositionsTransformation;
281
+ PositionsTransformation.ORIGIN_TIME_FORMAT = "HH:mm:ss";
282
+ //# sourceMappingURL=PositionsTransformation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PositionsTransformation.js","sourceRoot":"","sources":["../../../../../../src/integration-engine/vehicle-positions/workers/vehicle-positions/transformations/PositionsTransformation.ts"],"names":[],"mappings":"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"}
@@ -188,22 +188,6 @@ declare const forExport: {
188
188
  pgTableName: string;
189
189
  pgTableNameHistory: string;
190
190
  };
191
- runs: {
192
- name: string;
193
- outputMongooseSchemaObject: {
194
- [path: string]: import("mongoose").SchemaDefinitionProperty<undefined>;
195
- };
196
- outputSequelizeAttributes: Sequelize.ModelAttributes<any, any>;
197
- pgTableName: string;
198
- };
199
- runsMessages: {
200
- name: string;
201
- outputMongooseSchemaObject: {
202
- [path: string]: import("mongoose").SchemaDefinitionProperty<undefined>;
203
- };
204
- outputSequelizeAttributes: Sequelize.ModelAttributes<any, any>;
205
- pgTableName: string;
206
- };
207
191
  runsTrips: {
208
192
  name: string;
209
193
  outputMongooseSchemaObject: {
@@ -184,75 +184,6 @@ const outputPositionsMSO = {
184
184
  last_stop_name: { type: String, required: false },
185
185
  valid_to: { type: Number },
186
186
  };
187
- const outputRunsSDMA = {
188
- id: {
189
- primaryKey: true,
190
- type: sequelize_1.default.STRING,
191
- },
192
- route_id: { type: sequelize_1.default.STRING },
193
- run_number: { type: sequelize_1.default.INTEGER },
194
- line_short_name: sequelize_1.default.STRING,
195
- registration_number: { type: sequelize_1.default.STRING },
196
- wheelchair_accessible: { type: sequelize_1.default.BOOLEAN },
197
- msg_start_timestamp: { type: sequelize_1.default.DATE },
198
- msg_last_timestamp: { type: sequelize_1.default.DATE },
199
- // ⬐ Audit fields
200
- create_batch_id: { type: sequelize_1.default.BIGINT },
201
- created_at: { type: sequelize_1.default.DATE },
202
- created_by: { type: sequelize_1.default.STRING(150) },
203
- update_batch_id: { type: sequelize_1.default.BIGINT },
204
- updated_at: { type: sequelize_1.default.DATE },
205
- updated_by: { type: sequelize_1.default.STRING(150) }, // Identikace uživatele/procesu, který poslední měnil záznam
206
- };
207
- // only for Validator
208
- const outputRunsMSO = {
209
- id: { type: String },
210
- route_id: { type: String },
211
- run_number: { type: String },
212
- line_short_name: { type: String },
213
- registration_number: { type: String },
214
- msg_start_timestamp: { type: Date },
215
- msg_last_timestamp: { type: Date },
216
- wheelchair_accessible: { type: Boolean },
217
- };
218
- const outputRunsMessagesSDMA = {
219
- id: {
220
- primaryKey: true,
221
- type: sequelize_1.default.BIGINT,
222
- autoIncrement: true,
223
- },
224
- runs_id: sequelize_1.default.STRING,
225
- lat: sequelize_1.default.DECIMAL,
226
- lng: sequelize_1.default.DECIMAL,
227
- actual_stop_asw_id: sequelize_1.default.STRING,
228
- actual_stop_timestamp_real: sequelize_1.default.BIGINT,
229
- actual_stop_timestamp_scheduled: sequelize_1.default.BIGINT,
230
- last_stop_asw_id: sequelize_1.default.STRING,
231
- packet_number: sequelize_1.default.STRING,
232
- msg_timestamp: sequelize_1.default.DATE,
233
- events: sequelize_1.default.STRING,
234
- // ⬐ Audit fields
235
- create_batch_id: { type: sequelize_1.default.BIGINT },
236
- created_at: { type: sequelize_1.default.DATE },
237
- created_by: { type: sequelize_1.default.STRING(150) },
238
- update_batch_id: { type: sequelize_1.default.BIGINT },
239
- updated_at: { type: sequelize_1.default.DATE },
240
- updated_by: { type: sequelize_1.default.STRING(150) }, // Identikace uživatele/procesu, který poslední měnil záznam
241
- };
242
- // only for Validator
243
- const outputRunsMessagesMSO = {
244
- id: { type: Number },
245
- runs_id: { type: String },
246
- lat: { type: Number },
247
- lng: { type: Number },
248
- actual_stop_asw_id: { type: String },
249
- actual_stop_timestamp_real: { type: Number },
250
- actual_stop_timestamp_scheduled: { type: Number },
251
- last_stop_asw_id: { type: String },
252
- packet_number: { type: String },
253
- msg_timestamp: { type: Date },
254
- events: { type: String },
255
- };
256
187
  const outputGtfsRunTripCacheMSO = {
257
188
  schedule: [
258
189
  {
@@ -292,55 +223,6 @@ const outputGtfsTripStopsCacheMSO = {
292
223
  },
293
224
  ],
294
225
  };
295
- // INSERT or UPDATE
296
- const outputStopsSDMA = {
297
- arrival_delay_type: sequelize_1.default.INTEGER,
298
- arrival_time: sequelize_1.default.TIME,
299
- // ⬐ Převod na timestamp (pozor, čas 23:59 který přišel v 0:01 bude mít včerejší datum!)
300
- arrival_timestamp: sequelize_1.default.BIGINT,
301
- asw_stop_id: sequelize_1.default.STRING,
302
- cis_stop_id: sequelize_1.default.INTEGER,
303
- cis_stop_platform_code: sequelize_1.default.STRING,
304
- // ⬐ Doplnit podle poradi elementu v xml, cislovano od 1
305
- cis_stop_sequence: {
306
- primaryKey: true,
307
- type: sequelize_1.default.INTEGER,
308
- },
309
- delay_arrival: sequelize_1.default.INTEGER,
310
- delay_departure: sequelize_1.default.INTEGER,
311
- delay_type: sequelize_1.default.INTEGER,
312
- departure_time: sequelize_1.default.TIME,
313
- // ⬐ Převod na timestamp (pozor, čas 23:59 který přišel v 0:01 bude mít včerejší datum!)
314
- departure_timestamp: sequelize_1.default.BIGINT,
315
- // ⬐ hash(start_timestamp, cis_id, cis_short_name, cis_number);
316
- trips_id: {
317
- primaryKey: true,
318
- type: sequelize_1.default.STRING,
319
- },
320
- // ⬐ Auditni pole
321
- create_batch_id: { type: sequelize_1.default.BIGINT },
322
- created_at: { type: sequelize_1.default.DATE },
323
- created_by: { type: sequelize_1.default.STRING(150) },
324
- update_batch_id: { type: sequelize_1.default.BIGINT },
325
- updated_at: { type: sequelize_1.default.DATE },
326
- updated_by: { type: sequelize_1.default.STRING(150) }, // Identikace uživatele/procesu, který poslední měnil záznam
327
- };
328
- // only for Validator
329
- const outputStopsMSO = {
330
- arrival_delay_type: { type: Number },
331
- arrival_time: { type: String },
332
- arrival_timestamp: { type: Number },
333
- asw_stop_id: { type: String },
334
- cis_stop_id: { type: Number },
335
- cis_stop_platform_code: { type: String },
336
- cis_stop_sequence: { type: Number, required: true },
337
- delay_arrival: { type: Number },
338
- delay_departure: { type: Number },
339
- delay_type: { type: Number },
340
- departure_time: { type: String },
341
- departure_timestamp: { type: Number },
342
- trips_id: { type: String, required: true },
343
- };
344
226
  // V1 Schemas
345
227
  // INSERT or UPDATE
346
228
  const outputV1TripsSDMA = {
@@ -471,18 +353,6 @@ const forExport = {
471
353
  pgTableName: "vehiclepositions_positions",
472
354
  pgTableNameHistory: "vehiclepositions_positions_history",
473
355
  },
474
- runs: {
475
- name: "VehiclePositionsRuns",
476
- outputMongooseSchemaObject: outputRunsMSO,
477
- outputSequelizeAttributes: outputRunsSDMA,
478
- pgTableName: "vehiclepositions_runs",
479
- },
480
- runsMessages: {
481
- name: "VehiclePositionsRunsMessages",
482
- outputMongooseSchemaObject: outputRunsMessagesMSO,
483
- outputSequelizeAttributes: outputRunsMessagesSDMA,
484
- pgTableName: "vehiclepositions_runs_messages",
485
- },
486
356
  runsTrips: {
487
357
  name: "VehiclePositionsRunsTripsCache",
488
358
  outputMongooseSchemaObject: outputGtfsRunTripCacheMSO,
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/schema-definitions/vehicle-positions/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/schema-definitions/vehicle-positions/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,20 @@
1
+ import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
2
+ import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
3
+ import { TCPEventEnum } from "../../../const";
4
+ import { ICommonRunsMessagesModel } from "./interfaces/ICommonRunsMessagesModel";
5
+ export declare class CommonRunsMessagesModel extends Model<CommonRunsMessagesModel> implements ICommonRunsMessagesModel {
6
+ static TABLE_NAME: string;
7
+ id?: number;
8
+ runs_id?: string;
9
+ lat: number;
10
+ lng: number;
11
+ actual_stop_asw_id: string;
12
+ actual_stop_timestamp_real: number;
13
+ actual_stop_timestamp_scheduled?: number;
14
+ last_stop_asw_id: string;
15
+ packet_number: string;
16
+ msg_timestamp: string;
17
+ events: TCPEventEnum;
18
+ static attributeModel: ModelAttributes<CommonRunsMessagesModel>;
19
+ static arrayJsonSchema: JSONSchemaType<ICommonRunsMessagesModel[]>;
20
+ }
@@ -0,0 +1,80 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CommonRunsMessagesModel = void 0;
4
+ const sequelize_1 = require("@golemio/core/dist/shared/sequelize");
5
+ class CommonRunsMessagesModel extends sequelize_1.Model {
6
+ }
7
+ exports.CommonRunsMessagesModel = CommonRunsMessagesModel;
8
+ CommonRunsMessagesModel.TABLE_NAME = "vehiclepositions_runs_messages";
9
+ CommonRunsMessagesModel.attributeModel = {
10
+ id: {
11
+ primaryKey: true,
12
+ type: sequelize_1.DataTypes.BIGINT,
13
+ autoIncrement: true,
14
+ },
15
+ runs_id: sequelize_1.DataTypes.STRING,
16
+ lat: sequelize_1.DataTypes.DECIMAL,
17
+ lng: sequelize_1.DataTypes.DECIMAL,
18
+ actual_stop_asw_id: sequelize_1.DataTypes.STRING,
19
+ actual_stop_timestamp_real: sequelize_1.DataTypes.BIGINT,
20
+ actual_stop_timestamp_scheduled: sequelize_1.DataTypes.BIGINT,
21
+ last_stop_asw_id: sequelize_1.DataTypes.STRING,
22
+ packet_number: sequelize_1.DataTypes.STRING,
23
+ msg_timestamp: sequelize_1.DataTypes.DATE,
24
+ events: sequelize_1.DataTypes.STRING,
25
+ };
26
+ CommonRunsMessagesModel.arrayJsonSchema = {
27
+ type: "array",
28
+ items: {
29
+ type: "object",
30
+ properties: {
31
+ id: {
32
+ type: "integer",
33
+ nullable: true,
34
+ },
35
+ runs_id: {
36
+ type: "string",
37
+ nullable: true,
38
+ },
39
+ lat: {
40
+ type: "number",
41
+ },
42
+ lng: {
43
+ type: "number",
44
+ },
45
+ actual_stop_asw_id: {
46
+ type: "string",
47
+ },
48
+ actual_stop_timestamp_real: {
49
+ type: "number",
50
+ },
51
+ actual_stop_timestamp_scheduled: {
52
+ type: "number",
53
+ nullable: true,
54
+ },
55
+ last_stop_asw_id: {
56
+ type: "string",
57
+ nullable: true,
58
+ },
59
+ packet_number: {
60
+ type: "string",
61
+ },
62
+ msg_timestamp: {
63
+ type: "string",
64
+ },
65
+ events: {
66
+ type: "string",
67
+ },
68
+ },
69
+ required: [
70
+ "lat",
71
+ "lng",
72
+ "actual_stop_asw_id",
73
+ "actual_stop_timestamp_real",
74
+ "packet_number",
75
+ "msg_timestamp",
76
+ "events",
77
+ ],
78
+ },
79
+ };
80
+ //# sourceMappingURL=CommonRunsMessagesModel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommonRunsMessagesModel.js","sourceRoot":"","sources":["../../../../src/schema-definitions/vehicle-positions/models/CommonRunsMessagesModel.ts"],"names":[],"mappings":";;;AACA,mEAAwF;AAIxF,MAAa,uBAAwB,SAAQ,iBAA8B;;AAA3E,0DAuFC;AAtFiB,kCAAU,GAAG,gCAAgC,CAAC;AAc9C,sCAAc,GAA6C;IACrE,EAAE,EAAE;QACA,UAAU,EAAE,IAAI;QAChB,IAAI,EAAE,qBAAS,CAAC,MAAM;QACtB,aAAa,EAAE,IAAI;KACtB;IACD,OAAO,EAAE,qBAAS,CAAC,MAAM;IACzB,GAAG,EAAE,qBAAS,CAAC,OAAO;IACtB,GAAG,EAAE,qBAAS,CAAC,OAAO;IACtB,kBAAkB,EAAE,qBAAS,CAAC,MAAM;IACpC,0BAA0B,EAAE,qBAAS,CAAC,MAAM;IAC5C,+BAA+B,EAAE,qBAAS,CAAC,MAAM;IACjD,gBAAgB,EAAE,qBAAS,CAAC,MAAM;IAClC,aAAa,EAAE,qBAAS,CAAC,MAAM;IAC/B,aAAa,EAAE,qBAAS,CAAC,IAAI;IAC7B,MAAM,EAAE,qBAAS,CAAC,MAAM;CAC3B,CAAC;AAEY,uCAAe,GAA+C;IACxE,IAAI,EAAE,OAAO;IACb,KAAK,EAAE;QACH,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACR,EAAE,EAAE;gBACA,IAAI,EAAE,SAAS;gBACf,QAAQ,EAAE,IAAI;aACjB;YACD,OAAO,EAAE;gBACL,IAAI,EAAE,QAAQ;gBACd,QAAQ,EAAE,IAAI;aACjB;YACD,GAAG,EAAE;gBACD,IAAI,EAAE,QAAQ;aACjB;YACD,GAAG,EAAE;gBACD,IAAI,EAAE,QAAQ;aACjB;YACD,kBAAkB,EAAE;gBAChB,IAAI,EAAE,QAAQ;aACjB;YACD,0BAA0B,EAAE;gBACxB,IAAI,EAAE,QAAQ;aACjB;YACD,+BAA+B,EAAE;gBAC7B,IAAI,EAAE,QAAQ;gBACd,QAAQ,EAAE,IAAI;aACjB;YACD,gBAAgB,EAAE;gBACd,IAAI,EAAE,QAAQ;gBACd,QAAQ,EAAE,IAAI;aACjB;YACD,aAAa,EAAE;gBACX,IAAI,EAAE,QAAQ;aACjB;YACD,aAAa,EAAE;gBACX,IAAI,EAAE,QAAQ;aACjB;YACD,MAAM,EAAE;gBACJ,IAAI,EAAE,QAAQ;aACjB;SACJ;QACD,QAAQ,EAAE;YACN,KAAK;YACL,KAAK;YACL,oBAAoB;YACpB,4BAA4B;YAC5B,eAAe;YACf,eAAe;YACf,QAAQ;SACX;KACJ;CACJ,CAAC"}
@@ -0,0 +1,16 @@
1
+ import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
2
+ import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
3
+ import { ICommonRunsModel } from "./interfaces/ICommonRunsModel";
4
+ export declare class CommonRunsModel extends Model<CommonRunsModel> implements ICommonRunsModel {
5
+ static TABLE_NAME: string;
6
+ id: string;
7
+ route_id: string;
8
+ run_number: string;
9
+ line_short_name: string;
10
+ registration_number: string;
11
+ msg_start_timestamp: string;
12
+ msg_last_timestamp: string;
13
+ wheelchair_accessible: boolean;
14
+ static attributeModel: ModelAttributes<CommonRunsModel>;
15
+ static jsonSchema: JSONSchemaType<ICommonRunsModel>;
16
+ }
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CommonRunsModel = void 0;
4
+ const sequelize_1 = require("@golemio/core/dist/shared/sequelize");
5
+ class CommonRunsModel extends sequelize_1.Model {
6
+ }
7
+ exports.CommonRunsModel = CommonRunsModel;
8
+ CommonRunsModel.TABLE_NAME = "vehiclepositions_runs";
9
+ CommonRunsModel.attributeModel = {
10
+ id: {
11
+ primaryKey: true,
12
+ type: sequelize_1.DataTypes.STRING,
13
+ },
14
+ route_id: { type: sequelize_1.DataTypes.STRING },
15
+ run_number: { type: sequelize_1.DataTypes.INTEGER },
16
+ line_short_name: sequelize_1.DataTypes.STRING,
17
+ registration_number: { type: sequelize_1.DataTypes.STRING },
18
+ wheelchair_accessible: { type: sequelize_1.DataTypes.BOOLEAN },
19
+ msg_start_timestamp: { type: sequelize_1.DataTypes.DATE },
20
+ msg_last_timestamp: { type: sequelize_1.DataTypes.DATE },
21
+ };
22
+ CommonRunsModel.jsonSchema = {
23
+ type: "object",
24
+ properties: {
25
+ id: {
26
+ type: "string",
27
+ },
28
+ route_id: {
29
+ type: "string",
30
+ },
31
+ run_number: {
32
+ type: "string",
33
+ },
34
+ line_short_name: {
35
+ type: "string",
36
+ },
37
+ registration_number: {
38
+ type: "string",
39
+ },
40
+ wheelchair_accessible: {
41
+ type: "boolean",
42
+ },
43
+ msg_start_timestamp: {
44
+ type: "string",
45
+ },
46
+ msg_last_timestamp: {
47
+ type: "string",
48
+ },
49
+ },
50
+ required: [
51
+ "id",
52
+ "route_id",
53
+ "run_number",
54
+ "line_short_name",
55
+ "registration_number",
56
+ "wheelchair_accessible",
57
+ "msg_start_timestamp",
58
+ "msg_last_timestamp",
59
+ ],
60
+ };
61
+ //# sourceMappingURL=CommonRunsModel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommonRunsModel.js","sourceRoot":"","sources":["../../../../src/schema-definitions/vehicle-positions/models/CommonRunsModel.ts"],"names":[],"mappings":";;;AACA,mEAAwF;AAGxF,MAAa,eAAgB,SAAQ,iBAAsB;;AAA3D,0CAiEC;AAhEiB,0BAAU,GAAG,uBAAuB,CAAC;AAWrC,8BAAc,GAAqC;IAC7D,EAAE,EAAE;QACA,UAAU,EAAE,IAAI;QAChB,IAAI,EAAE,qBAAS,CAAC,MAAM;KACzB;IACD,QAAQ,EAAE,EAAE,IAAI,EAAE,qBAAS,CAAC,MAAM,EAAE;IACpC,UAAU,EAAE,EAAE,IAAI,EAAE,qBAAS,CAAC,OAAO,EAAE;IACvC,eAAe,EAAE,qBAAS,CAAC,MAAM;IACjC,mBAAmB,EAAE,EAAE,IAAI,EAAE,qBAAS,CAAC,MAAM,EAAE;IAC/C,qBAAqB,EAAE,EAAE,IAAI,EAAE,qBAAS,CAAC,OAAO,EAAE;IAClD,mBAAmB,EAAE,EAAE,IAAI,EAAE,qBAAS,CAAC,IAAI,EAAE;IAC7C,kBAAkB,EAAE,EAAE,IAAI,EAAE,qBAAS,CAAC,IAAI,EAAE;CAC/C,CAAC;AAEY,0BAAU,GAAqC;IACzD,IAAI,EAAE,QAAQ;IACd,UAAU,EAAE;QACR,EAAE,EAAE;YACA,IAAI,EAAE,QAAQ;SACjB;QACD,QAAQ,EAAE;YACN,IAAI,EAAE,QAAQ;SACjB;QACD,UAAU,EAAE;YACR,IAAI,EAAE,QAAQ;SACjB;QACD,eAAe,EAAE;YACb,IAAI,EAAE,QAAQ;SACjB;QACD,mBAAmB,EAAE;YACjB,IAAI,EAAE,QAAQ;SACjB;QACD,qBAAqB,EAAE;YACnB,IAAI,EAAE,SAAS;SAClB;QACD,mBAAmB,EAAE;YACjB,IAAI,EAAE,QAAQ;SACjB;QACD,kBAAkB,EAAE;YAChB,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,QAAQ,EAAE;QACN,IAAI;QACJ,UAAU;QACV,YAAY;QACZ,iBAAiB;QACjB,qBAAqB;QACrB,uBAAuB;QACvB,qBAAqB;QACrB,oBAAoB;KACvB;CACJ,CAAC"}
@@ -1,2 +1,4 @@
1
+ export * from "./CommonRunsMessagesModel";
2
+ export * from "./CommonRunsModel";
1
3
  export * from "./MetroRunsMessagesModel";
2
4
  export * from "./VPTripsModel";
@@ -14,6 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./CommonRunsMessagesModel"), exports);
18
+ __exportStar(require("./CommonRunsModel"), exports);
17
19
  __exportStar(require("./MetroRunsMessagesModel"), exports);
18
20
  __exportStar(require("./VPTripsModel"), exports);
19
21
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/schema-definitions/vehicle-positions/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AACzC,iDAA+B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/schema-definitions/vehicle-positions/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C;AAC1C,oDAAkC;AAClC,2DAAyC;AACzC,iDAA+B"}
@@ -0,0 +1,14 @@
1
+ import { TCPEventEnum } from "../../../../const";
2
+ export interface ICommonRunsMessagesModel {
3
+ id?: number;
4
+ runs_id?: string;
5
+ lat: number;
6
+ lng: number;
7
+ actual_stop_asw_id: string;
8
+ actual_stop_timestamp_real: number;
9
+ actual_stop_timestamp_scheduled?: number;
10
+ last_stop_asw_id?: string;
11
+ packet_number: string;
12
+ msg_timestamp: string;
13
+ events: TCPEventEnum;
14
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ICommonRunsMessagesModel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ICommonRunsMessagesModel.js","sourceRoot":"","sources":["../../../../../src/schema-definitions/vehicle-positions/models/interfaces/ICommonRunsMessagesModel.ts"],"names":[],"mappings":""}
@@ -0,0 +1,10 @@
1
+ export interface ICommonRunsModel {
2
+ id: string;
3
+ route_id: string;
4
+ run_number: string;
5
+ line_short_name: string;
6
+ registration_number: string;
7
+ msg_start_timestamp: string;
8
+ msg_last_timestamp: string;
9
+ wheelchair_accessible: boolean;
10
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ICommonRunsModel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ICommonRunsModel.js","sourceRoot":"","sources":["../../../../../src/schema-definitions/vehicle-positions/models/interfaces/ICommonRunsModel.ts"],"names":[],"mappings":""}