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
2 changes: 2 additions & 0 deletions packages_generated/cockpit/src/v1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,8 @@ const unmarshalPreconfiguredAlertData = (
displayDescription: data.display_description,
displayName: data.display_name,
preconfiguredRuleId: data.preconfigured_rule_id,
productFamily: data.product_family,
productName: data.product_name,
} as PreconfiguredAlertData
}

Expand Down
8 changes: 8 additions & 0 deletions packages_generated/cockpit/src/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,14 @@ export interface PreconfiguredAlertData {
* Human readable description of the alert.
*/
displayDescription: string
/**
* Product associated with the alert.
*/
productName: string
/**
* Family of the product associated with the alert.
*/
productFamily: string
}

export interface ContactPointEmail {
Expand Down
Loading