X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2FRequests.ts;h=a2407476fd90d24eb6d971afd66ff664390c1e50;hb=974efe6c9928aabb0d9356c19342d0fa432f3cc1;hp=9ca43da713e29ad1112b074ab1dd78dc49e6f123;hpb=6e3d9d04815abfe85d31735fc38bdf0253d85026;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/Requests.ts b/src/types/ocpp/Requests.ts index 9ca43da7..a2407476 100644 --- a/src/types/ocpp/Requests.ts +++ b/src/types/ocpp/Requests.ts @@ -35,11 +35,11 @@ export type RequestCommand = OCPP16RequestCommand | OCPP20RequestCommand; export type OutgoingRequest = [MessageType.CALL_MESSAGE, string, RequestCommand, JsonType]; -export type RequestParams = { +export interface RequestParams { skipBufferingOnError?: boolean; triggerMessage?: boolean; throwError?: boolean; -}; +} export const IncomingRequestCommand = { ...OCPP16IncomingRequestCommand, @@ -57,7 +57,7 @@ export type CachedRequest = [ ResponseCallback, ErrorCallback, RequestCommand | IncomingRequestCommand, - JsonType + JsonType, ]; export const MessageTrigger = { @@ -83,7 +83,7 @@ export type FirmwareStatusNotificationRequest = OCPP16FirmwareStatusNotification export type IncomingRequestHandler = ( chargingStation: ChargingStation, - commandPayload: JsonType + commandPayload: JsonType, ) => JsonType | Promise; export const AvailabilityType = {