X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2FResponses.ts;h=9983ee8a81b0721fb306d55cfb88dca15055ac57;hb=66a7748ddeda8c94d7562a1ce58d440319654a4c;hp=e00302acb8c197bbc6f6d1771c4ffbaf8141c917;hpb=f5a1ff8ce8f87a149791c2c98fe7c5e8a20b5392;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/Responses.ts b/src/types/ocpp/Responses.ts index e00302ac..9983ee8a 100644 --- a/src/types/ocpp/Responses.ts +++ b/src/types/ocpp/Responses.ts @@ -1,4 +1,4 @@ -import type { OCPP16MeterValuesResponse } from './1.6/MeterValues.js'; +import type { OCPP16MeterValuesResponse } from './1.6/MeterValues.js' import { OCPP16AvailabilityStatus, type OCPP16BootNotificationResponse, @@ -13,86 +13,95 @@ import { OCPP16ReservationStatus, type OCPP16StatusNotificationResponse, OCPP16TriggerMessageStatus, - OCPP16UnlockStatus, -} from './1.6/Responses.js'; -import type { OCPP20BootNotificationResponse, OCPP20ClearCacheResponse } from './2.0/Responses.js'; -import { type GenericResponse, GenericStatus } from './Common.js'; -import type { ErrorType } from './ErrorType.js'; -import type { MessageType } from './MessageType.js'; -import type { ChargingStation } from '../../charging-station/index.js'; -import type { JsonType } from '../JsonType.js'; + OCPP16UnlockStatus +} from './1.6/Responses.js' +import type { OCPP20BootNotificationResponse, OCPP20ClearCacheResponse } from './2.0/Responses.js' +import { type GenericResponse, GenericStatus } from './Common.js' +import type { ErrorType } from './ErrorType.js' +import type { MessageType } from './MessageType.js' +import type { ChargingStation } from '../../charging-station/index.js' +import type { JsonType } from '../JsonType.js' -export type Response = [MessageType.CALL_RESULT_MESSAGE, string, JsonType]; +export type Response = [MessageType.CALL_RESULT_MESSAGE, string, JsonType] -export type ErrorResponse = [MessageType.CALL_ERROR_MESSAGE, string, ErrorType, string, JsonType]; +export type ErrorResponse = [MessageType.CALL_ERROR_MESSAGE, string, ErrorType, string, JsonType] export type ResponseHandler = ( chargingStation: ChargingStation, payload: JsonType, - requestPayload?: JsonType, -) => void | Promise; + requestPayload?: JsonType +) => void | Promise export type BootNotificationResponse = | OCPP16BootNotificationResponse - | OCPP20BootNotificationResponse; + | OCPP20BootNotificationResponse -export type HeartbeatResponse = OCPP16HeartbeatResponse; +export type HeartbeatResponse = OCPP16HeartbeatResponse -export type ClearCacheResponse = GenericResponse | OCPP20ClearCacheResponse; +export type ClearCacheResponse = GenericResponse | OCPP20ClearCacheResponse -export type StatusNotificationResponse = OCPP16StatusNotificationResponse; +export type StatusNotificationResponse = OCPP16StatusNotificationResponse -export type MeterValuesResponse = OCPP16MeterValuesResponse; +export type MeterValuesResponse = OCPP16MeterValuesResponse -export type DataTransferResponse = OCPP16DataTransferResponse; +export type DataTransferResponse = OCPP16DataTransferResponse -export type DiagnosticsStatusNotificationResponse = OCPP16DiagnosticsStatusNotificationResponse; +export type DiagnosticsStatusNotificationResponse = OCPP16DiagnosticsStatusNotificationResponse -export type FirmwareStatusNotificationResponse = OCPP16FirmwareStatusNotificationResponse; +export type FirmwareStatusNotificationResponse = OCPP16FirmwareStatusNotificationResponse export const AvailabilityStatus = { - ...OCPP16AvailabilityStatus, -} as const; -export type AvailabilityStatus = OCPP16AvailabilityStatus; + ...OCPP16AvailabilityStatus +} as const +// eslint-disable-next-line @typescript-eslint/no-redeclare +export type AvailabilityStatus = OCPP16AvailabilityStatus export const ChargingProfileStatus = { - ...OCPP16ChargingProfileStatus, -} as const; -export type ChargingProfileStatus = OCPP16ChargingProfileStatus; + ...OCPP16ChargingProfileStatus +} as const +// eslint-disable-next-line @typescript-eslint/no-redeclare +export type ChargingProfileStatus = OCPP16ChargingProfileStatus export const ClearChargingProfileStatus = { - ...OCPP16ClearChargingProfileStatus, -} as const; -export type ClearChargingProfileStatus = OCPP16ClearChargingProfileStatus; + ...OCPP16ClearChargingProfileStatus +} as const +// eslint-disable-next-line @typescript-eslint/no-redeclare +export type ClearChargingProfileStatus = OCPP16ClearChargingProfileStatus export const ConfigurationStatus = { - ...OCPP16ConfigurationStatus, -} as const; -export type ConfigurationStatus = OCPP16ConfigurationStatus; + ...OCPP16ConfigurationStatus +} as const +// eslint-disable-next-line @typescript-eslint/no-redeclare +export type ConfigurationStatus = OCPP16ConfigurationStatus export const UnlockStatus = { - ...OCPP16UnlockStatus, -} as const; -export type UnlockStatus = OCPP16UnlockStatus; + ...OCPP16UnlockStatus +} as const +// eslint-disable-next-line @typescript-eslint/no-redeclare +export type UnlockStatus = OCPP16UnlockStatus export const TriggerMessageStatus = { - ...OCPP16TriggerMessageStatus, -} as const; -export type TriggerMessageStatus = OCPP16TriggerMessageStatus; + ...OCPP16TriggerMessageStatus +} as const +// eslint-disable-next-line @typescript-eslint/no-redeclare +export type TriggerMessageStatus = OCPP16TriggerMessageStatus export const DataTransferStatus = { - ...OCPP16DataTransferStatus, -} as const; -export type DataTransferStatus = OCPP16DataTransferStatus; + ...OCPP16DataTransferStatus +} as const +// eslint-disable-next-line @typescript-eslint/no-redeclare +export type DataTransferStatus = OCPP16DataTransferStatus -export type ReservationStatus = OCPP16ReservationStatus; +export type ReservationStatus = OCPP16ReservationStatus +// eslint-disable-next-line @typescript-eslint/no-redeclare export const ReservationStatus = { - ...OCPP16ReservationStatus, -} as const; + ...OCPP16ReservationStatus +} as const -export type CancelReservationStatus = GenericStatus; +export type CancelReservationStatus = GenericStatus +// eslint-disable-next-line @typescript-eslint/no-redeclare export const CancelReservationStatus = { - ...GenericStatus, -} as const; + ...GenericStatus +} as const -export type CancelReservationResponse = GenericResponse; +export type CancelReservationResponse = GenericResponse