X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2F2.0%2FCommon.ts;h=01fed13b09aebd837c4f3475a1a32fbff821caff;hb=68220b423c52da387fdf41967dd8c738da0ff52e;hp=ba908562c87bb70b013bbb94e9436f0db133fd55;hpb=6b635033ddf255392ded26fd03fe1f128b15ad69;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/2.0/Common.ts b/src/types/ocpp/2.0/Common.ts index ba908562..01fed13b 100644 --- a/src/types/ocpp/2.0/Common.ts +++ b/src/types/ocpp/2.0/Common.ts @@ -1,12 +1,11 @@ -import type { GenericStatus, JsonObject } from '../../internal'; +import type { JsonObject } from '../../JsonType.js' +import type { GenericStatus } from '../Common.js' export enum DataEnumType { - // eslint-disable-next-line id-blacklist string = 'string', decimal = 'decimal', integer = 'integer', dateTime = 'dateTime', - // eslint-disable-next-line id-blacklist boolean = 'boolean', OptionList = 'OptionList', SequenceList = 'SequenceList', @@ -25,15 +24,20 @@ export enum BootReasonEnumType { Watchdog = 'Watchdog', } +export enum OperationalStatusEnumType { + Operative = 'Operative', + Inoperative = 'Inoperative', +} + export enum OCPP20ConnectorStatusEnumType { - AVAILABLE = 'Available', - OCCUPIED = 'Occupied', - RESERVED = 'Reserved', - UNAVAILABLE = 'Unavailable', - FAULTED = 'Faulted', + Available = 'Available', + Occupied = 'Occupied', + Reserved = 'Reserved', + Unavailable = 'Unavailable', + Faulted = 'Faulted', } -export type GenericStatusEnumType = GenericStatus; +export type GenericStatusEnumType = GenericStatus export enum HashAlgorithmEnumType { SHA256 = 'SHA256', @@ -88,35 +92,35 @@ export enum CertificateSigningUseEnumType { V2GCertificate = 'V2GCertificate', } -export type CertificateSignedStatusEnumType = GenericStatus; +export type CertificateSignedStatusEnumType = GenericStatusEnumType export type CertificateHashDataType = { - hashAlgorithm: HashAlgorithmEnumType; - issuerNameHash: string; - issuerKeyHash: string; - serialNumber: string; -} & JsonObject; + hashAlgorithm: HashAlgorithmEnumType + issuerNameHash: string + issuerKeyHash: string + serialNumber: string +} & JsonObject export type CertificateHashDataChainType = { - certificateType: GetCertificateIdUseEnumType; - certificateHashData: CertificateHashDataType; - childCertificateHashData?: CertificateHashDataType; -} & JsonObject; + certificateType: GetCertificateIdUseEnumType + certificateHashData: CertificateHashDataType + childCertificateHashData?: CertificateHashDataType +} & JsonObject export type OCSPRequestDataType = { - hashAlgorithm: HashAlgorithmEnumType; - issuerNameHash: string; - issuerKeyHash: string; - serialNumber: string; - responderURL: string; -} & JsonObject; + hashAlgorithm: HashAlgorithmEnumType + issuerNameHash: string + issuerKeyHash: string + serialNumber: string + responderURL: string +} & JsonObject export type StatusInfoType = { - reasonCode: string; - additionalInfo?: string; -} & JsonObject; + reasonCode: string + additionalInfo?: string +} & JsonObject export type EVSEType = { - id: number; - connectorId?: string; -} & JsonObject; + id: number + connectorId?: string +} & JsonObject