Skip to content

Commit 8937dc0

Browse files
committed
ci: regenerated with OpenAPI Doc 1.1, Speakeay CLI 1.36.1
1 parent 060b9d2 commit 8937dc0

File tree

7 files changed

+20
-12
lines changed

7 files changed

+20
-12
lines changed

synccommerce/RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,4 +310,12 @@ Based on:
310310
- OpenAPI Doc 1.1 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Sync-Commerce.yaml
311311
- Speakeasy CLI 1.35.0 (2.31.0) https://github.com/speakeasy-api/speakeasy
312312
### Releases
313-
- [PyPI v0.17.0] https://pypi.org/project/codat-sync-for-commerce/0.17.0 - synccommerce
313+
- [PyPI v0.17.0] https://pypi.org/project/codat-sync-for-commerce/0.17.0 - synccommerce
314+
315+
## 2023-05-20 00:07:01
316+
### Changes
317+
Based on:
318+
- OpenAPI Doc 1.1 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Sync-Commerce.yaml
319+
- Speakeasy CLI 1.36.1 (2.31.0) https://github.com/speakeasy-api/speakeasy
320+
### Releases
321+
- [PyPI v0.17.1] https://pypi.org/project/codat-sync-for-commerce/0.17.1 - synccommerce

synccommerce/gen.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
configVersion: 1.0.0
22
management:
3-
docChecksum: 709e3ad7f823df6498d0e786505ba79a
3+
docChecksum: 03ab809d37bcfece0dbeb498837defe2
44
docVersion: "1.1"
5-
speakeasyVersion: 1.35.0
5+
speakeasyVersion: 1.36.1
66
generationVersion: 2.31.0
77
generation:
88
sdkClassName: CodatSyncCommerce
99
singleTagPerOp: false
1010
telemetryEnabled: true
1111
python:
12-
version: 0.17.0
12+
version: 0.17.1
1313
author: Speakeasy
1414
description: Python Client SDK Generated by Speakeasy
1515
maxMethodParams: 0

synccommerce/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-sync-for-commerce",
13-
version="0.17.0",
13+
version="0.17.1",
1414
author="Speakeasy",
1515
description="Python Client SDK Generated by Speakeasy",
1616
long_description=long_description,

synccommerce/src/codatsynccommerce/models/operations/list_companies.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
@dataclasses.dataclass
1111
class ListCompaniesRequest:
1212

13-
page: int = dataclasses.field(metadata={'query_param': { 'field_name': 'page', 'style': 'form', 'explode': True }})
14-
r"""Page number. [Read more](https://docs.codat.io/using-the-api/paging)."""
1513
order_by: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'orderBy', 'style': 'form', 'explode': True }})
1614
r"""Field to order results by. [Read more](https://docs.codat.io/using-the-api/ordering-results)."""
15+
page: Optional[int] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'page', 'style': 'form', 'explode': True }})
16+
r"""Page number. [Read more](https://docs.codat.io/using-the-api/paging)."""
1717
page_size: Optional[int] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'pageSize', 'style': 'form', 'explode': True }})
1818
r"""Number of records to return in a page. [Read more](https://docs.codat.io/using-the-api/paging)."""
1919
query: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'query', 'style': 'form', 'explode': True }})

synccommerce/src/codatsynccommerce/models/operations/list_connections.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
class ListConnectionsRequest:
1212

1313
company_id: str = dataclasses.field(metadata={'path_param': { 'field_name': 'companyId', 'style': 'simple', 'explode': False }})
14-
page: int = dataclasses.field(metadata={'query_param': { 'field_name': 'page', 'style': 'form', 'explode': True }})
15-
r"""Page number. [Read more](https://docs.codat.io/using-the-api/paging)."""
1614
order_by: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'orderBy', 'style': 'form', 'explode': True }})
1715
r"""Field to order results by. [Read more](https://docs.codat.io/using-the-api/ordering-results)."""
16+
page: Optional[int] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'page', 'style': 'form', 'explode': True }})
17+
r"""Page number. [Read more](https://docs.codat.io/using-the-api/paging)."""
1818
page_size: Optional[int] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'pageSize', 'style': 'form', 'explode': True }})
1919
r"""Number of records to return in a page. [Read more](https://docs.codat.io/using-the-api/paging)."""
2020
query: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'query', 'style': 'form', 'explode': True }})

synccommerce/src/codatsynccommerce/models/operations/list_integrations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
@dataclasses.dataclass
1111
class ListIntegrationsRequest:
1212

13-
page: int = dataclasses.field(metadata={'query_param': { 'field_name': 'page', 'style': 'form', 'explode': True }})
14-
r"""Page number. [Read more](https://docs.codat.io/using-the-api/paging)."""
1513
order_by: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'orderBy', 'style': 'form', 'explode': True }})
1614
r"""Field to order results by. [Read more](https://docs.codat.io/using-the-api/ordering-results)."""
15+
page: Optional[int] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'page', 'style': 'form', 'explode': True }})
16+
r"""Page number. [Read more](https://docs.codat.io/using-the-api/paging)."""
1717
page_size: Optional[int] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'pageSize', 'style': 'form', 'explode': True }})
1818
r"""Number of records to return in a page. [Read more](https://docs.codat.io/using-the-api/paging)."""
1919
query: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'query', 'style': 'form', 'explode': True }})

synccommerce/src/codatsynccommerce/sdk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class CodatSyncCommerce:
3434
_security_client: requests_http.Session
3535
_server_url: str = SERVERS[0]
3636
_language: str = "python"
37-
_sdk_version: str = "0.17.0"
37+
_sdk_version: str = "0.17.1"
3838
_gen_version: str = "2.31.0"
3939

4040
def __init__(self,

0 commit comments

Comments
 (0)