X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2FResponses.ts;h=2cd2f36902e49a6bd130d22a86fc7d53b424fcaa;hb=e1d9a0f4d6ff1a90048e9a694fd12b7031cc6961;hp=8735dc8ae10f2cf72362fe0ee9388a773794a9c2;hpb=6e3d9d04815abfe85d31735fc38bdf0253d85026;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/Responses.ts b/src/types/ocpp/Responses.ts index 8735dc8a..2cd2f369 100644 --- a/src/types/ocpp/Responses.ts +++ b/src/types/ocpp/Responses.ts @@ -2,7 +2,6 @@ import type { OCPP16MeterValuesResponse } from './1.6/MeterValues'; import { OCPP16AvailabilityStatus, type OCPP16BootNotificationResponse, - type OCPP16CancelReservationResponse, OCPP16ChargingProfileStatus, OCPP16ClearChargingProfileStatus, OCPP16ConfigurationStatus, @@ -16,15 +15,11 @@ import { OCPP16TriggerMessageStatus, OCPP16UnlockStatus, } from './1.6/Responses'; -import type { - OCPP20BootNotificationResponse, - OCPP20ClearCacheResponse, - OCPP20StatusNotificationResponse, -} from './2.0/Responses'; +import type { OCPP20BootNotificationResponse, OCPP20ClearCacheResponse } from './2.0/Responses'; import type { ErrorType } from './ErrorType'; import type { MessageType } from './MessageType'; import type { ChargingStation } from '../../charging-station'; -import type { JsonType } from '../JsonType'; +import type { JsonObject, JsonType } from '../JsonType'; export type Response = [MessageType.CALL_RESULT_MESSAGE, string, JsonType]; @@ -33,7 +28,7 @@ export type ErrorResponse = [MessageType.CALL_ERROR_MESSAGE, string, ErrorType, export type ResponseHandler = ( chargingStation: ChargingStation, payload: JsonType, - requestPayload?: JsonType + requestPayload?: JsonType, ) => void | Promise; export type BootNotificationResponse = @@ -44,9 +39,7 @@ export type HeartbeatResponse = OCPP16HeartbeatResponse; export type ClearCacheResponse = GenericResponse | OCPP20ClearCacheResponse; -export type StatusNotificationResponse = - | OCPP16StatusNotificationResponse - | OCPP20StatusNotificationResponse; +export type StatusNotificationResponse = OCPP16StatusNotificationResponse; export type MeterValuesResponse = OCPP16MeterValuesResponse; @@ -61,9 +54,9 @@ export enum GenericStatus { Rejected = 'Rejected', } -export type GenericResponse = { +export interface GenericResponse extends JsonObject { status: GenericStatus; -}; +} export enum RegistrationStatusEnumType { ACCEPTED = 'Accepted', @@ -111,8 +104,9 @@ export const ReservationStatus = { ...OCPP16ReservationStatus, }; +export type CancelReservationStatus = GenericStatus; export const CancelReservationStatus = { ...GenericStatus, }; -export type CancelReservationResponse = OCPP16CancelReservationResponse; +export type CancelReservationResponse = GenericResponse;