From ae1fb299125a1e0de2ec48d0ed6f5b40829de52c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 15 Jun 2026 14:10:49 +0000 Subject: [PATCH] chore: update generated API types from latest spec --- docs/openapi/monitoring-api.json | 7 +++++++ src/lib/api.generated.ts | 2 ++ 2 files changed, 9 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/lib/api.generated.ts b/src/lib/api.generated.ts index 62299b3..26c59ed 100644 --- a/src/lib/api.generated.ts +++ b/src/lib/api.generated.ts @@ -7560,6 +7560,8 @@ export interface components { UpdateStatusPageRequest: { /** @description New name; null preserves current */ name?: string | null; + /** @description URL-safe slug used in the public URL; null preserves current */ + slug?: string | null; /** @description New description; null preserves current, empty string clears */ description?: string | null; branding?: components["schemas"]["StatusPageBranding"] | null;