ocpp-messages 0.1.1 → 0.2.0

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 (394) hide show
  1. package/compile.js +41 -0
  2. package/package.json +5 -3
  3. package/schema/v2.0/AuthorizeRequest.json +171 -0
  4. package/schema/v2.0/AuthorizeResponse.json +233 -0
  5. package/schema/v2.0/BootNotificationRequest.json +114 -0
  6. package/schema/v2.0/BootNotificationResponse.json +83 -0
  7. package/schema/v2.0/CancelReservationRequest.json +35 -0
  8. package/schema/v2.0/CancelReservationResponse.json +71 -0
  9. package/schema/v2.0/CertificateSignedRequest.json +49 -0
  10. package/schema/v2.0/CertificateSignedResponse.json +71 -0
  11. package/schema/v2.0/ChangeAvailabilityRequest.json +69 -0
  12. package/schema/v2.0/ChangeAvailabilityResponse.json +72 -0
  13. package/schema/v2.0/ClearCacheRequest.json +28 -0
  14. package/schema/v2.0/ClearCacheResponse.json +71 -0
  15. package/schema/v2.0/ClearChargingProfileRequest.json +69 -0
  16. package/schema/v2.0/ClearChargingProfileResponse.json +71 -0
  17. package/schema/v2.0/ClearDisplayMessageRequest.json +35 -0
  18. package/schema/v2.0/ClearDisplayMessageResponse.json +71 -0
  19. package/schema/v2.0/ClearVariableMonitoringRequest.json +40 -0
  20. package/schema/v2.0/ClearVariableMonitoringResponse.json +98 -0
  21. package/schema/v2.0/ClearedChargingLimitRequest.json +50 -0
  22. package/schema/v2.0/ClearedChargingLimitResponse.json +28 -0
  23. package/schema/v2.0/CostUpdatedRequest.json +41 -0
  24. package/schema/v2.0/CostUpdatedResponse.json +28 -0
  25. package/schema/v2.0/CustomerInformationRequest.json +173 -0
  26. package/schema/v2.0/CustomerInformationResponse.json +72 -0
  27. package/schema/v2.0/DataTransferRequest.json +44 -0
  28. package/schema/v2.0/DataTransferResponse.json +76 -0
  29. package/schema/v2.0/DeleteCertificateRequest.json +79 -0
  30. package/schema/v2.0/DeleteCertificateResponse.json +72 -0
  31. package/schema/v2.0/FirmwareStatusNotificationRequest.json +60 -0
  32. package/schema/v2.0/FirmwareStatusNotificationResponse.json +28 -0
  33. package/schema/v2.0/Get15118EVCertificateRequest.json +56 -0
  34. package/schema/v2.0/Get15118EVCertificateResponse.json +77 -0
  35. package/schema/v2.0/GetBaseReportRequest.json +50 -0
  36. package/schema/v2.0/GetBaseReportResponse.json +73 -0
  37. package/schema/v2.0/GetCertificateStatusRequest.json +85 -0
  38. package/schema/v2.0/GetCertificateStatusResponse.json +76 -0
  39. package/schema/v2.0/GetChargingProfilesRequest.json +103 -0
  40. package/schema/v2.0/GetChargingProfilesResponse.json +71 -0
  41. package/schema/v2.0/GetCompositeScheduleRequest.json +53 -0
  42. package/schema/v2.0/GetCompositeScheduleResponse.json +157 -0
  43. package/schema/v2.0/GetDisplayMessagesRequest.json +73 -0
  44. package/schema/v2.0/GetDisplayMessagesResponse.json +71 -0
  45. package/schema/v2.0/GetInstalledCertificateIdsRequest.json +49 -0
  46. package/schema/v2.0/GetInstalledCertificateIdsResponse.json +166 -0
  47. package/schema/v2.0/GetLocalListVersionRequest.json +28 -0
  48. package/schema/v2.0/GetLocalListVersionResponse.json +35 -0
  49. package/schema/v2.0/GetLogRequest.json +90 -0
  50. package/schema/v2.0/GetLogResponse.json +77 -0
  51. package/schema/v2.0/GetMonitoringReportRequest.json +156 -0
  52. package/schema/v2.0/GetMonitoringReportResponse.json +73 -0
  53. package/schema/v2.0/GetReportRequest.json +157 -0
  54. package/schema/v2.0/GetReportResponse.json +73 -0
  55. package/schema/v2.0/GetTransactionStatusRequest.json +33 -0
  56. package/schema/v2.0/GetTransactionStatusResponse.json +39 -0
  57. package/schema/v2.0/GetVariablesRequest.json +149 -0
  58. package/schema/v2.0/GetVariablesResponse.json +198 -0
  59. package/schema/v2.0/HeartbeatRequest.json +28 -0
  60. package/schema/v2.0/HeartbeatResponse.json +36 -0
  61. package/schema/v2.0/InstallCertificateRequest.json +52 -0
  62. package/schema/v2.0/InstallCertificateResponse.json +72 -0
  63. package/schema/v2.0/LogStatusNotificationRequest.json +54 -0
  64. package/schema/v2.0/LogStatusNotificationResponse.json +28 -0
  65. package/schema/v2.0/MeterValuesRequest.json +251 -0
  66. package/schema/v2.0/MeterValuesResponse.json +28 -0
  67. package/schema/v2.0/NotifyChargingLimitRequest.json +323 -0
  68. package/schema/v2.0/NotifyChargingLimitResponse.json +28 -0
  69. package/schema/v2.0/NotifyCustomerInformationRequest.json +57 -0
  70. package/schema/v2.0/NotifyCustomerInformationResponse.json +28 -0
  71. package/schema/v2.0/NotifyDisplayMessagesRequest.json +207 -0
  72. package/schema/v2.0/NotifyDisplayMessagesResponse.json +28 -0
  73. package/schema/v2.0/NotifyEVChargingNeedsRequest.json +169 -0
  74. package/schema/v2.0/NotifyEVChargingNeedsResponse.json +72 -0
  75. package/schema/v2.0/NotifyEVChargingScheduleRequest.json +289 -0
  76. package/schema/v2.0/NotifyEVChargingScheduleResponse.json +71 -0
  77. package/schema/v2.0/NotifyEventRequest.json +224 -0
  78. package/schema/v2.0/NotifyEventResponse.json +28 -0
  79. package/schema/v2.0/NotifyMonitoringReportRequest.json +212 -0
  80. package/schema/v2.0/NotifyMonitoringReportResponse.json +28 -0
  81. package/schema/v2.0/NotifyReportRequest.json +279 -0
  82. package/schema/v2.0/NotifyReportResponse.json +28 -0
  83. package/schema/v2.0/PublishFirmwareRequest.json +55 -0
  84. package/schema/v2.0/PublishFirmwareResponse.json +71 -0
  85. package/schema/v2.0/PublishFirmwareStatusNotificationRequest.json +66 -0
  86. package/schema/v2.0/PublishFirmwareStatusNotificationResponse.json +28 -0
  87. package/schema/v2.0/ReportChargingProfilesRequest.json +406 -0
  88. package/schema/v2.0/ReportChargingProfilesResponse.json +28 -0
  89. package/schema/v2.0/RequestStartTransactionRequest.json +457 -0
  90. package/schema/v2.0/RequestStartTransactionResponse.json +76 -0
  91. package/schema/v2.0/RequestStopTransactionRequest.json +36 -0
  92. package/schema/v2.0/RequestStopTransactionResponse.json +71 -0
  93. package/schema/v2.0/ReservationStatusUpdateRequest.json +49 -0
  94. package/schema/v2.0/ReservationStatusUpdateResponse.json +28 -0
  95. package/schema/v2.0/ReserveNowRequest.json +157 -0
  96. package/schema/v2.0/ReserveNowResponse.json +74 -0
  97. package/schema/v2.0/ResetRequest.json +48 -0
  98. package/schema/v2.0/ResetResponse.json +72 -0
  99. package/schema/v2.0/SecurityEventNotificationRequest.json +47 -0
  100. package/schema/v2.0/SecurityEventNotificationResponse.json +28 -0
  101. package/schema/v2.0/SendLocalListRequest.json +258 -0
  102. package/schema/v2.0/SendLocalListResponse.json +72 -0
  103. package/schema/v2.0/SetChargingProfileRequest.json +375 -0
  104. package/schema/v2.0/SetChargingProfileResponse.json +71 -0
  105. package/schema/v2.0/SetDisplayMessageRequest.json +193 -0
  106. package/schema/v2.0/SetDisplayMessageResponse.json +75 -0
  107. package/schema/v2.0/SetMonitoringBaseRequest.json +45 -0
  108. package/schema/v2.0/SetMonitoringBaseResponse.json +73 -0
  109. package/schema/v2.0/SetMonitoringLevelRequest.json +35 -0
  110. package/schema/v2.0/SetMonitoringLevelResponse.json +71 -0
  111. package/schema/v2.0/SetNetworkProfileRequest.json +241 -0
  112. package/schema/v2.0/SetNetworkProfileResponse.json +72 -0
  113. package/schema/v2.0/SetVariableMonitoringRequest.json +169 -0
  114. package/schema/v2.0/SetVariableMonitoringResponse.json +204 -0
  115. package/schema/v2.0/SetVariablesRequest.json +154 -0
  116. package/schema/v2.0/SetVariablesResponse.json +193 -0
  117. package/schema/v2.0/SignCertificateRequest.json +49 -0
  118. package/schema/v2.0/SignCertificateResponse.json +71 -0
  119. package/schema/v2.0/StatusNotificationRequest.json +63 -0
  120. package/schema/v2.0/StatusNotificationResponse.json +28 -0
  121. package/schema/v2.0/TransactionEventRequest.json +497 -0
  122. package/schema/v2.0/TransactionEventResponse.json +223 -0
  123. package/schema/v2.0/TriggerMessageRequest.json +78 -0
  124. package/schema/v2.0/TriggerMessageResponse.json +72 -0
  125. package/schema/v2.0/UnlockConnectorRequest.json +40 -0
  126. package/schema/v2.0/UnlockConnectorResponse.json +73 -0
  127. package/schema/v2.0/UnpublishFirmwareRequest.json +36 -0
  128. package/schema/v2.0/UnpublishFirmwareResponse.json +45 -0
  129. package/schema/v2.0/UpdateFirmwareRequest.json +87 -0
  130. package/schema/v2.0/UpdateFirmwareResponse.json +74 -0
  131. package/v1.6/MeterValues.d.ts +51 -71
  132. package/v2.0/AuthorizeRequest.d.ts +2 -2
  133. package/v2.0/AuthorizeResponse.d.ts +2 -2
  134. package/v2.0/BootNotificationRequest.d.ts +2 -2
  135. package/v2.0/BootNotificationResponse.d.ts +2 -2
  136. package/v2.0/CancelReservationRequest.d.ts +2 -2
  137. package/v2.0/CancelReservationResponse.d.ts +2 -2
  138. package/v2.0/CertificateSignedRequest.d.ts +2 -2
  139. package/v2.0/CertificateSignedResponse.d.ts +2 -2
  140. package/v2.0/ChangeAvailabilityRequest.d.ts +2 -2
  141. package/v2.0/ChangeAvailabilityResponse.d.ts +2 -2
  142. package/v2.0/ClearCacheRequest.d.ts +2 -2
  143. package/v2.0/ClearCacheResponse.d.ts +2 -2
  144. package/v2.0/ClearChargingProfileRequest.d.ts +2 -2
  145. package/v2.0/ClearChargingProfileResponse.d.ts +2 -2
  146. package/v2.0/ClearDisplayMessageRequest.d.ts +2 -2
  147. package/v2.0/ClearDisplayMessageResponse.d.ts +2 -2
  148. package/v2.0/ClearVariableMonitoringRequest.d.ts +2 -2
  149. package/v2.0/ClearVariableMonitoringResponse.d.ts +2 -2
  150. package/v2.0/ClearedChargingLimitRequest.d.ts +2 -2
  151. package/v2.0/ClearedChargingLimitResponse.d.ts +2 -2
  152. package/v2.0/CostUpdatedRequest.d.ts +2 -2
  153. package/v2.0/CostUpdatedResponse.d.ts +2 -2
  154. package/v2.0/CustomerInformationRequest.d.ts +2 -2
  155. package/v2.0/CustomerInformationResponse.d.ts +2 -2
  156. package/v2.0/DataTransferRequest.d.ts +2 -2
  157. package/v2.0/DataTransferResponse.d.ts +2 -2
  158. package/v2.0/DeleteCertificateRequest.d.ts +2 -2
  159. package/v2.0/DeleteCertificateResponse.d.ts +2 -2
  160. package/v2.0/FirmwareStatusNotificationRequest.d.ts +2 -2
  161. package/v2.0/FirmwareStatusNotificationResponse.d.ts +2 -2
  162. package/v2.0/Get15118EVCertificateRequest.d.ts +2 -2
  163. package/v2.0/Get15118EVCertificateResponse.d.ts +2 -2
  164. package/v2.0/GetBaseReportRequest.d.ts +2 -2
  165. package/v2.0/GetBaseReportResponse.d.ts +2 -2
  166. package/v2.0/GetCertificateStatusRequest.d.ts +2 -2
  167. package/v2.0/GetCertificateStatusResponse.d.ts +2 -2
  168. package/v2.0/GetChargingProfilesRequest.d.ts +2 -2
  169. package/v2.0/GetChargingProfilesResponse.d.ts +2 -2
  170. package/v2.0/GetCompositeScheduleRequest.d.ts +2 -2
  171. package/v2.0/GetCompositeScheduleResponse.d.ts +2 -2
  172. package/v2.0/GetDisplayMessagesRequest.d.ts +2 -2
  173. package/v2.0/GetDisplayMessagesResponse.d.ts +2 -2
  174. package/v2.0/GetInstalledCertificateIdsRequest.d.ts +2 -2
  175. package/v2.0/GetInstalledCertificateIdsResponse.d.ts +2 -2
  176. package/v2.0/GetLocalListVersionRequest.d.ts +2 -2
  177. package/v2.0/GetLocalListVersionResponse.d.ts +2 -2
  178. package/v2.0/GetLogRequest.d.ts +2 -2
  179. package/v2.0/GetLogResponse.d.ts +2 -2
  180. package/v2.0/GetMonitoringReportRequest.d.ts +2 -2
  181. package/v2.0/GetMonitoringReportResponse.d.ts +2 -2
  182. package/v2.0/GetReportRequest.d.ts +2 -2
  183. package/v2.0/GetReportResponse.d.ts +2 -2
  184. package/v2.0/GetTransactionStatusRequest.d.ts +2 -2
  185. package/v2.0/GetTransactionStatusResponse.d.ts +2 -2
  186. package/v2.0/GetVariablesRequest.d.ts +2 -2
  187. package/v2.0/GetVariablesResponse.d.ts +2 -2
  188. package/v2.0/HeartbeatRequest.d.ts +2 -2
  189. package/v2.0/HeartbeatResponse.d.ts +2 -2
  190. package/v2.0/InstallCertificateRequest.d.ts +2 -2
  191. package/v2.0/InstallCertificateResponse.d.ts +2 -2
  192. package/v2.0/LogStatusNotificationRequest.d.ts +2 -2
  193. package/v2.0/LogStatusNotificationResponse.d.ts +2 -2
  194. package/v2.0/MeterValuesRequest.d.ts +2 -2
  195. package/v2.0/MeterValuesResponse.d.ts +2 -2
  196. package/v2.0/NotifyChargingLimitRequest.d.ts +2 -2
  197. package/v2.0/NotifyChargingLimitResponse.d.ts +2 -2
  198. package/v2.0/NotifyCustomerInformationRequest.d.ts +2 -2
  199. package/v2.0/NotifyCustomerInformationResponse.d.ts +2 -2
  200. package/v2.0/NotifyDisplayMessagesRequest.d.ts +2 -2
  201. package/v2.0/NotifyDisplayMessagesResponse.d.ts +2 -2
  202. package/v2.0/NotifyEVChargingNeedsRequest.d.ts +2 -2
  203. package/v2.0/NotifyEVChargingNeedsResponse.d.ts +2 -2
  204. package/v2.0/NotifyEVChargingScheduleRequest.d.ts +2 -2
  205. package/v2.0/NotifyEVChargingScheduleResponse.d.ts +2 -2
  206. package/v2.0/NotifyEventRequest.d.ts +2 -2
  207. package/v2.0/NotifyEventResponse.d.ts +2 -2
  208. package/v2.0/NotifyMonitoringReportRequest.d.ts +2 -2
  209. package/v2.0/NotifyMonitoringReportResponse.d.ts +2 -2
  210. package/v2.0/NotifyReportRequest.d.ts +2 -2
  211. package/v2.0/NotifyReportResponse.d.ts +2 -2
  212. package/v2.0/PublishFirmwareRequest.d.ts +2 -2
  213. package/v2.0/PublishFirmwareResponse.d.ts +2 -2
  214. package/v2.0/PublishFirmwareStatusNotificationRequest.d.ts +2 -2
  215. package/v2.0/PublishFirmwareStatusNotificationResponse.d.ts +2 -2
  216. package/v2.0/ReportChargingProfilesRequest.d.ts +2 -2
  217. package/v2.0/ReportChargingProfilesResponse.d.ts +2 -2
  218. package/v2.0/RequestStartTransactionRequest.d.ts +2 -2
  219. package/v2.0/RequestStartTransactionResponse.d.ts +2 -2
  220. package/v2.0/RequestStopTransactionRequest.d.ts +2 -2
  221. package/v2.0/RequestStopTransactionResponse.d.ts +2 -2
  222. package/v2.0/ReservationStatusUpdateRequest.d.ts +2 -2
  223. package/v2.0/ReservationStatusUpdateResponse.d.ts +2 -2
  224. package/v2.0/ReserveNowRequest.d.ts +2 -2
  225. package/v2.0/ReserveNowResponse.d.ts +2 -2
  226. package/v2.0/ResetRequest.d.ts +2 -2
  227. package/v2.0/ResetResponse.d.ts +2 -2
  228. package/v2.0/SecurityEventNotificationRequest.d.ts +2 -2
  229. package/v2.0/SecurityEventNotificationResponse.d.ts +2 -2
  230. package/v2.0/SendLocalListRequest.d.ts +2 -2
  231. package/v2.0/SendLocalListResponse.d.ts +2 -2
  232. package/v2.0/SetChargingProfileRequest.d.ts +2 -2
  233. package/v2.0/SetChargingProfileResponse.d.ts +2 -2
  234. package/v2.0/SetDisplayMessageRequest.d.ts +2 -2
  235. package/v2.0/SetDisplayMessageResponse.d.ts +2 -2
  236. package/v2.0/SetMonitoringBaseRequest.d.ts +2 -2
  237. package/v2.0/SetMonitoringBaseResponse.d.ts +2 -2
  238. package/v2.0/SetMonitoringLevelRequest.d.ts +2 -2
  239. package/v2.0/SetMonitoringLevelResponse.d.ts +2 -2
  240. package/v2.0/SetNetworkProfileRequest.d.ts +2 -2
  241. package/v2.0/SetNetworkProfileResponse.d.ts +2 -2
  242. package/v2.0/SetVariableMonitoringRequest.d.ts +2 -2
  243. package/v2.0/SetVariableMonitoringResponse.d.ts +2 -2
  244. package/v2.0/SetVariablesRequest.d.ts +2 -2
  245. package/v2.0/SetVariablesResponse.d.ts +2 -2
  246. package/v2.0/SignCertificateRequest.d.ts +2 -2
  247. package/v2.0/SignCertificateResponse.d.ts +2 -2
  248. package/v2.0/StatusNotificationRequest.d.ts +2 -2
  249. package/v2.0/StatusNotificationResponse.d.ts +2 -2
  250. package/v2.0/TransactionEventRequest.d.ts +2 -2
  251. package/v2.0/TransactionEventResponse.d.ts +2 -2
  252. package/v2.0/TriggerMessageRequest.d.ts +2 -2
  253. package/v2.0/TriggerMessageResponse.d.ts +2 -2
  254. package/v2.0/UnlockConnectorRequest.d.ts +2 -2
  255. package/v2.0/UnlockConnectorResponse.d.ts +2 -2
  256. package/v2.0/UnpublishFirmwareRequest.d.ts +2 -2
  257. package/v2.0/UnpublishFirmwareResponse.d.ts +2 -2
  258. package/v2.0/UpdateFirmwareRequest.d.ts +2 -2
  259. package/v2.0/UpdateFirmwareResponse.d.ts +2 -2
  260. package/v2.0/index.d.ts +338 -129
  261. package/schema/v2.0/AuthorizeRequest_v1p0.json +0 -133
  262. package/schema/v2.0/AuthorizeResponse_v1p0.json +0 -154
  263. package/schema/v2.0/BootNotificationRequest_v1p0.json +0 -81
  264. package/schema/v2.0/BootNotificationResponse_v1p0.json +0 -30
  265. package/schema/v2.0/CancelReservationRequest_v1p0.json +0 -15
  266. package/schema/v2.0/CancelReservationResponse_v1p0.json +0 -20
  267. package/schema/v2.0/CertificateSignedRequest_v1p0.json +0 -29
  268. package/schema/v2.0/CertificateSignedResponse_v1p0.json +0 -20
  269. package/schema/v2.0/ChangeAvailabilityRequest_v1p0.json +0 -24
  270. package/schema/v2.0/ChangeAvailabilityResponse_v1p0.json +0 -21
  271. package/schema/v2.0/ClearCacheRequest_v1p0.json +0 -7
  272. package/schema/v2.0/ClearCacheResponse_v1p0.json +0 -20
  273. package/schema/v2.0/ClearChargingProfileRequest_v1p0.json +0 -43
  274. package/schema/v2.0/ClearChargingProfileResponse_v1p0.json +0 -20
  275. package/schema/v2.0/ClearDisplayMessageRequest_v1p0.json +0 -15
  276. package/schema/v2.0/ClearDisplayMessageResponse_v1p0.json +0 -20
  277. package/schema/v2.0/ClearVariableMonitoringRequest_v1p0.json +0 -20
  278. package/schema/v2.0/ClearVariableMonitoringResponse_v1p0.json +0 -48
  279. package/schema/v2.0/ClearedChargingLimitRequest_v1p0.json +0 -25
  280. package/schema/v2.0/ClearedChargingLimitResponse_v1p0.json +0 -7
  281. package/schema/v2.0/CostUpdatedRequest_v1p0.json +0 -20
  282. package/schema/v2.0/CostUpdatedResponse_v1p0.json +0 -7
  283. package/schema/v2.0/CustomerInformationRequest_v1p0.json +0 -130
  284. package/schema/v2.0/CustomerInformationResponse_v1p0.json +0 -21
  285. package/schema/v2.0/DataTransferRequest_v1p0.json +0 -21
  286. package/schema/v2.0/DataTransferResponse_v1p0.json +0 -23
  287. package/schema/v2.0/DeleteCertificateRequest_v1p0.json +0 -54
  288. package/schema/v2.0/DeleteCertificateResponse_v1p0.json +0 -21
  289. package/schema/v2.0/FirmwareStatusNotificationRequest_v1p0.json +0 -40
  290. package/schema/v2.0/FirmwareStatusNotificationResponse_v1p0.json +0 -7
  291. package/schema/v2.0/Get15118EVCertificateRequest_v1p0.json +0 -21
  292. package/schema/v2.0/Get15118EVCertificateResponse_v1p0.json +0 -62
  293. package/schema/v2.0/GetBaseReportRequest_v1p0.json +0 -25
  294. package/schema/v2.0/GetBaseReportResponse_v1p0.json +0 -21
  295. package/schema/v2.0/GetCertificateStatusRequest_v1p0.json +0 -58
  296. package/schema/v2.0/GetCertificateStatusResponse_v1p0.json +0 -24
  297. package/schema/v2.0/GetChargingProfilesRequest_v1p0.json +0 -73
  298. package/schema/v2.0/GetChargingProfilesResponse_v1p0.json +0 -20
  299. package/schema/v2.0/GetCompositeScheduleRequest_v1p0.json +0 -27
  300. package/schema/v2.0/GetCompositeScheduleResponse_v1p0.json +0 -108
  301. package/schema/v2.0/GetDisplayMessagesRequest_v1p0.json +0 -42
  302. package/schema/v2.0/GetDisplayMessagesResponse_v1p0.json +0 -20
  303. package/schema/v2.0/GetInstalledCertificateIdsRequest_v1p0.json +0 -24
  304. package/schema/v2.0/GetInstalledCertificateIdsResponse_v1p0.json +0 -70
  305. package/schema/v2.0/GetLocalListVersionRequest_v1p0.json +0 -7
  306. package/schema/v2.0/GetLocalListVersionResponse_v1p0.json +0 -15
  307. package/schema/v2.0/GetLogRequest_v1p0.json +0 -61
  308. package/schema/v2.0/GetLogResponse_v1p0.json +0 -25
  309. package/schema/v2.0/GetMonitoringReportRequest_v1p0.json +0 -112
  310. package/schema/v2.0/GetMonitoringReportResponse_v1p0.json +0 -21
  311. package/schema/v2.0/GetReportRequest_v1p0.json +0 -113
  312. package/schema/v2.0/GetReportResponse_v1p0.json +0 -21
  313. package/schema/v2.0/GetTransactionStatusRequest_v1p0.json +0 -13
  314. package/schema/v2.0/GetTransactionStatusResponse_v1p0.json +0 -18
  315. package/schema/v2.0/GetVariablesRequest_v1p0.json +0 -108
  316. package/schema/v2.0/GetVariablesResponse_v1p0.json +0 -127
  317. package/schema/v2.0/HeartbeatRequest_v1p0.json +0 -7
  318. package/schema/v2.0/HeartbeatResponse_v1p0.json +0 -16
  319. package/schema/v2.0/InstallCertificateRequest_v1p0.json +0 -29
  320. package/schema/v2.0/InstallCertificateResponse_v1p0.json +0 -25
  321. package/schema/v2.0/LogStatusNotificationRequest_v1p0.json +0 -29
  322. package/schema/v2.0/LogStatusNotificationResponse_v1p0.json +0 -7
  323. package/schema/v2.0/MeterValuesRequest_v1p0.json +0 -212
  324. package/schema/v2.0/MeterValuesResponse_v1p0.json +0 -7
  325. package/schema/v2.0/NotifyCentralChargingNeedsRequest_v1p0.json +0 -191
  326. package/schema/v2.0/NotifyCentralChargingNeedsResponse_v1p0.json +0 -20
  327. package/schema/v2.0/NotifyChargingLimitRequest_v1p0.json +0 -117
  328. package/schema/v2.0/NotifyChargingLimitResponse_v1p0.json +0 -7
  329. package/schema/v2.0/NotifyCustomerInformationRequest_v1p0.json +0 -32
  330. package/schema/v2.0/NotifyCustomerInformationResponse_v1p0.json +0 -7
  331. package/schema/v2.0/NotifyDisplayMessagesRequest_v1p0.json +0 -157
  332. package/schema/v2.0/NotifyDisplayMessagesResponse_v1p0.json +0 -7
  333. package/schema/v2.0/NotifyEVChargingNeedsRequest_v1p0.json +0 -125
  334. package/schema/v2.0/NotifyEVChargingNeedsResponse_v1p0.json +0 -21
  335. package/schema/v2.0/NotifyEVChargingScheduleRequest_v1p0.json +0 -88
  336. package/schema/v2.0/NotifyEVChargingScheduleResponse_v1p0.json +0 -20
  337. package/schema/v2.0/NotifyEventRequest_v1p0.json +0 -193
  338. package/schema/v2.0/NotifyEventResponse_v1p0.json +0 -7
  339. package/schema/v2.0/NotifyMonitoringReportRequest_v1p0.json +0 -160
  340. package/schema/v2.0/NotifyMonitoringReportResponse_v1p0.json +0 -7
  341. package/schema/v2.0/NotifyReportRequest_v1p0.json +0 -216
  342. package/schema/v2.0/NotifyReportResponse_v1p0.json +0 -7
  343. package/schema/v2.0/PublishFirmwareRequest_v1p0.json +0 -24
  344. package/schema/v2.0/PublishFirmwareResponse_v1p0.json +0 -20
  345. package/schema/v2.0/PublishFirmwareStatusNotificationRequest_v1p0.json +0 -36
  346. package/schema/v2.0/PublishFirmwareStatusNotificationResponse_v1p0.json +0 -7
  347. package/schema/v2.0/Renegotiate15118ScheduleRequest_v1p0.json +0 -33
  348. package/schema/v2.0/Renegotiate15118ScheduleResponse_v1p0.json +0 -20
  349. package/schema/v2.0/ReportChargingProfilesRequest_v1p0.json +0 -183
  350. package/schema/v2.0/ReportChargingProfilesResponse_v1p0.json +0 -7
  351. package/schema/v2.0/RequestStartTransactionRequest_v1p0.json +0 -222
  352. package/schema/v2.0/RequestStartTransactionResponse_v1p0.json +0 -24
  353. package/schema/v2.0/RequestStopTransactionRequest_v1p0.json +0 -16
  354. package/schema/v2.0/RequestStopTransactionResponse_v1p0.json +0 -20
  355. package/schema/v2.0/ReservationStatusUpdateRequest_v1p0.json +0 -24
  356. package/schema/v2.0/ReservationStatusUpdateResponse_v1p0.json +0 -7
  357. package/schema/v2.0/ReserveNowRequest_v1p0.json +0 -151
  358. package/schema/v2.0/ReserveNowResponse_v1p0.json +0 -23
  359. package/schema/v2.0/ResetRequest_v1p0.json +0 -20
  360. package/schema/v2.0/ResetResponse_v1p0.json +0 -21
  361. package/schema/v2.0/SecurityEventNotificationRequest_v1p0.json +0 -41
  362. package/schema/v2.0/SecurityEventNotificationResponse_v1p0.json +0 -7
  363. package/schema/v2.0/SendLocalListRequest_v1p0.json +0 -211
  364. package/schema/v2.0/SendLocalListResponse_v1p0.json +0 -21
  365. package/schema/v2.0/SetChargingProfileRequest_v1p0.json +0 -158
  366. package/schema/v2.0/SetChargingProfileResponse_v1p0.json +0 -20
  367. package/schema/v2.0/SetDisplayMessageRequest_v1p0.json +0 -144
  368. package/schema/v2.0/SetDisplayMessageResponse_v1p0.json +0 -24
  369. package/schema/v2.0/SetMonitoringBaseRequest_v1p0.json +0 -21
  370. package/schema/v2.0/SetMonitoringBaseResponse_v1p0.json +0 -21
  371. package/schema/v2.0/SetMonitoringLevelRequest_v1p0.json +0 -15
  372. package/schema/v2.0/SetMonitoringLevelResponse_v1p0.json +0 -20
  373. package/schema/v2.0/SetNetworkProfileRequest_v1p0.json +0 -182
  374. package/schema/v2.0/SetNetworkProfileResponse_v1p0.json +0 -21
  375. package/schema/v2.0/SetVariableMonitoringRequest_v1p0.json +0 -123
  376. package/schema/v2.0/SetVariableMonitoringResponse_v1p0.json +0 -133
  377. package/schema/v2.0/SetVariablesRequest_v1p0.json +0 -113
  378. package/schema/v2.0/SetVariablesResponse_v1p0.json +0 -126
  379. package/schema/v2.0/SignCertificateRequest_v1p0.json +0 -24
  380. package/schema/v2.0/SignCertificateResponse_v1p0.json +0 -20
  381. package/schema/v2.0/StatusNotificationRequest_v1p0.json +0 -36
  382. package/schema/v2.0/StatusNotificationResponse_v1p0.json +0 -7
  383. package/schema/v2.0/TransactionEventRequest_v1p0.json +0 -415
  384. package/schema/v2.0/TransactionEventResponse_v1p0.json +0 -136
  385. package/schema/v2.0/TriggerMessageRequest_v1p0.json +0 -51
  386. package/schema/v2.0/TriggerMessageResponse_v1p0.json +0 -21
  387. package/schema/v2.0/UnlockConnectorRequest_v1p0.json +0 -19
  388. package/schema/v2.0/UnlockConnectorResponse_v1p0.json +0 -20
  389. package/schema/v2.0/UnpublishFirmwareRequest_v1p0.json +0 -16
  390. package/schema/v2.0/UnpublishFirmwareResponse_v1p0.json +0 -21
  391. package/schema/v2.0/Update15118EVCertificateRequest_v1p0.json +0 -21
  392. package/schema/v2.0/Update15118EVCertificateResponse_v1p0.json +0 -24
  393. package/schema/v2.0/UpdateFirmwareRequest_v1p0.json +0 -58
  394. package/schema/v2.0/UpdateFirmwareResponse_v1p0.json +0 -21
