Skip to content

Commit 58205de

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0, Speakeay CLI 1.30.0
1 parent 2d0450e commit 58205de

6 files changed

Lines changed: 20 additions & 12 deletions

File tree

assess/RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,4 +350,12 @@ Based on:
350350
- OpenAPI Doc 1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Assess.yaml
351351
- Speakeasy CLI 1.29.2 (2.26.2) https://github.com/speakeasy-api/speakeasy
352352
### Releases
353-
- [PyPI v0.16.2] https://pypi.org/project/codat-assess/0.16.2 - assess
353+
- [PyPI v0.16.2] https://pypi.org/project/codat-assess/0.16.2 - assess
354+
355+
## 2023-05-11 00:12:27
356+
### Changes
357+
Based on:
358+
- OpenAPI Doc 1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Assess.yaml
359+
- Speakeasy CLI 1.30.0 (2.26.3) https://github.com/speakeasy-api/speakeasy
360+
### Releases
361+
- [PyPI v0.16.3] https://pypi.org/project/codat-assess/0.16.3 - assess

assess/docs/excelreports/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ s = codatassess.CodatAssess(
3232

3333
req = operations.DownloadExcelReportRequest(
3434
company_id='8a210b68-6988-11ed-a1eb-0242ac120002',
35-
report_type=shared.ExcelReportTypeEnum.ENHANCED_FINANCIALS,
35+
report_type=shared.ExcelReportTypeEnum.ENHANCED_INVOICES,
3636
)
3737

3838
res = s.excel_reports.download_excel_report(req)
@@ -59,7 +59,7 @@ s = codatassess.CodatAssess(
5959

6060
req = operations.GenerateExcelReportRequest(
6161
company_id='8a210b68-6988-11ed-a1eb-0242ac120002',
62-
report_type=shared.ExcelReportTypeEnum.BANKING,
62+
report_type=shared.ExcelReportTypeEnum.ENHANCED_FINANCIALS,
6363
)
6464

6565
res = s.excel_reports.generate_excel_report(req)
@@ -119,7 +119,7 @@ s = codatassess.CodatAssess(
119119

120120
req = operations.GetExcelReportRequest(
121121
company_id='8a210b68-6988-11ed-a1eb-0242ac120002',
122-
report_type=shared.ExcelReportTypeEnum.BANKING,
122+
report_type=shared.ExcelReportTypeEnum.ENHANCED_FINANCIALS,
123123
)
124124

125125
res = s.excel_reports.get_excel_report(req)

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: 75f1da9a1f56d8c1c691b9ee82bfe784
3+
docChecksum: fb61058c8f4bb08a03c4bcab528aeb9b
44
docVersion: "1.0"
5-
speakeasyVersion: 1.29.2
6-
generationVersion: 2.26.2
5+
speakeasyVersion: 1.30.0
6+
generationVersion: 2.26.3
77
generation:
88
telemetryEnabled: false
99
sdkClassName: CodatAssess
1010
singleTagPerOp: false
1111
python:
12-
version: 0.16.2
12+
version: 0.16.3
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.16.2",
13+
version="0.16.3",
1414
author="Speakeasy",
1515
description="Python Client SDK Generated by Speakeasy",
1616
long_description=long_description,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ class ExcelReportTypeEnum(str, Enum):
77
r"""The type of report you want to generate and download."""
88
ASSESS = 'assess'
99
AUDIT = 'audit'
10-
BANKING = 'banking'
1110
ENHANCED_FINANCIALS = 'enhancedFinancials'
1211
ENHANCED_INVOICES = 'enhancedInvoices'
12+
ENHANCED_CASH_FLOW = 'enhancedCashFlow'

assess/src/codatassess/sdk.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ class CodatAssess:
3535
_security_client: requests_http.Session
3636
_server_url: str = SERVERS[0]
3737
_language: str = "python"
38-
_sdk_version: str = "0.16.2"
39-
_gen_version: str = "2.26.2"
38+
_sdk_version: str = "0.16.3"
39+
_gen_version: str = "2.26.3"
4040

4141
def __init__(self,
4242
security: shared.Security = None,

0 commit comments

Comments
 (0)