File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ s = codatassess.CodatAssess(
3232
3333req = 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
3838res = s.excel_reports.download_excel_report(req)
@@ -59,7 +59,7 @@ s = codatassess.CodatAssess(
5959
6060req = 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
6565res = s.excel_reports.generate_excel_report(req)
@@ -119,7 +119,7 @@ s = codatassess.CodatAssess(
119119
120120req = 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
125125res = s.excel_reports.get_excel_report(req)
Original file line number Diff line number Diff line change 11configVersion : 1.0.0
22management :
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
77generation :
88 telemetryEnabled : false
99 sdkClassName : CodatAssess
1010 singleTagPerOp : false
1111python :
12- version : 0.16.2
12+ version : 0.16.3
1313 author : Speakeasy
1414 description : Python Client SDK Generated by Speakeasy
1515 maxMethodParams : 0
Original file line number Diff line number Diff line change 1010
1111setuptools .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 ,
Original file line number Diff line number Diff 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'
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments