X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=inline;f=src%2Ftypes%2FChargingStationTemplate.ts;h=0286663bc486954cd99ee4f5a002ccf7486f548d;hb=12fc74d6921babe7a275788b022165b751d6a8ce;hp=c855f5f89738b0c42d6acf465cacaad1a875a341;hpb=734d790d9983a43c20f9ffa728f18825625e8119;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ChargingStationTemplate.ts b/src/types/ChargingStationTemplate.ts index c855f5f8..0286663b 100644 --- a/src/types/ChargingStationTemplate.ts +++ b/src/types/ChargingStationTemplate.ts @@ -1,4 +1,6 @@ import ChargingStationConfiguration from './ChargingStationConfiguration'; +import { ClientOptions } from 'ws'; +import { ClientRequestArgs } from 'http'; import { ConnectorStatus } from './Connectors'; import { OCPPProtocol } from './ocpp/OCPPProtocol'; import { OCPPVersion } from './ocpp/OCPPVersion'; @@ -34,10 +36,13 @@ export interface AutomaticTransactionGenerator { export default interface ChargingStationTemplate { supervisionURL?: string; + supervisionURLOCPPConfiguration?: boolean; + supervisionURLOCPPKey?: string; supervisionUser?: string; supervisionPassword?: string; ocppVersion?: OCPPVersion; ocppProtocol?: OCPPProtocol; + wsOptions?: ClientOptions & ClientRequestArgs; authorizationFile?: string; baseName: string; nameSuffix?: string;