Skip to content

Commit 8907b88

Browse files
authored
Merge pull request #558 from codatio/speakeasy-sdk-regen-1703172178
chore: 🐝 Update SDK - Generate Platform library
2 parents 66d360b + 24e48aa commit 8907b88

File tree

6 files changed

+20
-8
lines changed

6 files changed

+20
-8
lines changed

β€Žplatform/RELEASES.mdβ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,14 @@ Based on:
5858
### Generated
5959
- [python v3.1.0] platform
6060
### Releases
61-
- [PyPI v3.1.0] https://pypi.org/project/codat-platform/3.1.0 - platform
61+
- [PyPI v3.1.0] https://pypi.org/project/codat-platform/3.1.0 - platform
62+
63+
## 2023-12-21 15:22:53
64+
### Changes
65+
Based on:
66+
- OpenAPI Doc 3.0.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Platform.yaml
67+
- Speakeasy CLI 1.128.1 (2.223.0) https://github.com/speakeasy-api/speakeasy
68+
### Generated
69+
- [python v3.2.0] platform
70+
### Releases
71+
- [PyPI v3.2.0] https://pypi.org/project/codat-platform/3.2.0 - platform

β€Žplatform/docs/models/shared/sourcetype.mdβ€Ž

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ The type of platform of the connection.
99
| ------------ | ------------ |
1010
| `ACCOUNTING` | Accounting |
1111
| `BANKING` | Banking |
12-
| `COMMERCE` | Commerce |
1312
| `BANK_FEED` | BankFeed |
13+
| `COMMERCE` | Commerce |
14+
| `EXPENSE` | Expense |
1415
| `OTHER` | Other |
1516
| `UNKNOWN` | Unknown |

β€Žplatform/gen.yamlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
configVersion: 1.0.0
22
management:
3-
docChecksum: 3379fc07db559975ff4cd7f90f6d1910
3+
docChecksum: 1573d3af37949ec5c2ba8ed38e783946
44
docVersion: 3.0.0
55
speakeasyVersion: 1.128.1
66
generationVersion: 2.223.0
@@ -24,7 +24,7 @@ features:
2424
nameOverrides: 2.81.1
2525
retries: 2.82.0
2626
python:
27-
version: 3.1.0
27+
version: 3.2.0
2828
author: Codat
2929
clientServerStatusCodesAsErrors: true
3030
description: Manage the building blocks of Codat, including companies, connections, and more.

β€Žplatform/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-platform",
13-
version="3.1.0",
13+
version="3.2.0",
1414
author="Codat",
1515
description="Manage the building blocks of Codat, including companies, connections, and more.",
1616
long_description=long_description,

β€Žplatform/src/codatplatform/models/shared/sourcetype.pyβ€Ž

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ class SourceType(str, Enum):
77
r"""The type of platform of the connection."""
88
ACCOUNTING = 'Accounting'
99
BANKING = 'Banking'
10-
COMMERCE = 'Commerce'
1110
BANK_FEED = 'BankFeed'
11+
COMMERCE = 'Commerce'
12+
EXPENSE = 'Expense'
1213
OTHER = 'Other'
1314
UNKNOWN = 'Unknown'

β€Žplatform/src/codatplatform/sdkconfiguration.pyβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ class SDKConfiguration:
2222
server_idx: int = 0
2323
language: str = 'python'
2424
openapi_doc_version: str = '3.0.0'
25-
sdk_version: str = '3.1.0'
25+
sdk_version: str = '3.2.0'
2626
gen_version: str = '2.223.0'
27-
user_agent: str = 'speakeasy-sdk/python 3.1.0 2.223.0 3.0.0 codat-platform'
27+
user_agent: str = 'speakeasy-sdk/python 3.2.0 2.223.0 3.0.0 codat-platform'
2828
retry_config: RetryConfig = None
2929

3030
def get_server_details(self) -> Tuple[str, Dict[str, str]]:

0 commit comments

Comments
Β (0)