fix: fix chalk invocation in configuration file handling code
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Responses.ts
index c61b5463469bd059c9280e8cf9629a052d3a8794..24b8b848bebe9656660c4c884af6faf5a75df932 100644 (file)
@@ -21,7 +21,7 @@ import type {
 } from './2.0/Responses';
 import type { ErrorType } from './ErrorType';
 import type { MessageType } from './MessageType';
-import type { ChargingStation } from '../../charging-station/ChargingStation';
+import type { ChargingStation } from '../../charging-station';
 import type { JsonType } from '../JsonType';
 
 export type Response = [MessageType.CALL_RESULT_MESSAGE, string, JsonType];
@@ -55,8 +55,8 @@ export type DiagnosticsStatusNotificationResponse = OCPP16DiagnosticsStatusNotif
 export type FirmwareStatusNotificationResponse = OCPP16FirmwareStatusNotificationResponse;
 
 export enum GenericStatus {
-  ACCEPTED = 'Accepted',
-  REJECTED = 'Rejected',
+  Accepted = 'Accepted',
+  Rejected = 'Rejected',
 }
 
 export type GenericResponse = {