You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -69,13 +70,15 @@ class CatalogProductDetail(BaseModel):
69
70
industries: Optional[List[StrictStr]] =Field(
70
71
default=None, description="The list of industries associated to the product."
71
72
)
72
-
is_product_listing: StrictBool=Field(
73
-
description="If true, the product is not fully integrated but only listed. Product listings may not have prices and support information.",
73
+
is_product_listing: Optional[StrictBool] =Field(
74
+
default=None,
75
+
description="If true, the product is not fully integrated but only listed. Product listings may not have prices and support information. Deprecated: Will be removed after 16.12.2025. Please use `offerType` as replacement.",
0 commit comments