e00302acb8c197bbc6f6d1771c4ffbaf8141c917
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Responses.ts
1 import type { OCPP16MeterValuesResponse } from './1.6/MeterValues.js';
2 import {
3 OCPP16AvailabilityStatus,
4 type OCPP16BootNotificationResponse,
5 OCPP16ChargingProfileStatus,
6 OCPP16ClearChargingProfileStatus,
7 OCPP16ConfigurationStatus,
8 type OCPP16DataTransferResponse,
9 OCPP16DataTransferStatus,
10 type OCPP16DiagnosticsStatusNotificationResponse,
11 type OCPP16FirmwareStatusNotificationResponse,
12 type OCPP16HeartbeatResponse,
13 OCPP16ReservationStatus,
14 type OCPP16StatusNotificationResponse,
15 OCPP16TriggerMessageStatus,
16 OCPP16UnlockStatus,
17 } from './1.6/Responses.js';
18 import type { OCPP20BootNotificationResponse, OCPP20ClearCacheResponse } from './2.0/Responses.js';
19 import { type GenericResponse, GenericStatus } from './Common.js';
20 import type { ErrorType } from './ErrorType.js';
21 import type { MessageType } from './MessageType.js';
22 import type { ChargingStation } from '../../charging-station/index.js';
23 import type { JsonType } from '../JsonType.js';
24
25 export type Response = [MessageType.CALL_RESULT_MESSAGE, string, JsonType];
26
27 export type ErrorResponse = [MessageType.CALL_ERROR_MESSAGE, string, ErrorType, string, JsonType];
28
29 export type ResponseHandler = (
30 chargingStation: ChargingStation,
31 payload: JsonType,
32 requestPayload?: JsonType,
33 ) => void | Promise<void>;
34
35 export type BootNotificationResponse =
36 | OCPP16BootNotificationResponse
37 | OCPP20BootNotificationResponse;
38
39 export type HeartbeatResponse = OCPP16HeartbeatResponse;
40
41 export type ClearCacheResponse = GenericResponse | OCPP20ClearCacheResponse;
42
43 export type StatusNotificationResponse = OCPP16StatusNotificationResponse;
44
45 export type MeterValuesResponse = OCPP16MeterValuesResponse;
46
47 export type DataTransferResponse = OCPP16DataTransferResponse;
48
49 export type DiagnosticsStatusNotificationResponse = OCPP16DiagnosticsStatusNotificationResponse;
50
51 export type FirmwareStatusNotificationResponse = OCPP16FirmwareStatusNotificationResponse;
52
53 export const AvailabilityStatus = {
54 ...OCPP16AvailabilityStatus,
55 } as const;
56 export type AvailabilityStatus = OCPP16AvailabilityStatus;
57
58 export const ChargingProfileStatus = {
59 ...OCPP16ChargingProfileStatus,
60 } as const;
61 export type ChargingProfileStatus = OCPP16ChargingProfileStatus;
62
63 export const ClearChargingProfileStatus = {
64 ...OCPP16ClearChargingProfileStatus,
65 } as const;
66 export type ClearChargingProfileStatus = OCPP16ClearChargingProfileStatus;
67
68 export const ConfigurationStatus = {
69 ...OCPP16ConfigurationStatus,
70 } as const;
71 export type ConfigurationStatus = OCPP16ConfigurationStatus;
72
73 export const UnlockStatus = {
74 ...OCPP16UnlockStatus,
75 } as const;
76 export type UnlockStatus = OCPP16UnlockStatus;
77
78 export const TriggerMessageStatus = {
79 ...OCPP16TriggerMessageStatus,
80 } as const;
81 export type TriggerMessageStatus = OCPP16TriggerMessageStatus;
82
83 export const DataTransferStatus = {
84 ...OCPP16DataTransferStatus,
85 } as const;
86 export type DataTransferStatus = OCPP16DataTransferStatus;
87
88 export type ReservationStatus = OCPP16ReservationStatus;
89 export const ReservationStatus = {
90 ...OCPP16ReservationStatus,
91 } as const;
92
93 export type CancelReservationStatus = GenericStatus;
94 export const CancelReservationStatus = {
95 ...GenericStatus,
96 } as const;
97
98 export type CancelReservationResponse = GenericResponse;