@zetra/citrineos-base 1.8.3-fork.1

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 (1145) hide show
  1. package/dist/assertion/assertion.d.ts +9 -0
  2. package/dist/assertion/assertion.js +54 -0
  3. package/dist/assertion/assertion.js.map +1 -0
  4. package/dist/config/BootConfig.d.ts +40 -0
  5. package/dist/config/BootConfig.js +12 -0
  6. package/dist/config/BootConfig.js.map +1 -0
  7. package/dist/config/ConfigStore.d.ts +11 -0
  8. package/dist/config/ConfigStore.js +22 -0
  9. package/dist/config/ConfigStore.js.map +1 -0
  10. package/dist/config/bootstrap.config.d.ts +49 -0
  11. package/dist/config/bootstrap.config.js +157 -0
  12. package/dist/config/bootstrap.config.js.map +1 -0
  13. package/dist/config/defineConfig.d.ts +12 -0
  14. package/dist/config/defineConfig.js +126 -0
  15. package/dist/config/defineConfig.js.map +1 -0
  16. package/dist/config/signedMeterValuesConfig.d.ts +4 -0
  17. package/dist/config/signedMeterValuesConfig.js +8 -0
  18. package/dist/config/signedMeterValuesConfig.js.map +1 -0
  19. package/dist/config/types.d.ts +474 -0
  20. package/dist/config/types.js +605 -0
  21. package/dist/config/types.js.map +1 -0
  22. package/dist/index.d.ts +116 -0
  23. package/dist/index.js +331 -0
  24. package/dist/index.js.map +1 -0
  25. package/dist/interfaces/api/AbstractModuleApi.d.ts +73 -0
  26. package/dist/interfaces/api/AbstractModuleApi.js +333 -0
  27. package/dist/interfaces/api/AbstractModuleApi.js.map +1 -0
  28. package/dist/interfaces/api/AsDataEndpoint.d.ts +18 -0
  29. package/dist/interfaces/api/AsDataEndpoint.js +45 -0
  30. package/dist/interfaces/api/AsDataEndpoint.js.map +1 -0
  31. package/dist/interfaces/api/AsMessageEndpoint.d.ts +10 -0
  32. package/dist/interfaces/api/AsMessageEndpoint.js +29 -0
  33. package/dist/interfaces/api/AsMessageEndpoint.js.map +1 -0
  34. package/dist/interfaces/api/AuthorizationSecurity.d.ts +6 -0
  35. package/dist/interfaces/api/AuthorizationSecurity.js +8 -0
  36. package/dist/interfaces/api/AuthorizationSecurity.js.map +1 -0
  37. package/dist/interfaces/api/DataEndpointDefinition.d.ts +20 -0
  38. package/dist/interfaces/api/DataEndpointDefinition.js +6 -0
  39. package/dist/interfaces/api/DataEndpointDefinition.js.map +1 -0
  40. package/dist/interfaces/api/ExceptionHandler.d.ts +4 -0
  41. package/dist/interfaces/api/ExceptionHandler.js +2 -0
  42. package/dist/interfaces/api/ExceptionHandler.js.map +1 -0
  43. package/dist/interfaces/api/HttpHeader.d.ts +17 -0
  44. package/dist/interfaces/api/HttpHeader.js +22 -0
  45. package/dist/interfaces/api/HttpHeader.js.map +1 -0
  46. package/dist/interfaces/api/HttpStatus.d.ts +46 -0
  47. package/dist/interfaces/api/HttpStatus.js +51 -0
  48. package/dist/interfaces/api/HttpStatus.js.map +1 -0
  49. package/dist/interfaces/api/MessageEndpointDefinition.d.ts +11 -0
  50. package/dist/interfaces/api/MessageEndpointDefinition.js +5 -0
  51. package/dist/interfaces/api/MessageEndpointDefinition.js.map +1 -0
  52. package/dist/interfaces/api/MessageQuerystring.d.ts +36 -0
  53. package/dist/interfaces/api/MessageQuerystring.js +26 -0
  54. package/dist/interfaces/api/MessageQuerystring.js.map +1 -0
  55. package/dist/interfaces/api/ModuleApi.d.ts +5 -0
  56. package/dist/interfaces/api/ModuleApi.js +5 -0
  57. package/dist/interfaces/api/ModuleApi.js.map +1 -0
  58. package/dist/interfaces/api/auth/ApiAuthenticationResult.d.ts +32 -0
  59. package/dist/interfaces/api/auth/ApiAuthenticationResult.js +45 -0
  60. package/dist/interfaces/api/auth/ApiAuthenticationResult.js.map +1 -0
  61. package/dist/interfaces/api/auth/ApiAuthorizationResult.d.ts +26 -0
  62. package/dist/interfaces/api/auth/ApiAuthorizationResult.js +39 -0
  63. package/dist/interfaces/api/auth/ApiAuthorizationResult.js.map +1 -0
  64. package/dist/interfaces/api/auth/IApiAuthProvider.d.ts +29 -0
  65. package/dist/interfaces/api/auth/IApiAuthProvider.js +3 -0
  66. package/dist/interfaces/api/auth/IApiAuthProvider.js.map +1 -0
  67. package/dist/interfaces/api/auth/UserInfo.d.ts +29 -0
  68. package/dist/interfaces/api/auth/UserInfo.js +5 -0
  69. package/dist/interfaces/api/auth/UserInfo.js.map +1 -0
  70. package/dist/interfaces/api/auth/index.d.ts +4 -0
  71. package/dist/interfaces/api/auth/index.js +6 -0
  72. package/dist/interfaces/api/auth/index.js.map +1 -0
  73. package/dist/interfaces/api/exception/UnauthorizedError.d.ts +3 -0
  74. package/dist/interfaces/api/exception/UnauthorizedError.js +10 -0
  75. package/dist/interfaces/api/exception/UnauthorizedError.js.map +1 -0
  76. package/dist/interfaces/api/exceptions/BadRequestError.d.ts +4 -0
  77. package/dist/interfaces/api/exceptions/BadRequestError.js +11 -0
  78. package/dist/interfaces/api/exceptions/BadRequestError.js.map +1 -0
  79. package/dist/interfaces/api/exceptions/NotFoundError.d.ts +4 -0
  80. package/dist/interfaces/api/exceptions/NotFoundError.js +11 -0
  81. package/dist/interfaces/api/exceptions/NotFoundError.js.map +1 -0
  82. package/dist/interfaces/api/exceptions/unauthorized.exception.d.ts +3 -0
  83. package/dist/interfaces/api/exceptions/unauthorized.exception.js +10 -0
  84. package/dist/interfaces/api/exceptions/unauthorized.exception.js.map +1 -0
  85. package/dist/interfaces/api/http.header.d.ts +17 -0
  86. package/dist/interfaces/api/http.header.js +22 -0
  87. package/dist/interfaces/api/http.header.js.map +1 -0
  88. package/dist/interfaces/api/http.status.d.ts +46 -0
  89. package/dist/interfaces/api/http.status.js +51 -0
  90. package/dist/interfaces/api/http.status.js.map +1 -0
  91. package/dist/interfaces/api/index.d.ts +18 -0
  92. package/dist/interfaces/api/index.js +18 -0
  93. package/dist/interfaces/api/index.js.map +1 -0
  94. package/dist/interfaces/authorizer/index.d.ts +14 -0
  95. package/dist/interfaces/authorizer/index.js +5 -0
  96. package/dist/interfaces/authorizer/index.js.map +1 -0
  97. package/dist/interfaces/cache/cache.d.ts +49 -0
  98. package/dist/interfaces/cache/cache.js +5 -0
  99. package/dist/interfaces/cache/cache.js.map +1 -0
  100. package/dist/interfaces/cache/types.d.ts +23 -0
  101. package/dist/interfaces/cache/types.js +31 -0
  102. package/dist/interfaces/cache/types.js.map +1 -0
  103. package/dist/interfaces/dto/async.job.dto.d.ts +399 -0
  104. package/dist/interfaces/dto/async.job.dto.js +59 -0
  105. package/dist/interfaces/dto/async.job.dto.js.map +1 -0
  106. package/dist/interfaces/dto/authorization.dto.d.ts +1564 -0
  107. package/dist/interfaces/dto/authorization.dto.js +65 -0
  108. package/dist/interfaces/dto/authorization.dto.js.map +1 -0
  109. package/dist/interfaces/dto/boot.dto.d.ts +1984 -0
  110. package/dist/interfaces/dto/boot.dto.js +41 -0
  111. package/dist/interfaces/dto/boot.dto.js.map +1 -0
  112. package/dist/interfaces/dto/cdr.dto.d.ts +121 -0
  113. package/dist/interfaces/dto/cdr.dto.js +94 -0
  114. package/dist/interfaces/dto/cdr.dto.js.map +1 -0
  115. package/dist/interfaces/dto/certificate.dto.d.ts +210 -0
  116. package/dist/interfaces/dto/certificate.dto.js +35 -0
  117. package/dist/interfaces/dto/certificate.dto.js.map +1 -0
  118. package/dist/interfaces/dto/change.configuration.dto.d.ts +138 -0
  119. package/dist/interfaces/dto/change.configuration.dto.js +23 -0
  120. package/dist/interfaces/dto/change.configuration.dto.js.map +1 -0
  121. package/dist/interfaces/dto/charging.needs.dto.d.ts +227 -0
  122. package/dist/interfaces/dto/charging.needs.dto.js +29 -0
  123. package/dist/interfaces/dto/charging.needs.dto.js.map +1 -0
  124. package/dist/interfaces/dto/charging.profile.dto.d.ts +10183 -0
  125. package/dist/interfaces/dto/charging.profile.dto.js +41 -0
  126. package/dist/interfaces/dto/charging.profile.dto.js.map +1 -0
  127. package/dist/interfaces/dto/charging.schedule.dto.d.ts +1710 -0
  128. package/dist/interfaces/dto/charging.schedule.dto.js +34 -0
  129. package/dist/interfaces/dto/charging.schedule.dto.js.map +1 -0
  130. package/dist/interfaces/dto/charging.station.dto.d.ts +2428 -0
  131. package/dist/interfaces/dto/charging.station.dto.js +58 -0
  132. package/dist/interfaces/dto/charging.station.dto.js.map +1 -0
  133. package/dist/interfaces/dto/charging.station.network.profile.dto.d.ts +2838 -0
  134. package/dist/interfaces/dto/charging.station.network.profile.dto.js +30 -0
  135. package/dist/interfaces/dto/charging.station.network.profile.dto.js.map +1 -0
  136. package/dist/interfaces/dto/charging.station.security.info.dto.d.ts +126 -0
  137. package/dist/interfaces/dto/charging.station.security.info.dto.js +22 -0
  138. package/dist/interfaces/dto/charging.station.security.info.dto.js.map +1 -0
  139. package/dist/interfaces/dto/charging.station.sequence.dto.d.ts +1332 -0
  140. package/dist/interfaces/dto/charging.station.sequence.dto.js +27 -0
  141. package/dist/interfaces/dto/charging.station.sequence.dto.js.map +1 -0
  142. package/dist/interfaces/dto/component.dto.d.ts +337 -0
  143. package/dist/interfaces/dto/component.dto.js +29 -0
  144. package/dist/interfaces/dto/component.dto.js.map +1 -0
  145. package/dist/interfaces/dto/composite.schedule.dto.d.ts +146 -0
  146. package/dist/interfaces/dto/composite.schedule.dto.js +26 -0
  147. package/dist/interfaces/dto/composite.schedule.dto.js.map +1 -0
  148. package/dist/interfaces/dto/connector.dto.d.ts +792 -0
  149. package/dist/interfaces/dto/connector.dto.js +49 -0
  150. package/dist/interfaces/dto/connector.dto.js.map +1 -0
  151. package/dist/interfaces/dto/event.data.dto.d.ts +634 -0
  152. package/dist/interfaces/dto/event.data.dto.js +41 -0
  153. package/dist/interfaces/dto/event.data.dto.js.map +1 -0
  154. package/dist/interfaces/dto/evse.dto.d.ts +758 -0
  155. package/dist/interfaces/dto/evse.dto.js +48 -0
  156. package/dist/interfaces/dto/evse.dto.js.map +1 -0
  157. package/dist/interfaces/dto/evse.type.dto.d.ts +126 -0
  158. package/dist/interfaces/dto/evse.type.dto.js +22 -0
  159. package/dist/interfaces/dto/evse.type.dto.js.map +1 -0
  160. package/dist/interfaces/dto/installed.certificate.dto.d.ts +186 -0
  161. package/dist/interfaces/dto/installed.certificate.dto.js +27 -0
  162. package/dist/interfaces/dto/installed.certificate.dto.js.map +1 -0
  163. package/dist/interfaces/dto/latest.status.notification.dto.d.ts +2572 -0
  164. package/dist/interfaces/dto/latest.status.notification.dto.js +28 -0
  165. package/dist/interfaces/dto/latest.status.notification.dto.js.map +1 -0
  166. package/dist/interfaces/dto/location.dto.d.ts +1825 -0
  167. package/dist/interfaces/dto/location.dto.js +102 -0
  168. package/dist/interfaces/dto/location.dto.js.map +1 -0
  169. package/dist/interfaces/dto/message.info.dto.d.ts +551 -0
  170. package/dist/interfaces/dto/message.info.dto.js +36 -0
  171. package/dist/interfaces/dto/message.info.dto.js.map +1 -0
  172. package/dist/interfaces/dto/meter.value.dto.d.ts +711 -0
  173. package/dist/interfaces/dto/meter.value.dto.js +28 -0
  174. package/dist/interfaces/dto/meter.value.dto.js.map +1 -0
  175. package/dist/interfaces/dto/ocpp.message.dto.d.ts +677 -0
  176. package/dist/interfaces/dto/ocpp.message.dto.js +34 -0
  177. package/dist/interfaces/dto/ocpp.message.dto.js.map +1 -0
  178. package/dist/interfaces/dto/reservation.dto.d.ts +269 -0
  179. package/dist/interfaces/dto/reservation.dto.js +33 -0
  180. package/dist/interfaces/dto/reservation.dto.js.map +1 -0
  181. package/dist/interfaces/dto/sales.tariff.dto.d.ts +2997 -0
  182. package/dist/interfaces/dto/sales.tariff.dto.js +27 -0
  183. package/dist/interfaces/dto/sales.tariff.dto.js.map +1 -0
  184. package/dist/interfaces/dto/security.event.dto.d.ts +136 -0
  185. package/dist/interfaces/dto/security.event.dto.js +24 -0
  186. package/dist/interfaces/dto/security.event.dto.js.map +1 -0
  187. package/dist/interfaces/dto/server.network.profile.dto.d.ts +1326 -0
  188. package/dist/interfaces/dto/server.network.profile.dto.js +33 -0
  189. package/dist/interfaces/dto/server.network.profile.dto.js.map +1 -0
  190. package/dist/interfaces/dto/set.network.profile.dto.d.ts +1517 -0
  191. package/dist/interfaces/dto/set.network.profile.dto.js +36 -0
  192. package/dist/interfaces/dto/set.network.profile.dto.js.map +1 -0
  193. package/dist/interfaces/dto/start.transaction.dto.d.ts +493 -0
  194. package/dist/interfaces/dto/start.transaction.dto.js +29 -0
  195. package/dist/interfaces/dto/start.transaction.dto.js.map +1 -0
  196. package/dist/interfaces/dto/status.notification.dto.d.ts +1362 -0
  197. package/dist/interfaces/dto/status.notification.dto.js +33 -0
  198. package/dist/interfaces/dto/status.notification.dto.js.map +1 -0
  199. package/dist/interfaces/dto/stop.transaction.dto.d.ts +544 -0
  200. package/dist/interfaces/dto/stop.transaction.dto.js +31 -0
  201. package/dist/interfaces/dto/stop.transaction.dto.js.map +1 -0
  202. package/dist/interfaces/dto/subscription.dto.d.ts +151 -0
  203. package/dist/interfaces/dto/subscription.dto.js +27 -0
  204. package/dist/interfaces/dto/subscription.dto.js.map +1 -0
  205. package/dist/interfaces/dto/tariff.dto.d.ts +204 -0
  206. package/dist/interfaces/dto/tariff.dto.js +40 -0
  207. package/dist/interfaces/dto/tariff.dto.js.map +1 -0
  208. package/dist/interfaces/dto/tenant.dto.d.ts +265 -0
  209. package/dist/interfaces/dto/tenant.dto.js +32 -0
  210. package/dist/interfaces/dto/tenant.dto.js.map +1 -0
  211. package/dist/interfaces/dto/tenant.partner.dto.d.ts +299 -0
  212. package/dist/interfaces/dto/tenant.partner.dto.js +24 -0
  213. package/dist/interfaces/dto/tenant.partner.dto.js.map +1 -0
  214. package/dist/interfaces/dto/transaction.dto.d.ts +7286 -0
  215. package/dist/interfaces/dto/transaction.dto.js +68 -0
  216. package/dist/interfaces/dto/transaction.dto.js.map +1 -0
  217. package/dist/interfaces/dto/transaction.event.dto.d.ts +1302 -0
  218. package/dist/interfaces/dto/transaction.event.dto.js +43 -0
  219. package/dist/interfaces/dto/transaction.event.dto.js.map +1 -0
  220. package/dist/interfaces/dto/types/authorization.d.ts +26 -0
  221. package/dist/interfaces/dto/types/authorization.js +18 -0
  222. package/dist/interfaces/dto/types/authorization.js.map +1 -0
  223. package/dist/interfaces/dto/types/base.dto.d.ts +56 -0
  224. package/dist/interfaces/dto/types/base.dto.js +13 -0
  225. package/dist/interfaces/dto/types/base.dto.js.map +1 -0
  226. package/dist/interfaces/dto/types/charging.parameters.d.ts +19 -0
  227. package/dist/interfaces/dto/types/charging.parameters.js +21 -0
  228. package/dist/interfaces/dto/types/charging.parameters.js.map +1 -0
  229. package/dist/interfaces/dto/types/device.model.d.ts +5 -0
  230. package/dist/interfaces/dto/types/device.model.js +9 -0
  231. package/dist/interfaces/dto/types/device.model.js.map +1 -0
  232. package/dist/interfaces/dto/types/display.dto.d.ts +6 -0
  233. package/dist/interfaces/dto/types/display.dto.js +9 -0
  234. package/dist/interfaces/dto/types/display.dto.js.map +1 -0
  235. package/dist/interfaces/dto/types/enums.d.ts +919 -0
  236. package/dist/interfaces/dto/types/enums.js +411 -0
  237. package/dist/interfaces/dto/types/enums.js.map +1 -0
  238. package/dist/interfaces/dto/types/hours.d.ts +15 -0
  239. package/dist/interfaces/dto/types/hours.js +19 -0
  240. package/dist/interfaces/dto/types/hours.js.map +1 -0
  241. package/dist/interfaces/dto/types/location.d.ts +13 -0
  242. package/dist/interfaces/dto/types/location.js +15 -0
  243. package/dist/interfaces/dto/types/location.js.map +1 -0
  244. package/dist/interfaces/dto/types/message.info.d.ts +13 -0
  245. package/dist/interfaces/dto/types/message.info.js +12 -0
  246. package/dist/interfaces/dto/types/message.info.js.map +1 -0
  247. package/dist/interfaces/dto/types/ocpi.evse.status.dto.d.ts +11 -0
  248. package/dist/interfaces/dto/types/ocpi.evse.status.dto.js +16 -0
  249. package/dist/interfaces/dto/types/ocpi.evse.status.dto.js.map +1 -0
  250. package/dist/interfaces/dto/types/ocpi.registration.d.ts +139 -0
  251. package/dist/interfaces/dto/types/ocpi.registration.js +47 -0
  252. package/dist/interfaces/dto/types/ocpi.registration.js.map +1 -0
  253. package/dist/interfaces/dto/types/ocpp.message.d.ts +11 -0
  254. package/dist/interfaces/dto/types/ocpp.message.js +11 -0
  255. package/dist/interfaces/dto/types/ocpp.message.js.map +1 -0
  256. package/dist/interfaces/dto/types/sales.tariff.d.ts +437 -0
  257. package/dist/interfaces/dto/types/sales.tariff.js +39 -0
  258. package/dist/interfaces/dto/types/sales.tariff.js.map +1 -0
  259. package/dist/interfaces/dto/types/sampled.value.dto.d.ts +85 -0
  260. package/dist/interfaces/dto/types/sampled.value.dto.js +25 -0
  261. package/dist/interfaces/dto/types/sampled.value.dto.js.map +1 -0
  262. package/dist/interfaces/dto/types/transaction.type.d.ts +35 -0
  263. package/dist/interfaces/dto/types/transaction.type.js +13 -0
  264. package/dist/interfaces/dto/types/transaction.type.js.map +1 -0
  265. package/dist/interfaces/dto/variable.attribute.dto.d.ts +1844 -0
  266. package/dist/interfaces/dto/variable.attribute.dto.js +47 -0
  267. package/dist/interfaces/dto/variable.attribute.dto.js.map +1 -0
  268. package/dist/interfaces/dto/variable.characteristics.dto.d.ts +254 -0
  269. package/dist/interfaces/dto/variable.characteristics.dto.js +31 -0
  270. package/dist/interfaces/dto/variable.characteristics.dto.js.map +1 -0
  271. package/dist/interfaces/dto/variable.dto.d.ts +126 -0
  272. package/dist/interfaces/dto/variable.dto.js +25 -0
  273. package/dist/interfaces/dto/variable.dto.js.map +1 -0
  274. package/dist/interfaces/dto/variable.monitoring.dto.d.ts +592 -0
  275. package/dist/interfaces/dto/variable.monitoring.dto.js +35 -0
  276. package/dist/interfaces/dto/variable.monitoring.dto.js.map +1 -0
  277. package/dist/interfaces/dto/variable.monitoring.status.dto.d.ts +684 -0
  278. package/dist/interfaces/dto/variable.monitoring.status.dto.js +27 -0
  279. package/dist/interfaces/dto/variable.monitoring.status.dto.js.map +1 -0
  280. package/dist/interfaces/dto/variable.status.dto.d.ts +1939 -0
  281. package/dist/interfaces/dto/variable.status.dto.js +28 -0
  282. package/dist/interfaces/dto/variable.status.dto.js.map +1 -0
  283. package/dist/interfaces/files/fileAccess.d.ts +3 -0
  284. package/dist/interfaces/files/fileAccess.js +5 -0
  285. package/dist/interfaces/files/fileAccess.js.map +1 -0
  286. package/dist/interfaces/files/fileStorage.d.ts +20 -0
  287. package/dist/interfaces/files/fileStorage.js +5 -0
  288. package/dist/interfaces/files/fileStorage.js.map +1 -0
  289. package/dist/interfaces/files/index.d.ts +2 -0
  290. package/dist/interfaces/files/index.js +5 -0
  291. package/dist/interfaces/files/index.js.map +1 -0
  292. package/dist/interfaces/messages/AbstractMessageHandler.d.ts +44 -0
  293. package/dist/interfaces/messages/AbstractMessageHandler.js +42 -0
  294. package/dist/interfaces/messages/AbstractMessageHandler.js.map +1 -0
  295. package/dist/interfaces/messages/AbstractMessageSender.d.ts +17 -0
  296. package/dist/interfaces/messages/AbstractMessageSender.js +24 -0
  297. package/dist/interfaces/messages/AbstractMessageSender.js.map +1 -0
  298. package/dist/interfaces/messages/Message.d.ts +90 -0
  299. package/dist/interfaces/messages/Message.js +85 -0
  300. package/dist/interfaces/messages/Message.js.map +1 -0
  301. package/dist/interfaces/messages/MessageConfirmation.d.ts +10 -0
  302. package/dist/interfaces/messages/MessageConfirmation.js +5 -0
  303. package/dist/interfaces/messages/MessageConfirmation.js.map +1 -0
  304. package/dist/interfaces/messages/MessageContext.d.ts +11 -0
  305. package/dist/interfaces/messages/MessageContext.js +5 -0
  306. package/dist/interfaces/messages/MessageContext.js.map +1 -0
  307. package/dist/interfaces/messages/MessageHandler.d.ts +43 -0
  308. package/dist/interfaces/messages/MessageHandler.js +5 -0
  309. package/dist/interfaces/messages/MessageHandler.js.map +1 -0
  310. package/dist/interfaces/messages/MessageSender.d.ts +43 -0
  311. package/dist/interfaces/messages/MessageSender.js +6 -0
  312. package/dist/interfaces/messages/MessageSender.js.map +1 -0
  313. package/dist/interfaces/messages/index.d.ts +44 -0
  314. package/dist/interfaces/messages/index.js +53 -0
  315. package/dist/interfaces/messages/index.js.map +1 -0
  316. package/dist/interfaces/modules/AbstractModule.d.ts +149 -0
  317. package/dist/interfaces/modules/AbstractModule.js +350 -0
  318. package/dist/interfaces/modules/AbstractModule.js.map +1 -0
  319. package/dist/interfaces/modules/AsHandler.d.ts +13 -0
  320. package/dist/interfaces/modules/AsHandler.js +31 -0
  321. package/dist/interfaces/modules/AsHandler.js.map +1 -0
  322. package/dist/interfaces/modules/CircuitBreaker.d.ts +18 -0
  323. package/dist/interfaces/modules/CircuitBreaker.js +46 -0
  324. package/dist/interfaces/modules/CircuitBreaker.js.map +1 -0
  325. package/dist/interfaces/modules/HandlerDefinition.d.ts +11 -0
  326. package/dist/interfaces/modules/HandlerDefinition.js +5 -0
  327. package/dist/interfaces/modules/HandlerDefinition.js.map +1 -0
  328. package/dist/interfaces/modules/Module.d.ts +22 -0
  329. package/dist/interfaces/modules/Module.js +6 -0
  330. package/dist/interfaces/modules/Module.js.map +1 -0
  331. package/dist/interfaces/modules/OCPPValidator.d.ts +74 -0
  332. package/dist/interfaces/modules/OCPPValidator.js +249 -0
  333. package/dist/interfaces/modules/OCPPValidator.js.map +1 -0
  334. package/dist/interfaces/modules/index.d.ts +7 -0
  335. package/dist/interfaces/modules/index.js +8 -0
  336. package/dist/interfaces/modules/index.js.map +1 -0
  337. package/dist/interfaces/repository.d.ts +170 -0
  338. package/dist/interfaces/repository.js +160 -0
  339. package/dist/interfaces/repository.js.map +1 -0
  340. package/dist/interfaces/router/AbstractRouter.d.ts +79 -0
  341. package/dist/interfaces/router/AbstractRouter.js +161 -0
  342. package/dist/interfaces/router/AbstractRouter.js.map +1 -0
  343. package/dist/interfaces/router/AuthenticationOptions.d.ts +4 -0
  344. package/dist/interfaces/router/AuthenticationOptions.js +2 -0
  345. package/dist/interfaces/router/AuthenticationOptions.js.map +1 -0
  346. package/dist/interfaces/router/Authenticator.d.ts +7 -0
  347. package/dist/interfaces/router/Authenticator.js +5 -0
  348. package/dist/interfaces/router/Authenticator.js.map +1 -0
  349. package/dist/interfaces/router/INetworkConnection.d.ts +10 -0
  350. package/dist/interfaces/router/INetworkConnection.js +5 -0
  351. package/dist/interfaces/router/INetworkConnection.js.map +1 -0
  352. package/dist/interfaces/router/Router.d.ts +38 -0
  353. package/dist/interfaces/router/Router.js +5 -0
  354. package/dist/interfaces/router/Router.js.map +1 -0
  355. package/dist/interfaces/router/index.d.ts +5 -0
  356. package/dist/interfaces/router/index.js +5 -0
  357. package/dist/interfaces/router/index.js.map +1 -0
  358. package/dist/interfaces/tenant.d.ts +4 -0
  359. package/dist/interfaces/tenant.js +10 -0
  360. package/dist/interfaces/tenant.js.map +1 -0
  361. package/dist/money/Currency.d.ts +33 -0
  362. package/dist/money/Currency.js +59 -0
  363. package/dist/money/Currency.js.map +1 -0
  364. package/dist/money/Money.d.ts +34 -0
  365. package/dist/money/Money.js +89 -0
  366. package/dist/money/Money.js.map +1 -0
  367. package/dist/ocpp/model/1.6/enums/index.d.ts +383 -0
  368. package/dist/ocpp/model/1.6/enums/index.js +439 -0
  369. package/dist/ocpp/model/1.6/enums/index.js.map +1 -0
  370. package/dist/ocpp/model/1.6/index.d.ts +113 -0
  371. package/dist/ocpp/model/1.6/index.js +61 -0
  372. package/dist/ocpp/model/1.6/index.js.map +1 -0
  373. package/dist/ocpp/model/1.6/schemas/AuthorizeRequest.json +14 -0
  374. package/dist/ocpp/model/1.6/schemas/AuthorizeResponse.json +35 -0
  375. package/dist/ocpp/model/1.6/schemas/BootNotificationRequest.json +46 -0
  376. package/dist/ocpp/model/1.6/schemas/BootNotificationResponse.json +27 -0
  377. package/dist/ocpp/model/1.6/schemas/CancelReservationRequest.json +13 -0
  378. package/dist/ocpp/model/1.6/schemas/CancelReservationResponse.json +20 -0
  379. package/dist/ocpp/model/1.6/schemas/ChangeAvailabilityRequest.json +23 -0
  380. package/dist/ocpp/model/1.6/schemas/ChangeAvailabilityResponse.json +20 -0
  381. package/dist/ocpp/model/1.6/schemas/ChangeConfigurationRequest.json +18 -0
  382. package/dist/ocpp/model/1.6/schemas/ChangeConfigurationResponse.json +20 -0
  383. package/dist/ocpp/model/1.6/schemas/ClearCacheRequest.json +8 -0
  384. package/dist/ocpp/model/1.6/schemas/ClearCacheResponse.json +20 -0
  385. package/dist/ocpp/model/1.6/schemas/ClearChargingProfileRequest.json +28 -0
  386. package/dist/ocpp/model/1.6/schemas/ClearChargingProfileResponse.json +20 -0
  387. package/dist/ocpp/model/1.6/schemas/DataTransferRequest.json +21 -0
  388. package/dist/ocpp/model/1.6/schemas/DataTransferResponse.json +23 -0
  389. package/dist/ocpp/model/1.6/schemas/DiagnosticsStatusNotificationRequest.json +20 -0
  390. package/dist/ocpp/model/1.6/schemas/DiagnosticsStatusNotificationResponse.json +8 -0
  391. package/dist/ocpp/model/1.6/schemas/FirmwareStatusNotificationRequest.json +36 -0
  392. package/dist/ocpp/model/1.6/schemas/FirmwareStatusNotificationResponse.json +8 -0
  393. package/dist/ocpp/model/1.6/schemas/GetCompositeScheduleRequest.json +26 -0
  394. package/dist/ocpp/model/1.6/schemas/GetCompositeScheduleResponse.json +74 -0
  395. package/dist/ocpp/model/1.6/schemas/GetConfigurationRequest.json +16 -0
  396. package/dist/ocpp/model/1.6/schemas/GetConfigurationResponse.json +37 -0
  397. package/dist/ocpp/model/1.6/schemas/GetDiagnosticsRequest.json +28 -0
  398. package/dist/ocpp/model/1.6/schemas/GetDiagnosticsResponse.json +13 -0
  399. package/dist/ocpp/model/1.6/schemas/GetLocalListVersionRequest.json +8 -0
  400. package/dist/ocpp/model/1.6/schemas/GetLocalListVersionResponse.json +13 -0
  401. package/dist/ocpp/model/1.6/schemas/HeartbeatRequest.json +8 -0
  402. package/dist/ocpp/model/1.6/schemas/HeartbeatResponse.json +14 -0
  403. package/dist/ocpp/model/1.6/schemas/MeterValuesRequest.json +198 -0
  404. package/dist/ocpp/model/1.6/schemas/MeterValuesResponse.json +8 -0
  405. package/dist/ocpp/model/1.6/schemas/RemoteStartTransactionRequest.json +122 -0
  406. package/dist/ocpp/model/1.6/schemas/RemoteStartTransactionResponse.json +20 -0
  407. package/dist/ocpp/model/1.6/schemas/RemoteStopTransactionRequest.json +13 -0
  408. package/dist/ocpp/model/1.6/schemas/RemoteStopTransactionResponse.json +20 -0
  409. package/dist/ocpp/model/1.6/schemas/ReserveNowRequest.json +28 -0
  410. package/dist/ocpp/model/1.6/schemas/ReserveNowResponse.json +20 -0
  411. package/dist/ocpp/model/1.6/schemas/ResetRequest.json +20 -0
  412. package/dist/ocpp/model/1.6/schemas/ResetResponse.json +20 -0
  413. package/dist/ocpp/model/1.6/schemas/SendLocalListRequest.json +61 -0
  414. package/dist/ocpp/model/1.6/schemas/SendLocalListResponse.json +20 -0
  415. package/dist/ocpp/model/1.6/schemas/SetChargingProfileRequest.json +118 -0
  416. package/dist/ocpp/model/1.6/schemas/SetChargingProfileResponse.json +20 -0
  417. package/dist/ocpp/model/1.6/schemas/StartTransactionRequest.json +27 -0
  418. package/dist/ocpp/model/1.6/schemas/StartTransactionResponse.json +38 -0
  419. package/dist/ocpp/model/1.6/schemas/StatusNotificationRequest.json +102 -0
  420. package/dist/ocpp/model/1.6/schemas/StatusNotificationResponse.json +8 -0
  421. package/dist/ocpp/model/1.6/schemas/StopTransactionRequest.json +237 -0
  422. package/dist/ocpp/model/1.6/schemas/StopTransactionResponse.json +34 -0
  423. package/dist/ocpp/model/1.6/schemas/TriggerMessageRequest.json +37 -0
  424. package/dist/ocpp/model/1.6/schemas/TriggerMessageResponse.json +20 -0
  425. package/dist/ocpp/model/1.6/schemas/UnlockConnectorRequest.json +13 -0
  426. package/dist/ocpp/model/1.6/schemas/UnlockConnectorResponse.json +20 -0
  427. package/dist/ocpp/model/1.6/schemas/UpdateFirmwareRequest.json +24 -0
  428. package/dist/ocpp/model/1.6/schemas/UpdateFirmwareResponse.json +8 -0
  429. package/dist/ocpp/model/1.6/types/AuthorizeRequest.d.ts +9 -0
  430. package/dist/ocpp/model/1.6/types/AuthorizeRequest.js +5 -0
  431. package/dist/ocpp/model/1.6/types/AuthorizeRequest.js.map +1 -0
  432. package/dist/ocpp/model/1.6/types/AuthorizeResponse.d.ts +14 -0
  433. package/dist/ocpp/model/1.6/types/AuthorizeResponse.js +10 -0
  434. package/dist/ocpp/model/1.6/types/AuthorizeResponse.js.map +1 -0
  435. package/dist/ocpp/model/1.6/types/BootNotificationRequest.d.ts +17 -0
  436. package/dist/ocpp/model/1.6/types/BootNotificationRequest.js +5 -0
  437. package/dist/ocpp/model/1.6/types/BootNotificationRequest.js.map +1 -0
  438. package/dist/ocpp/model/1.6/types/BootNotificationResponse.d.ts +12 -0
  439. package/dist/ocpp/model/1.6/types/BootNotificationResponse.js +10 -0
  440. package/dist/ocpp/model/1.6/types/BootNotificationResponse.js.map +1 -0
  441. package/dist/ocpp/model/1.6/types/CancelReservationRequest.d.ts +9 -0
  442. package/dist/ocpp/model/1.6/types/CancelReservationRequest.js +5 -0
  443. package/dist/ocpp/model/1.6/types/CancelReservationRequest.js.map +1 -0
  444. package/dist/ocpp/model/1.6/types/CancelReservationResponse.d.ts +10 -0
  445. package/dist/ocpp/model/1.6/types/CancelReservationResponse.js +10 -0
  446. package/dist/ocpp/model/1.6/types/CancelReservationResponse.js.map +1 -0
  447. package/dist/ocpp/model/1.6/types/ChangeAvailabilityRequest.d.ts +11 -0
  448. package/dist/ocpp/model/1.6/types/ChangeAvailabilityRequest.js +10 -0
  449. package/dist/ocpp/model/1.6/types/ChangeAvailabilityRequest.js.map +1 -0
  450. package/dist/ocpp/model/1.6/types/ChangeAvailabilityResponse.d.ts +10 -0
  451. package/dist/ocpp/model/1.6/types/ChangeAvailabilityResponse.js +10 -0
  452. package/dist/ocpp/model/1.6/types/ChangeAvailabilityResponse.js.map +1 -0
  453. package/dist/ocpp/model/1.6/types/ChangeConfigurationRequest.d.ts +10 -0
  454. package/dist/ocpp/model/1.6/types/ChangeConfigurationRequest.js +5 -0
  455. package/dist/ocpp/model/1.6/types/ChangeConfigurationRequest.js.map +1 -0
  456. package/dist/ocpp/model/1.6/types/ChangeConfigurationResponse.d.ts +10 -0
  457. package/dist/ocpp/model/1.6/types/ChangeConfigurationResponse.js +10 -0
  458. package/dist/ocpp/model/1.6/types/ChangeConfigurationResponse.js.map +1 -0
  459. package/dist/ocpp/model/1.6/types/ClearCacheRequest.d.ts +8 -0
  460. package/dist/ocpp/model/1.6/types/ClearCacheRequest.js +5 -0
  461. package/dist/ocpp/model/1.6/types/ClearCacheRequest.js.map +1 -0
  462. package/dist/ocpp/model/1.6/types/ClearCacheResponse.d.ts +10 -0
  463. package/dist/ocpp/model/1.6/types/ClearCacheResponse.js +10 -0
  464. package/dist/ocpp/model/1.6/types/ClearCacheResponse.js.map +1 -0
  465. package/dist/ocpp/model/1.6/types/ClearChargingProfileRequest.d.ts +13 -0
  466. package/dist/ocpp/model/1.6/types/ClearChargingProfileRequest.js +10 -0
  467. package/dist/ocpp/model/1.6/types/ClearChargingProfileRequest.js.map +1 -0
  468. package/dist/ocpp/model/1.6/types/ClearChargingProfileResponse.d.ts +10 -0
  469. package/dist/ocpp/model/1.6/types/ClearChargingProfileResponse.js +10 -0
  470. package/dist/ocpp/model/1.6/types/ClearChargingProfileResponse.js.map +1 -0
  471. package/dist/ocpp/model/1.6/types/DataTransferRequest.d.ts +11 -0
  472. package/dist/ocpp/model/1.6/types/DataTransferRequest.js +5 -0
  473. package/dist/ocpp/model/1.6/types/DataTransferRequest.js.map +1 -0
  474. package/dist/ocpp/model/1.6/types/DataTransferResponse.d.ts +11 -0
  475. package/dist/ocpp/model/1.6/types/DataTransferResponse.js +10 -0
  476. package/dist/ocpp/model/1.6/types/DataTransferResponse.js.map +1 -0
  477. package/dist/ocpp/model/1.6/types/DiagnosticsStatusNotificationRequest.d.ts +10 -0
  478. package/dist/ocpp/model/1.6/types/DiagnosticsStatusNotificationRequest.js +10 -0
  479. package/dist/ocpp/model/1.6/types/DiagnosticsStatusNotificationRequest.js.map +1 -0
  480. package/dist/ocpp/model/1.6/types/DiagnosticsStatusNotificationResponse.d.ts +8 -0
  481. package/dist/ocpp/model/1.6/types/DiagnosticsStatusNotificationResponse.js +5 -0
  482. package/dist/ocpp/model/1.6/types/DiagnosticsStatusNotificationResponse.js.map +1 -0
  483. package/dist/ocpp/model/1.6/types/FirmwareStatusNotificationRequest.d.ts +10 -0
  484. package/dist/ocpp/model/1.6/types/FirmwareStatusNotificationRequest.js +10 -0
  485. package/dist/ocpp/model/1.6/types/FirmwareStatusNotificationRequest.js.map +1 -0
  486. package/dist/ocpp/model/1.6/types/FirmwareStatusNotificationResponse.d.ts +8 -0
  487. package/dist/ocpp/model/1.6/types/FirmwareStatusNotificationResponse.js +5 -0
  488. package/dist/ocpp/model/1.6/types/FirmwareStatusNotificationResponse.js.map +1 -0
  489. package/dist/ocpp/model/1.6/types/GetCompositeScheduleRequest.d.ts +12 -0
  490. package/dist/ocpp/model/1.6/types/GetCompositeScheduleRequest.js +10 -0
  491. package/dist/ocpp/model/1.6/types/GetCompositeScheduleRequest.js.map +1 -0
  492. package/dist/ocpp/model/1.6/types/GetCompositeScheduleResponse.d.ts +23 -0
  493. package/dist/ocpp/model/1.6/types/GetCompositeScheduleResponse.js +10 -0
  494. package/dist/ocpp/model/1.6/types/GetCompositeScheduleResponse.js.map +1 -0
  495. package/dist/ocpp/model/1.6/types/GetConfigurationRequest.d.ts +9 -0
  496. package/dist/ocpp/model/1.6/types/GetConfigurationRequest.js +5 -0
  497. package/dist/ocpp/model/1.6/types/GetConfigurationRequest.js.map +1 -0
  498. package/dist/ocpp/model/1.6/types/GetConfigurationResponse.d.ts +14 -0
  499. package/dist/ocpp/model/1.6/types/GetConfigurationResponse.js +5 -0
  500. package/dist/ocpp/model/1.6/types/GetConfigurationResponse.js.map +1 -0
  501. package/dist/ocpp/model/1.6/types/GetDiagnosticsRequest.d.ts +13 -0
  502. package/dist/ocpp/model/1.6/types/GetDiagnosticsRequest.js +5 -0
  503. package/dist/ocpp/model/1.6/types/GetDiagnosticsRequest.js.map +1 -0
  504. package/dist/ocpp/model/1.6/types/GetDiagnosticsResponse.d.ts +9 -0
  505. package/dist/ocpp/model/1.6/types/GetDiagnosticsResponse.js +5 -0
  506. package/dist/ocpp/model/1.6/types/GetDiagnosticsResponse.js.map +1 -0
  507. package/dist/ocpp/model/1.6/types/GetLocalListVersionRequest.d.ts +8 -0
  508. package/dist/ocpp/model/1.6/types/GetLocalListVersionRequest.js +5 -0
  509. package/dist/ocpp/model/1.6/types/GetLocalListVersionRequest.js.map +1 -0
  510. package/dist/ocpp/model/1.6/types/GetLocalListVersionResponse.d.ts +9 -0
  511. package/dist/ocpp/model/1.6/types/GetLocalListVersionResponse.js +5 -0
  512. package/dist/ocpp/model/1.6/types/GetLocalListVersionResponse.js.map +1 -0
  513. package/dist/ocpp/model/1.6/types/HeartbeatRequest.d.ts +8 -0
  514. package/dist/ocpp/model/1.6/types/HeartbeatRequest.js +5 -0
  515. package/dist/ocpp/model/1.6/types/HeartbeatRequest.js.map +1 -0
  516. package/dist/ocpp/model/1.6/types/HeartbeatResponse.d.ts +9 -0
  517. package/dist/ocpp/model/1.6/types/HeartbeatResponse.js +5 -0
  518. package/dist/ocpp/model/1.6/types/HeartbeatResponse.js.map +1 -0
  519. package/dist/ocpp/model/1.6/types/MeterValuesRequest.d.ts +23 -0
  520. package/dist/ocpp/model/1.6/types/MeterValuesRequest.js +10 -0
  521. package/dist/ocpp/model/1.6/types/MeterValuesRequest.js.map +1 -0
  522. package/dist/ocpp/model/1.6/types/MeterValuesResponse.d.ts +8 -0
  523. package/dist/ocpp/model/1.6/types/MeterValuesResponse.js +5 -0
  524. package/dist/ocpp/model/1.6/types/MeterValuesResponse.js.map +1 -0
  525. package/dist/ocpp/model/1.6/types/RemoteStartTransactionRequest.d.ts +32 -0
  526. package/dist/ocpp/model/1.6/types/RemoteStartTransactionRequest.js +10 -0
  527. package/dist/ocpp/model/1.6/types/RemoteStartTransactionRequest.js.map +1 -0
  528. package/dist/ocpp/model/1.6/types/RemoteStartTransactionResponse.d.ts +10 -0
  529. package/dist/ocpp/model/1.6/types/RemoteStartTransactionResponse.js +10 -0
  530. package/dist/ocpp/model/1.6/types/RemoteStartTransactionResponse.js.map +1 -0
  531. package/dist/ocpp/model/1.6/types/RemoteStopTransactionRequest.d.ts +9 -0
  532. package/dist/ocpp/model/1.6/types/RemoteStopTransactionRequest.js +5 -0
  533. package/dist/ocpp/model/1.6/types/RemoteStopTransactionRequest.js.map +1 -0
  534. package/dist/ocpp/model/1.6/types/RemoteStopTransactionResponse.d.ts +10 -0
  535. package/dist/ocpp/model/1.6/types/RemoteStopTransactionResponse.js +10 -0
  536. package/dist/ocpp/model/1.6/types/RemoteStopTransactionResponse.js.map +1 -0
  537. package/dist/ocpp/model/1.6/types/ReserveNowRequest.d.ts +13 -0
  538. package/dist/ocpp/model/1.6/types/ReserveNowRequest.js +5 -0
  539. package/dist/ocpp/model/1.6/types/ReserveNowRequest.js.map +1 -0
  540. package/dist/ocpp/model/1.6/types/ReserveNowResponse.d.ts +10 -0
  541. package/dist/ocpp/model/1.6/types/ReserveNowResponse.js +10 -0
  542. package/dist/ocpp/model/1.6/types/ReserveNowResponse.js.map +1 -0
  543. package/dist/ocpp/model/1.6/types/ResetRequest.d.ts +10 -0
  544. package/dist/ocpp/model/1.6/types/ResetRequest.js +10 -0
  545. package/dist/ocpp/model/1.6/types/ResetRequest.js.map +1 -0
  546. package/dist/ocpp/model/1.6/types/ResetResponse.d.ts +10 -0
  547. package/dist/ocpp/model/1.6/types/ResetResponse.js +10 -0
  548. package/dist/ocpp/model/1.6/types/ResetResponse.js.map +1 -0
  549. package/dist/ocpp/model/1.6/types/SendLocalListRequest.d.ts +19 -0
  550. package/dist/ocpp/model/1.6/types/SendLocalListRequest.js +10 -0
  551. package/dist/ocpp/model/1.6/types/SendLocalListRequest.js.map +1 -0
  552. package/dist/ocpp/model/1.6/types/SendLocalListResponse.d.ts +10 -0
  553. package/dist/ocpp/model/1.6/types/SendLocalListResponse.js +10 -0
  554. package/dist/ocpp/model/1.6/types/SendLocalListResponse.js.map +1 -0
  555. package/dist/ocpp/model/1.6/types/SetChargingProfileRequest.d.ts +31 -0
  556. package/dist/ocpp/model/1.6/types/SetChargingProfileRequest.js +10 -0
  557. package/dist/ocpp/model/1.6/types/SetChargingProfileRequest.js.map +1 -0
  558. package/dist/ocpp/model/1.6/types/SetChargingProfileResponse.d.ts +10 -0
  559. package/dist/ocpp/model/1.6/types/SetChargingProfileResponse.js +10 -0
  560. package/dist/ocpp/model/1.6/types/SetChargingProfileResponse.js.map +1 -0
  561. package/dist/ocpp/model/1.6/types/StartTransactionRequest.d.ts +13 -0
  562. package/dist/ocpp/model/1.6/types/StartTransactionRequest.js +5 -0
  563. package/dist/ocpp/model/1.6/types/StartTransactionRequest.js.map +1 -0
  564. package/dist/ocpp/model/1.6/types/StartTransactionResponse.d.ts +15 -0
  565. package/dist/ocpp/model/1.6/types/StartTransactionResponse.js +10 -0
  566. package/dist/ocpp/model/1.6/types/StartTransactionResponse.js.map +1 -0
  567. package/dist/ocpp/model/1.6/types/StatusNotificationRequest.d.ts +16 -0
  568. package/dist/ocpp/model/1.6/types/StatusNotificationRequest.js +10 -0
  569. package/dist/ocpp/model/1.6/types/StatusNotificationRequest.js.map +1 -0
  570. package/dist/ocpp/model/1.6/types/StatusNotificationResponse.d.ts +8 -0
  571. package/dist/ocpp/model/1.6/types/StatusNotificationResponse.js +5 -0
  572. package/dist/ocpp/model/1.6/types/StatusNotificationResponse.js.map +1 -0
  573. package/dist/ocpp/model/1.6/types/StopTransactionRequest.d.ts +26 -0
  574. package/dist/ocpp/model/1.6/types/StopTransactionRequest.js +10 -0
  575. package/dist/ocpp/model/1.6/types/StopTransactionRequest.js.map +1 -0
  576. package/dist/ocpp/model/1.6/types/StopTransactionResponse.d.ts +14 -0
  577. package/dist/ocpp/model/1.6/types/StopTransactionResponse.js +10 -0
  578. package/dist/ocpp/model/1.6/types/StopTransactionResponse.js.map +1 -0
  579. package/dist/ocpp/model/1.6/types/TriggerMessageRequest.d.ts +11 -0
  580. package/dist/ocpp/model/1.6/types/TriggerMessageRequest.js +10 -0
  581. package/dist/ocpp/model/1.6/types/TriggerMessageRequest.js.map +1 -0
  582. package/dist/ocpp/model/1.6/types/TriggerMessageResponse.d.ts +10 -0
  583. package/dist/ocpp/model/1.6/types/TriggerMessageResponse.js +10 -0
  584. package/dist/ocpp/model/1.6/types/TriggerMessageResponse.js.map +1 -0
  585. package/dist/ocpp/model/1.6/types/UnlockConnectorRequest.d.ts +9 -0
  586. package/dist/ocpp/model/1.6/types/UnlockConnectorRequest.js +5 -0
  587. package/dist/ocpp/model/1.6/types/UnlockConnectorRequest.js.map +1 -0
  588. package/dist/ocpp/model/1.6/types/UnlockConnectorResponse.d.ts +10 -0
  589. package/dist/ocpp/model/1.6/types/UnlockConnectorResponse.js +10 -0
  590. package/dist/ocpp/model/1.6/types/UnlockConnectorResponse.js.map +1 -0
  591. package/dist/ocpp/model/1.6/types/UpdateFirmwareRequest.d.ts +12 -0
  592. package/dist/ocpp/model/1.6/types/UpdateFirmwareRequest.js +5 -0
  593. package/dist/ocpp/model/1.6/types/UpdateFirmwareRequest.js.map +1 -0
  594. package/dist/ocpp/model/1.6/types/UpdateFirmwareResponse.d.ts +8 -0
  595. package/dist/ocpp/model/1.6/types/UpdateFirmwareResponse.js +5 -0
  596. package/dist/ocpp/model/1.6/types/UpdateFirmwareResponse.js.map +1 -0
  597. package/dist/ocpp/model/2.0.1/enums/index.d.ts +1008 -0
  598. package/dist/ocpp/model/2.0.1/enums/index.js +1100 -0
  599. package/dist/ocpp/model/2.0.1/enums/index.js.map +1 -0
  600. package/dist/ocpp/model/2.0.1/index.d.ts +257 -0
  601. package/dist/ocpp/model/2.0.1/index.js +133 -0
  602. package/dist/ocpp/model/2.0.1/index.js.map +1 -0
  603. package/dist/ocpp/model/2.0.1/schemas/AuthorizeRequest.json +169 -0
  604. package/dist/ocpp/model/2.0.1/schemas/AuthorizeResponse.json +248 -0
  605. package/dist/ocpp/model/2.0.1/schemas/BootNotificationRequest.json +117 -0
  606. package/dist/ocpp/model/2.0.1/schemas/BootNotificationResponse.json +73 -0
  607. package/dist/ocpp/model/2.0.1/schemas/CancelReservationRequest.json +32 -0
  608. package/dist/ocpp/model/2.0.1/schemas/CancelReservationResponse.json +62 -0
  609. package/dist/ocpp/model/2.0.1/schemas/CertificateSignedRequest.json +42 -0
  610. package/dist/ocpp/model/2.0.1/schemas/CertificateSignedResponse.json +62 -0
  611. package/dist/ocpp/model/2.0.1/schemas/ChangeAvailabilityRequest.json +64 -0
  612. package/dist/ocpp/model/2.0.1/schemas/ChangeAvailabilityResponse.json +62 -0
  613. package/dist/ocpp/model/2.0.1/schemas/ClearCacheRequest.json +25 -0
  614. package/dist/ocpp/model/2.0.1/schemas/ClearCacheResponse.json +62 -0
  615. package/dist/ocpp/model/2.0.1/schemas/ClearChargingProfileRequest.json +78 -0
  616. package/dist/ocpp/model/2.0.1/schemas/ClearChargingProfileResponse.json +62 -0
  617. package/dist/ocpp/model/2.0.1/schemas/ClearDisplayMessageRequest.json +32 -0
  618. package/dist/ocpp/model/2.0.1/schemas/ClearDisplayMessageResponse.json +62 -0
  619. package/dist/ocpp/model/2.0.1/schemas/ClearVariableMonitoringRequest.json +37 -0
  620. package/dist/ocpp/model/2.0.1/schemas/ClearVariableMonitoringResponse.json +87 -0
  621. package/dist/ocpp/model/2.0.1/schemas/ClearedChargingLimitRequest.json +43 -0
  622. package/dist/ocpp/model/2.0.1/schemas/ClearedChargingLimitResponse.json +25 -0
  623. package/dist/ocpp/model/2.0.1/schemas/CostUpdatedRequest.json +35 -0
  624. package/dist/ocpp/model/2.0.1/schemas/CostUpdatedResponse.json +25 -0
  625. package/dist/ocpp/model/2.0.1/schemas/CustomerInformationRequest.json +164 -0
  626. package/dist/ocpp/model/2.0.1/schemas/CustomerInformationResponse.json +62 -0
  627. package/dist/ocpp/model/2.0.1/schemas/DataTransferRequest.json +39 -0
  628. package/dist/ocpp/model/2.0.1/schemas/DataTransferResponse.json +65 -0
  629. package/dist/ocpp/model/2.0.1/schemas/DeleteCertificateRequest.json +66 -0
  630. package/dist/ocpp/model/2.0.1/schemas/DeleteCertificateResponse.json +62 -0
  631. package/dist/ocpp/model/2.0.1/schemas/FirmwareStatusNotificationRequest.json +73 -0
  632. package/dist/ocpp/model/2.0.1/schemas/FirmwareStatusNotificationResponse.json +25 -0
  633. package/dist/ocpp/model/2.0.1/schemas/Get15118EVCertificateRequest.json +47 -0
  634. package/dist/ocpp/model/2.0.1/schemas/Get15118EVCertificateResponse.json +67 -0
  635. package/dist/ocpp/model/2.0.1/schemas/GetBaseReportRequest.json +43 -0
  636. package/dist/ocpp/model/2.0.1/schemas/GetBaseReportResponse.json +62 -0
  637. package/dist/ocpp/model/2.0.1/schemas/GetCertificateStatusRequest.json +80 -0
  638. package/dist/ocpp/model/2.0.1/schemas/GetCertificateStatusResponse.json +67 -0
  639. package/dist/ocpp/model/2.0.1/schemas/GetChargingProfilesRequest.json +107 -0
  640. package/dist/ocpp/model/2.0.1/schemas/GetChargingProfilesResponse.json +62 -0
  641. package/dist/ocpp/model/2.0.1/schemas/GetCompositeScheduleRequest.json +49 -0
  642. package/dist/ocpp/model/2.0.1/schemas/GetCompositeScheduleResponse.json +154 -0
  643. package/dist/ocpp/model/2.0.1/schemas/GetDisplayMessagesRequest.json +65 -0
  644. package/dist/ocpp/model/2.0.1/schemas/GetDisplayMessagesResponse.json +62 -0
  645. package/dist/ocpp/model/2.0.1/schemas/GetInstalledCertificateIdsRequest.json +53 -0
  646. package/dist/ocpp/model/2.0.1/schemas/GetInstalledCertificateIdsResponse.json +153 -0
  647. package/dist/ocpp/model/2.0.1/schemas/GetLocalListVersionRequest.json +25 -0
  648. package/dist/ocpp/model/2.0.1/schemas/GetLocalListVersionResponse.json +32 -0
  649. package/dist/ocpp/model/2.0.1/schemas/GetLogRequest.json +85 -0
  650. package/dist/ocpp/model/2.0.1/schemas/GetLogResponse.json +67 -0
  651. package/dist/ocpp/model/2.0.1/schemas/GetMonitoringReportRequest.json +146 -0
  652. package/dist/ocpp/model/2.0.1/schemas/GetMonitoringReportResponse.json +62 -0
  653. package/dist/ocpp/model/2.0.1/schemas/GetReportRequest.json +146 -0
  654. package/dist/ocpp/model/2.0.1/schemas/GetReportResponse.json +62 -0
  655. package/dist/ocpp/model/2.0.1/schemas/GetTransactionStatusRequest.json +30 -0
  656. package/dist/ocpp/model/2.0.1/schemas/GetTransactionStatusResponse.json +34 -0
  657. package/dist/ocpp/model/2.0.1/schemas/GetVariablesRequest.json +135 -0
  658. package/dist/ocpp/model/2.0.1/schemas/GetVariablesResponse.json +188 -0
  659. package/dist/ocpp/model/2.0.1/schemas/HeartbeatRequest.json +25 -0
  660. package/dist/ocpp/model/2.0.1/schemas/HeartbeatResponse.json +31 -0
  661. package/dist/ocpp/model/2.0.1/schemas/InstallCertificateRequest.json +52 -0
  662. package/dist/ocpp/model/2.0.1/schemas/InstallCertificateResponse.json +62 -0
  663. package/dist/ocpp/model/2.0.1/schemas/LogStatusNotificationRequest.json +61 -0
  664. package/dist/ocpp/model/2.0.1/schemas/LogStatusNotificationResponse.json +25 -0
  665. package/dist/ocpp/model/2.0.1/schemas/MeterValuesRequest.json +264 -0
  666. package/dist/ocpp/model/2.0.1/schemas/MeterValuesResponse.json +25 -0
  667. package/dist/ocpp/model/2.0.1/schemas/NotifyChargingLimitRequest.json +314 -0
  668. package/dist/ocpp/model/2.0.1/schemas/NotifyChargingLimitResponse.json +25 -0
  669. package/dist/ocpp/model/2.0.1/schemas/NotifyCustomerInformationRequest.json +54 -0
  670. package/dist/ocpp/model/2.0.1/schemas/NotifyCustomerInformationResponse.json +25 -0
  671. package/dist/ocpp/model/2.0.1/schemas/NotifyDisplayMessagesRequest.json +193 -0
  672. package/dist/ocpp/model/2.0.1/schemas/NotifyDisplayMessagesResponse.json +25 -0
  673. package/dist/ocpp/model/2.0.1/schemas/NotifyEVChargingNeedsRequest.json +171 -0
  674. package/dist/ocpp/model/2.0.1/schemas/NotifyEVChargingNeedsResponse.json +62 -0
  675. package/dist/ocpp/model/2.0.1/schemas/NotifyEVChargingScheduleRequest.json +287 -0
  676. package/dist/ocpp/model/2.0.1/schemas/NotifyEVChargingScheduleResponse.json +62 -0
  677. package/dist/ocpp/model/2.0.1/schemas/NotifyEventRequest.json +233 -0
  678. package/dist/ocpp/model/2.0.1/schemas/NotifyEventResponse.json +25 -0
  679. package/dist/ocpp/model/2.0.1/schemas/NotifyMonitoringReportRequest.json +202 -0
  680. package/dist/ocpp/model/2.0.1/schemas/NotifyMonitoringReportResponse.json +25 -0
  681. package/dist/ocpp/model/2.0.1/schemas/NotifyReportRequest.json +275 -0
  682. package/dist/ocpp/model/2.0.1/schemas/NotifyReportResponse.json +25 -0
  683. package/dist/ocpp/model/2.0.1/schemas/PublishFirmwareRequest.json +54 -0
  684. package/dist/ocpp/model/2.0.1/schemas/PublishFirmwareResponse.json +62 -0
  685. package/dist/ocpp/model/2.0.1/schemas/PublishFirmwareStatusNotificationRequest.json +75 -0
  686. package/dist/ocpp/model/2.0.1/schemas/PublishFirmwareStatusNotificationResponse.json +25 -0
  687. package/dist/ocpp/model/2.0.1/schemas/ReportChargingProfilesRequest.json +411 -0
  688. package/dist/ocpp/model/2.0.1/schemas/ReportChargingProfilesResponse.json +25 -0
  689. package/dist/ocpp/model/2.0.1/schemas/RequestStartTransactionRequest.json +464 -0
  690. package/dist/ocpp/model/2.0.1/schemas/RequestStartTransactionResponse.json +67 -0
  691. package/dist/ocpp/model/2.0.1/schemas/RequestStopTransactionRequest.json +31 -0
  692. package/dist/ocpp/model/2.0.1/schemas/RequestStopTransactionResponse.json +62 -0
  693. package/dist/ocpp/model/2.0.1/schemas/ReservationStatusUpdateRequest.json +43 -0
  694. package/dist/ocpp/model/2.0.1/schemas/ReservationStatusUpdateResponse.json +25 -0
  695. package/dist/ocpp/model/2.0.1/schemas/ReserveNowRequest.json +182 -0
  696. package/dist/ocpp/model/2.0.1/schemas/ReserveNowResponse.json +62 -0
  697. package/dist/ocpp/model/2.0.1/schemas/ResetRequest.json +43 -0
  698. package/dist/ocpp/model/2.0.1/schemas/ResetResponse.json +62 -0
  699. package/dist/ocpp/model/2.0.1/schemas/SecurityEventNotificationRequest.json +64 -0
  700. package/dist/ocpp/model/2.0.1/schemas/SecurityEventNotificationResponse.json +25 -0
  701. package/dist/ocpp/model/2.0.1/schemas/SendLocalListRequest.json +261 -0
  702. package/dist/ocpp/model/2.0.1/schemas/SendLocalListResponse.json +62 -0
  703. package/dist/ocpp/model/2.0.1/schemas/SetChargingProfileRequest.json +380 -0
  704. package/dist/ocpp/model/2.0.1/schemas/SetChargingProfileResponse.json +62 -0
  705. package/dist/ocpp/model/2.0.1/schemas/SetDisplayMessageRequest.json +172 -0
  706. package/dist/ocpp/model/2.0.1/schemas/SetDisplayMessageResponse.json +76 -0
  707. package/dist/ocpp/model/2.0.1/schemas/SetMonitoringBaseRequest.json +37 -0
  708. package/dist/ocpp/model/2.0.1/schemas/SetMonitoringBaseResponse.json +62 -0
  709. package/dist/ocpp/model/2.0.1/schemas/SetMonitoringLevelRequest.json +32 -0
  710. package/dist/ocpp/model/2.0.1/schemas/SetMonitoringLevelResponse.json +62 -0
  711. package/dist/ocpp/model/2.0.1/schemas/SetNetworkProfileRequest.json +230 -0
  712. package/dist/ocpp/model/2.0.1/schemas/SetNetworkProfileResponse.json +62 -0
  713. package/dist/ocpp/model/2.0.1/schemas/SetVariableMonitoringRequest.json +161 -0
  714. package/dist/ocpp/model/2.0.1/schemas/SetVariableMonitoringResponse.json +200 -0
  715. package/dist/ocpp/model/2.0.1/schemas/SetVariablesRequest.json +139 -0
  716. package/dist/ocpp/model/2.0.1/schemas/SetVariablesResponse.json +184 -0
  717. package/dist/ocpp/model/2.0.1/schemas/SignCertificateRequest.json +42 -0
  718. package/dist/ocpp/model/2.0.1/schemas/SignCertificateResponse.json +62 -0
  719. package/dist/ocpp/model/2.0.1/schemas/StatusNotificationRequest.json +55 -0
  720. package/dist/ocpp/model/2.0.1/schemas/StatusNotificationResponse.json +25 -0
  721. package/dist/ocpp/model/2.0.1/schemas/TransactionEventRequest.json +559 -0
  722. package/dist/ocpp/model/2.0.1/schemas/TransactionEventResponse.json +233 -0
  723. package/dist/ocpp/model/2.0.1/schemas/TriggerMessageRequest.json +88 -0
  724. package/dist/ocpp/model/2.0.1/schemas/TriggerMessageResponse.json +62 -0
  725. package/dist/ocpp/model/2.0.1/schemas/UnlockConnectorRequest.json +38 -0
  726. package/dist/ocpp/model/2.0.1/schemas/UnlockConnectorResponse.json +67 -0
  727. package/dist/ocpp/model/2.0.1/schemas/UnpublishFirmwareRequest.json +31 -0
  728. package/dist/ocpp/model/2.0.1/schemas/UnpublishFirmwareResponse.json +37 -0
  729. package/dist/ocpp/model/2.0.1/schemas/UpdateFirmwareRequest.json +84 -0
  730. package/dist/ocpp/model/2.0.1/schemas/UpdateFirmwareResponse.json +74 -0
  731. package/dist/ocpp/model/2.0.1/types/AuthorizeRequest.d.ts +88 -0
  732. package/dist/ocpp/model/2.0.1/types/AuthorizeRequest.js +10 -0
  733. package/dist/ocpp/model/2.0.1/types/AuthorizeRequest.js.map +1 -0
  734. package/dist/ocpp/model/2.0.1/types/AuthorizeResponse.d.ts +127 -0
  735. package/dist/ocpp/model/2.0.1/types/AuthorizeResponse.js +10 -0
  736. package/dist/ocpp/model/2.0.1/types/AuthorizeResponse.js.map +1 -0
  737. package/dist/ocpp/model/2.0.1/types/BootNotificationRequest.d.ts +77 -0
  738. package/dist/ocpp/model/2.0.1/types/BootNotificationRequest.js +10 -0
  739. package/dist/ocpp/model/2.0.1/types/BootNotificationRequest.js.map +1 -0
  740. package/dist/ocpp/model/2.0.1/types/BootNotificationResponse.d.ts +46 -0
  741. package/dist/ocpp/model/2.0.1/types/BootNotificationResponse.js +10 -0
  742. package/dist/ocpp/model/2.0.1/types/BootNotificationResponse.js.map +1 -0
  743. package/dist/ocpp/model/2.0.1/types/CancelReservationRequest.d.ts +21 -0
  744. package/dist/ocpp/model/2.0.1/types/CancelReservationRequest.js +5 -0
  745. package/dist/ocpp/model/2.0.1/types/CancelReservationRequest.js.map +1 -0
  746. package/dist/ocpp/model/2.0.1/types/CancelReservationResponse.d.ts +36 -0
  747. package/dist/ocpp/model/2.0.1/types/CancelReservationResponse.js +10 -0
  748. package/dist/ocpp/model/2.0.1/types/CancelReservationResponse.js.map +1 -0
  749. package/dist/ocpp/model/2.0.1/types/CertificateSignedRequest.d.ts +25 -0
  750. package/dist/ocpp/model/2.0.1/types/CertificateSignedRequest.js +10 -0
  751. package/dist/ocpp/model/2.0.1/types/CertificateSignedRequest.js.map +1 -0
  752. package/dist/ocpp/model/2.0.1/types/CertificateSignedResponse.d.ts +36 -0
  753. package/dist/ocpp/model/2.0.1/types/CertificateSignedResponse.js +10 -0
  754. package/dist/ocpp/model/2.0.1/types/CertificateSignedResponse.js.map +1 -0
  755. package/dist/ocpp/model/2.0.1/types/ChangeAvailabilityRequest.d.ts +40 -0
  756. package/dist/ocpp/model/2.0.1/types/ChangeAvailabilityRequest.js +10 -0
  757. package/dist/ocpp/model/2.0.1/types/ChangeAvailabilityRequest.js.map +1 -0
  758. package/dist/ocpp/model/2.0.1/types/ChangeAvailabilityResponse.d.ts +36 -0
  759. package/dist/ocpp/model/2.0.1/types/ChangeAvailabilityResponse.js +10 -0
  760. package/dist/ocpp/model/2.0.1/types/ChangeAvailabilityResponse.js.map +1 -0
  761. package/dist/ocpp/model/2.0.1/types/ClearCacheRequest.d.ts +16 -0
  762. package/dist/ocpp/model/2.0.1/types/ClearCacheRequest.js +5 -0
  763. package/dist/ocpp/model/2.0.1/types/ClearCacheRequest.js.map +1 -0
  764. package/dist/ocpp/model/2.0.1/types/ClearCacheResponse.d.ts +36 -0
  765. package/dist/ocpp/model/2.0.1/types/ClearCacheResponse.js +10 -0
  766. package/dist/ocpp/model/2.0.1/types/ClearCacheResponse.js.map +1 -0
  767. package/dist/ocpp/model/2.0.1/types/ClearChargingProfileRequest.d.ts +48 -0
  768. package/dist/ocpp/model/2.0.1/types/ClearChargingProfileRequest.js +10 -0
  769. package/dist/ocpp/model/2.0.1/types/ClearChargingProfileRequest.js.map +1 -0
  770. package/dist/ocpp/model/2.0.1/types/ClearChargingProfileResponse.d.ts +36 -0
  771. package/dist/ocpp/model/2.0.1/types/ClearChargingProfileResponse.js +10 -0
  772. package/dist/ocpp/model/2.0.1/types/ClearChargingProfileResponse.js.map +1 -0
  773. package/dist/ocpp/model/2.0.1/types/ClearDisplayMessageRequest.d.ts +21 -0
  774. package/dist/ocpp/model/2.0.1/types/ClearDisplayMessageRequest.js +5 -0
  775. package/dist/ocpp/model/2.0.1/types/ClearDisplayMessageRequest.js.map +1 -0
  776. package/dist/ocpp/model/2.0.1/types/ClearDisplayMessageResponse.d.ts +36 -0
  777. package/dist/ocpp/model/2.0.1/types/ClearDisplayMessageResponse.js +10 -0
  778. package/dist/ocpp/model/2.0.1/types/ClearDisplayMessageResponse.js.map +1 -0
  779. package/dist/ocpp/model/2.0.1/types/ClearVariableMonitoringRequest.d.ts +23 -0
  780. package/dist/ocpp/model/2.0.1/types/ClearVariableMonitoringRequest.js +5 -0
  781. package/dist/ocpp/model/2.0.1/types/ClearVariableMonitoringRequest.js.map +1 -0
  782. package/dist/ocpp/model/2.0.1/types/ClearVariableMonitoringResponse.d.ts +49 -0
  783. package/dist/ocpp/model/2.0.1/types/ClearVariableMonitoringResponse.js +10 -0
  784. package/dist/ocpp/model/2.0.1/types/ClearVariableMonitoringResponse.js.map +1 -0
  785. package/dist/ocpp/model/2.0.1/types/ClearedChargingLimitRequest.d.ts +23 -0
  786. package/dist/ocpp/model/2.0.1/types/ClearedChargingLimitRequest.js +10 -0
  787. package/dist/ocpp/model/2.0.1/types/ClearedChargingLimitRequest.js.map +1 -0
  788. package/dist/ocpp/model/2.0.1/types/ClearedChargingLimitResponse.d.ts +16 -0
  789. package/dist/ocpp/model/2.0.1/types/ClearedChargingLimitResponse.js +5 -0
  790. package/dist/ocpp/model/2.0.1/types/ClearedChargingLimitResponse.js.map +1 -0
  791. package/dist/ocpp/model/2.0.1/types/CostUpdatedRequest.d.ts +28 -0
  792. package/dist/ocpp/model/2.0.1/types/CostUpdatedRequest.js +5 -0
  793. package/dist/ocpp/model/2.0.1/types/CostUpdatedRequest.js.map +1 -0
  794. package/dist/ocpp/model/2.0.1/types/CostUpdatedResponse.d.ts +16 -0
  795. package/dist/ocpp/model/2.0.1/types/CostUpdatedResponse.js +5 -0
  796. package/dist/ocpp/model/2.0.1/types/CostUpdatedResponse.js.map +1 -0
  797. package/dist/ocpp/model/2.0.1/types/CustomerInformationRequest.d.ts +95 -0
  798. package/dist/ocpp/model/2.0.1/types/CustomerInformationRequest.js +10 -0
  799. package/dist/ocpp/model/2.0.1/types/CustomerInformationRequest.js.map +1 -0
  800. package/dist/ocpp/model/2.0.1/types/CustomerInformationResponse.d.ts +36 -0
  801. package/dist/ocpp/model/2.0.1/types/CustomerInformationResponse.js +10 -0
  802. package/dist/ocpp/model/2.0.1/types/CustomerInformationResponse.js.map +1 -0
  803. package/dist/ocpp/model/2.0.1/types/DataTransferRequest.d.ts +34 -0
  804. package/dist/ocpp/model/2.0.1/types/DataTransferRequest.js +5 -0
  805. package/dist/ocpp/model/2.0.1/types/DataTransferRequest.js.map +1 -0
  806. package/dist/ocpp/model/2.0.1/types/DataTransferResponse.d.ts +43 -0
  807. package/dist/ocpp/model/2.0.1/types/DataTransferResponse.js +10 -0
  808. package/dist/ocpp/model/2.0.1/types/DataTransferResponse.js.map +1 -0
  809. package/dist/ocpp/model/2.0.1/types/DeleteCertificateRequest.d.ts +38 -0
  810. package/dist/ocpp/model/2.0.1/types/DeleteCertificateRequest.js +10 -0
  811. package/dist/ocpp/model/2.0.1/types/DeleteCertificateRequest.js.map +1 -0
  812. package/dist/ocpp/model/2.0.1/types/DeleteCertificateResponse.d.ts +36 -0
  813. package/dist/ocpp/model/2.0.1/types/DeleteCertificateResponse.js +10 -0
  814. package/dist/ocpp/model/2.0.1/types/DeleteCertificateResponse.js.map +1 -0
  815. package/dist/ocpp/model/2.0.1/types/FirmwareStatusNotificationRequest.d.ts +25 -0
  816. package/dist/ocpp/model/2.0.1/types/FirmwareStatusNotificationRequest.js +10 -0
  817. package/dist/ocpp/model/2.0.1/types/FirmwareStatusNotificationRequest.js.map +1 -0
  818. package/dist/ocpp/model/2.0.1/types/FirmwareStatusNotificationResponse.d.ts +16 -0
  819. package/dist/ocpp/model/2.0.1/types/FirmwareStatusNotificationResponse.js +5 -0
  820. package/dist/ocpp/model/2.0.1/types/FirmwareStatusNotificationResponse.js.map +1 -0
  821. package/dist/ocpp/model/2.0.1/types/Get15118EVCertificateRequest.d.ts +29 -0
  822. package/dist/ocpp/model/2.0.1/types/Get15118EVCertificateRequest.js +10 -0
  823. package/dist/ocpp/model/2.0.1/types/Get15118EVCertificateRequest.js.map +1 -0
  824. package/dist/ocpp/model/2.0.1/types/Get15118EVCertificateResponse.d.ts +41 -0
  825. package/dist/ocpp/model/2.0.1/types/Get15118EVCertificateResponse.js +10 -0
  826. package/dist/ocpp/model/2.0.1/types/Get15118EVCertificateResponse.js.map +1 -0
  827. package/dist/ocpp/model/2.0.1/types/GetBaseReportRequest.d.ts +23 -0
  828. package/dist/ocpp/model/2.0.1/types/GetBaseReportRequest.js +10 -0
  829. package/dist/ocpp/model/2.0.1/types/GetBaseReportRequest.js.map +1 -0
  830. package/dist/ocpp/model/2.0.1/types/GetBaseReportResponse.d.ts +36 -0
  831. package/dist/ocpp/model/2.0.1/types/GetBaseReportResponse.js +10 -0
  832. package/dist/ocpp/model/2.0.1/types/GetBaseReportResponse.js.map +1 -0
  833. package/dist/ocpp/model/2.0.1/types/GetCertificateStatusRequest.d.ts +44 -0
  834. package/dist/ocpp/model/2.0.1/types/GetCertificateStatusRequest.js +10 -0
  835. package/dist/ocpp/model/2.0.1/types/GetCertificateStatusRequest.js.map +1 -0
  836. package/dist/ocpp/model/2.0.1/types/GetCertificateStatusResponse.d.ts +41 -0
  837. package/dist/ocpp/model/2.0.1/types/GetCertificateStatusResponse.js +10 -0
  838. package/dist/ocpp/model/2.0.1/types/GetCertificateStatusResponse.js.map +1 -0
  839. package/dist/ocpp/model/2.0.1/types/GetChargingProfilesRequest.d.ts +66 -0
  840. package/dist/ocpp/model/2.0.1/types/GetChargingProfilesRequest.js +10 -0
  841. package/dist/ocpp/model/2.0.1/types/GetChargingProfilesRequest.js.map +1 -0
  842. package/dist/ocpp/model/2.0.1/types/GetChargingProfilesResponse.d.ts +36 -0
  843. package/dist/ocpp/model/2.0.1/types/GetChargingProfilesResponse.js +10 -0
  844. package/dist/ocpp/model/2.0.1/types/GetChargingProfilesResponse.js.map +1 -0
  845. package/dist/ocpp/model/2.0.1/types/GetCompositeScheduleRequest.d.ts +29 -0
  846. package/dist/ocpp/model/2.0.1/types/GetCompositeScheduleRequest.js +10 -0
  847. package/dist/ocpp/model/2.0.1/types/GetCompositeScheduleRequest.js.map +1 -0
  848. package/dist/ocpp/model/2.0.1/types/GetCompositeScheduleResponse.d.ts +106 -0
  849. package/dist/ocpp/model/2.0.1/types/GetCompositeScheduleResponse.js +10 -0
  850. package/dist/ocpp/model/2.0.1/types/GetCompositeScheduleResponse.js.map +1 -0
  851. package/dist/ocpp/model/2.0.1/types/GetDisplayMessagesRequest.d.ts +32 -0
  852. package/dist/ocpp/model/2.0.1/types/GetDisplayMessagesRequest.js +10 -0
  853. package/dist/ocpp/model/2.0.1/types/GetDisplayMessagesRequest.js.map +1 -0
  854. package/dist/ocpp/model/2.0.1/types/GetDisplayMessagesResponse.d.ts +36 -0
  855. package/dist/ocpp/model/2.0.1/types/GetDisplayMessagesResponse.js +10 -0
  856. package/dist/ocpp/model/2.0.1/types/GetDisplayMessagesResponse.js.map +1 -0
  857. package/dist/ocpp/model/2.0.1/types/GetInstalledCertificateIdsRequest.d.ts +24 -0
  858. package/dist/ocpp/model/2.0.1/types/GetInstalledCertificateIdsRequest.js +10 -0
  859. package/dist/ocpp/model/2.0.1/types/GetInstalledCertificateIdsRequest.js.map +1 -0
  860. package/dist/ocpp/model/2.0.1/types/GetInstalledCertificateIdsResponse.d.ts +75 -0
  861. package/dist/ocpp/model/2.0.1/types/GetInstalledCertificateIdsResponse.js +10 -0
  862. package/dist/ocpp/model/2.0.1/types/GetInstalledCertificateIdsResponse.js.map +1 -0
  863. package/dist/ocpp/model/2.0.1/types/GetLocalListVersionRequest.d.ts +16 -0
  864. package/dist/ocpp/model/2.0.1/types/GetLocalListVersionRequest.js +5 -0
  865. package/dist/ocpp/model/2.0.1/types/GetLocalListVersionRequest.js.map +1 -0
  866. package/dist/ocpp/model/2.0.1/types/GetLocalListVersionResponse.d.ts +21 -0
  867. package/dist/ocpp/model/2.0.1/types/GetLocalListVersionResponse.js +5 -0
  868. package/dist/ocpp/model/2.0.1/types/GetLocalListVersionResponse.js.map +1 -0
  869. package/dist/ocpp/model/2.0.1/types/GetLogRequest.d.ts +64 -0
  870. package/dist/ocpp/model/2.0.1/types/GetLogRequest.js +10 -0
  871. package/dist/ocpp/model/2.0.1/types/GetLogRequest.js.map +1 -0
  872. package/dist/ocpp/model/2.0.1/types/GetLogResponse.d.ts +41 -0
  873. package/dist/ocpp/model/2.0.1/types/GetLogResponse.js +10 -0
  874. package/dist/ocpp/model/2.0.1/types/GetLogResponse.js.map +1 -0
  875. package/dist/ocpp/model/2.0.1/types/GetMonitoringReportRequest.d.ts +99 -0
  876. package/dist/ocpp/model/2.0.1/types/GetMonitoringReportRequest.js +10 -0
  877. package/dist/ocpp/model/2.0.1/types/GetMonitoringReportRequest.js.map +1 -0
  878. package/dist/ocpp/model/2.0.1/types/GetMonitoringReportResponse.d.ts +36 -0
  879. package/dist/ocpp/model/2.0.1/types/GetMonitoringReportResponse.js +10 -0
  880. package/dist/ocpp/model/2.0.1/types/GetMonitoringReportResponse.js.map +1 -0
  881. package/dist/ocpp/model/2.0.1/types/GetReportRequest.d.ts +104 -0
  882. package/dist/ocpp/model/2.0.1/types/GetReportRequest.js +10 -0
  883. package/dist/ocpp/model/2.0.1/types/GetReportRequest.js.map +1 -0
  884. package/dist/ocpp/model/2.0.1/types/GetReportResponse.d.ts +36 -0
  885. package/dist/ocpp/model/2.0.1/types/GetReportResponse.js +10 -0
  886. package/dist/ocpp/model/2.0.1/types/GetReportResponse.js.map +1 -0
  887. package/dist/ocpp/model/2.0.1/types/GetTransactionStatusRequest.d.ts +21 -0
  888. package/dist/ocpp/model/2.0.1/types/GetTransactionStatusRequest.js +5 -0
  889. package/dist/ocpp/model/2.0.1/types/GetTransactionStatusRequest.js.map +1 -0
  890. package/dist/ocpp/model/2.0.1/types/GetTransactionStatusResponse.d.ts +26 -0
  891. package/dist/ocpp/model/2.0.1/types/GetTransactionStatusResponse.js +5 -0
  892. package/dist/ocpp/model/2.0.1/types/GetTransactionStatusResponse.js.map +1 -0
  893. package/dist/ocpp/model/2.0.1/types/GetVariablesRequest.d.ts +87 -0
  894. package/dist/ocpp/model/2.0.1/types/GetVariablesRequest.js +10 -0
  895. package/dist/ocpp/model/2.0.1/types/GetVariablesRequest.js.map +1 -0
  896. package/dist/ocpp/model/2.0.1/types/GetVariablesResponse.d.ts +114 -0
  897. package/dist/ocpp/model/2.0.1/types/GetVariablesResponse.js +10 -0
  898. package/dist/ocpp/model/2.0.1/types/GetVariablesResponse.js.map +1 -0
  899. package/dist/ocpp/model/2.0.1/types/HeartbeatRequest.d.ts +16 -0
  900. package/dist/ocpp/model/2.0.1/types/HeartbeatRequest.js +5 -0
  901. package/dist/ocpp/model/2.0.1/types/HeartbeatRequest.js.map +1 -0
  902. package/dist/ocpp/model/2.0.1/types/HeartbeatResponse.d.ts +21 -0
  903. package/dist/ocpp/model/2.0.1/types/HeartbeatResponse.js +5 -0
  904. package/dist/ocpp/model/2.0.1/types/HeartbeatResponse.js.map +1 -0
  905. package/dist/ocpp/model/2.0.1/types/InstallCertificateRequest.d.ts +23 -0
  906. package/dist/ocpp/model/2.0.1/types/InstallCertificateRequest.js +10 -0
  907. package/dist/ocpp/model/2.0.1/types/InstallCertificateRequest.js.map +1 -0
  908. package/dist/ocpp/model/2.0.1/types/InstallCertificateResponse.d.ts +36 -0
  909. package/dist/ocpp/model/2.0.1/types/InstallCertificateResponse.js +10 -0
  910. package/dist/ocpp/model/2.0.1/types/InstallCertificateResponse.js.map +1 -0
  911. package/dist/ocpp/model/2.0.1/types/LogStatusNotificationRequest.d.ts +24 -0
  912. package/dist/ocpp/model/2.0.1/types/LogStatusNotificationRequest.js +10 -0
  913. package/dist/ocpp/model/2.0.1/types/LogStatusNotificationRequest.js.map +1 -0
  914. package/dist/ocpp/model/2.0.1/types/LogStatusNotificationResponse.d.ts +16 -0
  915. package/dist/ocpp/model/2.0.1/types/LogStatusNotificationResponse.js +5 -0
  916. package/dist/ocpp/model/2.0.1/types/LogStatusNotificationResponse.js.map +1 -0
  917. package/dist/ocpp/model/2.0.1/types/MeterValuesRequest.d.ts +124 -0
  918. package/dist/ocpp/model/2.0.1/types/MeterValuesRequest.js +15 -0
  919. package/dist/ocpp/model/2.0.1/types/MeterValuesRequest.js.map +1 -0
  920. package/dist/ocpp/model/2.0.1/types/MeterValuesResponse.d.ts +16 -0
  921. package/dist/ocpp/model/2.0.1/types/MeterValuesResponse.js +5 -0
  922. package/dist/ocpp/model/2.0.1/types/MeterValuesResponse.js.map +1 -0
  923. package/dist/ocpp/model/2.0.1/types/NotifyChargingLimitRequest.d.ts +242 -0
  924. package/dist/ocpp/model/2.0.1/types/NotifyChargingLimitRequest.js +10 -0
  925. package/dist/ocpp/model/2.0.1/types/NotifyChargingLimitRequest.js.map +1 -0
  926. package/dist/ocpp/model/2.0.1/types/NotifyChargingLimitResponse.d.ts +16 -0
  927. package/dist/ocpp/model/2.0.1/types/NotifyChargingLimitResponse.js +5 -0
  928. package/dist/ocpp/model/2.0.1/types/NotifyChargingLimitResponse.js.map +1 -0
  929. package/dist/ocpp/model/2.0.1/types/NotifyCustomerInformationRequest.d.ts +42 -0
  930. package/dist/ocpp/model/2.0.1/types/NotifyCustomerInformationRequest.js +5 -0
  931. package/dist/ocpp/model/2.0.1/types/NotifyCustomerInformationRequest.js.map +1 -0
  932. package/dist/ocpp/model/2.0.1/types/NotifyCustomerInformationResponse.d.ts +16 -0
  933. package/dist/ocpp/model/2.0.1/types/NotifyCustomerInformationResponse.js +5 -0
  934. package/dist/ocpp/model/2.0.1/types/NotifyCustomerInformationResponse.js.map +1 -0
  935. package/dist/ocpp/model/2.0.1/types/NotifyDisplayMessagesRequest.d.ts +137 -0
  936. package/dist/ocpp/model/2.0.1/types/NotifyDisplayMessagesRequest.js +10 -0
  937. package/dist/ocpp/model/2.0.1/types/NotifyDisplayMessagesRequest.js.map +1 -0
  938. package/dist/ocpp/model/2.0.1/types/NotifyDisplayMessagesResponse.d.ts +16 -0
  939. package/dist/ocpp/model/2.0.1/types/NotifyDisplayMessagesResponse.js +5 -0
  940. package/dist/ocpp/model/2.0.1/types/NotifyDisplayMessagesResponse.js.map +1 -0
  941. package/dist/ocpp/model/2.0.1/types/NotifyEVChargingNeedsRequest.d.ts +151 -0
  942. package/dist/ocpp/model/2.0.1/types/NotifyEVChargingNeedsRequest.js +10 -0
  943. package/dist/ocpp/model/2.0.1/types/NotifyEVChargingNeedsRequest.js.map +1 -0
  944. package/dist/ocpp/model/2.0.1/types/NotifyEVChargingNeedsResponse.d.ts +36 -0
  945. package/dist/ocpp/model/2.0.1/types/NotifyEVChargingNeedsResponse.js +10 -0
  946. package/dist/ocpp/model/2.0.1/types/NotifyEVChargingNeedsResponse.js.map +1 -0
  947. package/dist/ocpp/model/2.0.1/types/NotifyEVChargingScheduleRequest.d.ts +227 -0
  948. package/dist/ocpp/model/2.0.1/types/NotifyEVChargingScheduleRequest.js +10 -0
  949. package/dist/ocpp/model/2.0.1/types/NotifyEVChargingScheduleRequest.js.map +1 -0
  950. package/dist/ocpp/model/2.0.1/types/NotifyEVChargingScheduleResponse.d.ts +36 -0
  951. package/dist/ocpp/model/2.0.1/types/NotifyEVChargingScheduleResponse.js +10 -0
  952. package/dist/ocpp/model/2.0.1/types/NotifyEVChargingScheduleResponse.js.map +1 -0
  953. package/dist/ocpp/model/2.0.1/types/NotifyEventRequest.d.ts +154 -0
  954. package/dist/ocpp/model/2.0.1/types/NotifyEventRequest.js +10 -0
  955. package/dist/ocpp/model/2.0.1/types/NotifyEventRequest.js.map +1 -0
  956. package/dist/ocpp/model/2.0.1/types/NotifyEventResponse.d.ts +16 -0
  957. package/dist/ocpp/model/2.0.1/types/NotifyEventResponse.js +5 -0
  958. package/dist/ocpp/model/2.0.1/types/NotifyEventResponse.js.map +1 -0
  959. package/dist/ocpp/model/2.0.1/types/NotifyMonitoringReportRequest.d.ts +162 -0
  960. package/dist/ocpp/model/2.0.1/types/NotifyMonitoringReportRequest.js +10 -0
  961. package/dist/ocpp/model/2.0.1/types/NotifyMonitoringReportRequest.js.map +1 -0
  962. package/dist/ocpp/model/2.0.1/types/NotifyMonitoringReportResponse.d.ts +16 -0
  963. package/dist/ocpp/model/2.0.1/types/NotifyMonitoringReportResponse.js +5 -0
  964. package/dist/ocpp/model/2.0.1/types/NotifyMonitoringReportResponse.js.map +1 -0
  965. package/dist/ocpp/model/2.0.1/types/NotifyReportRequest.d.ts +183 -0
  966. package/dist/ocpp/model/2.0.1/types/NotifyReportRequest.js +10 -0
  967. package/dist/ocpp/model/2.0.1/types/NotifyReportRequest.js.map +1 -0
  968. package/dist/ocpp/model/2.0.1/types/NotifyReportResponse.d.ts +16 -0
  969. package/dist/ocpp/model/2.0.1/types/NotifyReportResponse.js +5 -0
  970. package/dist/ocpp/model/2.0.1/types/NotifyReportResponse.js.map +1 -0
  971. package/dist/ocpp/model/2.0.1/types/PublishFirmwareRequest.d.ts +49 -0
  972. package/dist/ocpp/model/2.0.1/types/PublishFirmwareRequest.js +5 -0
  973. package/dist/ocpp/model/2.0.1/types/PublishFirmwareRequest.js.map +1 -0
  974. package/dist/ocpp/model/2.0.1/types/PublishFirmwareResponse.d.ts +36 -0
  975. package/dist/ocpp/model/2.0.1/types/PublishFirmwareResponse.js +10 -0
  976. package/dist/ocpp/model/2.0.1/types/PublishFirmwareResponse.js.map +1 -0
  977. package/dist/ocpp/model/2.0.1/types/PublishFirmwareStatusNotificationRequest.d.ts +33 -0
  978. package/dist/ocpp/model/2.0.1/types/PublishFirmwareStatusNotificationRequest.js +10 -0
  979. package/dist/ocpp/model/2.0.1/types/PublishFirmwareStatusNotificationRequest.js.map +1 -0
  980. package/dist/ocpp/model/2.0.1/types/PublishFirmwareStatusNotificationResponse.d.ts +16 -0
  981. package/dist/ocpp/model/2.0.1/types/PublishFirmwareStatusNotificationResponse.js +5 -0
  982. package/dist/ocpp/model/2.0.1/types/PublishFirmwareStatusNotificationResponse.js.map +1 -0
  983. package/dist/ocpp/model/2.0.1/types/ReportChargingProfilesRequest.d.ts +286 -0
  984. package/dist/ocpp/model/2.0.1/types/ReportChargingProfilesRequest.js +10 -0
  985. package/dist/ocpp/model/2.0.1/types/ReportChargingProfilesRequest.js.map +1 -0
  986. package/dist/ocpp/model/2.0.1/types/ReportChargingProfilesResponse.d.ts +16 -0
  987. package/dist/ocpp/model/2.0.1/types/ReportChargingProfilesResponse.js +5 -0
  988. package/dist/ocpp/model/2.0.1/types/ReportChargingProfilesResponse.js.map +1 -0
  989. package/dist/ocpp/model/2.0.1/types/RequestStartTransactionRequest.d.ts +313 -0
  990. package/dist/ocpp/model/2.0.1/types/RequestStartTransactionRequest.js +10 -0
  991. package/dist/ocpp/model/2.0.1/types/RequestStartTransactionRequest.js.map +1 -0
  992. package/dist/ocpp/model/2.0.1/types/RequestStartTransactionResponse.d.ts +41 -0
  993. package/dist/ocpp/model/2.0.1/types/RequestStartTransactionResponse.js +10 -0
  994. package/dist/ocpp/model/2.0.1/types/RequestStartTransactionResponse.js.map +1 -0
  995. package/dist/ocpp/model/2.0.1/types/RequestStopTransactionRequest.d.ts +21 -0
  996. package/dist/ocpp/model/2.0.1/types/RequestStopTransactionRequest.js +5 -0
  997. package/dist/ocpp/model/2.0.1/types/RequestStopTransactionRequest.js.map +1 -0
  998. package/dist/ocpp/model/2.0.1/types/RequestStopTransactionResponse.d.ts +36 -0
  999. package/dist/ocpp/model/2.0.1/types/RequestStopTransactionResponse.js +10 -0
  1000. package/dist/ocpp/model/2.0.1/types/RequestStopTransactionResponse.js.map +1 -0
  1001. package/dist/ocpp/model/2.0.1/types/ReservationStatusUpdateRequest.d.ts +23 -0
  1002. package/dist/ocpp/model/2.0.1/types/ReservationStatusUpdateRequest.js +10 -0
  1003. package/dist/ocpp/model/2.0.1/types/ReservationStatusUpdateRequest.js.map +1 -0
  1004. package/dist/ocpp/model/2.0.1/types/ReservationStatusUpdateResponse.d.ts +16 -0
  1005. package/dist/ocpp/model/2.0.1/types/ReservationStatusUpdateResponse.js +5 -0
  1006. package/dist/ocpp/model/2.0.1/types/ReservationStatusUpdateResponse.js.map +1 -0
  1007. package/dist/ocpp/model/2.0.1/types/ReserveNowRequest.d.ts +69 -0
  1008. package/dist/ocpp/model/2.0.1/types/ReserveNowRequest.js +10 -0
  1009. package/dist/ocpp/model/2.0.1/types/ReserveNowRequest.js.map +1 -0
  1010. package/dist/ocpp/model/2.0.1/types/ReserveNowResponse.d.ts +36 -0
  1011. package/dist/ocpp/model/2.0.1/types/ReserveNowResponse.js +10 -0
  1012. package/dist/ocpp/model/2.0.1/types/ReserveNowResponse.js.map +1 -0
  1013. package/dist/ocpp/model/2.0.1/types/ResetRequest.d.ts +23 -0
  1014. package/dist/ocpp/model/2.0.1/types/ResetRequest.js +10 -0
  1015. package/dist/ocpp/model/2.0.1/types/ResetRequest.js.map +1 -0
  1016. package/dist/ocpp/model/2.0.1/types/ResetResponse.d.ts +36 -0
  1017. package/dist/ocpp/model/2.0.1/types/ResetResponse.js +10 -0
  1018. package/dist/ocpp/model/2.0.1/types/ResetResponse.js.map +1 -0
  1019. package/dist/ocpp/model/2.0.1/types/SecurityEventNotificationRequest.d.ts +31 -0
  1020. package/dist/ocpp/model/2.0.1/types/SecurityEventNotificationRequest.js +5 -0
  1021. package/dist/ocpp/model/2.0.1/types/SecurityEventNotificationRequest.js.map +1 -0
  1022. package/dist/ocpp/model/2.0.1/types/SecurityEventNotificationResponse.d.ts +16 -0
  1023. package/dist/ocpp/model/2.0.1/types/SecurityEventNotificationResponse.js +5 -0
  1024. package/dist/ocpp/model/2.0.1/types/SecurityEventNotificationResponse.js.map +1 -0
  1025. package/dist/ocpp/model/2.0.1/types/SendLocalListRequest.d.ts +144 -0
  1026. package/dist/ocpp/model/2.0.1/types/SendLocalListRequest.js +10 -0
  1027. package/dist/ocpp/model/2.0.1/types/SendLocalListRequest.js.map +1 -0
  1028. package/dist/ocpp/model/2.0.1/types/SendLocalListResponse.d.ts +36 -0
  1029. package/dist/ocpp/model/2.0.1/types/SendLocalListResponse.js +10 -0
  1030. package/dist/ocpp/model/2.0.1/types/SendLocalListResponse.js.map +1 -0
  1031. package/dist/ocpp/model/2.0.1/types/SetChargingProfileRequest.d.ts +272 -0
  1032. package/dist/ocpp/model/2.0.1/types/SetChargingProfileRequest.js +10 -0
  1033. package/dist/ocpp/model/2.0.1/types/SetChargingProfileRequest.js.map +1 -0
  1034. package/dist/ocpp/model/2.0.1/types/SetChargingProfileResponse.d.ts +36 -0
  1035. package/dist/ocpp/model/2.0.1/types/SetChargingProfileResponse.js +10 -0
  1036. package/dist/ocpp/model/2.0.1/types/SetChargingProfileResponse.js.map +1 -0
  1037. package/dist/ocpp/model/2.0.1/types/SetDisplayMessageRequest.d.ts +124 -0
  1038. package/dist/ocpp/model/2.0.1/types/SetDisplayMessageRequest.js +10 -0
  1039. package/dist/ocpp/model/2.0.1/types/SetDisplayMessageRequest.js.map +1 -0
  1040. package/dist/ocpp/model/2.0.1/types/SetDisplayMessageResponse.d.ts +36 -0
  1041. package/dist/ocpp/model/2.0.1/types/SetDisplayMessageResponse.js +10 -0
  1042. package/dist/ocpp/model/2.0.1/types/SetDisplayMessageResponse.js.map +1 -0
  1043. package/dist/ocpp/model/2.0.1/types/SetMonitoringBaseRequest.d.ts +18 -0
  1044. package/dist/ocpp/model/2.0.1/types/SetMonitoringBaseRequest.js +10 -0
  1045. package/dist/ocpp/model/2.0.1/types/SetMonitoringBaseRequest.js.map +1 -0
  1046. package/dist/ocpp/model/2.0.1/types/SetMonitoringBaseResponse.d.ts +36 -0
  1047. package/dist/ocpp/model/2.0.1/types/SetMonitoringBaseResponse.js +10 -0
  1048. package/dist/ocpp/model/2.0.1/types/SetMonitoringBaseResponse.js.map +1 -0
  1049. package/dist/ocpp/model/2.0.1/types/SetMonitoringLevelRequest.d.ts +46 -0
  1050. package/dist/ocpp/model/2.0.1/types/SetMonitoringLevelRequest.js +5 -0
  1051. package/dist/ocpp/model/2.0.1/types/SetMonitoringLevelRequest.js.map +1 -0
  1052. package/dist/ocpp/model/2.0.1/types/SetMonitoringLevelResponse.d.ts +36 -0
  1053. package/dist/ocpp/model/2.0.1/types/SetMonitoringLevelResponse.js +10 -0
  1054. package/dist/ocpp/model/2.0.1/types/SetMonitoringLevelResponse.js.map +1 -0
  1055. package/dist/ocpp/model/2.0.1/types/SetNetworkProfileRequest.d.ts +156 -0
  1056. package/dist/ocpp/model/2.0.1/types/SetNetworkProfileRequest.js +10 -0
  1057. package/dist/ocpp/model/2.0.1/types/SetNetworkProfileRequest.js.map +1 -0
  1058. package/dist/ocpp/model/2.0.1/types/SetNetworkProfileResponse.d.ts +36 -0
  1059. package/dist/ocpp/model/2.0.1/types/SetNetworkProfileResponse.js +10 -0
  1060. package/dist/ocpp/model/2.0.1/types/SetNetworkProfileResponse.js.map +1 -0
  1061. package/dist/ocpp/model/2.0.1/types/SetVariableMonitoringRequest.d.ts +134 -0
  1062. package/dist/ocpp/model/2.0.1/types/SetVariableMonitoringRequest.js +10 -0
  1063. package/dist/ocpp/model/2.0.1/types/SetVariableMonitoringRequest.js.map +1 -0
  1064. package/dist/ocpp/model/2.0.1/types/SetVariableMonitoringResponse.d.ts +139 -0
  1065. package/dist/ocpp/model/2.0.1/types/SetVariableMonitoringResponse.js +10 -0
  1066. package/dist/ocpp/model/2.0.1/types/SetVariableMonitoringResponse.js.map +1 -0
  1067. package/dist/ocpp/model/2.0.1/types/SetVariablesRequest.d.ts +90 -0
  1068. package/dist/ocpp/model/2.0.1/types/SetVariablesRequest.js +10 -0
  1069. package/dist/ocpp/model/2.0.1/types/SetVariablesRequest.js.map +1 -0
  1070. package/dist/ocpp/model/2.0.1/types/SetVariablesResponse.d.ts +102 -0
  1071. package/dist/ocpp/model/2.0.1/types/SetVariablesResponse.js +10 -0
  1072. package/dist/ocpp/model/2.0.1/types/SetVariablesResponse.js.map +1 -0
  1073. package/dist/ocpp/model/2.0.1/types/SignCertificateRequest.d.ts +23 -0
  1074. package/dist/ocpp/model/2.0.1/types/SignCertificateRequest.js +10 -0
  1075. package/dist/ocpp/model/2.0.1/types/SignCertificateRequest.js.map +1 -0
  1076. package/dist/ocpp/model/2.0.1/types/SignCertificateResponse.d.ts +36 -0
  1077. package/dist/ocpp/model/2.0.1/types/SignCertificateResponse.js +10 -0
  1078. package/dist/ocpp/model/2.0.1/types/SignCertificateResponse.js.map +1 -0
  1079. package/dist/ocpp/model/2.0.1/types/StatusNotificationRequest.d.ts +33 -0
  1080. package/dist/ocpp/model/2.0.1/types/StatusNotificationRequest.js +10 -0
  1081. package/dist/ocpp/model/2.0.1/types/StatusNotificationRequest.js.map +1 -0
  1082. package/dist/ocpp/model/2.0.1/types/StatusNotificationResponse.d.ts +16 -0
  1083. package/dist/ocpp/model/2.0.1/types/StatusNotificationResponse.js +5 -0
  1084. package/dist/ocpp/model/2.0.1/types/StatusNotificationResponse.js.map +1 -0
  1085. package/dist/ocpp/model/2.0.1/types/TransactionEventRequest.d.ts +229 -0
  1086. package/dist/ocpp/model/2.0.1/types/TransactionEventRequest.js +10 -0
  1087. package/dist/ocpp/model/2.0.1/types/TransactionEventRequest.js.map +1 -0
  1088. package/dist/ocpp/model/2.0.1/types/TransactionEventResponse.d.ts +138 -0
  1089. package/dist/ocpp/model/2.0.1/types/TransactionEventResponse.js +10 -0
  1090. package/dist/ocpp/model/2.0.1/types/TransactionEventResponse.js.map +1 -0
  1091. package/dist/ocpp/model/2.0.1/types/TriggerMessageRequest.d.ts +40 -0
  1092. package/dist/ocpp/model/2.0.1/types/TriggerMessageRequest.js +10 -0
  1093. package/dist/ocpp/model/2.0.1/types/TriggerMessageRequest.js.map +1 -0
  1094. package/dist/ocpp/model/2.0.1/types/TriggerMessageResponse.d.ts +36 -0
  1095. package/dist/ocpp/model/2.0.1/types/TriggerMessageResponse.js +10 -0
  1096. package/dist/ocpp/model/2.0.1/types/TriggerMessageResponse.js.map +1 -0
  1097. package/dist/ocpp/model/2.0.1/types/UnlockConnectorRequest.d.ts +26 -0
  1098. package/dist/ocpp/model/2.0.1/types/UnlockConnectorRequest.js +5 -0
  1099. package/dist/ocpp/model/2.0.1/types/UnlockConnectorRequest.js.map +1 -0
  1100. package/dist/ocpp/model/2.0.1/types/UnlockConnectorResponse.d.ts +36 -0
  1101. package/dist/ocpp/model/2.0.1/types/UnlockConnectorResponse.js +10 -0
  1102. package/dist/ocpp/model/2.0.1/types/UnlockConnectorResponse.js.map +1 -0
  1103. package/dist/ocpp/model/2.0.1/types/UnpublishFirmwareRequest.d.ts +21 -0
  1104. package/dist/ocpp/model/2.0.1/types/UnpublishFirmwareRequest.js +5 -0
  1105. package/dist/ocpp/model/2.0.1/types/UnpublishFirmwareRequest.js.map +1 -0
  1106. package/dist/ocpp/model/2.0.1/types/UnpublishFirmwareResponse.d.ts +18 -0
  1107. package/dist/ocpp/model/2.0.1/types/UnpublishFirmwareResponse.js +10 -0
  1108. package/dist/ocpp/model/2.0.1/types/UnpublishFirmwareResponse.js.map +1 -0
  1109. package/dist/ocpp/model/2.0.1/types/UpdateFirmwareRequest.d.ts +75 -0
  1110. package/dist/ocpp/model/2.0.1/types/UpdateFirmwareRequest.js +5 -0
  1111. package/dist/ocpp/model/2.0.1/types/UpdateFirmwareRequest.js.map +1 -0
  1112. package/dist/ocpp/model/2.0.1/types/UpdateFirmwareResponse.d.ts +36 -0
  1113. package/dist/ocpp/model/2.0.1/types/UpdateFirmwareResponse.js +10 -0
  1114. package/dist/ocpp/model/2.0.1/types/UpdateFirmwareResponse.js.map +1 -0
  1115. package/dist/ocpp/model/UpdateChargingStationPasswordRequest.d.ts +5 -0
  1116. package/dist/ocpp/model/UpdateChargingStationPasswordRequest.js +5 -0
  1117. package/dist/ocpp/model/UpdateChargingStationPasswordRequest.js.map +1 -0
  1118. package/dist/ocpp/model/index.d.ts +2 -0
  1119. package/dist/ocpp/model/index.js +6 -0
  1120. package/dist/ocpp/model/index.js.map +1 -0
  1121. package/dist/ocpp/persistence/index.d.ts +8 -0
  1122. package/dist/ocpp/persistence/index.js +12 -0
  1123. package/dist/ocpp/persistence/index.js.map +1 -0
  1124. package/dist/ocpp/persistence/namespace.d.ts +68 -0
  1125. package/dist/ocpp/persistence/namespace.js +75 -0
  1126. package/dist/ocpp/persistence/namespace.js.map +1 -0
  1127. package/dist/ocpp/persistence/querySchema.d.ts +15 -0
  1128. package/dist/ocpp/persistence/querySchema.js +51 -0
  1129. package/dist/ocpp/persistence/querySchema.js.map +1 -0
  1130. package/dist/ocpp/persistence/schemas/AuthorizationDataSchema.json +179 -0
  1131. package/dist/ocpp/persistence/schemas/BootConfigSchema.json +61 -0
  1132. package/dist/ocpp/persistence/schemas/ChargingStationTypeSchema.json +60 -0
  1133. package/dist/ocpp/persistence/schemas/ReportDataTypeSchema.json +164 -0
  1134. package/dist/ocpp/persistence/schemas/SetVariableResultTypeSchema.json +119 -0
  1135. package/dist/ocpp/persistence/schemas/UpdateChargingStationPasswordRequestSchema.json +21 -0
  1136. package/dist/ocpp/rpc/message.d.ts +219 -0
  1137. package/dist/ocpp/rpc/message.js +256 -0
  1138. package/dist/ocpp/rpc/message.js.map +1 -0
  1139. package/dist/util/MeterValueUtils.d.ts +63 -0
  1140. package/dist/util/MeterValueUtils.js +204 -0
  1141. package/dist/util/MeterValueUtils.js.map +1 -0
  1142. package/dist/util/request.d.ts +7 -0
  1143. package/dist/util/request.js +55 -0
  1144. package/dist/util/request.js.map +1 -0
  1145. package/package.json +57 -0
