Skip to content
Merged
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
10 changes: 10 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16546,10 +16546,12 @@ components:
properties:
completed_date:
description: Timestamp of when the maintenance was completed.
example: "2026-02-18T19:51:13.332360075Z"
format: date-time
type: string
completed_description:
description: The description shown when the maintenance is completed.
example: "We have completed maintenance on the API to improve performance."
type: string
components_affected:
description: The components affected by the maintenance.
Expand All @@ -16558,12 +16560,15 @@ components:
type: array
in_progress_description:
description: The description shown while the maintenance is in progress.
example: "We are currently performing maintenance on the API to improve performance."
type: string
scheduled_description:
description: The description shown when the maintenance is scheduled.
example: "We will be performing maintenance on the API to improve performance."
type: string
start_date:
description: Timestamp of when the maintenance is scheduled to start.
example: "2026-02-18T19:21:13.332360075Z"
format: date-time
type: string
title:
Expand All @@ -16573,6 +16578,11 @@ components:
required:
- components_affected
- title
- completed_date
- completed_description
- scheduled_description
- start_date
- in_progress_description
type: object
CreateMaintenanceRequestDataAttributesComponentsAffectedItems:
description: A component affected by a maintenance.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,27 @@ export class CreateMaintenanceRequestDataAttributes {
/**
* Timestamp of when the maintenance was completed.
*/
"completedDate"?: Date;
"completedDate": Date;
/**
* The description shown when the maintenance is completed.
*/
"completedDescription"?: string;
"completedDescription": string;
/**
* The components affected by the maintenance.
*/
"componentsAffected": Array<CreateMaintenanceRequestDataAttributesComponentsAffectedItems>;
/**
* The description shown while the maintenance is in progress.
*/
"inProgressDescription"?: string;
"inProgressDescription": string;
/**
* The description shown when the maintenance is scheduled.
*/
"scheduledDescription"?: string;
"scheduledDescription": string;
/**
* Timestamp of when the maintenance is scheduled to start.
*/
"startDate"?: Date;
"startDate": Date;
/**
* The title of the maintenance.
*/
Expand All @@ -59,11 +59,13 @@ export class CreateMaintenanceRequestDataAttributes {
completedDate: {
baseName: "completed_date",
type: "Date",
required: true,
format: "date-time",
},
completedDescription: {
baseName: "completed_description",
type: "string",
required: true,
},
componentsAffected: {
baseName: "components_affected",
Expand All @@ -73,14 +75,17 @@ export class CreateMaintenanceRequestDataAttributes {
inProgressDescription: {
baseName: "in_progress_description",
type: "string",
required: true,
},
scheduledDescription: {
baseName: "scheduled_description",
type: "string",
required: true,
},
startDate: {
baseName: "start_date",
type: "Date",
required: true,
format: "date-time",
},
title: {
Expand Down
Loading