refactor(ci): cleanup GH actions
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Requests.ts
... / ...
CommitLineData
1import type { ChargingStation } from '../../charging-station/index.js'
2import type { OCPPError } from '../../exception/index.js'
3import type { JsonType } from '../JsonType.js'
4import { OCPP16DiagnosticsStatus } from './1.6/DiagnosticsStatus.js'
5import type { OCPP16MeterValuesRequest } from './1.6/MeterValues.js'
6import {
7 OCPP16AvailabilityType,
8 type OCPP16BootNotificationRequest,
9 type OCPP16CancelReservationRequest,
10 type OCPP16DataTransferRequest,
11 type OCPP16DiagnosticsStatusNotificationRequest,
12 OCPP16FirmwareStatus,
13 type OCPP16FirmwareStatusNotificationRequest,
14 type OCPP16HeartbeatRequest,
15 OCPP16IncomingRequestCommand,
16 OCPP16MessageTrigger,
17 OCPP16RequestCommand,
18 type OCPP16ReserveNowRequest,
19 type OCPP16StatusNotificationRequest
20} from './1.6/Requests.js'
21import { OperationalStatusEnumType } from './2.0/Common.js'
22import {
23 type OCPP20BootNotificationRequest,
24 OCPP20IncomingRequestCommand,
25 OCPP20RequestCommand,
26 type OCPP20StatusNotificationRequest
27} from './2.0/Requests.js'
28import type { MessageType } from './MessageType.js'
29
30export const RequestCommand = {
31 ...OCPP16RequestCommand,
32 ...OCPP20RequestCommand
33} as const
34// eslint-disable-next-line @typescript-eslint/no-redeclare
35export type RequestCommand = OCPP16RequestCommand | OCPP20RequestCommand
36
37export type OutgoingRequest = [MessageType.CALL_MESSAGE, string, RequestCommand, JsonType]
38
39export interface RequestParams {
40 skipBufferingOnError?: boolean
41 triggerMessage?: boolean
42 throwError?: boolean
43}
44
45export const IncomingRequestCommand = {
46 ...OCPP16IncomingRequestCommand,
47 ...OCPP20IncomingRequestCommand
48} as const
49// eslint-disable-next-line @typescript-eslint/no-redeclare
50export type IncomingRequestCommand = OCPP16IncomingRequestCommand | OCPP20IncomingRequestCommand
51
52export type IncomingRequest = [MessageType.CALL_MESSAGE, string, IncomingRequestCommand, JsonType]
53
54export type IncomingRequestHandler = (
55 chargingStation: ChargingStation,
56 commandPayload: JsonType
57) => JsonType | Promise<JsonType>
58
59export type ResponseCallback = (payload: JsonType, requestPayload: JsonType) => void
60
61export type ErrorCallback = (ocppError: OCPPError, requestStatistic?: boolean) => void
62
63export type CachedRequest = [
64 ResponseCallback,
65 ErrorCallback,
66 RequestCommand | IncomingRequestCommand,
67 JsonType
68]
69
70export const MessageTrigger = {
71 ...OCPP16MessageTrigger
72} as const
73// eslint-disable-next-line @typescript-eslint/no-redeclare
74export type MessageTrigger = OCPP16MessageTrigger
75
76export type BootNotificationRequest = OCPP16BootNotificationRequest | OCPP20BootNotificationRequest
77
78export type HeartbeatRequest = OCPP16HeartbeatRequest
79
80export type StatusNotificationRequest =
81 | OCPP16StatusNotificationRequest
82 | OCPP20StatusNotificationRequest
83
84export type MeterValuesRequest = OCPP16MeterValuesRequest
85
86export type DataTransferRequest = OCPP16DataTransferRequest
87
88export type DiagnosticsStatusNotificationRequest = OCPP16DiagnosticsStatusNotificationRequest
89
90export type FirmwareStatusNotificationRequest = OCPP16FirmwareStatusNotificationRequest
91
92export const AvailabilityType = {
93 ...OCPP16AvailabilityType,
94 ...OperationalStatusEnumType
95} as const
96// eslint-disable-next-line @typescript-eslint/no-redeclare
97export type AvailabilityType = OCPP16AvailabilityType | OperationalStatusEnumType
98
99export const DiagnosticsStatus = {
100 ...OCPP16DiagnosticsStatus
101} as const
102// eslint-disable-next-line @typescript-eslint/no-redeclare
103export type DiagnosticsStatus = OCPP16DiagnosticsStatus
104
105export const FirmwareStatus = {
106 ...OCPP16FirmwareStatus
107} as const
108// eslint-disable-next-line @typescript-eslint/no-redeclare
109export type FirmwareStatus = OCPP16FirmwareStatus
110
111export type ResponseType = JsonType | OCPPError
112
113export type ReserveNowRequest = OCPP16ReserveNowRequest
114
115export type CancelReservationRequest = OCPP16CancelReservationRequest