@@ -0,0 +1,74 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-06/schema#",
3
+ "$id": "urn:OCPP:Cp:2:2020:3:UpdateFirmwareResponse",
4
+ "comment": "OCPP 2.0.1 FINAL",
5
+ "definitions": {
6
+ "CustomDataType": {
7
+ "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.",
8
+ "javaType": "CustomData",
9
+ "type": "object",
10
+ "properties": {
11
+ "vendorId": {
12
+ "type": "string",
13
+ "maxLength": 255
14
+ }
15
+ },
16
+ "required": [
17
+ "vendorId"
18
+ ]
19
+ },
20
+ "UpdateFirmwareStatusEnumType": {
21
+ "description": "This field indicates whether the Charging Station was able to accept the request.\r\n\r\n",
22
+ "javaType": "UpdateFirmwareStatusEnum",
23
+ "type": "string",
24
+ "additionalProperties": false,
25
+ "enum": [
26
+ "Accepted",
27
+ "Rejected",
28
+ "AcceptedCanceled",
29
+ "InvalidCertificate",
30
+ "RevokedCertificate"
31
+ ]
32
+ },
33
+ "StatusInfoType": {
34
+ "description": "Element providing more information about the status.\r\n",
35
+ "javaType": "StatusInfo",
36
+ "type": "object",
37
+ "additionalProperties": false,
38
+ "properties": {
39
+ "customData": {
40
+ "$ref": "#/definitions/CustomDataType"
41
+ },
42
+ "reasonCode": {
43
+ "description": "A predefined code for the reason why the status is returned in this response. The string is case-insensitive.\r\n",
44
+ "type": "string",
45
+ "maxLength": 20
46
+ },
47
+ "additionalInfo": {
48
+ "description": "Additional text to provide detailed information.\r\n",
49
+ "type": "string",
50
+ "maxLength": 512
51
+ }
52
+ },
53
+ "required": [
54
+ "reasonCode"
55
+ ]
56
+ }
57
+ },
58
+ "type": "object",
59
+ "additionalProperties": false,
60
+ "properties": {
61
+ "customData": {
62
+ "$ref": "#/definitions/CustomDataType"
63
+ },
64
+ "status": {
65
+ "$ref": "#/definitions/UpdateFirmwareStatusEnumType"
66
+ },
67
+ "statusInfo": {
68
+ "$ref": "#/definitions/StatusInfoType"
69
+ }
70
+ },
71
+ "required": [
72
+ "status"
73
+ ]
74
+ }
@@ -5,72 +5,6 @@
5
5
  * and run json-schema-to-typescript to regenerate this file.
