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;