Skip to content

Commit 68e4bbc

Browse files
Generator: Update SDK /services/stackitmarketplace (#668)
* Generate stackitmarketplace * Add changelog Signed-off-by: Alexander Dahmen <[email protected]> --------- Signed-off-by: Alexander Dahmen <[email protected]> Co-authored-by: Alexander Dahmen <[email protected]>
1 parent 4866ad1 commit 68e4bbc

38 files changed

+1548
-26
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Release (2025-XX-XX)
22

3+
- `stackitmarketplace`: [v0.2.0](services/stackitmarketplace/CHANGELOG.md#v020-2025-03-05)
4+
- **Feature:** Add method to create inquiries: `InquiriesCreateInquiry`
5+
- **Feature:** Add `sort` property to `ApiListCatalogProductsRequest`
6+
- **Feature:** Add payload `ApproveSubscriptionPayload` for `ApiApproveSubscriptionRequest`
37
- `objectstorage`: [v1.0.1](services/objectstorage/CHANGELOG.md#v101-2025-02-26)
48
- New value `eu02` in region enum
59
- `postgresflex`: [v1.0.0](services/postgresflex/CHANGELOG.md#v100-2025-02-27)
+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v0.2.0 (2025-03-05)
2+
3+
- **Feature:** Add method to create inquiries: `InquiriesCreateInquiry`
4+
- **Feature:** Add `sort` property to `ApiListCatalogProductsRequest`
5+
- **Feature:** Add payload `ApproveSubscriptionPayload` for `ApiApproveSubscriptionRequest`
6+
17
## v0.1.0 (2025-01-13)
28

39
- **New**: STACKIT Marketplace module can be used to manage the STACKIT Marketplace.

services/stackitmarketplace/pyproject.toml

+1-1
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 = "v0.1.0"
6+
version = "v0.2.0"
77
authors = [
88
"STACKIT Developer Tools <[email protected]>",
99
]

services/stackitmarketplace/src/stackit/stackitmarketplace/__init__.py

+23-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
API to manage STACKIT Marketplace.
99
1010
The version of the OpenAPI document: 1
11-
Contact: marketplace@stackit.de
11+
Contact: marketplace@stackit.cloud
1212
Generated by OpenAPI Generator (https://openapi-generator.tech)
1313
1414
Do not edit the class manually.
@@ -34,6 +34,13 @@
3434
)
3535

3636
# import models into sdk package
37+
from stackit.stackitmarketplace.models.approve_subscription_payload import (
38+
ApproveSubscriptionPayload,
39+
)
40+
from stackit.stackitmarketplace.models.become_vendor import BecomeVendor
41+
from stackit.stackitmarketplace.models.become_vendor_become_vendor import (
42+
BecomeVendorBecomeVendor,
43+
)
3744
from stackit.stackitmarketplace.models.catalog_pricing_option_highlight import (
3845
CatalogPricingOptionHighlight,
3946
)
@@ -61,16 +68,27 @@
6168
from stackit.stackitmarketplace.models.catalog_product_vendor_terms import (
6269
CatalogProductVendorTerms,
6370
)
71+
from stackit.stackitmarketplace.models.contact_sales import ContactSales
72+
from stackit.stackitmarketplace.models.contact_sales_contact_sales import (
73+
ContactSalesContactSales,
74+
)
6475
from stackit.stackitmarketplace.models.current_subscription_state_response import (
6576
CurrentSubscriptionStateResponse,
6677
)
6778
from stackit.stackitmarketplace.models.error_response import ErrorResponse
79+
from stackit.stackitmarketplace.models.inquiries_create_inquiry_payload import (
80+
InquiriesCreateInquiryPayload,
81+
)
6882
from stackit.stackitmarketplace.models.list_catalog_products_response import (
6983
ListCatalogProductsResponse,
7084
)
7185
from stackit.stackitmarketplace.models.list_vendor_subscriptions_response import (
7286
ListVendorSubscriptionsResponse,
7387
)
88+
from stackit.stackitmarketplace.models.register_testing import RegisterTesting
89+
from stackit.stackitmarketplace.models.register_testing_register_testing import (
90+
RegisterTestingRegisterTesting,
91+
)
7492
from stackit.stackitmarketplace.models.requested_subscription_state_response import (
7593
RequestedSubscriptionStateResponse,
7694
)
@@ -81,4 +99,8 @@
8199
SubscriptionCancelResponse,
82100
)
83101
from stackit.stackitmarketplace.models.subscription_product import SubscriptionProduct
102+
from stackit.stackitmarketplace.models.suggest_product import SuggestProduct
103+
from stackit.stackitmarketplace.models.suggest_product_suggest_product import (
104+
SuggestProductSuggestProduct,
105+
)
84106
from stackit.stackitmarketplace.models.vendor_subscription import VendorSubscription

0 commit comments

Comments
 (0)