diff --git a/packages_generated/cockpit/src/v1/marshalling.gen.ts b/packages_generated/cockpit/src/v1/marshalling.gen.ts index 5567a1127..2c3ab908d 100644 --- a/packages_generated/cockpit/src/v1/marshalling.gen.ts +++ b/packages_generated/cockpit/src/v1/marshalling.gen.ts @@ -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 } diff --git a/packages_generated/cockpit/src/v1/types.gen.ts b/packages_generated/cockpit/src/v1/types.gen.ts index b710c117f..0dc569e66 100644 --- a/packages_generated/cockpit/src/v1/types.gen.ts +++ b/packages_generated/cockpit/src/v1/types.gen.ts @@ -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 {