From 11c48af8bfa3ec143e496755b939ad65ab83bf9d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 15 Jun 2026 14:10:31 +0000 Subject: [PATCH] chore: update generated API types from latest spec --- docs/openapi/monitoring-api.json | 7 +++++++ src/generated/api.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/generated/api.ts b/src/generated/api.ts index 609aced..022e3c8 100644 --- a/src/generated/api.ts +++ b/src/generated/api.ts @@ -7451,6 +7451,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;