fix: fix ApplicationProtocolVersion type definition
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 1 Jul 2024 11:45:08 +0000 (13:45 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 1 Jul 2024 11:45:08 +0000 (13:45 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
src/types/ConfigurationData.ts

index ffbb7deca5994abb61e9b5fc4736e4fb14b1cf61..216262f12cb82557a4e8cd930d33cce2ac52f1d3 100644 (file)
@@ -42,8 +42,8 @@ export interface LogConfiguration {
 }
 
 export enum ApplicationProtocolVersion {
-  VERSION_11 = 1.1,
-  VERSION_20 = 2.0
+  VERSION_11 = '1.1',
+  VERSION_20 = '2.0'
 }
 
 export interface UIServerConfiguration {