Skip to content

Commit b0d384a

Browse files
feat(product_catalog): add productCategory (#2350)
Co-authored-by: Laure-di <[email protected]>
1 parent 9d7c0de commit b0d384a

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

packages_generated/product_catalog/src/v2alpha1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,7 @@ const unmarshalPublicCatalogProduct = (data: unknown): PublicCatalogProduct => {
388388
? unmarshalPublicCatalogProductPrice(data.price)
389389
: undefined,
390390
product: data.product,
391+
productCategory: data.product_category,
391392
properties: data.properties
392393
? unmarshalPublicCatalogProductProperties(data.properties)
393394
: undefined,

packages_generated/product_catalog/src/v2alpha1/types.gen.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,10 @@ export interface PublicCatalogProduct {
360360
* The category of the product.
361361
*/
362362
serviceCategory: string
363+
/**
364+
* The product category of the product.
365+
*/
366+
productCategory: string
363367
/**
364368
* The product name.
365369
*/

0 commit comments

Comments
 (0)