Skip to content

Commit ede8cdf

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0, Speakeay CLI 1.44.2
1 parent 6504b4c commit ede8cdf

6 files changed

Lines changed: 19 additions & 10 deletions

File tree

assess/RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,4 +470,12 @@ Based on:
470470
- OpenAPI Doc 1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Assess.yaml
471471
- Speakeasy CLI 1.43.0 (2.35.3) https://github.com/speakeasy-api/speakeasy
472472
### Releases
473-
- [PyPI v0.24.0] https://pypi.org/project/codat-assess/0.24.0 - assess
473+
- [PyPI v0.24.0] https://pypi.org/project/codat-assess/0.24.0 - assess
474+
475+
## 2023-06-06 20:44:28
476+
### Changes
477+
Based on:
478+
- OpenAPI Doc 1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Assess.yaml
479+
- Speakeasy CLI 1.44.2 (2.35.9) https://github.com/speakeasy-api/speakeasy
480+
### Releases
481+
- [PyPI v0.24.1] https://pypi.org/project/codat-assess/0.24.1 - assess

assess/gen.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
configVersion: 1.0.0
22
management:
3-
docChecksum: 0c6022e02e0a362d7b08ff27b085a235
3+
docChecksum: 148f78b362cb15db11a0fa17be657d08
44
docVersion: "1.0"
5-
speakeasyVersion: 1.43.0
6-
generationVersion: 2.35.3
5+
speakeasyVersion: 1.44.2
6+
generationVersion: 2.35.9
77
generation:
88
sdkClassName: CodatAssess
99
singleTagPerOp: false
1010
telemetryEnabled: true
1111
python:
12-
version: 0.24.0
12+
version: 0.24.1
1313
author: Speakeasy
1414
description: Python Client SDK Generated by Speakeasy
1515
maxMethodParams: 0

assess/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-assess",
13-
version="0.24.0",
13+
version="0.24.1",
1414
author="Speakeasy",
1515
description="Python Client SDK Generated by Speakeasy",
1616
long_description=long_description,

assess/src/codatassess/models/shared/accountcategoriesupdatedwebhook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class AccountCategoriesUpdatedWebhook:
2121
r"""Webhook request body for account categories updated."""
2222

2323
alert_id: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('alertId'), 'exclude': lambda f: f is None }})
24-
r"""Unique identifier of the alert."""
24+
r"""Unique identifier of the webhook event."""
2525
client_id: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('clientId'), 'exclude': lambda f: f is None }})
2626
r"""Unique identifier for your client in Codat."""
2727
client_name: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('clientName'), 'exclude': lambda f: f is None }})

assess/src/codatassess/sdk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from codatassess.models import shared
1111

1212
class CodatAssess:
13-
r"""Codat's financial insights API
13+
r"""Assess API: Codat's financial insights API
1414
Codat's Assess API enable you to make smarter credit decisions on your small business customers. Assess enriches your customer's accounting, commerce and banking data to surface actionable insights you didn't have before.
1515
1616
[Read more...](https://www.codat.io/assess/)

assess/src/codatassess/sdkconfiguration.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import requests
44
from dataclasses import dataclass
55

6+
67
SERVERS = [
78
'https://api.codat.io',
89
# Production
@@ -16,8 +17,8 @@ class SDKConfiguration:
1617
server_url: str = ''
1718
server_idx: int = 0
1819
language: str = 'python'
19-
sdk_version: str = '0.24.0'
20-
gen_version: str = '2.35.3'
20+
sdk_version: str = '0.24.1'
21+
gen_version: str = '2.35.9'
2122

2223
def get_server_details(self) -> tuple[str, dict[str, str]]:
2324
if self.server_url:

0 commit comments

Comments
 (0)