X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FUIProtocol.ts;h=e7635b2e59167f3a3b48b51e9c2eed944700ff1b;hb=728e01f09f2b43946aab50eb2ed9673bf2d2daa3;hp=8195f7be7086722dbf386aa587abb3f4e30939d5;hpb=d3195f0a57d61e2afd211f30092f8f1afe6c5245;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/UIProtocol.ts b/src/types/UIProtocol.ts index 8195f7be..e7635b2e 100644 --- a/src/types/UIProtocol.ts +++ b/src/types/UIProtocol.ts @@ -1,5 +1,4 @@ -import type { JsonObject } from './JsonType'; -import type { BroadcastChannelResponsePayload } from './WorkerBroadcastChannel'; +import type { BroadcastChannelResponsePayload, JsonObject } from './internal'; export enum Protocol { UI = 'ui', @@ -37,12 +36,17 @@ export enum ProcedureName { CLOSE_CONNECTION = 'closeConnection', START_AUTOMATIC_TRANSACTION_GENERATOR = 'startAutomaticTransactionGenerator', STOP_AUTOMATIC_TRANSACTION_GENERATOR = 'stopAutomaticTransactionGenerator', + SET_SUPERVISION_URL = 'setSupervisionUrl', START_TRANSACTION = 'startTransaction', STOP_TRANSACTION = 'stopTransaction', AUTHORIZE = 'authorize', + BOOT_NOTIFICATION = 'bootNotification', STATUS_NOTIFICATION = 'statusNotification', HEARTBEAT = 'heartbeat', METER_VALUES = 'meterValues', + DATA_TRANSFER = 'dataTransfer', + DIAGNOSTICS_STATUS_NOTIFICATION = 'diagnosticsStatusNotification', + FIRMWARE_STATUS_NOTIFICATION = 'firmwareStatusNotification', } export interface RequestPayload extends JsonObject {