refactor: deprecate incorrect error type entry
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 22 Nov 2024 20:56:56 +0000 (21:56 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 22 Nov 2024 20:56:56 +0000 (21:56 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
src/types/ocpp/ErrorType.ts

index cbf6a19434f35e211e71ef38279c23267c7564b0..40a6e7353ac25979ca10bff45a06d1d8cb2b2440 100644 (file)
@@ -1,6 +1,7 @@
 export enum ErrorType {
   // Payload for Action is syntactically incorrect or not conform the PDU structure for Action
   FORMAT_VIOLATION = 'FormatViolation',
+  /** @deprecated use FORMAT_VIOLATION instead */
   FORMATION_VIOLATION = 'FormationViolation',
   // Any other error not covered by the other ones
   GENERIC_ERROR = 'GenericError',