Skip to content

Commit 38e30b0

Browse files
committed
ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.14.1
1 parent 661925b commit 38e30b0

File tree

8 files changed

+18
-10
lines changed

8 files changed

+18
-10
lines changed

commerce/RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,4 +118,12 @@ Based on:
118118
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Commerce.yaml
119119
- Speakeasy CLI 1.13.0 https://github.com/speakeasy-api/speakeasy
120120
### Releases
121-
- [PyPI v0.6.0] https://pypi.org/project/codat-commerce/0.6.0 - commerce
121+
- [PyPI v0.6.0] https://pypi.org/project/codat-commerce/0.6.0 - commerce
122+
123+
## 2023-03-22 10:00:17
124+
### Changes
125+
Based on:
126+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Commerce.yaml
127+
- Speakeasy CLI 1.14.1 https://github.com/speakeasy-api/speakeasy
128+
### Releases
129+
- [PyPI v0.7.0] https://pypi.org/project/codat-commerce/0.7.0 - commerce

commerce/gen.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ configVersion: 1.0.0
22
management:
33
docChecksum: acb3d544c813bc9862f61eb872eadf7c
44
docVersion: 2.1.0
5-
speakeasyVersion: 1.13.0
5+
speakeasyVersion: 1.14.1
66
generation:
77
telemetryEnabled: false
88
sdkClassName: codat
99
sdkFlattening: true
1010
python:
11-
version: 0.6.0
11+
version: 0.7.0
1212
author: Speakeasy
1313
description: Python Client SDK Generated by Speakeasy
1414
packageName: codat-commerce

commerce/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setuptools.setup(
1212
name="codat-commerce",
13-
version="0.6.0",
13+
version="0.7.0",
1414
author="Speakeasy",
1515
description="Python Client SDK Generated by Speakeasy",
1616
long_description=long_description,

commerce/src/codat/models/operations/list_commerce_customers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class ListCommerceCustomersLinksSourceModifiedDateAddress:
9191
@dataclass_json(undefined=Undefined.EXCLUDE)
9292
@dataclasses.dataclass
9393
class ListCommerceCustomersLinksSourceModifiedDate:
94-
r"""Represents a customer who has placed an order in the commerce system""""
94+
r"""Represents a customer who has placed an order in the commerce system\""""
9595

9696
id: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('id') }})
9797
r"""A unique, persistent identifier for this record"""

commerce/src/codat/models/operations/list_commerce_orders.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ class ListCommerceOrdersLinksSourceModifiedDate:
220220
country: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('country'), 'exclude': lambda f: f is None }})
221221
r"""The Codat country property is returned as it was provided in the underlying platform by the company without any formatting on our part.
222222
223-
Depending on the platform the value of this property will either be an <a href="https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes" target="_blank">ISO 3166</a> code (2-alpha or 3-alpha) or free-form text returned as a string name in our model.
223+
Depending on the platform the value of this property will either be an <a href=\"https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes\" target=\"_blank\">ISO 3166</a> code (2-alpha or 3-alpha) or free-form text returned as a string name in our model.
224224
225225
For POST operations against platforms that demand a specific format for the country code, we have documented accepted values in the [options](https://docs.codat.io/codat-api#/operations/get-companies-companyId-connections-connectionId-push) endpoint.
226226
"""

commerce/src/codat/models/operations/list_commerce_productcategories.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class ListCommerceProductCategoriesLinksProductCategoryRecordRef:
7777
@dataclass_json(undefined=Undefined.EXCLUDE)
7878
@dataclasses.dataclass
7979
class ListCommerceProductCategoriesLinksProductCategory:
80-
r"""Product categories are used to classify a group of products together, either by type (eg "Furniture"), or sometimes by tax profile."""
80+
r"""Product categories are used to classify a group of products together, either by type (eg \"Furniture\"), or sometimes by tax profile."""
8181

8282
ancestor_refs: Optional[list[ListCommerceProductCategoriesLinksProductCategoryRecordRef]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('ancestorRefs'), 'exclude': lambda f: f is None }})
8383
has_children: Optional[bool] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('hasChildren'), 'exclude': lambda f: f is None }})

commerce/src/codat/products.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def __init__(self, client: requests_http.Session, security_client: requests_http
2424

2525
def list_commerce_product_categories(self, request: operations.ListCommerceProductCategoriesRequest) -> operations.ListCommerceProductCategoriesResponse:
2626
r"""List product categories
27-
Product categories are used to classify a group of products together, either by type (eg "Furniture"), or sometimes by tax profile.
27+
Product categories are used to classify a group of products together, either by type (eg \"Furniture\"), or sometimes by tax profile.
2828
"""
2929
base_url = self._server_url
3030

commerce/src/codat/sdk.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ class Codat:
5252
_security_client: requests_http.Session
5353
_server_url: str = SERVERS[0]
5454
_language: str = "python"
55-
_sdk_version: str = "0.6.0"
56-
_gen_version: str = "2.12.10"
55+
_sdk_version: str = "0.7.0"
56+
_gen_version: str = "2.13.0"
5757

5858
def __init__(self,
5959
security: shared.Security = None,

0 commit comments

Comments
 (0)