X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2FResponses.ts;h=8107e274416d749b64c5bd8f70c4ab29517dd25b;hb=041365be4e6cfcec381c895a203815dd933afff5;hp=ae6ae45d67d6404b9ac9f6153d8af8550d438191;hpb=2896e06dc8d72adf7150b23c941079f622f6f37c;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/Responses.ts b/src/types/ocpp/Responses.ts index ae6ae45d..8107e274 100644 --- a/src/types/ocpp/Responses.ts +++ b/src/types/ocpp/Responses.ts @@ -1,8 +1,5 @@ -import type { ChargingStation } from '../../charging-station'; +import type { OCPP16MeterValuesResponse } from './1.6/MeterValues'; import { - type ErrorType, - type JsonType, - type MessageType, OCPP16AvailabilityStatus, type OCPP16BootNotificationResponse, OCPP16ChargingProfileStatus, @@ -13,14 +10,17 @@ import { type OCPP16DiagnosticsStatusNotificationResponse, type OCPP16FirmwareStatusNotificationResponse, type OCPP16HeartbeatResponse, - type OCPP16MeterValuesResponse, + OCPP16ReservationStatus, type OCPP16StatusNotificationResponse, OCPP16TriggerMessageStatus, OCPP16UnlockStatus, - type OCPP20BootNotificationResponse, - type OCPP20ClearCacheResponse, - type OCPP20StatusNotificationResponse, -} from '../internal'; +} from './1.6/Responses'; +import type { OCPP20BootNotificationResponse, OCPP20ClearCacheResponse } from './2.0/Responses'; +import { type GenericResponse, GenericStatus } from './Common'; +import type { ErrorType } from './ErrorType'; +import type { MessageType } from './MessageType'; +import type { ChargingStation } from '../../charging-station'; +import type { JsonType } from '../JsonType'; export type Response = [MessageType.CALL_RESULT_MESSAGE, string, JsonType]; @@ -29,7 +29,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 = @@ -40,9 +40,7 @@ export type HeartbeatResponse = OCPP16HeartbeatResponse; export type ClearCacheResponse = GenericResponse | OCPP20ClearCacheResponse; -export type StatusNotificationResponse = - | OCPP16StatusNotificationResponse - | OCPP20StatusNotificationResponse; +export type StatusNotificationResponse = OCPP16StatusNotificationResponse; export type MeterValuesResponse = OCPP16MeterValuesResponse; @@ -52,21 +50,6 @@ export type DiagnosticsStatusNotificationResponse = OCPP16DiagnosticsStatusNotif export type FirmwareStatusNotificationResponse = OCPP16FirmwareStatusNotificationResponse; -export enum GenericStatus { - ACCEPTED = 'Accepted', - REJECTED = 'Rejected', -} - -export type GenericResponse = { - status: GenericStatus; -}; - -export enum RegistrationStatusEnumType { - ACCEPTED = 'Accepted', - PENDING = 'Pending', - REJECTED = 'Rejected', -} - export const AvailabilityStatus = { ...OCPP16AvailabilityStatus, } as const; @@ -101,3 +84,15 @@ export const DataTransferStatus = { ...OCPP16DataTransferStatus, } as const; export type DataTransferStatus = OCPP16DataTransferStatus; + +export type ReservationStatus = OCPP16ReservationStatus; +export const ReservationStatus = { + ...OCPP16ReservationStatus, +} as const; + +export type CancelReservationStatus = GenericStatus; +export const CancelReservationStatus = { + ...GenericStatus, +} as const; + +export type CancelReservationResponse = GenericResponse;