Skip to content

Commit 871753e

Browse files
Generator: Update SDK /services/stackitmarketplace (#2330)
Co-authored-by: Ruben Hoenle <Ruben.Hoenle@stackit.cloud>
1 parent 8888f4f commit 871753e

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
- **Feature:** Add response `IntakeRunnerResponse` to `UpdateIntakeRunnerExecute` request
66
- **Feature:** Add response `IntakeUserResponse` to `UpdateIntakeUserExecute` request
77
- `stackitmarketplace`:
8+
- [v1.14.0](services/stackitmarketplace/CHANGELOG.md#v1140)
9+
- **Feature:** Add `has_private_plan_option` attribute to `CatalogProductDetail` model class
810
- [v1.13.0](services/stackitmarketplace/CHANGELOG.md#v1130)
911
- **Feature:** Add `has_demo` attribute to `CatalogProductDetail` model class
1012
- [v1.12.0](services/stackitmarketplace/CHANGELOG.md#v1120)

services/stackitmarketplace/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v1.14.0
2+
- **Feature:** Add `has_private_plan_option` attribute to `CatalogProductDetail` model class
3+
14
## v1.13.0
25
- **Feature:** Add `has_demo` attribute to `CatalogProductDetail` model class
36

services/stackitmarketplace/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "stackit-stackitmarketplace"
33

44
[tool.poetry]
55
name = "stackit-stackitmarketplace"
6-
version = "v1.13.0"
6+
version = "v1.14.0"
77
authors = [
88
"STACKIT Developer Tools <developer-tools@stackit.cloud>",
99
]

services/stackitmarketplace/src/stackit/stackitmarketplace/models/catalog_product_detail.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ class CatalogProductDetail(BaseModel):
7373
has_demo: Optional[StrictBool] = Field(
7474
default=None, description="If the product has a demoUrl available.", alias="hasDemo"
7575
)
76+
has_private_plan_option: Optional[StrictBool] = Field(
77+
default=None, description="If the product has a private plan option.", alias="hasPrivatePlanOption"
78+
)
7679
highlights: List[CatalogProductHighlight] = Field(description="The list of highlights.")
7780
industries: Optional[List[StrictStr]] = Field(
7881
default=None, description="The list of industries associated to the product."
@@ -118,6 +121,7 @@ class CatalogProductDetail(BaseModel):
118121
"documentationUrl",
119122
"email",
120123
"hasDemo",
124+
"hasPrivatePlanOption",
121125
"highlights",
122126
"industries",
123127
"isProductListing",
@@ -284,6 +288,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
284288
"documentationUrl": obj.get("documentationUrl"),
285289
"email": obj.get("email"),
286290
"hasDemo": obj.get("hasDemo"),
291+
"hasPrivatePlanOption": obj.get("hasPrivatePlanOption"),
287292
"highlights": (
288293
[CatalogProductHighlight.from_dict(_item) for _item in obj["highlights"]]
289294
if obj.get("highlights") is not None

0 commit comments

Comments
 (0)