Openstatus www.openstatus.dev

๐Ÿ“ Typo api (#1041)

* add missing field api

* ๐Ÿ“ typo

* ci: apply automated fixes

* ๐Ÿงช fix tests

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>

authored by

Thibault Le Ouay
autofix-ci[bot]
and committed by
GitHub
fcbecff6 789a55d8

+3 -3
+3 -3
apps/server/src/v1/monitors/schema.ts
··· 199 199 .boolean() 200 200 .default(false) 201 201 .openapi({ description: "If the monitor is public" }), 202 - degratedAfter: z.number().optional().openapi({ 203 - description: "The time after the monitor is considered degrated", 202 + degradedAfter: z.number().nullish().openapi({ 203 + description: "The time after the monitor is considered degraded", 204 204 }), 205 - timeout: z.number().optional().openapi({ 205 + timeout: z.number().nullish().openapi({ 206 206 description: "The timeout of the request", 207 207 }), 208 208 })