X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftypes%2Focpp%2FRequests.ts;h=9934f1671292158bb5d4f3d47d03f95f3e7c361a;hb=8eb3b688c4b6fb3e946f38d474a5125caf1d056a;hp=052bfc6bc044e41bf8e6e8a7f1d8e78f24983db1;hpb=83e00df1c1ba02de8b637ca4cb0464eb909ebb18;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/Requests.ts b/src/types/ocpp/Requests.ts index 052bfc6b..9934f167 100644 --- a/src/types/ocpp/Requests.ts +++ b/src/types/ocpp/Requests.ts @@ -8,6 +8,7 @@ import { OCPP16BootNotificationRequest, OCPP16HeartbeatRequest, OCPP16IncomingRequestCommand, + OCPP16MessageTrigger, OCPP16RequestCommand, OCPP16StatusNotificationRequest, } from './1.6/Requests'; @@ -41,6 +42,12 @@ export type CachedRequest = [ JsonType ]; +export type MessageTrigger = OCPP16MessageTrigger; + +export const MessageTrigger = { + ...OCPP16MessageTrigger, +}; + export type BootNotificationRequest = OCPP16BootNotificationRequest; export type HeartbeatRequest = OCPP16HeartbeatRequest;