X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftypes%2Focpp%2F2.0%2FRequests.ts;h=f075e642f7284f657398f5e3a7a46b0ab7f565db;hb=738acbf767e776699e06239a63cb35558018fcc0;hp=407fdfe4482bb1e9cb5b157bfe1e6b3523af0a60;hpb=6415403ce9894b9a1d7d5d5f698483e58463370f;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/2.0/Requests.ts b/src/types/ocpp/2.0/Requests.ts index 407fdfe4..f075e642 100644 --- a/src/types/ocpp/2.0/Requests.ts +++ b/src/types/ocpp/2.0/Requests.ts @@ -1,63 +1,58 @@ -import type { EmptyObject } from '../../EmptyObject'; -import type { JsonObject } from '../../JsonType'; +import type { EmptyObject } from '../../EmptyObject.js' +import type { JsonObject } from '../../JsonType.js' +import type { + BootReasonEnumType, + InstallCertificateUseEnumType, + OCPP20ConnectorStatusEnumType +} from './Common.js' +import type { OCPP20SetVariableDataType } from './Variables.js' export enum OCPP20RequestCommand { BOOT_NOTIFICATION = 'BootNotification', HEARTBEAT = 'Heartbeat', - STATUS_NOTIFICATION = 'StatusNotification', + STATUS_NOTIFICATION = 'StatusNotification' } export enum OCPP20IncomingRequestCommand { CLEAR_CACHE = 'ClearCache', REQUEST_START_TRANSACTION = 'RequestStartTransaction', - REQUEST_STOP_TRANSACTION = 'RequestStopTransaction', -} - -export enum BootReasonEnumType { - ApplicationReset = 'ApplicationReset', - FirmwareUpdate = 'FirmwareUpdate', - LocalReset = 'LocalReset', - PowerUp = 'PowerUp', - RemoteReset = 'RemoteReset', - ScheduledReset = 'ScheduledReset', - Triggered = 'Triggered', - Unknown = 'Unknown', - Watchdog = 'Watchdog', -} - -export type ModemType = { - iccid?: string; - imsi?: string; -} & JsonObject; - -export type ChargingStationType = { - serialNumber?: string; - model: string; - vendorName: string; - firmwareVersion?: string; - modem?: ModemType; -} & JsonObject; - -export type OCPP20BootNotificationRequest = { - reason: BootReasonEnumType; - chargingStation: ChargingStationType; -} & JsonObject; - -export type OCPP20HeartbeatRequest = EmptyObject; - -export type OCPP20ClearCacheRequest = EmptyObject; - -export enum OCPP20ConnectorStatusEnumType { - AVAILABLE = 'Available', - OCCUPIED = 'Occupied', - RESERVED = 'Reserved', - UNAVAILABLE = 'Unavailable', - FAULTED = 'Faulted', -} - -export type OCPP20StatusNotificationRequest = { - timestamp: Date; - connectorStatus: OCPP20ConnectorStatusEnumType; - evseId: number; - connectorId: number; -} & JsonObject; + REQUEST_STOP_TRANSACTION = 'RequestStopTransaction' +} + +interface ModemType extends JsonObject { + iccid?: string + imsi?: string +} + +interface ChargingStationType extends JsonObject { + serialNumber?: string + model: string + vendorName: string + firmwareVersion?: string + modem?: ModemType +} + +export interface OCPP20BootNotificationRequest extends JsonObject { + reason: BootReasonEnumType + chargingStation: ChargingStationType +} + +export type OCPP20HeartbeatRequest = EmptyObject + +export type OCPP20ClearCacheRequest = EmptyObject + +export interface OCPP20StatusNotificationRequest extends JsonObject { + timestamp: Date + connectorStatus: OCPP20ConnectorStatusEnumType + evseId: number + connectorId: number +} + +export interface OCPP20SetVariablesRequest extends JsonObject { + setVariableData: OCPP20SetVariableDataType[] +} + +export interface OCPP20InstallCertificateRequest extends JsonObject { + certificateType: InstallCertificateUseEnumType + certificate: string +}