Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/openapi/monitoring-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 2 additions & 0 deletions src/lib/api.generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down