build: switch to NodeNext module resolution
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Transaction.ts
CommitLineData
e7aeea18
JB
1import {
2 OCPP16AuthorizationStatus,
edd13439
JB
3 type OCPP16AuthorizeRequest,
4 type OCPP16AuthorizeResponse,
5 type OCPP16StartTransactionRequest,
6 type OCPP16StartTransactionResponse,
e7aeea18 7 OCPP16StopTransactionReason,
edd13439
JB
8 type OCPP16StopTransactionRequest,
9 type OCPP16StopTransactionResponse,
a6ef1ece 10} from './1.6/Transaction.js';
c0560973 11
c0560973
JB
12export const AuthorizationStatus = {
13 ...OCPP16AuthorizationStatus,
edd13439
JB
14} as const;
15export type AuthorizationStatus = OCPP16AuthorizationStatus;
c0560973 16
ef6fa3fb
JB
17export type AuthorizeRequest = OCPP16AuthorizeRequest;
18
c0560973
JB
19export type AuthorizeResponse = OCPP16AuthorizeResponse;
20
c0560973
JB
21export const StopTransactionReason = {
22 ...OCPP16StopTransactionReason,
edd13439
JB
23} as const;
24export type StopTransactionReason = OCPP16StopTransactionReason;
c0560973 25
ef6fa3fb
JB
26export type StartTransactionRequest = OCPP16StartTransactionRequest;
27
c0560973
JB
28export type StartTransactionResponse = OCPP16StartTransactionResponse;
29
ef6fa3fb
JB
30export type StopTransactionRequest = OCPP16StopTransactionRequest;
31
c0560973 32export type StopTransactionResponse = OCPP16StopTransactionResponse;