X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FChargingStationConfiguration.ts;h=095090381a578e894bf87ef219ac5646684acb87;hb=93f0c2c87ceeb26d4925bee5708ea8156f4b335f;hp=fca2ec4a7ae2e2a21f516fea8a811275fd008510;hpb=8bbe7426a07c159108c9cb1f69d3fe6b5cef5fe9;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ChargingStationConfiguration.ts b/src/types/ChargingStationConfiguration.ts index fca2ec4a..09509038 100644 --- a/src/types/ChargingStationConfiguration.ts +++ b/src/types/ChargingStationConfiguration.ts @@ -1,10 +1,11 @@ -import { OCPPConfigurationKey } from './ocpp/Configuration'; +import type { + ChargingStationAutomaticTransactionGeneratorConfiguration, + ChargingStationInfoConfiguration, + ChargingStationOcppConfiguration, +} from './internal'; -export interface ConfigurationKey extends OCPPConfigurationKey { - visible?: boolean; - reboot?: boolean; -} - -export default interface ChargingStationConfiguration { - configurationKey: ConfigurationKey[]; -} +export type ChargingStationConfiguration = ChargingStationInfoConfiguration & + ChargingStationOcppConfiguration & + ChargingStationAutomaticTransactionGeneratorConfiguration & { + configurationHash?: string; + };