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
32 changes: 22 additions & 10 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13283,6 +13283,7 @@ components:
type:
$ref: '#/components/schemas/StatusPagesComponentGroupType'
required:
- attributes
- type
type: object
CreateComponentRequestDataAttributes:
Expand Down Expand Up @@ -13367,7 +13368,7 @@ components:
properties:
id:
description: The ID of the group.
example: ''
example: 1234abcd-12ab-34cd-56ef-123456abcdef
format: uuid
type: string
type:
Expand Down Expand Up @@ -13569,6 +13570,7 @@ components:
type:
$ref: '#/components/schemas/PatchDegradationRequestDataType'
required:
- attributes
- type
type: object
CreateDegradationRequestDataAttributes:
Expand Down Expand Up @@ -13604,7 +13606,7 @@ components:
properties:
id:
description: The ID of the component. Must be a component of type `component`.
example: ''
example: 1234abcd-12ab-34cd-56ef-123456abcdef
format: uuid
type: string
name:
Expand Down Expand Up @@ -14327,6 +14329,7 @@ components:
type:
$ref: '#/components/schemas/StatusPageDataType'
required:
- attributes
- type
type: object
CreateStatusPageRequestDataAttributes:
Expand Down Expand Up @@ -18391,7 +18394,7 @@ components:
properties:
id:
description: The ID of the component.
example: ''
example: 1234abcd-12ab-34cd-56ef-123456abcdef
format: uuid
type: string
name:
Expand Down Expand Up @@ -18436,7 +18439,7 @@ components:
properties:
id:
description: Identifier of the component affected at the time of the update.
example: ''
example: 1234abcd-12ab-34cd-56ef-123456abcdef
format: uuid
type: string
name:
Expand Down Expand Up @@ -18512,7 +18515,7 @@ components:
properties:
id:
description: The ID of the status page.
example: ''
example: 1234abcd-12ab-34cd-56ef-123456abcdef
format: uuid
type: string
type:
Expand Down Expand Up @@ -43661,11 +43664,14 @@ components:
$ref: '#/components/schemas/PatchComponentRequestDataAttributes'
id:
description: The ID of the component.
example: 1234abcd-12ab-34cd-56ef-123456abcdef
format: uuid
type: string
type:
$ref: '#/components/schemas/StatusPagesComponentGroupType'
required:
- attributes
- id
- type
type: object
PatchComponentRequestDataAttributes:
Expand Down Expand Up @@ -43704,11 +43710,14 @@ components:
$ref: '#/components/schemas/PatchDegradationRequestDataAttributes'
id:
description: The ID of the degradation.
example: 1234abcd-12ab-34cd-56ef-123456abcdef
format: uuid
type: string
type:
$ref: '#/components/schemas/PatchDegradationRequestDataType'
required:
- attributes
- id
- type
type: object
PatchDegradationRequestDataAttributes:
Expand Down Expand Up @@ -43739,7 +43748,7 @@ components:
properties:
id:
description: The ID of the component. Must be a component of type `component`.
example: ''
example: 1234abcd-12ab-34cd-56ef-123456abcdef
format: uuid
type: string
name:
Expand Down Expand Up @@ -43844,11 +43853,14 @@ components:
$ref: '#/components/schemas/PatchStatusPageRequestDataAttributes'
id:
description: The ID of the status page.
example: 1234abcd-12ab-34cd-56ef-123456abcdef
format: uuid
type: string
type:
$ref: '#/components/schemas/StatusPageDataType'
required:
- attributes
- id
- type
type: object
PatchStatusPageRequestDataAttributes:
Expand Down Expand Up @@ -58776,7 +58788,7 @@ components:
properties:
id:
description: The ID of the group the component belongs to.
example: ''
example: 1234abcd-12ab-34cd-56ef-123456abcdef
format: uuid
type: string
type:
Expand Down Expand Up @@ -58815,7 +58827,7 @@ components:
properties:
id:
description: The ID of the status page the component belongs to.
example: ''
example: 1234abcd-12ab-34cd-56ef-123456abcdef
format: uuid
type: string
type:
Expand Down Expand Up @@ -58957,7 +58969,7 @@ components:
nullable: true
properties:
id:
example: ''
example: 1234abcd-12ab-34cd-56ef-123456abcdef
format: uuid
type: string
type:
Expand Down Expand Up @@ -58999,7 +59011,7 @@ components:
properties:
id:
description: The ID of the status page.
example: ''
example: 1234abcd-12ab-34cd-56ef-123456abcdef
format: uuid
type: string
type:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class CreateComponentRequestData {
/**
* The supported attributes for creating a component.
*/
"attributes"?: CreateComponentRequestDataAttributes;
"attributes": CreateComponentRequestDataAttributes;
/**
* The supported relationships for creating a component.
*/
Expand Down Expand Up @@ -42,6 +42,7 @@ export class CreateComponentRequestData {
attributes: {
baseName: "attributes",
type: "CreateComponentRequestDataAttributes",
required: true,
},
relationships: {
baseName: "relationships",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class CreateDegradationRequestData {
/**
* The supported attributes for creating a degradation.
*/
"attributes"?: CreateDegradationRequestDataAttributes;
"attributes": CreateDegradationRequestDataAttributes;
/**
* Degradations resource type.
*/
Expand All @@ -37,6 +37,7 @@ export class CreateDegradationRequestData {
attributes: {
baseName: "attributes",
type: "CreateDegradationRequestDataAttributes",
required: true,
},
type: {
baseName: "type",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class CreateStatusPageRequestData {
/**
* The supported attributes for creating a status page.
*/
"attributes"?: CreateStatusPageRequestDataAttributes;
"attributes": CreateStatusPageRequestDataAttributes;
/**
* Status pages resource type.
*/
Expand All @@ -37,6 +37,7 @@ export class CreateStatusPageRequestData {
attributes: {
baseName: "attributes",
type: "CreateStatusPageRequestDataAttributes",
required: true,
},
type: {
baseName: "type",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ export class PatchComponentRequestData {
/**
* The supported attributes for updating a component.
*/
"attributes"?: PatchComponentRequestDataAttributes;
"attributes": PatchComponentRequestDataAttributes;
/**
* The ID of the component.
*/
"id"?: string;
"id": string;
/**
* Components resource type.
*/
Expand All @@ -41,10 +41,12 @@ export class PatchComponentRequestData {
attributes: {
baseName: "attributes",
type: "PatchComponentRequestDataAttributes",
required: true,
},
id: {
baseName: "id",
type: "string",
required: true,
format: "uuid",
},
type: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ export class PatchDegradationRequestData {
/**
* The supported attributes for updating a degradation.
*/
"attributes"?: PatchDegradationRequestDataAttributes;
"attributes": PatchDegradationRequestDataAttributes;
/**
* The ID of the degradation.
*/
"id"?: string;
"id": string;
/**
* Degradations resource type.
*/
Expand All @@ -41,10 +41,12 @@ export class PatchDegradationRequestData {
attributes: {
baseName: "attributes",
type: "PatchDegradationRequestDataAttributes",
required: true,
},
id: {
baseName: "id",
type: "string",
required: true,
format: "uuid",
},
type: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ export class PatchStatusPageRequestData {
/**
* The supported attributes for updating a status page.
*/
"attributes"?: PatchStatusPageRequestDataAttributes;
"attributes": PatchStatusPageRequestDataAttributes;
/**
* The ID of the status page.
*/
"id"?: string;
"id": string;
/**
* Status pages resource type.
*/
Expand All @@ -41,10 +41,12 @@ export class PatchStatusPageRequestData {
attributes: {
baseName: "attributes",
type: "PatchStatusPageRequestDataAttributes",
required: true,
},
id: {
baseName: "id",
type: "string",
required: true,
format: "uuid",
},
type: {
Expand Down