Update dependencies
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Requests.ts
index 86838d221c636b6f98f59860f1c42b0ae552e2d7..d4388efe7c9c957aa3a1a4fe82374e608cea6881 100644 (file)
@@ -23,6 +23,10 @@ export const RequestCommand = {
 
 export type IncomingRequestCommand = OCPP16IncomingRequestCommand;
 
+export const IncomingRequestCommand = {
+  ...OCPP16IncomingRequestCommand
+};
+
 export type Request = [(payload?: Record<string, unknown>, requestPayload?: Record<string, unknown>) => void, (error?: OCPPError) => void, Record<string, unknown>];
 
 export type IncomingRequest = [MessageType, string, IncomingRequestCommand, Record<string, unknown>, Record<string, unknown>];