Skip to content

Commit

Permalink
Merge pull request #557 from codatio/speakeasy-sdk-regen-1703154187
Browse files Browse the repository at this point in the history
chore: 🐝 Update SDK - Generate Platform library
  • Loading branch information
dcoplowe authored Dec 21, 2023
2 parents 0f71e6f + 8d64c1d commit 4a76446
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 9 deletions.
12 changes: 11 additions & 1 deletion platform/RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,14 @@ Based on:
### Generated
- [python v3.0.0] platform
### Releases
- [PyPI v3.0.0] https://pypi.org/project/codat-platform/3.0.0 - platform
- [PyPI v3.0.0] https://pypi.org/project/codat-platform/3.0.0 - platform

## 2023-12-21 10:23:03
### Changes
Based on:
- OpenAPI Doc 3.0.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Platform.yaml
- Speakeasy CLI 1.128.1 (2.223.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v3.1.0] platform
### Releases
- [PyPI v3.1.0] https://pypi.org/project/codat-platform/3.1.0 - platform
1 change: 1 addition & 0 deletions platform/docs/models/shared/sourcetype.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ The type of platform of the connection.
| `ACCOUNTING` | Accounting |
| `BANKING` | Banking |
| `COMMERCE` | Commerce |
| `BANK_FEED` | BankFeed |
| `OTHER` | Other |
| `UNKNOWN` | Unknown |
8 changes: 4 additions & 4 deletions platform/gen.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
configVersion: 1.0.0
management:
docChecksum: effa1c8743eab2438636b1d71f8dad26
docChecksum: 3379fc07db559975ff4cd7f90f6d1910
docVersion: 3.0.0
speakeasyVersion: 1.128.0
generationVersion: 2.221.0
speakeasyVersion: 1.128.1
generationVersion: 2.223.0
generation:
comments: {}
sdkClassName: CodatPlatform
Expand All @@ -24,7 +24,7 @@ features:
nameOverrides: 2.81.1
retries: 2.82.0
python:
version: 3.0.0
version: 3.1.0
author: Codat
clientServerStatusCodesAsErrors: true
description: Manage the building blocks of Codat, including companies, connections, and more.
Expand Down
2 changes: 1 addition & 1 deletion platform/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setuptools.setup(
name="codat-platform",
version="3.0.0",
version="3.1.0",
author="Codat",
description="Manage the building blocks of Codat, including companies, connections, and more.",
long_description=long_description,
Expand Down
1 change: 1 addition & 0 deletions platform/src/codatplatform/models/shared/sourcetype.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ class SourceType(str, Enum):
ACCOUNTING = 'Accounting'
BANKING = 'Banking'
COMMERCE = 'Commerce'
BANK_FEED = 'BankFeed'
OTHER = 'Other'
UNKNOWN = 'Unknown'
6 changes: 3 additions & 3 deletions platform/src/codatplatform/sdkconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ class SDKConfiguration:
server_idx: int = 0
language: str = 'python'
openapi_doc_version: str = '3.0.0'
sdk_version: str = '3.0.0'
gen_version: str = '2.221.0'
user_agent: str = 'speakeasy-sdk/python 3.0.0 2.221.0 3.0.0 codat-platform'
sdk_version: str = '3.1.0'
gen_version: str = '2.223.0'
user_agent: str = 'speakeasy-sdk/python 3.1.0 2.223.0 3.0.0 codat-platform'
retry_config: RetryConfig = None

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

0 comments on commit 4a76446

Please sign in to comment.