6
6
  */
7
7
 
8
- export type ReadingContextEnumType =
9
- | "Interruption.Begin"
10
- | "Interruption.End"
11
- | "Sample.Clock"
12
- | "Sample.Periodic"
13
- | "Transaction.Begin"
14
- | "Transaction.End"
15
- | "Trigger"
16
- | "Other";
17
-
18
- export type MeasurandEnumType =
19
- | "Energy.Active.Export.Register"
20
- | "Energy.Active.Import.Register"
21
- | "Energy.Reactive.Export.Register"
22
- | "Energy.Reactive.Import.Register"
23
- | "Energy.Active.Export.Interval"
24
- | "Energy.Active.Import.Interval"
25
- | "Energy.Reactive.Export.Interval"
26
- | "Energy.Reactive.Import.Interval"
27
- | "Power.Active.Export"
28
- | "Power.Active.Import"
29
- | "Power.Offered"
30
- | "Power.Reactive.Export"
31
- | "Power.Reactive.Import"
32
- | "Power.Factor"
33
- | "Current.Import"
34
- | "Current.Export"
35
- | "Current.Offered"
36
- | "Voltage"
37
- | "Frequency"
38
- | "Temperature"
39
- | "SoC"
40
- | "RPM";
41
-
42
- export type PhaseEnumType =
43
- | "L1"
44
- | "L2"
45
- | "L3"
46
- | "N"
47
- | "L1-N"
48
- | "L2-N"
49
- | "L3-N"
50
- | "L1-L2"
51
- | "L2-L3"
52
- | "L3-L1";
53
-
54
- export type LocationEnumType = "Cable" | "EV" | "Inlet" | "Outlet" | "Body";
55
-
56
- export type UnitEnumType =
57
- | "Wh"
58
- | "kWh"
59
- | "varh"
60
- | "kvarh"
61
- | "W"
62
- | "kW"
63
- | "VA"
64
- | "kVA"
65
- | "var"
66
- | "kvar"
67
- | "A"
68
- | "V"
69
- | "K"
70
- | "Celcius"
71
- | "Fahrenheit"
72
- | "Percent";
73
-
74
8
  export interface MeterValuesRequest {
75
9
  connectorId: number;
76
10
  transactionId?: number;
@@ -78,12 +12,58 @@ export interface MeterValuesRequest {
78
12
  timestamp: string;
79
13
  sampledValue: {
80
14
  value: string;
81
- context?: ReadingContextEnumType;
15
+ context?:
16
+ | "Interruption.Begin"
17
+ | "Interruption.End"
18
+ | "Sample.Clock"
19
+ | "Sample.Periodic"
20
+ | "Transaction.Begin"
21
+ | "Transaction.End"
22
+ | "Trigger"
23
+ | "Other";
82
24
  format?: "Raw" | "SignedData";
83
- measurand?: MeasurandEnumType;
84
- phase?: PhaseEnumType;
85
- location?: LocationEnumType;
86
- unit?: UnitEnumType;
25
+ measurand?:
26
+ | "Energy.Active.Export.Register"
27
+ | "Energy.Active.Import.Register"
28
+ | "Energy.Reactive.Export.Register"
29
+ | "Energy.Reactive.Import.Register"
30
+ | "Energy.Active.Export.Interval"
31
+ | "Energy.Active.Import.Interval"
32
+ | "Energy.Reactive.Export.Interval"
33
+ | "Energy.Reactive.Import.Interval"
34
+ | "Power.Active.Export"
35
+ | "Power.Active.Import"
36
+ | "Power.Offered"
37
+ | "Power.Reactive.Export"
38
+ | "Power.Reactive.Import"
39
+ | "Power.Factor"
40
+ | "Current.Import"
41
+ | "Current.Export"
42
+ | "Current.Offered"
43
+ | "Voltage"
44
+ | "Frequency"
45
+ | "Temperature"
46
+ | "SoC"
47
+ | "RPM";
48
+ phase?: "L1" | "L2" | "L3" | "N" | "L1-N" | "L2-N" | "L3-N" | "L1-L2" | "L2-L3" | "L3-L1";
49
+ location?: "Cable" | "EV" | "Inlet" | "Outlet" | "Body";
50
+ unit?:
51
+ | "Wh"
52
+ | "kWh"
53
+ | "varh"
54
+ | "kvarh"
55
+ | "W"
56
+ | "kW"
57
+ | "VA"
58
+ | "kVA"
59
+ | "var"
60
+ | "kvar"
61
+ | "A"
62
+ | "V"
63
+ | "K"
64
+ | "Celcius"
65
+ | "Fahrenheit"
66
+ | "Percent";
87
67
  [k: string]: unknown;
88
68
  }[];
89
69
  [k: string]: unknown;
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -24,7 +24,7 @@ export type IdTokenEnumType =
24
24
  */
25
25
  export type HashAlgorithmEnumType = "SHA256" | "SHA384" | "SHA512";
26
26
 
27
- export interface UrnOCPPCp220203AuthorizeRequest {
27
+ export interface AuthorizeRequest {
28
28
  customData?: CustomDataType;
29
29
  idToken: IdTokenType;
30
30
  /**
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -57,7 +57,7 @@ export type AuthorizeCertificateStatusEnumType =
57
57
  | "CertChainError"
58
58
  | "ContractCancelled";
59
59
 
60
- export interface UrnOCPPCp220203AuthorizeResponse {
60
+ export interface AuthorizeResponse {
61
61
  customData?: CustomDataType;
62
62
  idTokenInfo: IdTokenInfoType;
63
63
  certificateStatus?: AuthorizeCertificateStatusEnumType;
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -20,7 +20,7 @@ export type BootReasonEnumType =
20
20
  | "Unknown"
21
21
  | "Watchdog";
22
22
 
23
- export interface UrnOCPPCp220203BootNotificationRequest {
23
+ export interface BootNotificationRequest {
24
24
  customData?: CustomDataType;
25
25
  chargingStation: ChargingStationType;
26
26
  reason: BootReasonEnumType;
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -12,7 +12,7 @@
12
12
  */
13
13
  export type RegistrationStatusEnumType = "Accepted" | "Pending" | "Rejected";
14
14
 
15
- export interface UrnOCPPCp220203BootNotificationResponse {
15
+ export interface BootNotificationResponse {
16
16
  customData?: CustomDataType;
17
17
  /**
18
18
  * This contains the CSMS’s current time.
@@ -1,11 +1,11 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
5
5
  * and run json-schema-to-typescript to regenerate this file.
6
6
  */
7
7
 
8
- export interface UrnOCPPCp220203CancelReservationRequest {
8
+ export interface CancelReservationRequest {
9
9
  customData?: CustomDataType;
10
10
  /**
11
11
  * Id of the reservation to cancel.
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -11,7 +11,7 @@
11
11
  */
12
12
  export type CancelReservationStatusEnumType = "Accepted" | "Rejected";
13
13
 
14
- export interface UrnOCPPCp220203CancelReservationResponse {
14
+ export interface CancelReservationResponse {
15
15
  customData?: CustomDataType;
16
16
  status: CancelReservationStatusEnumType;
17
17
  statusInfo?: StatusInfoType;
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -12,7 +12,7 @@
12
12
  */
13
13
  export type CertificateSigningUseEnumType = "ChargingStationCertificate" | "V2GCertificate";
14
14
 
15
- export interface UrnOCPPCp220203CertificateSignedRequest {
15
+ export interface CertificateSignedRequest {
16
16
  customData?: CustomDataType;
17
17
  /**
18
18
  * The signed PEM encoded X.509 certificate. This can also contain the necessary sub CA certificates. In that case, the order of the bundle should follow the certificate chain, starting from the leaf certificate.
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -11,7 +11,7 @@
11
11
  */
12
12
  export type CertificateSignedStatusEnumType = "Accepted" | "Rejected";
13
13
 
14
- export interface UrnOCPPCp220203CertificateSignedResponse {
14
+ export interface CertificateSignedResponse {
15
15
  customData?: CustomDataType;
16
16
  status: CertificateSignedStatusEnumType;
17
17
  statusInfo?: StatusInfoType;
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -12,7 +12,7 @@
12
12
  */
13
13
  export type OperationalStatusEnumType = "Inoperative" | "Operative";
14
14
 
15
- export interface UrnOCPPCp220203ChangeAvailabilityRequest {
15
+ export interface ChangeAvailabilityRequest {
16
16
  customData?: CustomDataType;
17
17
  evse?: EVSEType;
18
18
  operationalStatus: OperationalStatusEnumType;
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -11,7 +11,7 @@
11
11
  */
12
12
  export type ChangeAvailabilityStatusEnumType = "Accepted" | "Rejected" | "Scheduled";
13
13
 
14
- export interface UrnOCPPCp220203ChangeAvailabilityResponse {
14
+ export interface ChangeAvailabilityResponse {
15
15
  customData?: CustomDataType;
16
16
  status: ChangeAvailabilityStatusEnumType;
17
17
  statusInfo?: StatusInfoType;
@@ -1,11 +1,11 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
5
5
  * and run json-schema-to-typescript to regenerate this file.
6
6
  */
7
7
 
8
- export interface UrnOCPPCp220203ClearCacheRequest {
8
+ export interface ClearCacheRequest {
9
9
  customData?: CustomDataType;
10
10
  }
11
11
  /**
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -11,7 +11,7 @@
11
11
  */
12
12
  export type ClearCacheStatusEnumType = "Accepted" | "Rejected";
13
13
 
14
- export interface UrnOCPPCp220203ClearCacheResponse {
14
+ export interface ClearCacheResponse {
15
15
  customData?: CustomDataType;
16
16
  status: ClearCacheStatusEnumType;
17
17
  statusInfo?: StatusInfoType;
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -17,7 +17,7 @@ export type ChargingProfilePurposeEnumType =
17
17
  | "TxDefaultProfile"
18
18
  | "TxProfile";
19
19
 
20
- export interface UrnOCPPCp220203ClearChargingProfileRequest {
20
+ export interface ClearChargingProfileRequest {
21
21
  customData?: CustomDataType;
22
22
  /**
23
23
  * The Id of the charging profile to clear.
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -11,7 +11,7 @@
11
11
  */
12
12
  export type ClearChargingProfileStatusEnumType = "Accepted" | "Unknown";
13
13
 
14
- export interface UrnOCPPCp220203ClearChargingProfileResponse {
14
+ export interface ClearChargingProfileResponse {
15
15
  customData?: CustomDataType;
16
16
  status: ClearChargingProfileStatusEnumType;
17
17
  statusInfo?: StatusInfoType;
@@ -1,11 +1,11 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
5
5
  * and run json-schema-to-typescript to regenerate this file.
6
6
  */
7
7
 
8
- export interface UrnOCPPCp220203ClearDisplayMessageRequest {
8
+ export interface ClearDisplayMessageRequest {
9
9
  customData?: CustomDataType;
10
10
  /**
11
11
  * Id of the message that SHALL be removed from the Charging Station.
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -11,7 +11,7 @@
11
11
  */
12
12
  export type ClearMessageStatusEnumType = "Accepted" | "Unknown";
13
13
 
14
- export interface UrnOCPPCp220203ClearDisplayMessageResponse {
14
+ export interface ClearDisplayMessageResponse {
15
15
  customData?: CustomDataType;
16
16
  status: ClearMessageStatusEnumType;
17
17
  statusInfo?: StatusInfoType;
@@ -1,11 +1,11 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
5
5
  * and run json-schema-to-typescript to regenerate this file.
6
6
  */
7
7
 
8
- export interface UrnOCPPCp220203ClearVariableMonitoringRequest {
8
+ export interface ClearVariableMonitoringRequest {
9
9
  customData?: CustomDataType;
10
10
  /**
11
11
  * List of the monitors to be cleared, identified by there Id.
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -12,7 +12,7 @@
12
12
  */
13
13
  export type ClearMonitoringStatusEnumType = "Accepted" | "Rejected" | "NotFound";
14
14
 
15
- export interface UrnOCPPCp220203ClearVariableMonitoringResponse {
15
+ export interface ClearVariableMonitoringResponse {
16
16
  customData?: CustomDataType;
17
17
  /**
18
18
  * @minItems 1
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -11,7 +11,7 @@
11
11
  */
12
12
  export type ChargingLimitSourceEnumType = "EMS" | "Other" | "SO" | "CSO";
13
13
 
14
- export interface UrnOCPPCp220203ClearedChargingLimitRequest {
14
+ export interface ClearedChargingLimitRequest {
15
15
  customData?: CustomDataType;
16
16
  chargingLimitSource: ChargingLimitSourceEnumType;
17
17
  /**
@@ -1,11 +1,11 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
5
5
  * and run json-schema-to-typescript to regenerate this file.
6
6
  */
7
7
 
8
- export interface UrnOCPPCp220203ClearedChargingLimitResponse {
8
+ export interface ClearedChargingLimitResponse {
9
9
  customData?: CustomDataType;
10
10
  }
11
11
  /**
@@ -1,11 +1,11 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
5
5
  * and run json-schema-to-typescript to regenerate this file.
6
6
  */
7
7
 
8
- export interface UrnOCPPCp220203CostUpdatedRequest {
8
+ export interface CostUpdatedRequest {
9
9
  customData?: CustomDataType;
10
10
  /**
11
11
  * Current total cost, based on the information known by the CSMS, of the transaction including taxes. In the currency configured with the configuration Variable: [<<configkey-currency, Currency>>]
@@ -1,11 +1,11 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
5
5
  * and run json-schema-to-typescript to regenerate this file.
6
6
  */
7
7
 
8
- export interface UrnOCPPCp220203CostUpdatedResponse {
8
+ export interface CostUpdatedResponse {
9
9
  customData?: CustomDataType;
10
10
  }
11
11
  /**
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -24,7 +24,7 @@ export type IdTokenEnumType =
24
24
  | "MacAddress"
25
25
  | "NoAuthorization";
26
26
 
27
- export interface UrnOCPPCp220203CustomerInformationRequest {
27
+ export interface CustomerInformationRequest {
28
28
  customData?: CustomDataType;
29
29
  customerCertificate?: CertificateHashDataType;
30
30
  idToken?: IdTokenType;
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -11,7 +11,7 @@
11
11
  */
12
12
  export type CustomerInformationStatusEnumType = "Accepted" | "Rejected" | "Invalid";
13
13
 
14
- export interface UrnOCPPCp220203CustomerInformationResponse {
14
+ export interface CustomerInformationResponse {
15
15
  customData?: CustomDataType;
16
16
  status: CustomerInformationStatusEnumType;
17
17
  statusInfo?: StatusInfoType;
@@ -1,11 +1,11 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
5
5
  * and run json-schema-to-typescript to regenerate this file.
6
6
  */
7
7
 
8
- export interface UrnOCPPCp220203DataTransferRequest {
8
+ export interface DataTransferRequest {
9
9
  customData?: CustomDataType;
10
10
  /**
11
11
  * May be used to indicate a specific message or implementation.
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -11,7 +11,7 @@
11
11
  */
12
12
  export type DataTransferStatusEnumType = "Accepted" | "Rejected" | "UnknownMessageId" | "UnknownVendorId";
13
13
 
14
- export interface UrnOCPPCp220203DataTransferResponse {
14
+ export interface DataTransferResponse {
15
15
  customData?: CustomDataType;
16
16
  status: DataTransferStatusEnumType;
17
17
  statusInfo?: StatusInfoType;
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -11,7 +11,7 @@
11
11
  */
12
12
  export type HashAlgorithmEnumType = "SHA256" | "SHA384" | "SHA512";
13
13
 
14
- export interface UrnOCPPCp220203DeleteCertificateRequest {
14
+ export interface DeleteCertificateRequest {
15
15
  customData?: CustomDataType;
16
16
  certificateHashData: CertificateHashDataType;
17
17
  }
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -11,7 +11,7 @@
11
11
  */
12
12
  export type DeleteCertificateStatusEnumType = "Accepted" | "Failed" | "NotFound";
13
13
 
14
- export interface UrnOCPPCp220203DeleteCertificateResponse {
14
+ export interface DeleteCertificateResponse {
15
15
  customData?: CustomDataType;
16
16
  status: DeleteCertificateStatusEnumType;
17
17
  statusInfo?: StatusInfoType;
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -25,7 +25,7 @@ export type FirmwareStatusEnumType =
25
25
  | "InvalidSignature"
26
26
  | "SignatureVerified";
27
27
 
28
- export interface UrnOCPPCp220203FirmwareStatusNotificationRequest {
28
+ export interface FirmwareStatusNotificationRequest {
29
29
  customData?: CustomDataType;
30
30
  status: FirmwareStatusEnumType;
31
31
  /**