chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / src / types / UIProtocol.ts
index 69312eef7e89137c8f2638d259f50a00ed4993b9..f44475d86f680982c87fa376427f8481dc1a9410 100644 (file)
@@ -1,31 +1,31 @@
-import type { JsonObject } from './JsonType.js';
-import type { BroadcastChannelResponsePayload } from './WorkerBroadcastChannel.js';
+import type { JsonObject } from './JsonType.js'
+import type { BroadcastChannelResponsePayload } from './WorkerBroadcastChannel.js'
 
 export enum Protocol {
-  UI = 'ui',
+  UI = 'ui'
 }
 
 export enum ApplicationProtocol {
   HTTP = 'http',
-  WS = 'ws',
+  WS = 'ws'
 }
 
 export enum AuthenticationType {
-  BASIC_AUTH = 'basic-auth',
+  BASIC_AUTH = 'basic-auth'
 }
 
 export enum ProtocolVersion {
-  '0.0.1' = '0.0.1',
+  '0.0.1' = '0.0.1'
 }
 
-export type ProtocolRequest = [string, ProcedureName, RequestPayload];
-export type ProtocolResponse = [string, ResponsePayload];
+export type ProtocolRequest = [string, ProcedureName, RequestPayload]
+export type ProtocolResponse = [string, ResponsePayload]
 
 export type ProtocolRequestHandler = (
   uuid?: string,
   procedureName?: ProcedureName,
-  payload?: RequestPayload,
-) => undefined | Promise<undefined> | ResponsePayload | Promise<ResponsePayload>;
+  payload?: RequestPayload
+) => undefined | Promise<undefined> | ResponsePayload | Promise<ResponsePayload>
 
 export enum ProcedureName {
   START_SIMULATOR = 'startSimulator',
@@ -47,22 +47,22 @@ export enum ProcedureName {
   METER_VALUES = 'meterValues',
   DATA_TRANSFER = 'dataTransfer',
   DIAGNOSTICS_STATUS_NOTIFICATION = 'diagnosticsStatusNotification',
-  FIRMWARE_STATUS_NOTIFICATION = 'firmwareStatusNotification',
+  FIRMWARE_STATUS_NOTIFICATION = 'firmwareStatusNotification'
 }
 
 export interface RequestPayload extends JsonObject {
-  hashIds?: string[];
-  connectorIds?: number[];
+  hashIds?: string[]
+  connectorIds?: number[]
 }
 
 export enum ResponseStatus {
   SUCCESS = 'success',
-  FAILURE = 'failure',
+  FAILURE = 'failure'
 }
 
 export interface ResponsePayload extends JsonObject {
-  status: ResponseStatus;
-  hashIdsSucceeded?: string[];
-  hashIdsFailed?: string[];
-  responsesFailed?: BroadcastChannelResponsePayload[];
+  status: ResponseStatus
+  hashIdsSucceeded?: string[]
+  hashIdsFailed?: string[]
+  responsesFailed?: BroadcastChannelResponsePayload[]
 }