Add the missing issue template key in the right section
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationTemplate.ts
index 5d553318576cc7b3980b7e8c8b2ad2b9c06dc0e0..eabe60d09ff3930b4303e0edda4e2854608a5daf 100644 (file)
@@ -19,7 +19,7 @@ export enum Voltage {
   VOLTAGE_110 = 110,
   VOLTAGE_230 = 230,
   VOLTAGE_400 = 400,
-  VOLTAGE_800 = 800
+  VOLTAGE_800 = 800,
 }
 
 export interface AutomaticTransactionGenerator {
@@ -31,17 +31,18 @@ export interface AutomaticTransactionGenerator {
   probabilityOfStart: number;
   stopAfterHours: number;
   stopOnConnectionFailure: boolean;
-  requireAuthorize?: boolean
+  requireAuthorize?: boolean;
 }
 
 export default interface ChargingStationTemplate {
-  supervisionUrl?: string;
+  supervisionUrls?: string | string[];
   supervisionUrlOcppConfiguration?: boolean;
   supervisionUrlOcppKey?: string;
   supervisionUser?: string;
   supervisionPassword?: string;
   ocppVersion?: OCPPVersion;
   ocppProtocol?: OCPPProtocol;
+  ocppStrictCompliance?: boolean;
   wsOptions?: ClientOptions & ClientRequestArgs;
   authorizationFile?: string;
   baseName: string;