X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2FResponses.ts;h=94dcd07cfa7598f4aec17ac148bf89840fec0782;hb=b1f1b0f6ea0a9a5da396e20083071857e40c538c;hp=2ddb98f2d107ad57ff6b0fcd87798254d2e9ae13;hpb=91a7d3eac062df6c73d8443a542568c1fe69ec1b;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/Responses.ts b/src/types/ocpp/Responses.ts index 2ddb98f2..94dcd07c 100644 --- a/src/types/ocpp/Responses.ts +++ b/src/types/ocpp/Responses.ts @@ -1,22 +1,29 @@ -import type ChargingStation from '../../charging-station/ChargingStation'; -import type { JsonType } from '../JsonType'; import type { OCPP16MeterValuesResponse } from './1.6/MeterValues'; import { OCPP16AvailabilityStatus, - OCPP16BootNotificationResponse, + type OCPP16BootNotificationResponse, OCPP16ChargingProfileStatus, OCPP16ClearChargingProfileStatus, OCPP16ConfigurationStatus, - OCPP16DataTransferResponse, + type OCPP16DataTransferResponse, OCPP16DataTransferStatus, - OCPP16HeartbeatResponse, - OCPP16RegistrationStatus, - OCPP16StatusNotificationResponse, + type OCPP16DiagnosticsStatusNotificationResponse, + type OCPP16FirmwareStatusNotificationResponse, + type OCPP16HeartbeatResponse, + OCPP16ReservationStatus, + type OCPP16StatusNotificationResponse, OCPP16TriggerMessageStatus, OCPP16UnlockStatus, } from './1.6/Responses'; +import type { + OCPP20BootNotificationResponse, + OCPP20ClearCacheResponse, + OCPP20StatusNotificationResponse, +} 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'; export type Response = [MessageType.CALL_RESULT_MESSAGE, string, JsonType]; @@ -28,69 +35,84 @@ export type ResponseHandler = ( requestPayload?: JsonType ) => void | Promise; -export type BootNotificationResponse = OCPP16BootNotificationResponse; +export type BootNotificationResponse = + | OCPP16BootNotificationResponse + | OCPP20BootNotificationResponse; export type HeartbeatResponse = OCPP16HeartbeatResponse; -export type StatusNotificationResponse = OCPP16StatusNotificationResponse; +export type ClearCacheResponse = GenericResponse | OCPP20ClearCacheResponse; + +export type StatusNotificationResponse = + | OCPP16StatusNotificationResponse + | OCPP20StatusNotificationResponse; export type MeterValuesResponse = OCPP16MeterValuesResponse; export type DataTransferResponse = OCPP16DataTransferResponse; -export enum DefaultStatus { - ACCEPTED = 'Accepted', - REJECTED = 'Rejected', -} +export type DiagnosticsStatusNotificationResponse = OCPP16DiagnosticsStatusNotificationResponse; -export type DefaultResponse = { - status: DefaultStatus; -}; +export type FirmwareStatusNotificationResponse = OCPP16FirmwareStatusNotificationResponse; -export type RegistrationStatus = OCPP16RegistrationStatus; +export enum GenericStatus { + Accepted = 'Accepted', + Rejected = 'Rejected', +} -export const RegistrationStatus = { - ...OCPP16RegistrationStatus, +export type GenericResponse = { + status: GenericStatus; }; -export type AvailabilityStatus = OCPP16AvailabilityStatus; +export enum RegistrationStatusEnumType { + ACCEPTED = 'Accepted', + PENDING = 'Pending', + REJECTED = 'Rejected', +} export const AvailabilityStatus = { ...OCPP16AvailabilityStatus, -}; - -export type ChargingProfileStatus = OCPP16ChargingProfileStatus; +} as const; +export type AvailabilityStatus = OCPP16AvailabilityStatus; export const ChargingProfileStatus = { ...OCPP16ChargingProfileStatus, -}; - -export type ClearChargingProfileStatus = OCPP16ClearChargingProfileStatus; +} as const; +export type ChargingProfileStatus = OCPP16ChargingProfileStatus; export const ClearChargingProfileStatus = { ...OCPP16ClearChargingProfileStatus, -}; - -export type ConfigurationStatus = OCPP16ConfigurationStatus; +} as const; +export type ClearChargingProfileStatus = OCPP16ClearChargingProfileStatus; export const ConfigurationStatus = { ...OCPP16ConfigurationStatus, -}; - -export type UnlockStatus = OCPP16UnlockStatus; +} as const; +export type ConfigurationStatus = OCPP16ConfigurationStatus; export const UnlockStatus = { ...OCPP16UnlockStatus, -}; - -export type TriggerMessageStatus = OCPP16TriggerMessageStatus; +} as const; +export type UnlockStatus = OCPP16UnlockStatus; export const TriggerMessageStatus = { ...OCPP16TriggerMessageStatus, -}; - -export type DataTransferStatus = OCPP16DataTransferStatus; +} as const; +export type TriggerMessageStatus = OCPP16TriggerMessageStatus; export const DataTransferStatus = { ...OCPP16DataTransferStatus, +} as const; +export type DataTransferStatus = OCPP16DataTransferStatus; + +export type ReservationStatus = OCPP16ReservationStatus; +export const ReservationStatus = { + ...OCPP16ReservationStatus, }; + +export type CancelReservationStatus = GenericStatus; +export const CancelReservationStatus = { + ...GenericStatus, +}; + +export type CancelReservationResponse = GenericResponse;