@@ -0,0 +1,2997 @@
1
+ import { z } from 'zod';
2
+ export declare const SalesTariffSchema: z.ZodObject<{
3
+ tenantId: z.ZodOptional<z.ZodNumber>;
4
+ tenant: z.ZodOptional<z.ZodObject<{
5
+ id: z.ZodOptional<z.ZodNumber>;
6
+ name: z.ZodString;
7
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8
+ countryCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
+ partyId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
+ serverProfileOCPI: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11
+ credentialsRole: z.ZodObject<{
12
+ role: z.ZodEnum<{
13
+ CPO: "CPO";
14
+ EMSP: "EMSP";
15
+ HUB: "HUB";
16
+ NAP: "NAP";
17
+ NSP: "NSP";
18
+ SCSP: "SCSP";
19
+ }>;
20
+ businessDetails: z.ZodObject<{
21
+ name: z.ZodString;
22
+ website: z.ZodOptional<z.ZodString>;
23
+ logo: z.ZodOptional<z.ZodObject<{
24
+ url: z.ZodString;
25
+ type: z.ZodString;
26
+ category: z.ZodString;
27
+ width: z.ZodOptional<z.ZodNumber>;
28
+ height: z.ZodOptional<z.ZodNumber>;
29
+ }, z.core.$strip>>;
30
+ }, z.core.$strip>;
31
+ }, z.core.$strip>;
32
+ versionDetails: z.ZodArray<z.ZodObject<{
33
+ version: z.ZodEnum<{
34
+ "2.2.1": "2.2.1";
35
+ }>;
36
+ versionDetailsUrl: z.ZodOptional<z.ZodString>;
37
+ }, z.core.$strip>>;
38
+ versionEndpoints: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
39
+ identifier: z.ZodString;
40
+ url: z.ZodString;
41
+ }, z.core.$strip>>>;
42
+ }, z.core.$strip>>>;
43
+ isUserTenant: z.ZodDefault<z.ZodBoolean>;
44
+ updatedAt: z.ZodOptional<z.ZodDate>;
45
+ createdAt: z.ZodOptional<z.ZodDate>;
46
+ }, z.core.$strip>>;
47
+ updatedAt: z.ZodOptional<z.ZodDate>;
48
+ createdAt: z.ZodOptional<z.ZodDate>;
49
+ databaseId: z.ZodNumber;
50
+ id: z.ZodNumber;
51
+ numEPriceLevels: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
52
+ salesTariffDescription: z.ZodOptional<z.ZodNullable<z.ZodString>>;
53
+ salesTariffEntry: z.ZodTuple<[z.ZodObject<{
54
+ relativeTimeInterval: z.ZodObject<{
55
+ start: z.ZodNumber;
56
+ duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
57
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
58
+ }, z.core.$strip>;
59
+ ePriceLevel: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
60
+ consumptionCost: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
61
+ startValue: z.ZodNumber;
62
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
63
+ costKind: z.ZodEnum<{
64
+ CarbonDioxideEmission: "CarbonDioxideEmission";
65
+ RelativePricePercentage: "RelativePricePercentage";
66
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
67
+ }>;
68
+ amount: z.ZodNumber;
69
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
70
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
71
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
72
+ costKind: z.ZodEnum<{
73
+ CarbonDioxideEmission: "CarbonDioxideEmission";
74
+ RelativePricePercentage: "RelativePricePercentage";
75
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
76
+ }>;
77
+ amount: z.ZodNumber;
78
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
79
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
80
+ }, z.core.$strip>, z.ZodObject<{
81
+ costKind: z.ZodEnum<{
82
+ CarbonDioxideEmission: "CarbonDioxideEmission";
83
+ RelativePricePercentage: "RelativePricePercentage";
84
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
85
+ }>;
86
+ amount: z.ZodNumber;
87
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
88
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
89
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
90
+ costKind: z.ZodEnum<{
91
+ CarbonDioxideEmission: "CarbonDioxideEmission";
92
+ RelativePricePercentage: "RelativePricePercentage";
93
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
94
+ }>;
95
+ amount: z.ZodNumber;
96
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
97
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
98
+ }, z.core.$strip>, z.ZodObject<{
99
+ costKind: z.ZodEnum<{
100
+ CarbonDioxideEmission: "CarbonDioxideEmission";
101
+ RelativePricePercentage: "RelativePricePercentage";
102
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
103
+ }>;
104
+ amount: z.ZodNumber;
105
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
106
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
107
+ }, z.core.$strip>, z.ZodObject<{
108
+ costKind: z.ZodEnum<{
109
+ CarbonDioxideEmission: "CarbonDioxideEmission";
110
+ RelativePricePercentage: "RelativePricePercentage";
111
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
112
+ }>;
113
+ amount: z.ZodNumber;
114
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
115
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
116
+ }, z.core.$strip>], null>]>;
117
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
118
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
119
+ startValue: z.ZodNumber;
120
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
121
+ costKind: z.ZodEnum<{
122
+ CarbonDioxideEmission: "CarbonDioxideEmission";
123
+ RelativePricePercentage: "RelativePricePercentage";
124
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
125
+ }>;
126
+ amount: z.ZodNumber;
127
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
128
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
129
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
130
+ costKind: z.ZodEnum<{
131
+ CarbonDioxideEmission: "CarbonDioxideEmission";
132
+ RelativePricePercentage: "RelativePricePercentage";
133
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
134
+ }>;
135
+ amount: z.ZodNumber;
136
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
137
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
138
+ }, z.core.$strip>, z.ZodObject<{
139
+ costKind: z.ZodEnum<{
140
+ CarbonDioxideEmission: "CarbonDioxideEmission";
141
+ RelativePricePercentage: "RelativePricePercentage";
142
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
143
+ }>;
144
+ amount: z.ZodNumber;
145
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
146
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
147
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
148
+ costKind: z.ZodEnum<{
149
+ CarbonDioxideEmission: "CarbonDioxideEmission";
150
+ RelativePricePercentage: "RelativePricePercentage";
151
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
152
+ }>;
153
+ amount: z.ZodNumber;
154
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
155
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
156
+ }, z.core.$strip>, z.ZodObject<{
157
+ costKind: z.ZodEnum<{
158
+ CarbonDioxideEmission: "CarbonDioxideEmission";
159
+ RelativePricePercentage: "RelativePricePercentage";
160
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
161
+ }>;
162
+ amount: z.ZodNumber;
163
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
164
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
165
+ }, z.core.$strip>, z.ZodObject<{
166
+ costKind: z.ZodEnum<{
167
+ CarbonDioxideEmission: "CarbonDioxideEmission";
168
+ RelativePricePercentage: "RelativePricePercentage";
169
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
170
+ }>;
171
+ amount: z.ZodNumber;
172
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
173
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
174
+ }, z.core.$strip>], null>]>;
175
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
176
+ }, z.core.$strip>, z.ZodObject<{
177
+ startValue: z.ZodNumber;
178
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
179
+ costKind: z.ZodEnum<{
180
+ CarbonDioxideEmission: "CarbonDioxideEmission";
181
+ RelativePricePercentage: "RelativePricePercentage";
182
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
183
+ }>;
184
+ amount: z.ZodNumber;
185
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
186
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
187
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
188
+ costKind: z.ZodEnum<{
189
+ CarbonDioxideEmission: "CarbonDioxideEmission";
190
+ RelativePricePercentage: "RelativePricePercentage";
191
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
192
+ }>;
193
+ amount: z.ZodNumber;
194
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
195
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
196
+ }, z.core.$strip>, z.ZodObject<{
197
+ costKind: z.ZodEnum<{
198
+ CarbonDioxideEmission: "CarbonDioxideEmission";
199
+ RelativePricePercentage: "RelativePricePercentage";
200
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
201
+ }>;
202
+ amount: z.ZodNumber;
203
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
204
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
205
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
206
+ costKind: z.ZodEnum<{
207
+ CarbonDioxideEmission: "CarbonDioxideEmission";
208
+ RelativePricePercentage: "RelativePricePercentage";
209
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
210
+ }>;
211
+ amount: z.ZodNumber;
212
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
213
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
214
+ }, z.core.$strip>, z.ZodObject<{
215
+ costKind: z.ZodEnum<{
216
+ CarbonDioxideEmission: "CarbonDioxideEmission";
217
+ RelativePricePercentage: "RelativePricePercentage";
218
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
219
+ }>;
220
+ amount: z.ZodNumber;
221
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
222
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
223
+ }, z.core.$strip>, z.ZodObject<{
224
+ costKind: z.ZodEnum<{
225
+ CarbonDioxideEmission: "CarbonDioxideEmission";
226
+ RelativePricePercentage: "RelativePricePercentage";
227
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
228
+ }>;
229
+ amount: z.ZodNumber;
230
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
231
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
232
+ }, z.core.$strip>], null>]>;
233
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
234
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
235
+ startValue: z.ZodNumber;
236
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
237
+ costKind: z.ZodEnum<{
238
+ CarbonDioxideEmission: "CarbonDioxideEmission";
239
+ RelativePricePercentage: "RelativePricePercentage";
240
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
241
+ }>;
242
+ amount: z.ZodNumber;
243
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
244
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
245
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
246
+ costKind: z.ZodEnum<{
247
+ CarbonDioxideEmission: "CarbonDioxideEmission";
248
+ RelativePricePercentage: "RelativePricePercentage";
249
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
250
+ }>;
251
+ amount: z.ZodNumber;
252
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
253
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
254
+ }, z.core.$strip>, z.ZodObject<{
255
+ costKind: z.ZodEnum<{
256
+ CarbonDioxideEmission: "CarbonDioxideEmission";
257
+ RelativePricePercentage: "RelativePricePercentage";
258
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
259
+ }>;
260
+ amount: z.ZodNumber;
261
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
262
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
263
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
264
+ costKind: z.ZodEnum<{
265
+ CarbonDioxideEmission: "CarbonDioxideEmission";
266
+ RelativePricePercentage: "RelativePricePercentage";
267
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
268
+ }>;
269
+ amount: z.ZodNumber;
270
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
271
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
272
+ }, z.core.$strip>, z.ZodObject<{
273
+ costKind: z.ZodEnum<{
274
+ CarbonDioxideEmission: "CarbonDioxideEmission";
275
+ RelativePricePercentage: "RelativePricePercentage";
276
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
277
+ }>;
278
+ amount: z.ZodNumber;
279
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
280
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
281
+ }, z.core.$strip>, z.ZodObject<{
282
+ costKind: z.ZodEnum<{
283
+ CarbonDioxideEmission: "CarbonDioxideEmission";
284
+ RelativePricePercentage: "RelativePricePercentage";
285
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
286
+ }>;
287
+ amount: z.ZodNumber;
288
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
289
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
290
+ }, z.core.$strip>], null>]>;
291
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
292
+ }, z.core.$strip>, z.ZodObject<{
293
+ startValue: z.ZodNumber;
294
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
295
+ costKind: z.ZodEnum<{
296
+ CarbonDioxideEmission: "CarbonDioxideEmission";
297
+ RelativePricePercentage: "RelativePricePercentage";
298
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
299
+ }>;
300
+ amount: z.ZodNumber;
301
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
302
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
303
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
304
+ costKind: z.ZodEnum<{
305
+ CarbonDioxideEmission: "CarbonDioxideEmission";
306
+ RelativePricePercentage: "RelativePricePercentage";
307
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
308
+ }>;
309
+ amount: z.ZodNumber;
310
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
311
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
312
+ }, z.core.$strip>, z.ZodObject<{
313
+ costKind: z.ZodEnum<{
314
+ CarbonDioxideEmission: "CarbonDioxideEmission";
315
+ RelativePricePercentage: "RelativePricePercentage";
316
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
317
+ }>;
318
+ amount: z.ZodNumber;
319
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
320
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
321
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
322
+ costKind: z.ZodEnum<{
323
+ CarbonDioxideEmission: "CarbonDioxideEmission";
324
+ RelativePricePercentage: "RelativePricePercentage";
325
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
326
+ }>;
327
+ amount: z.ZodNumber;
328
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
329
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
330
+ }, z.core.$strip>, z.ZodObject<{
331
+ costKind: z.ZodEnum<{
332
+ CarbonDioxideEmission: "CarbonDioxideEmission";
333
+ RelativePricePercentage: "RelativePricePercentage";
334
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
335
+ }>;
336
+ amount: z.ZodNumber;
337
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
338
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
339
+ }, z.core.$strip>, z.ZodObject<{
340
+ costKind: z.ZodEnum<{
341
+ CarbonDioxideEmission: "CarbonDioxideEmission";
342
+ RelativePricePercentage: "RelativePricePercentage";
343
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
344
+ }>;
345
+ amount: z.ZodNumber;
346
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
347
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
348
+ }, z.core.$strip>], null>]>;
349
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
350
+ }, z.core.$strip>, z.ZodObject<{
351
+ startValue: z.ZodNumber;
352
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
353
+ costKind: z.ZodEnum<{
354
+ CarbonDioxideEmission: "CarbonDioxideEmission";
355
+ RelativePricePercentage: "RelativePricePercentage";
356
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
357
+ }>;
358
+ amount: z.ZodNumber;
359
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
360
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
361
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
362
+ costKind: z.ZodEnum<{
363
+ CarbonDioxideEmission: "CarbonDioxideEmission";
364
+ RelativePricePercentage: "RelativePricePercentage";
365
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
366
+ }>;
367
+ amount: z.ZodNumber;
368
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
369
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
370
+ }, z.core.$strip>, z.ZodObject<{
371
+ costKind: z.ZodEnum<{
372
+ CarbonDioxideEmission: "CarbonDioxideEmission";
373
+ RelativePricePercentage: "RelativePricePercentage";
374
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
375
+ }>;
376
+ amount: z.ZodNumber;
377
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
378
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
379
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
380
+ costKind: z.ZodEnum<{
381
+ CarbonDioxideEmission: "CarbonDioxideEmission";
382
+ RelativePricePercentage: "RelativePricePercentage";
383
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
384
+ }>;
385
+ amount: z.ZodNumber;
386
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
387
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
388
+ }, z.core.$strip>, z.ZodObject<{
389
+ costKind: z.ZodEnum<{
390
+ CarbonDioxideEmission: "CarbonDioxideEmission";
391
+ RelativePricePercentage: "RelativePricePercentage";
392
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
393
+ }>;
394
+ amount: z.ZodNumber;
395
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
396
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
397
+ }, z.core.$strip>, z.ZodObject<{
398
+ costKind: z.ZodEnum<{
399
+ CarbonDioxideEmission: "CarbonDioxideEmission";
400
+ RelativePricePercentage: "RelativePricePercentage";
401
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
402
+ }>;
403
+ amount: z.ZodNumber;
404
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
405
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
406
+ }, z.core.$strip>], null>]>;
407
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
408
+ }, z.core.$strip>], null>]>>>;
409
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
410
+ }, z.core.$strip>], z.ZodObject<{
411
+ relativeTimeInterval: z.ZodObject<{
412
+ start: z.ZodNumber;
413
+ duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
414
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
415
+ }, z.core.$strip>;
416
+ ePriceLevel: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
417
+ consumptionCost: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
418
+ startValue: z.ZodNumber;
419
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
420
+ costKind: z.ZodEnum<{
421
+ CarbonDioxideEmission: "CarbonDioxideEmission";
422
+ RelativePricePercentage: "RelativePricePercentage";
423
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
424
+ }>;
425
+ amount: z.ZodNumber;
426
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
427
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
428
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
429
+ costKind: z.ZodEnum<{
430
+ CarbonDioxideEmission: "CarbonDioxideEmission";
431
+ RelativePricePercentage: "RelativePricePercentage";
432
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
433
+ }>;
434
+ amount: z.ZodNumber;
435
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
436
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
437
+ }, z.core.$strip>, z.ZodObject<{
438
+ costKind: z.ZodEnum<{
439
+ CarbonDioxideEmission: "CarbonDioxideEmission";
440
+ RelativePricePercentage: "RelativePricePercentage";
441
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
442
+ }>;
443
+ amount: z.ZodNumber;
444
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
445
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
446
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
447
+ costKind: z.ZodEnum<{
448
+ CarbonDioxideEmission: "CarbonDioxideEmission";
449
+ RelativePricePercentage: "RelativePricePercentage";
450
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
451
+ }>;
452
+ amount: z.ZodNumber;
453
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
454
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
455
+ }, z.core.$strip>, z.ZodObject<{
456
+ costKind: z.ZodEnum<{
457
+ CarbonDioxideEmission: "CarbonDioxideEmission";
458
+ RelativePricePercentage: "RelativePricePercentage";
459
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
460
+ }>;
461
+ amount: z.ZodNumber;
462
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
463
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
464
+ }, z.core.$strip>, z.ZodObject<{
465
+ costKind: z.ZodEnum<{
466
+ CarbonDioxideEmission: "CarbonDioxideEmission";
467
+ RelativePricePercentage: "RelativePricePercentage";
468
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
469
+ }>;
470
+ amount: z.ZodNumber;
471
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
472
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
473
+ }, z.core.$strip>], null>]>;
474
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
475
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
476
+ startValue: z.ZodNumber;
477
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
478
+ costKind: z.ZodEnum<{
479
+ CarbonDioxideEmission: "CarbonDioxideEmission";
480
+ RelativePricePercentage: "RelativePricePercentage";
481
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
482
+ }>;
483
+ amount: z.ZodNumber;
484
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
485
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
486
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
487
+ costKind: z.ZodEnum<{
488
+ CarbonDioxideEmission: "CarbonDioxideEmission";
489
+ RelativePricePercentage: "RelativePricePercentage";
490
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
491
+ }>;
492
+ amount: z.ZodNumber;
493
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
494
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
495
+ }, z.core.$strip>, z.ZodObject<{
496
+ costKind: z.ZodEnum<{
497
+ CarbonDioxideEmission: "CarbonDioxideEmission";
498
+ RelativePricePercentage: "RelativePricePercentage";
499
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
500
+ }>;
501
+ amount: z.ZodNumber;
502
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
503
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
504
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
505
+ costKind: z.ZodEnum<{
506
+ CarbonDioxideEmission: "CarbonDioxideEmission";
507
+ RelativePricePercentage: "RelativePricePercentage";
508
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
509
+ }>;
510
+ amount: z.ZodNumber;
511
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
512
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
513
+ }, z.core.$strip>, z.ZodObject<{
514
+ costKind: z.ZodEnum<{
515
+ CarbonDioxideEmission: "CarbonDioxideEmission";
516
+ RelativePricePercentage: "RelativePricePercentage";
517
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
518
+ }>;
519
+ amount: z.ZodNumber;
520
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
521
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
522
+ }, z.core.$strip>, z.ZodObject<{
523
+ costKind: z.ZodEnum<{
524
+ CarbonDioxideEmission: "CarbonDioxideEmission";
525
+ RelativePricePercentage: "RelativePricePercentage";
526
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
527
+ }>;
528
+ amount: z.ZodNumber;
529
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
530
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
531
+ }, z.core.$strip>], null>]>;
532
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
533
+ }, z.core.$strip>, z.ZodObject<{
534
+ startValue: z.ZodNumber;
535
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
536
+ costKind: z.ZodEnum<{
537
+ CarbonDioxideEmission: "CarbonDioxideEmission";
538
+ RelativePricePercentage: "RelativePricePercentage";
539
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
540
+ }>;
541
+ amount: z.ZodNumber;
542
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
543
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
544
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
545
+ costKind: z.ZodEnum<{
546
+ CarbonDioxideEmission: "CarbonDioxideEmission";
547
+ RelativePricePercentage: "RelativePricePercentage";
548
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
549
+ }>;
550
+ amount: z.ZodNumber;
551
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
552
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
553
+ }, z.core.$strip>, z.ZodObject<{
554
+ costKind: z.ZodEnum<{
555
+ CarbonDioxideEmission: "CarbonDioxideEmission";
556
+ RelativePricePercentage: "RelativePricePercentage";
557
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
558
+ }>;
559
+ amount: z.ZodNumber;
560
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
561
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
562
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
563
+ costKind: z.ZodEnum<{
564
+ CarbonDioxideEmission: "CarbonDioxideEmission";
565
+ RelativePricePercentage: "RelativePricePercentage";
566
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
567
+ }>;
568
+ amount: z.ZodNumber;
569
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
570
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
571
+ }, z.core.$strip>, z.ZodObject<{
572
+ costKind: z.ZodEnum<{
573
+ CarbonDioxideEmission: "CarbonDioxideEmission";
574
+ RelativePricePercentage: "RelativePricePercentage";
575
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
576
+ }>;
577
+ amount: z.ZodNumber;
578
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
579
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
580
+ }, z.core.$strip>, z.ZodObject<{
581
+ costKind: z.ZodEnum<{
582
+ CarbonDioxideEmission: "CarbonDioxideEmission";
583
+ RelativePricePercentage: "RelativePricePercentage";
584
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
585
+ }>;
586
+ amount: z.ZodNumber;
587
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
588
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
589
+ }, z.core.$strip>], null>]>;
590
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
591
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
592
+ startValue: z.ZodNumber;
593
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
594
+ costKind: z.ZodEnum<{
595
+ CarbonDioxideEmission: "CarbonDioxideEmission";
596
+ RelativePricePercentage: "RelativePricePercentage";
597
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
598
+ }>;
599
+ amount: z.ZodNumber;
600
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
601
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
602
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
603
+ costKind: z.ZodEnum<{
604
+ CarbonDioxideEmission: "CarbonDioxideEmission";
605
+ RelativePricePercentage: "RelativePricePercentage";
606
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
607
+ }>;
608
+ amount: z.ZodNumber;
609
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
610
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
611
+ }, z.core.$strip>, z.ZodObject<{
612
+ costKind: z.ZodEnum<{
613
+ CarbonDioxideEmission: "CarbonDioxideEmission";
614
+ RelativePricePercentage: "RelativePricePercentage";
615
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
616
+ }>;
617
+ amount: z.ZodNumber;
618
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
619
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
620
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
621
+ costKind: z.ZodEnum<{
622
+ CarbonDioxideEmission: "CarbonDioxideEmission";
623
+ RelativePricePercentage: "RelativePricePercentage";
624
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
625
+ }>;
626
+ amount: z.ZodNumber;
627
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
628
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
629
+ }, z.core.$strip>, z.ZodObject<{
630
+ costKind: z.ZodEnum<{
631
+ CarbonDioxideEmission: "CarbonDioxideEmission";
632
+ RelativePricePercentage: "RelativePricePercentage";
633
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
634
+ }>;
635
+ amount: z.ZodNumber;
636
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
637
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
638
+ }, z.core.$strip>, z.ZodObject<{
639
+ costKind: z.ZodEnum<{
640
+ CarbonDioxideEmission: "CarbonDioxideEmission";
641
+ RelativePricePercentage: "RelativePricePercentage";
642
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
643
+ }>;
644
+ amount: z.ZodNumber;
645
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
646
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
647
+ }, z.core.$strip>], null>]>;
648
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
649
+ }, z.core.$strip>, z.ZodObject<{
650
+ startValue: z.ZodNumber;
651
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
652
+ costKind: z.ZodEnum<{
653
+ CarbonDioxideEmission: "CarbonDioxideEmission";
654
+ RelativePricePercentage: "RelativePricePercentage";
655
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
656
+ }>;
657
+ amount: z.ZodNumber;
658
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
659
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
660
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
661
+ costKind: z.ZodEnum<{
662
+ CarbonDioxideEmission: "CarbonDioxideEmission";
663
+ RelativePricePercentage: "RelativePricePercentage";
664
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
665
+ }>;
666
+ amount: z.ZodNumber;
667
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
668
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
669
+ }, z.core.$strip>, z.ZodObject<{
670
+ costKind: z.ZodEnum<{
671
+ CarbonDioxideEmission: "CarbonDioxideEmission";
672
+ RelativePricePercentage: "RelativePricePercentage";
673
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
674
+ }>;
675
+ amount: z.ZodNumber;
676
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
677
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
678
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
679
+ costKind: z.ZodEnum<{
680
+ CarbonDioxideEmission: "CarbonDioxideEmission";
681
+ RelativePricePercentage: "RelativePricePercentage";
682
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
683
+ }>;
684
+ amount: z.ZodNumber;
685
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
686
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
687
+ }, z.core.$strip>, z.ZodObject<{
688
+ costKind: z.ZodEnum<{
689
+ CarbonDioxideEmission: "CarbonDioxideEmission";
690
+ RelativePricePercentage: "RelativePricePercentage";
691
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
692
+ }>;
693
+ amount: z.ZodNumber;
694
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
695
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
696
+ }, z.core.$strip>, z.ZodObject<{
697
+ costKind: z.ZodEnum<{
698
+ CarbonDioxideEmission: "CarbonDioxideEmission";
699
+ RelativePricePercentage: "RelativePricePercentage";
700
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
701
+ }>;
702
+ amount: z.ZodNumber;
703
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
704
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
705
+ }, z.core.$strip>], null>]>;
706
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
707
+ }, z.core.$strip>, z.ZodObject<{
708
+ startValue: z.ZodNumber;
709
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
710
+ costKind: z.ZodEnum<{
711
+ CarbonDioxideEmission: "CarbonDioxideEmission";
712
+ RelativePricePercentage: "RelativePricePercentage";
713
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
714
+ }>;
715
+ amount: z.ZodNumber;
716
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
717
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
718
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
719
+ costKind: z.ZodEnum<{
720
+ CarbonDioxideEmission: "CarbonDioxideEmission";
721
+ RelativePricePercentage: "RelativePricePercentage";
722
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
723
+ }>;
724
+ amount: z.ZodNumber;
725
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
726
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
727
+ }, z.core.$strip>, z.ZodObject<{
728
+ costKind: z.ZodEnum<{
729
+ CarbonDioxideEmission: "CarbonDioxideEmission";
730
+ RelativePricePercentage: "RelativePricePercentage";
731
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
732
+ }>;
733
+ amount: z.ZodNumber;
734
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
735
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
736
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
737
+ costKind: z.ZodEnum<{
738
+ CarbonDioxideEmission: "CarbonDioxideEmission";
739
+ RelativePricePercentage: "RelativePricePercentage";
740
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
741
+ }>;
742
+ amount: z.ZodNumber;
743
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
744
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
745
+ }, z.core.$strip>, z.ZodObject<{
746
+ costKind: z.ZodEnum<{
747
+ CarbonDioxideEmission: "CarbonDioxideEmission";
748
+ RelativePricePercentage: "RelativePricePercentage";
749
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
750
+ }>;
751
+ amount: z.ZodNumber;
752
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
753
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
754
+ }, z.core.$strip>, z.ZodObject<{
755
+ costKind: z.ZodEnum<{
756
+ CarbonDioxideEmission: "CarbonDioxideEmission";
757
+ RelativePricePercentage: "RelativePricePercentage";
758
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
759
+ }>;
760
+ amount: z.ZodNumber;
761
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
762
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
763
+ }, z.core.$strip>], null>]>;
764
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
765
+ }, z.core.$strip>], null>]>>>;
766
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
767
+ }, z.core.$strip>>;
768
+ chargingScheduleDatabaseId: z.ZodNumber;
769
+ }, z.core.$strip>;
770
+ export declare const SalesTariffProps: {
771
+ id: "id";
772
+ salesTariffEntry: "salesTariffEntry";
773
+ tenantId: "tenantId";
774
+ tenant: "tenant";
775
+ updatedAt: "updatedAt";
776
+ createdAt: "createdAt";
777
+ databaseId: "databaseId";
778
+ numEPriceLevels: "numEPriceLevels";
779
+ salesTariffDescription: "salesTariffDescription";
780
+ chargingScheduleDatabaseId: "chargingScheduleDatabaseId";
781
+ };
782
+ export type SalesTariffDto = z.infer<typeof SalesTariffSchema>;
783
+ export declare const SalesTariffCreateSchema: z.ZodObject<{
784
+ id: z.ZodNumber;
785
+ salesTariffEntry: z.ZodTuple<[z.ZodObject<{
786
+ relativeTimeInterval: z.ZodObject<{
787
+ start: z.ZodNumber;
788
+ duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
789
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
790
+ }, z.core.$strip>;
791
+ ePriceLevel: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
792
+ consumptionCost: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
793
+ startValue: z.ZodNumber;
794
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
795
+ costKind: z.ZodEnum<{
796
+ CarbonDioxideEmission: "CarbonDioxideEmission";
797
+ RelativePricePercentage: "RelativePricePercentage";
798
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
799
+ }>;
800
+ amount: z.ZodNumber;
801
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
802
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
803
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
804
+ costKind: z.ZodEnum<{
805
+ CarbonDioxideEmission: "CarbonDioxideEmission";
806
+ RelativePricePercentage: "RelativePricePercentage";
807
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
808
+ }>;
809
+ amount: z.ZodNumber;
810
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
811
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
812
+ }, z.core.$strip>, z.ZodObject<{
813
+ costKind: z.ZodEnum<{
814
+ CarbonDioxideEmission: "CarbonDioxideEmission";
815
+ RelativePricePercentage: "RelativePricePercentage";
816
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
817
+ }>;
818
+ amount: z.ZodNumber;
819
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
820
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
821
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
822
+ costKind: z.ZodEnum<{
823
+ CarbonDioxideEmission: "CarbonDioxideEmission";
824
+ RelativePricePercentage: "RelativePricePercentage";
825
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
826
+ }>;
827
+ amount: z.ZodNumber;
828
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
829
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
830
+ }, z.core.$strip>, z.ZodObject<{
831
+ costKind: z.ZodEnum<{
832
+ CarbonDioxideEmission: "CarbonDioxideEmission";
833
+ RelativePricePercentage: "RelativePricePercentage";
834
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
835
+ }>;
836
+ amount: z.ZodNumber;
837
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
838
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
839
+ }, z.core.$strip>, z.ZodObject<{
840
+ costKind: z.ZodEnum<{
841
+ CarbonDioxideEmission: "CarbonDioxideEmission";
842
+ RelativePricePercentage: "RelativePricePercentage";
843
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
844
+ }>;
845
+ amount: z.ZodNumber;
846
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
847
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
848
+ }, z.core.$strip>], null>]>;
849
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
850
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
851
+ startValue: z.ZodNumber;
852
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
853
+ costKind: z.ZodEnum<{
854
+ CarbonDioxideEmission: "CarbonDioxideEmission";
855
+ RelativePricePercentage: "RelativePricePercentage";
856
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
857
+ }>;
858
+ amount: z.ZodNumber;
859
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
860
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
861
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
862
+ costKind: z.ZodEnum<{
863
+ CarbonDioxideEmission: "CarbonDioxideEmission";
864
+ RelativePricePercentage: "RelativePricePercentage";
865
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
866
+ }>;
867
+ amount: z.ZodNumber;
868
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
869
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
870
+ }, z.core.$strip>, z.ZodObject<{
871
+ costKind: z.ZodEnum<{
872
+ CarbonDioxideEmission: "CarbonDioxideEmission";
873
+ RelativePricePercentage: "RelativePricePercentage";
874
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
875
+ }>;
876
+ amount: z.ZodNumber;
877
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
878
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
879
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
880
+ costKind: z.ZodEnum<{
881
+ CarbonDioxideEmission: "CarbonDioxideEmission";
882
+ RelativePricePercentage: "RelativePricePercentage";
883
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
884
+ }>;
885
+ amount: z.ZodNumber;
886
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
887
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
888
+ }, z.core.$strip>, z.ZodObject<{
889
+ costKind: z.ZodEnum<{
890
+ CarbonDioxideEmission: "CarbonDioxideEmission";
891
+ RelativePricePercentage: "RelativePricePercentage";
892
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
893
+ }>;
894
+ amount: z.ZodNumber;
895
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
896
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
897
+ }, z.core.$strip>, z.ZodObject<{
898
+ costKind: z.ZodEnum<{
899
+ CarbonDioxideEmission: "CarbonDioxideEmission";
900
+ RelativePricePercentage: "RelativePricePercentage";
901
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
902
+ }>;
903
+ amount: z.ZodNumber;
904
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
905
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
906
+ }, z.core.$strip>], null>]>;
907
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
908
+ }, z.core.$strip>, z.ZodObject<{
909
+ startValue: z.ZodNumber;
910
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
911
+ costKind: z.ZodEnum<{
912
+ CarbonDioxideEmission: "CarbonDioxideEmission";
913
+ RelativePricePercentage: "RelativePricePercentage";
914
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
915
+ }>;
916
+ amount: z.ZodNumber;
917
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
918
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
919
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
920
+ costKind: z.ZodEnum<{
921
+ CarbonDioxideEmission: "CarbonDioxideEmission";
922
+ RelativePricePercentage: "RelativePricePercentage";
923
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
924
+ }>;
925
+ amount: z.ZodNumber;
926
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
927
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
928
+ }, z.core.$strip>, z.ZodObject<{
929
+ costKind: z.ZodEnum<{
930
+ CarbonDioxideEmission: "CarbonDioxideEmission";
931
+ RelativePricePercentage: "RelativePricePercentage";
932
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
933
+ }>;
934
+ amount: z.ZodNumber;
935
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
936
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
937
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
938
+ costKind: z.ZodEnum<{
939
+ CarbonDioxideEmission: "CarbonDioxideEmission";
940
+ RelativePricePercentage: "RelativePricePercentage";
941
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
942
+ }>;
943
+ amount: z.ZodNumber;
944
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
945
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
946
+ }, z.core.$strip>, z.ZodObject<{
947
+ costKind: z.ZodEnum<{
948
+ CarbonDioxideEmission: "CarbonDioxideEmission";
949
+ RelativePricePercentage: "RelativePricePercentage";
950
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
951
+ }>;
952
+ amount: z.ZodNumber;
953
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
954
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
955
+ }, z.core.$strip>, z.ZodObject<{
956
+ costKind: z.ZodEnum<{
957
+ CarbonDioxideEmission: "CarbonDioxideEmission";
958
+ RelativePricePercentage: "RelativePricePercentage";
959
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
960
+ }>;
961
+ amount: z.ZodNumber;
962
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
963
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
964
+ }, z.core.$strip>], null>]>;
965
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
966
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
967
+ startValue: z.ZodNumber;
968
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
969
+ costKind: z.ZodEnum<{
970
+ CarbonDioxideEmission: "CarbonDioxideEmission";
971
+ RelativePricePercentage: "RelativePricePercentage";
972
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
973
+ }>;
974
+ amount: z.ZodNumber;
975
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
976
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
977
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
978
+ costKind: z.ZodEnum<{
979
+ CarbonDioxideEmission: "CarbonDioxideEmission";
980
+ RelativePricePercentage: "RelativePricePercentage";
981
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
982
+ }>;
983
+ amount: z.ZodNumber;
984
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
985
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
986
+ }, z.core.$strip>, z.ZodObject<{
987
+ costKind: z.ZodEnum<{
988
+ CarbonDioxideEmission: "CarbonDioxideEmission";
989
+ RelativePricePercentage: "RelativePricePercentage";
990
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
991
+ }>;
992
+ amount: z.ZodNumber;
993
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
994
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
995
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
996
+ costKind: z.ZodEnum<{
997
+ CarbonDioxideEmission: "CarbonDioxideEmission";
998
+ RelativePricePercentage: "RelativePricePercentage";
999
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1000
+ }>;
1001
+ amount: z.ZodNumber;
1002
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1003
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1004
+ }, z.core.$strip>, z.ZodObject<{
1005
+ costKind: z.ZodEnum<{
1006
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1007
+ RelativePricePercentage: "RelativePricePercentage";
1008
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1009
+ }>;
1010
+ amount: z.ZodNumber;
1011
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1012
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1013
+ }, z.core.$strip>, z.ZodObject<{
1014
+ costKind: z.ZodEnum<{
1015
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1016
+ RelativePricePercentage: "RelativePricePercentage";
1017
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1018
+ }>;
1019
+ amount: z.ZodNumber;
1020
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1021
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1022
+ }, z.core.$strip>], null>]>;
1023
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1024
+ }, z.core.$strip>, z.ZodObject<{
1025
+ startValue: z.ZodNumber;
1026
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1027
+ costKind: z.ZodEnum<{
1028
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1029
+ RelativePricePercentage: "RelativePricePercentage";
1030
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1031
+ }>;
1032
+ amount: z.ZodNumber;
1033
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1034
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1035
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1036
+ costKind: z.ZodEnum<{
1037
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1038
+ RelativePricePercentage: "RelativePricePercentage";
1039
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1040
+ }>;
1041
+ amount: z.ZodNumber;
1042
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1043
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1044
+ }, z.core.$strip>, z.ZodObject<{
1045
+ costKind: z.ZodEnum<{
1046
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1047
+ RelativePricePercentage: "RelativePricePercentage";
1048
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1049
+ }>;
1050
+ amount: z.ZodNumber;
1051
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1052
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1053
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1054
+ costKind: z.ZodEnum<{
1055
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1056
+ RelativePricePercentage: "RelativePricePercentage";
1057
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1058
+ }>;
1059
+ amount: z.ZodNumber;
1060
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1061
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1062
+ }, z.core.$strip>, z.ZodObject<{
1063
+ costKind: z.ZodEnum<{
1064
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1065
+ RelativePricePercentage: "RelativePricePercentage";
1066
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1067
+ }>;
1068
+ amount: z.ZodNumber;
1069
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1070
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1071
+ }, z.core.$strip>, z.ZodObject<{
1072
+ costKind: z.ZodEnum<{
1073
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1074
+ RelativePricePercentage: "RelativePricePercentage";
1075
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1076
+ }>;
1077
+ amount: z.ZodNumber;
1078
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1079
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1080
+ }, z.core.$strip>], null>]>;
1081
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1082
+ }, z.core.$strip>, z.ZodObject<{
1083
+ startValue: z.ZodNumber;
1084
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1085
+ costKind: z.ZodEnum<{
1086
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1087
+ RelativePricePercentage: "RelativePricePercentage";
1088
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1089
+ }>;
1090
+ amount: z.ZodNumber;
1091
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1092
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1093
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1094
+ costKind: z.ZodEnum<{
1095
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1096
+ RelativePricePercentage: "RelativePricePercentage";
1097
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1098
+ }>;
1099
+ amount: z.ZodNumber;
1100
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1101
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1102
+ }, z.core.$strip>, z.ZodObject<{
1103
+ costKind: z.ZodEnum<{
1104
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1105
+ RelativePricePercentage: "RelativePricePercentage";
1106
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1107
+ }>;
1108
+ amount: z.ZodNumber;
1109
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1110
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1111
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1112
+ costKind: z.ZodEnum<{
1113
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1114
+ RelativePricePercentage: "RelativePricePercentage";
1115
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1116
+ }>;
1117
+ amount: z.ZodNumber;
1118
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1119
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1120
+ }, z.core.$strip>, z.ZodObject<{
1121
+ costKind: z.ZodEnum<{
1122
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1123
+ RelativePricePercentage: "RelativePricePercentage";
1124
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1125
+ }>;
1126
+ amount: z.ZodNumber;
1127
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1128
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1129
+ }, z.core.$strip>, z.ZodObject<{
1130
+ costKind: z.ZodEnum<{
1131
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1132
+ RelativePricePercentage: "RelativePricePercentage";
1133
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1134
+ }>;
1135
+ amount: z.ZodNumber;
1136
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1137
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1138
+ }, z.core.$strip>], null>]>;
1139
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1140
+ }, z.core.$strip>], null>]>>>;
1141
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1142
+ }, z.core.$strip>], z.ZodObject<{
1143
+ relativeTimeInterval: z.ZodObject<{
1144
+ start: z.ZodNumber;
1145
+ duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1146
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1147
+ }, z.core.$strip>;
1148
+ ePriceLevel: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1149
+ consumptionCost: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1150
+ startValue: z.ZodNumber;
1151
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1152
+ costKind: z.ZodEnum<{
1153
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1154
+ RelativePricePercentage: "RelativePricePercentage";
1155
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1156
+ }>;
1157
+ amount: z.ZodNumber;
1158
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1159
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1160
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1161
+ costKind: z.ZodEnum<{
1162
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1163
+ RelativePricePercentage: "RelativePricePercentage";
1164
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1165
+ }>;
1166
+ amount: z.ZodNumber;
1167
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1168
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1169
+ }, z.core.$strip>, z.ZodObject<{
1170
+ costKind: z.ZodEnum<{
1171
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1172
+ RelativePricePercentage: "RelativePricePercentage";
1173
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1174
+ }>;
1175
+ amount: z.ZodNumber;
1176
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1177
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1178
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1179
+ costKind: z.ZodEnum<{
1180
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1181
+ RelativePricePercentage: "RelativePricePercentage";
1182
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1183
+ }>;
1184
+ amount: z.ZodNumber;
1185
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1186
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1187
+ }, z.core.$strip>, z.ZodObject<{
1188
+ costKind: z.ZodEnum<{
1189
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1190
+ RelativePricePercentage: "RelativePricePercentage";
1191
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1192
+ }>;
1193
+ amount: z.ZodNumber;
1194
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1195
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1196
+ }, z.core.$strip>, z.ZodObject<{
1197
+ costKind: z.ZodEnum<{
1198
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1199
+ RelativePricePercentage: "RelativePricePercentage";
1200
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1201
+ }>;
1202
+ amount: z.ZodNumber;
1203
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1204
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1205
+ }, z.core.$strip>], null>]>;
1206
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1207
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1208
+ startValue: z.ZodNumber;
1209
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1210
+ costKind: z.ZodEnum<{
1211
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1212
+ RelativePricePercentage: "RelativePricePercentage";
1213
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1214
+ }>;
1215
+ amount: z.ZodNumber;
1216
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1217
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1218
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1219
+ costKind: z.ZodEnum<{
1220
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1221
+ RelativePricePercentage: "RelativePricePercentage";
1222
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1223
+ }>;
1224
+ amount: z.ZodNumber;
1225
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1226
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1227
+ }, z.core.$strip>, z.ZodObject<{
1228
+ costKind: z.ZodEnum<{
1229
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1230
+ RelativePricePercentage: "RelativePricePercentage";
1231
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1232
+ }>;
1233
+ amount: z.ZodNumber;
1234
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1235
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1236
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1237
+ costKind: z.ZodEnum<{
1238
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1239
+ RelativePricePercentage: "RelativePricePercentage";
1240
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1241
+ }>;
1242
+ amount: z.ZodNumber;
1243
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1244
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1245
+ }, z.core.$strip>, z.ZodObject<{
1246
+ costKind: z.ZodEnum<{
1247
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1248
+ RelativePricePercentage: "RelativePricePercentage";
1249
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1250
+ }>;
1251
+ amount: z.ZodNumber;
1252
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1253
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1254
+ }, z.core.$strip>, z.ZodObject<{
1255
+ costKind: z.ZodEnum<{
1256
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1257
+ RelativePricePercentage: "RelativePricePercentage";
1258
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1259
+ }>;
1260
+ amount: z.ZodNumber;
1261
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1262
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1263
+ }, z.core.$strip>], null>]>;
1264
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1265
+ }, z.core.$strip>, z.ZodObject<{
1266
+ startValue: z.ZodNumber;
1267
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1268
+ costKind: z.ZodEnum<{
1269
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1270
+ RelativePricePercentage: "RelativePricePercentage";
1271
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1272
+ }>;
1273
+ amount: z.ZodNumber;
1274
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1275
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1276
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1277
+ costKind: z.ZodEnum<{
1278
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1279
+ RelativePricePercentage: "RelativePricePercentage";
1280
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1281
+ }>;
1282
+ amount: z.ZodNumber;
1283
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1284
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1285
+ }, z.core.$strip>, z.ZodObject<{
1286
+ costKind: z.ZodEnum<{
1287
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1288
+ RelativePricePercentage: "RelativePricePercentage";
1289
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1290
+ }>;
1291
+ amount: z.ZodNumber;
1292
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1293
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1294
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1295
+ costKind: z.ZodEnum<{
1296
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1297
+ RelativePricePercentage: "RelativePricePercentage";
1298
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1299
+ }>;
1300
+ amount: z.ZodNumber;
1301
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1302
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1303
+ }, z.core.$strip>, z.ZodObject<{
1304
+ costKind: z.ZodEnum<{
1305
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1306
+ RelativePricePercentage: "RelativePricePercentage";
1307
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1308
+ }>;
1309
+ amount: z.ZodNumber;
1310
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1311
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1312
+ }, z.core.$strip>, z.ZodObject<{
1313
+ costKind: z.ZodEnum<{
1314
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1315
+ RelativePricePercentage: "RelativePricePercentage";
1316
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1317
+ }>;
1318
+ amount: z.ZodNumber;
1319
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1320
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1321
+ }, z.core.$strip>], null>]>;
1322
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1323
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1324
+ startValue: z.ZodNumber;
1325
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1326
+ costKind: z.ZodEnum<{
1327
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1328
+ RelativePricePercentage: "RelativePricePercentage";
1329
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1330
+ }>;
1331
+ amount: z.ZodNumber;
1332
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1333
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1334
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1335
+ costKind: z.ZodEnum<{
1336
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1337
+ RelativePricePercentage: "RelativePricePercentage";
1338
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1339
+ }>;
1340
+ amount: z.ZodNumber;
1341
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1342
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1343
+ }, z.core.$strip>, z.ZodObject<{
1344
+ costKind: z.ZodEnum<{
1345
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1346
+ RelativePricePercentage: "RelativePricePercentage";
1347
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1348
+ }>;
1349
+ amount: z.ZodNumber;
1350
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1351
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1352
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1353
+ costKind: z.ZodEnum<{
1354
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1355
+ RelativePricePercentage: "RelativePricePercentage";
1356
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1357
+ }>;
1358
+ amount: z.ZodNumber;
1359
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1360
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1361
+ }, z.core.$strip>, z.ZodObject<{
1362
+ costKind: z.ZodEnum<{
1363
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1364
+ RelativePricePercentage: "RelativePricePercentage";
1365
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1366
+ }>;
1367
+ amount: z.ZodNumber;
1368
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1369
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1370
+ }, z.core.$strip>, z.ZodObject<{
1371
+ costKind: z.ZodEnum<{
1372
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1373
+ RelativePricePercentage: "RelativePricePercentage";
1374
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1375
+ }>;
1376
+ amount: z.ZodNumber;
1377
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1378
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1379
+ }, z.core.$strip>], null>]>;
1380
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1381
+ }, z.core.$strip>, z.ZodObject<{
1382
+ startValue: z.ZodNumber;
1383
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1384
+ costKind: z.ZodEnum<{
1385
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1386
+ RelativePricePercentage: "RelativePricePercentage";
1387
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1388
+ }>;
1389
+ amount: z.ZodNumber;
1390
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1391
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1392
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1393
+ costKind: z.ZodEnum<{
1394
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1395
+ RelativePricePercentage: "RelativePricePercentage";
1396
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1397
+ }>;
1398
+ amount: z.ZodNumber;
1399
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1400
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1401
+ }, z.core.$strip>, z.ZodObject<{
1402
+ costKind: z.ZodEnum<{
1403
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1404
+ RelativePricePercentage: "RelativePricePercentage";
1405
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1406
+ }>;
1407
+ amount: z.ZodNumber;
1408
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1409
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1410
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1411
+ costKind: z.ZodEnum<{
1412
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1413
+ RelativePricePercentage: "RelativePricePercentage";
1414
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1415
+ }>;
1416
+ amount: z.ZodNumber;
1417
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1418
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1419
+ }, z.core.$strip>, z.ZodObject<{
1420
+ costKind: z.ZodEnum<{
1421
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1422
+ RelativePricePercentage: "RelativePricePercentage";
1423
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1424
+ }>;
1425
+ amount: z.ZodNumber;
1426
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1427
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1428
+ }, z.core.$strip>, z.ZodObject<{
1429
+ costKind: z.ZodEnum<{
1430
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1431
+ RelativePricePercentage: "RelativePricePercentage";
1432
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1433
+ }>;
1434
+ amount: z.ZodNumber;
1435
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1436
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1437
+ }, z.core.$strip>], null>]>;
1438
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1439
+ }, z.core.$strip>, z.ZodObject<{
1440
+ startValue: z.ZodNumber;
1441
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1442
+ costKind: z.ZodEnum<{
1443
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1444
+ RelativePricePercentage: "RelativePricePercentage";
1445
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1446
+ }>;
1447
+ amount: z.ZodNumber;
1448
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1449
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1450
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1451
+ costKind: z.ZodEnum<{
1452
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1453
+ RelativePricePercentage: "RelativePricePercentage";
1454
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1455
+ }>;
1456
+ amount: z.ZodNumber;
1457
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1458
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1459
+ }, z.core.$strip>, z.ZodObject<{
1460
+ costKind: z.ZodEnum<{
1461
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1462
+ RelativePricePercentage: "RelativePricePercentage";
1463
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1464
+ }>;
1465
+ amount: z.ZodNumber;
1466
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1467
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1468
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1469
+ costKind: z.ZodEnum<{
1470
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1471
+ RelativePricePercentage: "RelativePricePercentage";
1472
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1473
+ }>;
1474
+ amount: z.ZodNumber;
1475
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1476
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1477
+ }, z.core.$strip>, z.ZodObject<{
1478
+ costKind: z.ZodEnum<{
1479
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1480
+ RelativePricePercentage: "RelativePricePercentage";
1481
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1482
+ }>;
1483
+ amount: z.ZodNumber;
1484
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1485
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1486
+ }, z.core.$strip>, z.ZodObject<{
1487
+ costKind: z.ZodEnum<{
1488
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1489
+ RelativePricePercentage: "RelativePricePercentage";
1490
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1491
+ }>;
1492
+ amount: z.ZodNumber;
1493
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1494
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1495
+ }, z.core.$strip>], null>]>;
1496
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1497
+ }, z.core.$strip>], null>]>>>;
1498
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1499
+ }, z.core.$strip>>;
1500
+ tenantId: z.ZodOptional<z.ZodNumber>;
1501
+ numEPriceLevels: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1502
+ salesTariffDescription: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1503
+ chargingScheduleDatabaseId: z.ZodNumber;
1504
+ }, z.core.$strip>;
1505
+ export type SalesTariffCreate = z.infer<typeof SalesTariffCreateSchema>;
1506
+ export declare const salesTariffSchemas: {
1507
+ SalesTariff: z.ZodObject<{
1508
+ tenantId: z.ZodOptional<z.ZodNumber>;
1509
+ tenant: z.ZodOptional<z.ZodObject<{
1510
+ id: z.ZodOptional<z.ZodNumber>;
1511
+ name: z.ZodString;
1512
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1513
+ countryCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1514
+ partyId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1515
+ serverProfileOCPI: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1516
+ credentialsRole: z.ZodObject<{
1517
+ role: z.ZodEnum<{
1518
+ CPO: "CPO";
1519
+ EMSP: "EMSP";
1520
+ HUB: "HUB";
1521
+ NAP: "NAP";
1522
+ NSP: "NSP";
1523
+ SCSP: "SCSP";
1524
+ }>;
1525
+ businessDetails: z.ZodObject<{
1526
+ name: z.ZodString;
1527
+ website: z.ZodOptional<z.ZodString>;
1528
+ logo: z.ZodOptional<z.ZodObject<{
1529
+ url: z.ZodString;
1530
+ type: z.ZodString;
1531
+ category: z.ZodString;
1532
+ width: z.ZodOptional<z.ZodNumber>;
1533
+ height: z.ZodOptional<z.ZodNumber>;
1534
+ }, z.core.$strip>>;
1535
+ }, z.core.$strip>;
1536
+ }, z.core.$strip>;
1537
+ versionDetails: z.ZodArray<z.ZodObject<{
1538
+ version: z.ZodEnum<{
1539
+ "2.2.1": "2.2.1";
1540
+ }>;
1541
+ versionDetailsUrl: z.ZodOptional<z.ZodString>;
1542
+ }, z.core.$strip>>;
1543
+ versionEndpoints: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
1544
+ identifier: z.ZodString;
1545
+ url: z.ZodString;
1546
+ }, z.core.$strip>>>;
1547
+ }, z.core.$strip>>>;
1548
+ isUserTenant: z.ZodDefault<z.ZodBoolean>;
1549
+ updatedAt: z.ZodOptional<z.ZodDate>;
1550
+ createdAt: z.ZodOptional<z.ZodDate>;
1551
+ }, z.core.$strip>>;
1552
+ updatedAt: z.ZodOptional<z.ZodDate>;
1553
+ createdAt: z.ZodOptional<z.ZodDate>;
1554
+ databaseId: z.ZodNumber;
1555
+ id: z.ZodNumber;
1556
+ numEPriceLevels: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1557
+ salesTariffDescription: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1558
+ salesTariffEntry: z.ZodTuple<[z.ZodObject<{
1559
+ relativeTimeInterval: z.ZodObject<{
1560
+ start: z.ZodNumber;
1561
+ duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1562
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1563
+ }, z.core.$strip>;
1564
+ ePriceLevel: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1565
+ consumptionCost: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1566
+ startValue: z.ZodNumber;
1567
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1568
+ costKind: z.ZodEnum<{
1569
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1570
+ RelativePricePercentage: "RelativePricePercentage";
1571
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1572
+ }>;
1573
+ amount: z.ZodNumber;
1574
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1575
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1576
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1577
+ costKind: z.ZodEnum<{
1578
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1579
+ RelativePricePercentage: "RelativePricePercentage";
1580
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1581
+ }>;
1582
+ amount: z.ZodNumber;
1583
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1584
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1585
+ }, z.core.$strip>, z.ZodObject<{
1586
+ costKind: z.ZodEnum<{
1587
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1588
+ RelativePricePercentage: "RelativePricePercentage";
1589
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1590
+ }>;
1591
+ amount: z.ZodNumber;
1592
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1593
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1594
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1595
+ costKind: z.ZodEnum<{
1596
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1597
+ RelativePricePercentage: "RelativePricePercentage";
1598
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1599
+ }>;
1600
+ amount: z.ZodNumber;
1601
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1602
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1603
+ }, z.core.$strip>, z.ZodObject<{
1604
+ costKind: z.ZodEnum<{
1605
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1606
+ RelativePricePercentage: "RelativePricePercentage";
1607
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1608
+ }>;
1609
+ amount: z.ZodNumber;
1610
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1611
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1612
+ }, z.core.$strip>, z.ZodObject<{
1613
+ costKind: z.ZodEnum<{
1614
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1615
+ RelativePricePercentage: "RelativePricePercentage";
1616
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1617
+ }>;
1618
+ amount: z.ZodNumber;
1619
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1620
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1621
+ }, z.core.$strip>], null>]>;
1622
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1623
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1624
+ startValue: z.ZodNumber;
1625
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1626
+ costKind: z.ZodEnum<{
1627
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1628
+ RelativePricePercentage: "RelativePricePercentage";
1629
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1630
+ }>;
1631
+ amount: z.ZodNumber;
1632
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1633
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1634
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1635
+ costKind: z.ZodEnum<{
1636
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1637
+ RelativePricePercentage: "RelativePricePercentage";
1638
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1639
+ }>;
1640
+ amount: z.ZodNumber;
1641
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1642
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1643
+ }, z.core.$strip>, z.ZodObject<{
1644
+ costKind: z.ZodEnum<{
1645
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1646
+ RelativePricePercentage: "RelativePricePercentage";
1647
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1648
+ }>;
1649
+ amount: z.ZodNumber;
1650
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1651
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1652
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1653
+ costKind: z.ZodEnum<{
1654
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1655
+ RelativePricePercentage: "RelativePricePercentage";
1656
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1657
+ }>;
1658
+ amount: z.ZodNumber;
1659
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1660
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1661
+ }, z.core.$strip>, z.ZodObject<{
1662
+ costKind: z.ZodEnum<{
1663
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1664
+ RelativePricePercentage: "RelativePricePercentage";
1665
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1666
+ }>;
1667
+ amount: z.ZodNumber;
1668
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1669
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1670
+ }, z.core.$strip>, z.ZodObject<{
1671
+ costKind: z.ZodEnum<{
1672
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1673
+ RelativePricePercentage: "RelativePricePercentage";
1674
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1675
+ }>;
1676
+ amount: z.ZodNumber;
1677
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1678
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1679
+ }, z.core.$strip>], null>]>;
1680
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1681
+ }, z.core.$strip>, z.ZodObject<{
1682
+ startValue: z.ZodNumber;
1683
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1684
+ costKind: z.ZodEnum<{
1685
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1686
+ RelativePricePercentage: "RelativePricePercentage";
1687
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1688
+ }>;
1689
+ amount: z.ZodNumber;
1690
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1691
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1692
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1693
+ costKind: z.ZodEnum<{
1694
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1695
+ RelativePricePercentage: "RelativePricePercentage";
1696
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1697
+ }>;
1698
+ amount: z.ZodNumber;
1699
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1700
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1701
+ }, z.core.$strip>, z.ZodObject<{
1702
+ costKind: z.ZodEnum<{
1703
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1704
+ RelativePricePercentage: "RelativePricePercentage";
1705
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1706
+ }>;
1707
+ amount: z.ZodNumber;
1708
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1709
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1710
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1711
+ costKind: z.ZodEnum<{
1712
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1713
+ RelativePricePercentage: "RelativePricePercentage";
1714
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1715
+ }>;
1716
+ amount: z.ZodNumber;
1717
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1718
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1719
+ }, z.core.$strip>, z.ZodObject<{
1720
+ costKind: z.ZodEnum<{
1721
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1722
+ RelativePricePercentage: "RelativePricePercentage";
1723
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1724
+ }>;
1725
+ amount: z.ZodNumber;
1726
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1727
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1728
+ }, z.core.$strip>, z.ZodObject<{
1729
+ costKind: z.ZodEnum<{
1730
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1731
+ RelativePricePercentage: "RelativePricePercentage";
1732
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1733
+ }>;
1734
+ amount: z.ZodNumber;
1735
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1736
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1737
+ }, z.core.$strip>], null>]>;
1738
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1739
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1740
+ startValue: z.ZodNumber;
1741
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1742
+ costKind: z.ZodEnum<{
1743
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1744
+ RelativePricePercentage: "RelativePricePercentage";
1745
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1746
+ }>;
1747
+ amount: z.ZodNumber;
1748
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1749
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1750
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1751
+ costKind: z.ZodEnum<{
1752
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1753
+ RelativePricePercentage: "RelativePricePercentage";
1754
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1755
+ }>;
1756
+ amount: z.ZodNumber;
1757
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1758
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1759
+ }, z.core.$strip>, z.ZodObject<{
1760
+ costKind: z.ZodEnum<{
1761
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1762
+ RelativePricePercentage: "RelativePricePercentage";
1763
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1764
+ }>;
1765
+ amount: z.ZodNumber;
1766
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1767
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1768
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1769
+ costKind: z.ZodEnum<{
1770
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1771
+ RelativePricePercentage: "RelativePricePercentage";
1772
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1773
+ }>;
1774
+ amount: z.ZodNumber;
1775
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1776
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1777
+ }, z.core.$strip>, z.ZodObject<{
1778
+ costKind: z.ZodEnum<{
1779
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1780
+ RelativePricePercentage: "RelativePricePercentage";
1781
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1782
+ }>;
1783
+ amount: z.ZodNumber;
1784
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1785
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1786
+ }, z.core.$strip>, z.ZodObject<{
1787
+ costKind: z.ZodEnum<{
1788
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1789
+ RelativePricePercentage: "RelativePricePercentage";
1790
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1791
+ }>;
1792
+ amount: z.ZodNumber;
1793
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1794
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1795
+ }, z.core.$strip>], null>]>;
1796
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1797
+ }, z.core.$strip>, z.ZodObject<{
1798
+ startValue: z.ZodNumber;
1799
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1800
+ costKind: z.ZodEnum<{
1801
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1802
+ RelativePricePercentage: "RelativePricePercentage";
1803
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1804
+ }>;
1805
+ amount: z.ZodNumber;
1806
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1807
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1808
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1809
+ costKind: z.ZodEnum<{
1810
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1811
+ RelativePricePercentage: "RelativePricePercentage";
1812
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1813
+ }>;
1814
+ amount: z.ZodNumber;
1815
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1816
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1817
+ }, z.core.$strip>, z.ZodObject<{
1818
+ costKind: z.ZodEnum<{
1819
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1820
+ RelativePricePercentage: "RelativePricePercentage";
1821
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1822
+ }>;
1823
+ amount: z.ZodNumber;
1824
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1825
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1826
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1827
+ costKind: z.ZodEnum<{
1828
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1829
+ RelativePricePercentage: "RelativePricePercentage";
1830
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1831
+ }>;
1832
+ amount: z.ZodNumber;
1833
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1834
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1835
+ }, z.core.$strip>, z.ZodObject<{
1836
+ costKind: z.ZodEnum<{
1837
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1838
+ RelativePricePercentage: "RelativePricePercentage";
1839
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1840
+ }>;
1841
+ amount: z.ZodNumber;
1842
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1843
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1844
+ }, z.core.$strip>, z.ZodObject<{
1845
+ costKind: z.ZodEnum<{
1846
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1847
+ RelativePricePercentage: "RelativePricePercentage";
1848
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1849
+ }>;
1850
+ amount: z.ZodNumber;
1851
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1852
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1853
+ }, z.core.$strip>], null>]>;
1854
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1855
+ }, z.core.$strip>, z.ZodObject<{
1856
+ startValue: z.ZodNumber;
1857
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1858
+ costKind: z.ZodEnum<{
1859
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1860
+ RelativePricePercentage: "RelativePricePercentage";
1861
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1862
+ }>;
1863
+ amount: z.ZodNumber;
1864
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1865
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1866
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1867
+ costKind: z.ZodEnum<{
1868
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1869
+ RelativePricePercentage: "RelativePricePercentage";
1870
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1871
+ }>;
1872
+ amount: z.ZodNumber;
1873
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1874
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1875
+ }, z.core.$strip>, z.ZodObject<{
1876
+ costKind: z.ZodEnum<{
1877
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1878
+ RelativePricePercentage: "RelativePricePercentage";
1879
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1880
+ }>;
1881
+ amount: z.ZodNumber;
1882
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1883
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1884
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1885
+ costKind: z.ZodEnum<{
1886
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1887
+ RelativePricePercentage: "RelativePricePercentage";
1888
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1889
+ }>;
1890
+ amount: z.ZodNumber;
1891
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1892
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1893
+ }, z.core.$strip>, z.ZodObject<{
1894
+ costKind: z.ZodEnum<{
1895
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1896
+ RelativePricePercentage: "RelativePricePercentage";
1897
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1898
+ }>;
1899
+ amount: z.ZodNumber;
1900
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1901
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1902
+ }, z.core.$strip>, z.ZodObject<{
1903
+ costKind: z.ZodEnum<{
1904
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1905
+ RelativePricePercentage: "RelativePricePercentage";
1906
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1907
+ }>;
1908
+ amount: z.ZodNumber;
1909
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1910
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1911
+ }, z.core.$strip>], null>]>;
1912
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1913
+ }, z.core.$strip>], null>]>>>;
1914
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1915
+ }, z.core.$strip>], z.ZodObject<{
1916
+ relativeTimeInterval: z.ZodObject<{
1917
+ start: z.ZodNumber;
1918
+ duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1919
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1920
+ }, z.core.$strip>;
1921
+ ePriceLevel: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1922
+ consumptionCost: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1923
+ startValue: z.ZodNumber;
1924
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1925
+ costKind: z.ZodEnum<{
1926
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1927
+ RelativePricePercentage: "RelativePricePercentage";
1928
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1929
+ }>;
1930
+ amount: z.ZodNumber;
1931
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1932
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1933
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1934
+ costKind: z.ZodEnum<{
1935
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1936
+ RelativePricePercentage: "RelativePricePercentage";
1937
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1938
+ }>;
1939
+ amount: z.ZodNumber;
1940
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1941
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1942
+ }, z.core.$strip>, z.ZodObject<{
1943
+ costKind: z.ZodEnum<{
1944
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1945
+ RelativePricePercentage: "RelativePricePercentage";
1946
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1947
+ }>;
1948
+ amount: z.ZodNumber;
1949
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1950
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1951
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1952
+ costKind: z.ZodEnum<{
1953
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1954
+ RelativePricePercentage: "RelativePricePercentage";
1955
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1956
+ }>;
1957
+ amount: z.ZodNumber;
1958
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1959
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1960
+ }, z.core.$strip>, z.ZodObject<{
1961
+ costKind: z.ZodEnum<{
1962
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1963
+ RelativePricePercentage: "RelativePricePercentage";
1964
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1965
+ }>;
1966
+ amount: z.ZodNumber;
1967
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1968
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1969
+ }, z.core.$strip>, z.ZodObject<{
1970
+ costKind: z.ZodEnum<{
1971
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1972
+ RelativePricePercentage: "RelativePricePercentage";
1973
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1974
+ }>;
1975
+ amount: z.ZodNumber;
1976
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1977
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1978
+ }, z.core.$strip>], null>]>;
1979
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1980
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1981
+ startValue: z.ZodNumber;
1982
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
1983
+ costKind: z.ZodEnum<{
1984
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1985
+ RelativePricePercentage: "RelativePricePercentage";
1986
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1987
+ }>;
1988
+ amount: z.ZodNumber;
1989
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1990
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1991
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
1992
+ costKind: z.ZodEnum<{
1993
+ CarbonDioxideEmission: "CarbonDioxideEmission";
1994
+ RelativePricePercentage: "RelativePricePercentage";
1995
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
1996
+ }>;
1997
+ amount: z.ZodNumber;
1998
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1999
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2000
+ }, z.core.$strip>, z.ZodObject<{
2001
+ costKind: z.ZodEnum<{
2002
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2003
+ RelativePricePercentage: "RelativePricePercentage";
2004
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2005
+ }>;
2006
+ amount: z.ZodNumber;
2007
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2008
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2009
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2010
+ costKind: z.ZodEnum<{
2011
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2012
+ RelativePricePercentage: "RelativePricePercentage";
2013
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2014
+ }>;
2015
+ amount: z.ZodNumber;
2016
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2017
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2018
+ }, z.core.$strip>, z.ZodObject<{
2019
+ costKind: z.ZodEnum<{
2020
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2021
+ RelativePricePercentage: "RelativePricePercentage";
2022
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2023
+ }>;
2024
+ amount: z.ZodNumber;
2025
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2026
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2027
+ }, z.core.$strip>, z.ZodObject<{
2028
+ costKind: z.ZodEnum<{
2029
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2030
+ RelativePricePercentage: "RelativePricePercentage";
2031
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2032
+ }>;
2033
+ amount: z.ZodNumber;
2034
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2035
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2036
+ }, z.core.$strip>], null>]>;
2037
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2038
+ }, z.core.$strip>, z.ZodObject<{
2039
+ startValue: z.ZodNumber;
2040
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2041
+ costKind: z.ZodEnum<{
2042
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2043
+ RelativePricePercentage: "RelativePricePercentage";
2044
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2045
+ }>;
2046
+ amount: z.ZodNumber;
2047
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2048
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2049
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2050
+ costKind: z.ZodEnum<{
2051
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2052
+ RelativePricePercentage: "RelativePricePercentage";
2053
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2054
+ }>;
2055
+ amount: z.ZodNumber;
2056
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2057
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2058
+ }, z.core.$strip>, z.ZodObject<{
2059
+ costKind: z.ZodEnum<{
2060
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2061
+ RelativePricePercentage: "RelativePricePercentage";
2062
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2063
+ }>;
2064
+ amount: z.ZodNumber;
2065
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2066
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2067
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2068
+ costKind: z.ZodEnum<{
2069
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2070
+ RelativePricePercentage: "RelativePricePercentage";
2071
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2072
+ }>;
2073
+ amount: z.ZodNumber;
2074
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2075
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2076
+ }, z.core.$strip>, z.ZodObject<{
2077
+ costKind: z.ZodEnum<{
2078
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2079
+ RelativePricePercentage: "RelativePricePercentage";
2080
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2081
+ }>;
2082
+ amount: z.ZodNumber;
2083
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2084
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2085
+ }, z.core.$strip>, z.ZodObject<{
2086
+ costKind: z.ZodEnum<{
2087
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2088
+ RelativePricePercentage: "RelativePricePercentage";
2089
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2090
+ }>;
2091
+ amount: z.ZodNumber;
2092
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2093
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2094
+ }, z.core.$strip>], null>]>;
2095
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2096
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2097
+ startValue: z.ZodNumber;
2098
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2099
+ costKind: z.ZodEnum<{
2100
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2101
+ RelativePricePercentage: "RelativePricePercentage";
2102
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2103
+ }>;
2104
+ amount: z.ZodNumber;
2105
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2106
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2107
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2108
+ costKind: z.ZodEnum<{
2109
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2110
+ RelativePricePercentage: "RelativePricePercentage";
2111
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2112
+ }>;
2113
+ amount: z.ZodNumber;
2114
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2115
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2116
+ }, z.core.$strip>, z.ZodObject<{
2117
+ costKind: z.ZodEnum<{
2118
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2119
+ RelativePricePercentage: "RelativePricePercentage";
2120
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2121
+ }>;
2122
+ amount: z.ZodNumber;
2123
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2124
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2125
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2126
+ costKind: z.ZodEnum<{
2127
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2128
+ RelativePricePercentage: "RelativePricePercentage";
2129
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2130
+ }>;
2131
+ amount: z.ZodNumber;
2132
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2133
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2134
+ }, z.core.$strip>, z.ZodObject<{
2135
+ costKind: z.ZodEnum<{
2136
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2137
+ RelativePricePercentage: "RelativePricePercentage";
2138
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2139
+ }>;
2140
+ amount: z.ZodNumber;
2141
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2142
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2143
+ }, z.core.$strip>, z.ZodObject<{
2144
+ costKind: z.ZodEnum<{
2145
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2146
+ RelativePricePercentage: "RelativePricePercentage";
2147
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2148
+ }>;
2149
+ amount: z.ZodNumber;
2150
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2151
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2152
+ }, z.core.$strip>], null>]>;
2153
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2154
+ }, z.core.$strip>, z.ZodObject<{
2155
+ startValue: z.ZodNumber;
2156
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2157
+ costKind: z.ZodEnum<{
2158
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2159
+ RelativePricePercentage: "RelativePricePercentage";
2160
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2161
+ }>;
2162
+ amount: z.ZodNumber;
2163
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2164
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2165
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2166
+ costKind: z.ZodEnum<{
2167
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2168
+ RelativePricePercentage: "RelativePricePercentage";
2169
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2170
+ }>;
2171
+ amount: z.ZodNumber;
2172
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2173
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2174
+ }, z.core.$strip>, z.ZodObject<{
2175
+ costKind: z.ZodEnum<{
2176
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2177
+ RelativePricePercentage: "RelativePricePercentage";
2178
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2179
+ }>;
2180
+ amount: z.ZodNumber;
2181
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2182
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2183
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2184
+ costKind: z.ZodEnum<{
2185
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2186
+ RelativePricePercentage: "RelativePricePercentage";
2187
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2188
+ }>;
2189
+ amount: z.ZodNumber;
2190
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2191
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2192
+ }, z.core.$strip>, z.ZodObject<{
2193
+ costKind: z.ZodEnum<{
2194
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2195
+ RelativePricePercentage: "RelativePricePercentage";
2196
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2197
+ }>;
2198
+ amount: z.ZodNumber;
2199
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2200
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2201
+ }, z.core.$strip>, z.ZodObject<{
2202
+ costKind: z.ZodEnum<{
2203
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2204
+ RelativePricePercentage: "RelativePricePercentage";
2205
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2206
+ }>;
2207
+ amount: z.ZodNumber;
2208
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2209
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2210
+ }, z.core.$strip>], null>]>;
2211
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2212
+ }, z.core.$strip>, z.ZodObject<{
2213
+ startValue: z.ZodNumber;
2214
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2215
+ costKind: z.ZodEnum<{
2216
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2217
+ RelativePricePercentage: "RelativePricePercentage";
2218
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2219
+ }>;
2220
+ amount: z.ZodNumber;
2221
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2222
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2223
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2224
+ costKind: z.ZodEnum<{
2225
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2226
+ RelativePricePercentage: "RelativePricePercentage";
2227
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2228
+ }>;
2229
+ amount: z.ZodNumber;
2230
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2231
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2232
+ }, z.core.$strip>, z.ZodObject<{
2233
+ costKind: z.ZodEnum<{
2234
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2235
+ RelativePricePercentage: "RelativePricePercentage";
2236
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2237
+ }>;
2238
+ amount: z.ZodNumber;
2239
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2240
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2241
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2242
+ costKind: z.ZodEnum<{
2243
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2244
+ RelativePricePercentage: "RelativePricePercentage";
2245
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2246
+ }>;
2247
+ amount: z.ZodNumber;
2248
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2249
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2250
+ }, z.core.$strip>, z.ZodObject<{
2251
+ costKind: z.ZodEnum<{
2252
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2253
+ RelativePricePercentage: "RelativePricePercentage";
2254
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2255
+ }>;
2256
+ amount: z.ZodNumber;
2257
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2258
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2259
+ }, z.core.$strip>, z.ZodObject<{
2260
+ costKind: z.ZodEnum<{
2261
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2262
+ RelativePricePercentage: "RelativePricePercentage";
2263
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2264
+ }>;
2265
+ amount: z.ZodNumber;
2266
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2267
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2268
+ }, z.core.$strip>], null>]>;
2269
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2270
+ }, z.core.$strip>], null>]>>>;
2271
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2272
+ }, z.core.$strip>>;
2273
+ chargingScheduleDatabaseId: z.ZodNumber;
2274
+ }, z.core.$strip>;
2275
+ SalesTariffCreate: z.ZodObject<{
2276
+ id: z.ZodNumber;
2277
+ salesTariffEntry: z.ZodTuple<[z.ZodObject<{
2278
+ relativeTimeInterval: z.ZodObject<{
2279
+ start: z.ZodNumber;
2280
+ duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2281
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2282
+ }, z.core.$strip>;
2283
+ ePriceLevel: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2284
+ consumptionCost: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2285
+ startValue: z.ZodNumber;
2286
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2287
+ costKind: z.ZodEnum<{
2288
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2289
+ RelativePricePercentage: "RelativePricePercentage";
2290
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2291
+ }>;
2292
+ amount: z.ZodNumber;
2293
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2294
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2295
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2296
+ costKind: z.ZodEnum<{
2297
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2298
+ RelativePricePercentage: "RelativePricePercentage";
2299
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2300
+ }>;
2301
+ amount: z.ZodNumber;
2302
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2303
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2304
+ }, z.core.$strip>, z.ZodObject<{
2305
+ costKind: z.ZodEnum<{
2306
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2307
+ RelativePricePercentage: "RelativePricePercentage";
2308
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2309
+ }>;
2310
+ amount: z.ZodNumber;
2311
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2312
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2313
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2314
+ costKind: z.ZodEnum<{
2315
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2316
+ RelativePricePercentage: "RelativePricePercentage";
2317
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2318
+ }>;
2319
+ amount: z.ZodNumber;
2320
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2321
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2322
+ }, z.core.$strip>, z.ZodObject<{
2323
+ costKind: z.ZodEnum<{
2324
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2325
+ RelativePricePercentage: "RelativePricePercentage";
2326
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2327
+ }>;
2328
+ amount: z.ZodNumber;
2329
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2330
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2331
+ }, z.core.$strip>, z.ZodObject<{
2332
+ costKind: z.ZodEnum<{
2333
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2334
+ RelativePricePercentage: "RelativePricePercentage";
2335
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2336
+ }>;
2337
+ amount: z.ZodNumber;
2338
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2339
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2340
+ }, z.core.$strip>], null>]>;
2341
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2342
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2343
+ startValue: z.ZodNumber;
2344
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2345
+ costKind: z.ZodEnum<{
2346
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2347
+ RelativePricePercentage: "RelativePricePercentage";
2348
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2349
+ }>;
2350
+ amount: z.ZodNumber;
2351
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2352
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2353
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2354
+ costKind: z.ZodEnum<{
2355
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2356
+ RelativePricePercentage: "RelativePricePercentage";
2357
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2358
+ }>;
2359
+ amount: z.ZodNumber;
2360
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2361
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2362
+ }, z.core.$strip>, z.ZodObject<{
2363
+ costKind: z.ZodEnum<{
2364
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2365
+ RelativePricePercentage: "RelativePricePercentage";
2366
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2367
+ }>;
2368
+ amount: z.ZodNumber;
2369
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2370
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2371
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2372
+ costKind: z.ZodEnum<{
2373
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2374
+ RelativePricePercentage: "RelativePricePercentage";
2375
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2376
+ }>;
2377
+ amount: z.ZodNumber;
2378
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2379
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2380
+ }, z.core.$strip>, z.ZodObject<{
2381
+ costKind: z.ZodEnum<{
2382
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2383
+ RelativePricePercentage: "RelativePricePercentage";
2384
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2385
+ }>;
2386
+ amount: z.ZodNumber;
2387
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2388
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2389
+ }, z.core.$strip>, z.ZodObject<{
2390
+ costKind: z.ZodEnum<{
2391
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2392
+ RelativePricePercentage: "RelativePricePercentage";
2393
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2394
+ }>;
2395
+ amount: z.ZodNumber;
2396
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2397
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2398
+ }, z.core.$strip>], null>]>;
2399
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2400
+ }, z.core.$strip>, z.ZodObject<{
2401
+ startValue: z.ZodNumber;
2402
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2403
+ costKind: z.ZodEnum<{
2404
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2405
+ RelativePricePercentage: "RelativePricePercentage";
2406
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2407
+ }>;
2408
+ amount: z.ZodNumber;
2409
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2410
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2411
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2412
+ costKind: z.ZodEnum<{
2413
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2414
+ RelativePricePercentage: "RelativePricePercentage";
2415
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2416
+ }>;
2417
+ amount: z.ZodNumber;
2418
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2419
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2420
+ }, z.core.$strip>, z.ZodObject<{
2421
+ costKind: z.ZodEnum<{
2422
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2423
+ RelativePricePercentage: "RelativePricePercentage";
2424
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2425
+ }>;
2426
+ amount: z.ZodNumber;
2427
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2428
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2429
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2430
+ costKind: z.ZodEnum<{
2431
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2432
+ RelativePricePercentage: "RelativePricePercentage";
2433
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2434
+ }>;
2435
+ amount: z.ZodNumber;
2436
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2437
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2438
+ }, z.core.$strip>, z.ZodObject<{
2439
+ costKind: z.ZodEnum<{
2440
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2441
+ RelativePricePercentage: "RelativePricePercentage";
2442
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2443
+ }>;
2444
+ amount: z.ZodNumber;
2445
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2446
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2447
+ }, z.core.$strip>, z.ZodObject<{
2448
+ costKind: z.ZodEnum<{
2449
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2450
+ RelativePricePercentage: "RelativePricePercentage";
2451
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2452
+ }>;
2453
+ amount: z.ZodNumber;
2454
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2455
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2456
+ }, z.core.$strip>], null>]>;
2457
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2458
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2459
+ startValue: z.ZodNumber;
2460
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2461
+ costKind: z.ZodEnum<{
2462
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2463
+ RelativePricePercentage: "RelativePricePercentage";
2464
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2465
+ }>;
2466
+ amount: z.ZodNumber;
2467
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2468
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2469
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2470
+ costKind: z.ZodEnum<{
2471
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2472
+ RelativePricePercentage: "RelativePricePercentage";
2473
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2474
+ }>;
2475
+ amount: z.ZodNumber;
2476
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2477
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2478
+ }, z.core.$strip>, z.ZodObject<{
2479
+ costKind: z.ZodEnum<{
2480
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2481
+ RelativePricePercentage: "RelativePricePercentage";
2482
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2483
+ }>;
2484
+ amount: z.ZodNumber;
2485
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2486
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2487
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2488
+ costKind: z.ZodEnum<{
2489
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2490
+ RelativePricePercentage: "RelativePricePercentage";
2491
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2492
+ }>;
2493
+ amount: z.ZodNumber;
2494
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2495
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2496
+ }, z.core.$strip>, z.ZodObject<{
2497
+ costKind: z.ZodEnum<{
2498
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2499
+ RelativePricePercentage: "RelativePricePercentage";
2500
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2501
+ }>;
2502
+ amount: z.ZodNumber;
2503
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2504
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2505
+ }, z.core.$strip>, z.ZodObject<{
2506
+ costKind: z.ZodEnum<{
2507
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2508
+ RelativePricePercentage: "RelativePricePercentage";
2509
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2510
+ }>;
2511
+ amount: z.ZodNumber;
2512
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2513
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2514
+ }, z.core.$strip>], null>]>;
2515
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2516
+ }, z.core.$strip>, z.ZodObject<{
2517
+ startValue: z.ZodNumber;
2518
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2519
+ costKind: z.ZodEnum<{
2520
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2521
+ RelativePricePercentage: "RelativePricePercentage";
2522
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2523
+ }>;
2524
+ amount: z.ZodNumber;
2525
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2526
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2527
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2528
+ costKind: z.ZodEnum<{
2529
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2530
+ RelativePricePercentage: "RelativePricePercentage";
2531
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2532
+ }>;
2533
+ amount: z.ZodNumber;
2534
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2535
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2536
+ }, z.core.$strip>, z.ZodObject<{
2537
+ costKind: z.ZodEnum<{
2538
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2539
+ RelativePricePercentage: "RelativePricePercentage";
2540
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2541
+ }>;
2542
+ amount: z.ZodNumber;
2543
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2544
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2545
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2546
+ costKind: z.ZodEnum<{
2547
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2548
+ RelativePricePercentage: "RelativePricePercentage";
2549
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2550
+ }>;
2551
+ amount: z.ZodNumber;
2552
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2553
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2554
+ }, z.core.$strip>, z.ZodObject<{
2555
+ costKind: z.ZodEnum<{
2556
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2557
+ RelativePricePercentage: "RelativePricePercentage";
2558
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2559
+ }>;
2560
+ amount: z.ZodNumber;
2561
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2562
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2563
+ }, z.core.$strip>, z.ZodObject<{
2564
+ costKind: z.ZodEnum<{
2565
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2566
+ RelativePricePercentage: "RelativePricePercentage";
2567
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2568
+ }>;
2569
+ amount: z.ZodNumber;
2570
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2571
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2572
+ }, z.core.$strip>], null>]>;
2573
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2574
+ }, z.core.$strip>, z.ZodObject<{
2575
+ startValue: z.ZodNumber;
2576
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2577
+ costKind: z.ZodEnum<{
2578
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2579
+ RelativePricePercentage: "RelativePricePercentage";
2580
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2581
+ }>;
2582
+ amount: z.ZodNumber;
2583
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2584
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2585
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2586
+ costKind: z.ZodEnum<{
2587
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2588
+ RelativePricePercentage: "RelativePricePercentage";
2589
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2590
+ }>;
2591
+ amount: z.ZodNumber;
2592
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2593
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2594
+ }, z.core.$strip>, z.ZodObject<{
2595
+ costKind: z.ZodEnum<{
2596
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2597
+ RelativePricePercentage: "RelativePricePercentage";
2598
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2599
+ }>;
2600
+ amount: z.ZodNumber;
2601
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2602
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2603
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2604
+ costKind: z.ZodEnum<{
2605
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2606
+ RelativePricePercentage: "RelativePricePercentage";
2607
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2608
+ }>;
2609
+ amount: z.ZodNumber;
2610
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2611
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2612
+ }, z.core.$strip>, z.ZodObject<{
2613
+ costKind: z.ZodEnum<{
2614
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2615
+ RelativePricePercentage: "RelativePricePercentage";
2616
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2617
+ }>;
2618
+ amount: z.ZodNumber;
2619
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2620
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2621
+ }, z.core.$strip>, z.ZodObject<{
2622
+ costKind: z.ZodEnum<{
2623
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2624
+ RelativePricePercentage: "RelativePricePercentage";
2625
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2626
+ }>;
2627
+ amount: z.ZodNumber;
2628
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2629
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2630
+ }, z.core.$strip>], null>]>;
2631
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2632
+ }, z.core.$strip>], null>]>>>;
2633
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2634
+ }, z.core.$strip>], z.ZodObject<{
2635
+ relativeTimeInterval: z.ZodObject<{
2636
+ start: z.ZodNumber;
2637
+ duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2638
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2639
+ }, z.core.$strip>;
2640
+ ePriceLevel: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2641
+ consumptionCost: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2642
+ startValue: z.ZodNumber;
2643
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2644
+ costKind: z.ZodEnum<{
2645
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2646
+ RelativePricePercentage: "RelativePricePercentage";
2647
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2648
+ }>;
2649
+ amount: z.ZodNumber;
2650
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2651
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2652
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2653
+ costKind: z.ZodEnum<{
2654
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2655
+ RelativePricePercentage: "RelativePricePercentage";
2656
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2657
+ }>;
2658
+ amount: z.ZodNumber;
2659
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2660
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2661
+ }, z.core.$strip>, z.ZodObject<{
2662
+ costKind: z.ZodEnum<{
2663
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2664
+ RelativePricePercentage: "RelativePricePercentage";
2665
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2666
+ }>;
2667
+ amount: z.ZodNumber;
2668
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2669
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2670
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2671
+ costKind: z.ZodEnum<{
2672
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2673
+ RelativePricePercentage: "RelativePricePercentage";
2674
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2675
+ }>;
2676
+ amount: z.ZodNumber;
2677
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2678
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2679
+ }, z.core.$strip>, z.ZodObject<{
2680
+ costKind: z.ZodEnum<{
2681
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2682
+ RelativePricePercentage: "RelativePricePercentage";
2683
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2684
+ }>;
2685
+ amount: z.ZodNumber;
2686
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2687
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2688
+ }, z.core.$strip>, z.ZodObject<{
2689
+ costKind: z.ZodEnum<{
2690
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2691
+ RelativePricePercentage: "RelativePricePercentage";
2692
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2693
+ }>;
2694
+ amount: z.ZodNumber;
2695
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2696
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2697
+ }, z.core.$strip>], null>]>;
2698
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2699
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2700
+ startValue: z.ZodNumber;
2701
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2702
+ costKind: z.ZodEnum<{
2703
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2704
+ RelativePricePercentage: "RelativePricePercentage";
2705
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2706
+ }>;
2707
+ amount: z.ZodNumber;
2708
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2709
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2710
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2711
+ costKind: z.ZodEnum<{
2712
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2713
+ RelativePricePercentage: "RelativePricePercentage";
2714
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2715
+ }>;
2716
+ amount: z.ZodNumber;
2717
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2718
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2719
+ }, z.core.$strip>, z.ZodObject<{
2720
+ costKind: z.ZodEnum<{
2721
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2722
+ RelativePricePercentage: "RelativePricePercentage";
2723
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2724
+ }>;
2725
+ amount: z.ZodNumber;
2726
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2727
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2728
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2729
+ costKind: z.ZodEnum<{
2730
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2731
+ RelativePricePercentage: "RelativePricePercentage";
2732
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2733
+ }>;
2734
+ amount: z.ZodNumber;
2735
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2736
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2737
+ }, z.core.$strip>, z.ZodObject<{
2738
+ costKind: z.ZodEnum<{
2739
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2740
+ RelativePricePercentage: "RelativePricePercentage";
2741
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2742
+ }>;
2743
+ amount: z.ZodNumber;
2744
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2745
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2746
+ }, z.core.$strip>, z.ZodObject<{
2747
+ costKind: z.ZodEnum<{
2748
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2749
+ RelativePricePercentage: "RelativePricePercentage";
2750
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2751
+ }>;
2752
+ amount: z.ZodNumber;
2753
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2754
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2755
+ }, z.core.$strip>], null>]>;
2756
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2757
+ }, z.core.$strip>, z.ZodObject<{
2758
+ startValue: z.ZodNumber;
2759
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2760
+ costKind: z.ZodEnum<{
2761
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2762
+ RelativePricePercentage: "RelativePricePercentage";
2763
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2764
+ }>;
2765
+ amount: z.ZodNumber;
2766
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2767
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2768
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2769
+ costKind: z.ZodEnum<{
2770
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2771
+ RelativePricePercentage: "RelativePricePercentage";
2772
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2773
+ }>;
2774
+ amount: z.ZodNumber;
2775
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2776
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2777
+ }, z.core.$strip>, z.ZodObject<{
2778
+ costKind: z.ZodEnum<{
2779
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2780
+ RelativePricePercentage: "RelativePricePercentage";
2781
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2782
+ }>;
2783
+ amount: z.ZodNumber;
2784
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2785
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2786
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2787
+ costKind: z.ZodEnum<{
2788
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2789
+ RelativePricePercentage: "RelativePricePercentage";
2790
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2791
+ }>;
2792
+ amount: z.ZodNumber;
2793
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2794
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2795
+ }, z.core.$strip>, z.ZodObject<{
2796
+ costKind: z.ZodEnum<{
2797
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2798
+ RelativePricePercentage: "RelativePricePercentage";
2799
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2800
+ }>;
2801
+ amount: z.ZodNumber;
2802
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2803
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2804
+ }, z.core.$strip>, z.ZodObject<{
2805
+ costKind: z.ZodEnum<{
2806
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2807
+ RelativePricePercentage: "RelativePricePercentage";
2808
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2809
+ }>;
2810
+ amount: z.ZodNumber;
2811
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2812
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2813
+ }, z.core.$strip>], null>]>;
2814
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2815
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2816
+ startValue: z.ZodNumber;
2817
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2818
+ costKind: z.ZodEnum<{
2819
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2820
+ RelativePricePercentage: "RelativePricePercentage";
2821
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2822
+ }>;
2823
+ amount: z.ZodNumber;
2824
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2825
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2826
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2827
+ costKind: z.ZodEnum<{
2828
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2829
+ RelativePricePercentage: "RelativePricePercentage";
2830
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2831
+ }>;
2832
+ amount: z.ZodNumber;
2833
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2834
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2835
+ }, z.core.$strip>, z.ZodObject<{
2836
+ costKind: z.ZodEnum<{
2837
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2838
+ RelativePricePercentage: "RelativePricePercentage";
2839
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2840
+ }>;
2841
+ amount: z.ZodNumber;
2842
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2843
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2844
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2845
+ costKind: z.ZodEnum<{
2846
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2847
+ RelativePricePercentage: "RelativePricePercentage";
2848
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2849
+ }>;
2850
+ amount: z.ZodNumber;
2851
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2852
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2853
+ }, z.core.$strip>, z.ZodObject<{
2854
+ costKind: z.ZodEnum<{
2855
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2856
+ RelativePricePercentage: "RelativePricePercentage";
2857
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2858
+ }>;
2859
+ amount: z.ZodNumber;
2860
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2861
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2862
+ }, z.core.$strip>, z.ZodObject<{
2863
+ costKind: z.ZodEnum<{
2864
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2865
+ RelativePricePercentage: "RelativePricePercentage";
2866
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2867
+ }>;
2868
+ amount: z.ZodNumber;
2869
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2870
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2871
+ }, z.core.$strip>], null>]>;
2872
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2873
+ }, z.core.$strip>, z.ZodObject<{
2874
+ startValue: z.ZodNumber;
2875
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2876
+ costKind: z.ZodEnum<{
2877
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2878
+ RelativePricePercentage: "RelativePricePercentage";
2879
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2880
+ }>;
2881
+ amount: z.ZodNumber;
2882
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2883
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2884
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2885
+ costKind: z.ZodEnum<{
2886
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2887
+ RelativePricePercentage: "RelativePricePercentage";
2888
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2889
+ }>;
2890
+ amount: z.ZodNumber;
2891
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2892
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2893
+ }, z.core.$strip>, z.ZodObject<{
2894
+ costKind: z.ZodEnum<{
2895
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2896
+ RelativePricePercentage: "RelativePricePercentage";
2897
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2898
+ }>;
2899
+ amount: z.ZodNumber;
2900
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2901
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2902
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2903
+ costKind: z.ZodEnum<{
2904
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2905
+ RelativePricePercentage: "RelativePricePercentage";
2906
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2907
+ }>;
2908
+ amount: z.ZodNumber;
2909
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2910
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2911
+ }, z.core.$strip>, z.ZodObject<{
2912
+ costKind: z.ZodEnum<{
2913
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2914
+ RelativePricePercentage: "RelativePricePercentage";
2915
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2916
+ }>;
2917
+ amount: z.ZodNumber;
2918
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2919
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2920
+ }, z.core.$strip>, z.ZodObject<{
2921
+ costKind: z.ZodEnum<{
2922
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2923
+ RelativePricePercentage: "RelativePricePercentage";
2924
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2925
+ }>;
2926
+ amount: z.ZodNumber;
2927
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2928
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2929
+ }, z.core.$strip>], null>]>;
2930
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2931
+ }, z.core.$strip>, z.ZodObject<{
2932
+ startValue: z.ZodNumber;
2933
+ cost: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
2934
+ costKind: z.ZodEnum<{
2935
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2936
+ RelativePricePercentage: "RelativePricePercentage";
2937
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2938
+ }>;
2939
+ amount: z.ZodNumber;
2940
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2941
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2942
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2943
+ costKind: z.ZodEnum<{
2944
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2945
+ RelativePricePercentage: "RelativePricePercentage";
2946
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2947
+ }>;
2948
+ amount: z.ZodNumber;
2949
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2950
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2951
+ }, z.core.$strip>, z.ZodObject<{
2952
+ costKind: z.ZodEnum<{
2953
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2954
+ RelativePricePercentage: "RelativePricePercentage";
2955
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2956
+ }>;
2957
+ amount: z.ZodNumber;
2958
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2959
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2960
+ }, z.core.$strip>], null>, z.ZodTuple<[z.ZodObject<{
2961
+ costKind: z.ZodEnum<{
2962
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2963
+ RelativePricePercentage: "RelativePricePercentage";
2964
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2965
+ }>;
2966
+ amount: z.ZodNumber;
2967
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2968
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2969
+ }, z.core.$strip>, z.ZodObject<{
2970
+ costKind: z.ZodEnum<{
2971
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2972
+ RelativePricePercentage: "RelativePricePercentage";
2973
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2974
+ }>;
2975
+ amount: z.ZodNumber;
2976
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2977
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2978
+ }, z.core.$strip>, z.ZodObject<{
2979
+ costKind: z.ZodEnum<{
2980
+ CarbonDioxideEmission: "CarbonDioxideEmission";
2981
+ RelativePricePercentage: "RelativePricePercentage";
2982
+ RenewableGenerationPercentage: "RenewableGenerationPercentage";
2983
+ }>;
2984
+ amount: z.ZodNumber;
2985
+ amountMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2986
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2987
+ }, z.core.$strip>], null>]>;
2988
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2989
+ }, z.core.$strip>], null>]>>>;
2990
+ customData: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
2991
+ }, z.core.$strip>>;
2992
+ tenantId: z.ZodOptional<z.ZodNumber>;
2993
+ numEPriceLevels: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2994
+ salesTariffDescription: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2995
+ chargingScheduleDatabaseId: z.ZodNumber;
2996
+ }, z.core.$strip>;
2997
+ };