diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index e8bb5351a80b..1dbd4967877e 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -65679,6 +65679,9 @@ components: MaintenanceDataAttributes: description: The attributes of a maintenance. properties: + canceled_description: + description: The description shown when the maintenance is canceled. + type: string completed_date: description: Timestamp of when the maintenance was completed. format: date-time diff --git a/services/status_pages/src/v2/models/MaintenanceDataAttributes.ts b/services/status_pages/src/v2/models/MaintenanceDataAttributes.ts index 3933ba202f49..310e2039d99a 100644 --- a/services/status_pages/src/v2/models/MaintenanceDataAttributes.ts +++ b/services/status_pages/src/v2/models/MaintenanceDataAttributes.ts @@ -8,6 +8,10 @@ import { MaintenanceDataAttributesUpdatesItems } from "./MaintenanceDataAttribut * The attributes of a maintenance. */ export class MaintenanceDataAttributes { + /** + * The description shown when the maintenance is canceled. + */ + "canceledDescription"?: string; /** * Timestamp of when the maintenance was completed. */ @@ -71,6 +75,10 @@ export class MaintenanceDataAttributes { * @ignore */ static readonly attributeTypeMap: AttributeTypeMap = { + canceledDescription: { + baseName: "canceled_description", + type: "string", + }, completedDate: { baseName: "completed_date", type: "Date",