From: Jérôme Benoit Date: Sat, 14 Mar 2026 00:15:41 +0000 (+0100) Subject: docs: fix root README coherence with codebase X-Git-Tag: ocpp-server@v3.1.0~34 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=b4e2577a8894dcb3e636fe43cbdecab88ec2de48;p=e-mobility-charging-stations-simulator.git docs: fix root README coherence with codebase - Add missing NotifyCustomerInformation to OCPP 2.0.x section - Add undocumented station template fields (iccid, imsi, meterSerialNumberPrefix, meterType) - List all available OCPP command procedure names in UI Protocol section with separate OCPP 1.6 and 2.0.x lists - Update copyright year to 2026 in README and LICENSE --- diff --git a/LICENSE b/LICENSE index 7ff6307c..38c16ef4 100644 --- a/LICENSE +++ b/LICENSE @@ -187,7 +187,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020-2024 SAP SE or an SAP affiliate company + Copyright 2020-2026 SAP SE or an SAP affiliate company Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/README.md b/README.md index 3549a5bf..b13610e4 100644 --- a/README.md +++ b/README.md @@ -208,6 +208,8 @@ But the modifications to test have to be done to the files in the build target d | automaticTransactionGeneratorPersistentConfiguration | true/false | true | boolean | enable persistent automatic transaction generator configuration storage by charging stations 'hashId'. The persistency is ensured by the charging stations configuration files in [dist/assets/configurations](./dist/assets/configurations) | | wsOptions | | {} | ClientOptions & ClientRequestArgs | [ws](https://github.com/websockets/ws) and node.js [http](https://nodejs.org/api/http.html) clients options intersection | | idTagsFile | | undefined | string | RFID tags list file relative to [src/assets](./src/assets) path | +| iccid | | undefined | string | SIM card ICCID | +| imsi | | undefined | string | SIM card IMSI | | baseName | | undefined | string | base name to build charging stations id | | nameSuffix | | undefined | string | name suffix to build charging stations id | | fixedName | true/false | false | boolean | use the 'baseName' as the charging stations unique name | @@ -215,6 +217,8 @@ But the modifications to test have to be done to the files in the build target d | chargePointVendor | | undefined | string | charging stations vendor | | chargePointSerialNumberPrefix | | undefined | string | charge point serial number prefix | | chargeBoxSerialNumberPrefix | | undefined | string | charge box serial number prefix (deprecated since OCPP 1.6) | +| meterSerialNumberPrefix | | undefined | string | meter serial number prefix | +| meterType | | undefined | string | meter type | | firmwareVersionPattern | | Semantic versioning regular expression: https://semver.org/#is-there-a-suggested-regular-expression-regex-to-check-a-semver-string | string | charging stations firmware version pattern | | firmwareVersion | | undefined | string | charging stations firmware version | | power | | | float \| float[] | charging stations maximum power value(s) | @@ -564,6 +568,7 @@ make SUBMODULES_INIT=true #### N. CustomerInformation - :white_check_mark: CustomerInformation +- :white_check_mark: NotifyCustomerInformation #### P. DataTransfer @@ -913,6 +918,12 @@ Set the WebSocket header _Sec-WebSocket-Protocol_ to `ui0.0.1`. `responsesFailed`: failed responses payload array (optional) } +Available OCPP command procedure names: + +OCPP 1.6: `authorize`, `bootNotification`, `dataTransfer`, `diagnosticsStatusNotification`, `firmwareStatusNotification`, `heartbeat`, `meterValues`, `startTransaction`, `statusNotification`, `stopTransaction` + +OCPP 2.0.x: `bootNotification`, `firmwareStatusNotification`, `get15118EVCertificate`, `getCertificateStatus`, `heartbeat`, `logStatusNotification`, `meterValues`, `notifyCustomerInformation`, `notifyReport`, `securityEventNotification`, `signCertificate`, `statusNotification`, `transactionEvent` + Examples: - **Authorize** @@ -1011,4 +1022,4 @@ We as members, contributors, and leaders pledge to make participation in our com ## Licensing -Copyright 2020-2025 SAP SE or an SAP affiliate company and e-mobility-charging-stations-simulator contributors. Please see our [LICENSE](./LICENSE) for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available [via the REUSE tool](https://api.reuse.software/info/github.com/SAP/e-mobility-charging-stations-simulator). +Copyright 2020-2026 SAP SE or an SAP affiliate company and e-mobility-charging-stations-simulator contributors. Please see our [LICENSE](./LICENSE) for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available [via the REUSE tool](https://api.reuse.software/info/github.com/SAP/e-mobility-charging-stations-simulator).