docs: refine README.md
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / 2.0 / Requests.ts
index d584c8289ad88db7e3d79ad56b95610062b15f99..f075e642f7284f657398f5e3a7a46b0ab7f565db 100644 (file)
@@ -1,58 +1,58 @@
+import type { EmptyObject } from '../../EmptyObject.js'
+import type { JsonObject } from '../../JsonType.js'
 import type {
   BootReasonEnumType,
-  EmptyObject,
   InstallCertificateUseEnumType,
-  JsonObject,
-  OCPP20ConnectorStatusEnumType,
-  OCPP20SetVariableDataType,
-} from '../../internal';
+  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',
-}
-
-type ModemType = {
-  iccid?: string;
-  imsi?: string;
-} & JsonObject;
-
-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 type OCPP20StatusNotificationRequest = {
-  timestamp: Date;
-  connectorStatus: OCPP20ConnectorStatusEnumType;
-  evseId: number;
-  connectorId: number;
-} & JsonObject;
-
-export type OCPP20SetVariablesRequest = {
-  setVariableData: OCPP20SetVariableDataType[];
-} & JsonObject;
-
-export type OCPP20InstallCertificateRequest = {
-  certificateType: InstallCertificateUseEnumType;
-  certificate: string;
-} & 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
+}