Skip to content

Commit 4a76446

Browse files
authored
Merge pull request #557 from codatio/speakeasy-sdk-regen-1703154187
chore: 🐝 Update SDK - Generate Platform library
2 parents 0f71e6f + 8d64c1d commit 4a76446

File tree

6 files changed

+21
-9
lines changed

6 files changed

+21
-9
lines changed

β€Žplatform/RELEASES.mdβ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,14 @@ Based on:
4848
### Generated
4949
- [python v3.0.0] platform
5050
### Releases
51-
- [PyPI v3.0.0] https://pypi.org/project/codat-platform/3.0.0 - platform
51+
- [PyPI v3.0.0] https://pypi.org/project/codat-platform/3.0.0 - platform
52+
53+
## 2023-12-21 10:23:03
54+
### Changes
55+
Based on:
56+
- OpenAPI Doc 3.0.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Platform.yaml
57+
- Speakeasy CLI 1.128.1 (2.223.0) https://github.com/speakeasy-api/speakeasy
58+
### Generated
59+
- [python v3.1.0] platform
60+
### Releases
61+
- [PyPI v3.1.0] https://pypi.org/project/codat-platform/3.1.0 - platform

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ The type of platform of the connection.
1010
| `ACCOUNTING` | Accounting |
1111
| `BANKING` | Banking |
1212
| `COMMERCE` | Commerce |
13+
| `BANK_FEED` | BankFeed |
1314
| `OTHER` | Other |
1415
| `UNKNOWN` | Unknown |

β€Žplatform/gen.yamlβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
configVersion: 1.0.0
22
management:
3-
docChecksum: effa1c8743eab2438636b1d71f8dad26
3+
docChecksum: 3379fc07db559975ff4cd7f90f6d1910
44
docVersion: 3.0.0
5-
speakeasyVersion: 1.128.0
6-
generationVersion: 2.221.0
5+
speakeasyVersion: 1.128.1
6+
generationVersion: 2.223.0
77
generation:
88
comments: {}
99
sdkClassName: CodatPlatform
@@ -24,7 +24,7 @@ features:
2424
nameOverrides: 2.81.1
2525
retries: 2.82.0
2626
python:
27-
version: 3.0.0
27+
version: 3.1.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.0.0",
13+
version="3.1.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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ class SourceType(str, Enum):
88
ACCOUNTING = 'Accounting'
99
BANKING = 'Banking'
1010
COMMERCE = 'Commerce'
11+
BANK_FEED = 'BankFeed'
1112
OTHER = 'Other'
1213
UNKNOWN = 'Unknown'

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

Lines changed: 3 additions & 3 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.0.0'
26-
gen_version: str = '2.221.0'
27-
user_agent: str = 'speakeasy-sdk/python 3.0.0 2.221.0 3.0.0 codat-platform'
25+
sdk_version: str = '3.1.0'
26+
gen_version: str = '2.223.0'
27+
user_agent: str = 'speakeasy-sdk/python 3.1.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)