Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion platform/RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,14 @@ Based on:
### Generated
- [python v3.1.0] platform
### Releases
- [PyPI v3.1.0] https://pypi.org/project/codat-platform/3.1.0 - platform
- [PyPI v3.1.0] https://pypi.org/project/codat-platform/3.1.0 - platform

## 2023-12-21 15:22:53
### 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.2.0] platform
### Releases
- [PyPI v3.2.0] https://pypi.org/project/codat-platform/3.2.0 - platform
3 changes: 2 additions & 1 deletion platform/docs/models/shared/sourcetype.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ The type of platform of the connection.
| ------------ | ------------ |
| `ACCOUNTING` | Accounting |
| `BANKING` | Banking |
| `COMMERCE` | Commerce |
| `BANK_FEED` | BankFeed |
| `COMMERCE` | Commerce |
| `EXPENSE` | Expense |
| `OTHER` | Other |
| `UNKNOWN` | Unknown |
4 changes: 2 additions & 2 deletions platform/gen.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
configVersion: 1.0.0
management:
docChecksum: 3379fc07db559975ff4cd7f90f6d1910
docChecksum: 1573d3af37949ec5c2ba8ed38e783946
docVersion: 3.0.0
speakeasyVersion: 1.128.1
generationVersion: 2.223.0
Expand All @@ -24,7 +24,7 @@ features:
nameOverrides: 2.81.1
retries: 2.82.0
python:
version: 3.1.0
version: 3.2.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.1.0",
version="3.2.0",
author="Codat",
description="Manage the building blocks of Codat, including companies, connections, and more.",
long_description=long_description,
Expand Down
3 changes: 2 additions & 1 deletion platform/src/codatplatform/models/shared/sourcetype.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ class SourceType(str, Enum):
r"""The type of platform of the connection."""
ACCOUNTING = 'Accounting'
BANKING = 'Banking'
COMMERCE = 'Commerce'
BANK_FEED = 'BankFeed'
COMMERCE = 'Commerce'
EXPENSE = 'Expense'
OTHER = 'Other'
UNKNOWN = 'Unknown'
4 changes: 2 additions & 2 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.1.0'
sdk_version: str = '3.2.0'
gen_version: str = '2.223.0'
user_agent: str = 'speakeasy-sdk/python 3.1.0 2.223.0 3.0.0 codat-platform'
user_agent: str = 'speakeasy-sdk/python 3.2.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