schema: add HTTP struct attr Timeout

This commit is contained in:
leo 2023-05-17 12:36:49 +02:00
parent 07fdd8217f
commit 95b76ed81f
Signed by: wanderer
SSH Key Fingerprint: SHA256:Dp8+iwKHSlrMEHzE3bJnPng70I7LEsa3IJXRH/U+idQ
3 changed files with 5 additions and 3 deletions

View File

@ -1,10 +1,10 @@
{ Schema = { Schema =
./schema.dhall ./schema.dhall
sha256:c46a2374d9fe7dcbac47491efdffd5ad7972b8941bf3fe3c8bb3c573acbb44c2 sha256:99dc461563042c4c4df92a8ce5a66842496be9fb2303bd0d7bf344417888cf61
? ./schema.dhall ? ./schema.dhall
, Schema/validate = , Schema/validate =
./validate.dhall ./validate.dhall
sha256:26227bc39927b56ad15c87fb8dfe58241104ed3d9c66d3b31ae4d954bbd8f9d3 sha256:03d846ce0f42478c630708dd45cb9883f74f6ad97d4c0325bd6f6879368c7bd1
? ./validate.dhall ? ./validate.dhall
, Schema/version = , Schema/version =
./version.dhall ./version.dhall

View File

@ -13,6 +13,7 @@ let Schema =
, ContentSecurityPolicy : Text , ContentSecurityPolicy : Text
, RateLimit : Natural , RateLimit : Natural
, Gzip : Natural , Gzip : Natural
, Timeout : Natural
} }
, AppName : Text , AppName : Text
, LiveMode : Bool , LiveMode : Bool
@ -41,6 +42,7 @@ let Schema =
, ContentSecurityPolicy = "" , ContentSecurityPolicy = ""
, RateLimit = 0 , RateLimit = 0
, Gzip = 0 , Gzip = 0
, Timeout = 0
} }
, AppName = "pcmt" , AppName = "pcmt"
, LiveMode = False , LiveMode = False

View File

@ -5,7 +5,7 @@ let Prelude =
let Schema = let Schema =
./schema.dhall ./schema.dhall
sha256:c46a2374d9fe7dcbac47491efdffd5ad7972b8941bf3fe3c8bb3c573acbb44c2 sha256:99dc461563042c4c4df92a8ce5a66842496be9fb2303bd0d7bf344417888cf61
? ./schema.dhall ? ./schema.dhall
let Schema/validate let Schema/validate