X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=ui%2Fweb%2Fsrc%2Ftypes%2FConfigurationType.ts;h=93cfe86ef56fde162a89a78c065b2f5d00e44c2c;hb=fa5d129a53f8b3d30685c017fa0420da66224ed5;hp=3753d58475ee9d165be6640a5fbc329fbe20a632;hpb=66a7748ddeda8c94d7562a1ce58d440319654a4c;p=e-mobility-charging-stations-simulator.git diff --git a/ui/web/src/types/ConfigurationType.ts b/ui/web/src/types/ConfigurationType.ts index 3753d584..93cfe86e 100644 --- a/ui/web/src/types/ConfigurationType.ts +++ b/ui/web/src/types/ConfigurationType.ts @@ -1,11 +1,19 @@ -export type BaseConfig = { - uiServer: UIServerConfig +import type { AuthenticationType, Protocol, ProtocolVersion } from './UIProtocol' + +export type ConfigurationData = { + uiServer: UIServerConfigurationSection } -type UIServerConfig = { +type UIServerConfigurationSection = { host: string port: number - protocol: string - username?: string - password?: string + secure?: boolean + protocol: Protocol + version: ProtocolVersion + authentication?: { + enabled: boolean + type: AuthenticationType + username?: string + password?: string + } }