X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2FTransaction.ts;h=3dd499c992697fa53da594c9ab3fcb2dcc8d6c98;hb=85c603dabe1b0415dfa956baec73f34267093cf0;hp=83764a21f73e9eb4b8187ccc9fd46eaf50f3e4b1;hpb=7e3926cc4cda3fa4db175501b239cb3d8c575d4f;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/Transaction.ts b/src/types/ocpp/Transaction.ts index 83764a21..3dd499c9 100644 --- a/src/types/ocpp/Transaction.ts +++ b/src/types/ocpp/Transaction.ts @@ -1,4 +1,13 @@ -import { OCPP16AuthorizationStatus, OCPP16AuthorizeResponse, OCPP16StartTransactionResponse, OCPP16StopTransactionReason, OCPP16StopTransactionResponse } from './1.6/Transaction'; +import { + OCPP16AuthorizationStatus, + OCPP16AuthorizeRequest, + OCPP16AuthorizeResponse, + OCPP16StartTransactionRequest, + OCPP16StartTransactionResponse, + OCPP16StopTransactionReason, + OCPP16StopTransactionRequest, + OCPP16StopTransactionResponse, +} from './1.6/Transaction'; export type AuthorizationStatus = OCPP16AuthorizationStatus; @@ -6,6 +15,8 @@ export const AuthorizationStatus = { ...OCPP16AuthorizationStatus, }; +export type AuthorizeRequest = OCPP16AuthorizeRequest; + export type AuthorizeResponse = OCPP16AuthorizeResponse; export type StopTransactionReason = OCPP16StopTransactionReason; @@ -14,6 +25,10 @@ export const StopTransactionReason = { ...OCPP16StopTransactionReason, }; +export type StartTransactionRequest = OCPP16StartTransactionRequest; + export type StartTransactionResponse = OCPP16StartTransactionResponse; +export type StopTransactionRequest = OCPP16StopTransactionRequest; + export type StopTransactionResponse = OCPP16StopTransactionResponse;