From 60cc798071e5b2652cde30c3ce78f0b61ee2d41e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 15 Jun 2026 14:11:37 +0000 Subject: [PATCH] chore: update generated API types from latest spec --- docs/openapi/monitoring-api.json | 7 +++++++ src/devhelm/_generated.py | 8 ++++++++ 2 files changed, 15 insertions(+) diff --git a/docs/openapi/monitoring-api.json b/docs/openapi/monitoring-api.json index a9b7d44..6ddde6f 100644 --- a/docs/openapi/monitoring-api.json +++ b/docs/openapi/monitoring-api.json @@ -34612,6 +34612,13 @@ "description": "New name; null preserves current", "nullable": true }, + "slug": { + "maxLength": 63, + "minLength": 3, + "type": "string", + "description": "URL-safe slug used in the public URL; null preserves current", + "nullable": true + }, "description": { "maxLength": 500, "minLength": 0, diff --git a/src/devhelm/_generated.py b/src/devhelm/_generated.py index 1466a6c..54782ab 100644 --- a/src/devhelm/_generated.py +++ b/src/devhelm/_generated.py @@ -5876,6 +5876,14 @@ class UpdateStatusPageRequest(BaseModel): description="New name; null preserves current", max_length=255, min_length=0 ), ] = None + slug: Annotated[ + str | None, + Field( + description="URL-safe slug used in the public URL; null preserves current", + max_length=63, + min_length=3, + ), + ] = None description: Annotated[ str | None, Field(