Skip to content

Commit f518c64

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0, Speakeay CLI 1.26.3
1 parent 78a3441 commit f518c64

85 files changed

Lines changed: 15 additions & 472 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

assess/RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,4 +294,12 @@ Based on:
294294
- OpenAPI Doc 1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Assess.yaml
295295
- Speakeasy CLI 1.26.2 (2.23.2) https://github.com/speakeasy-api/speakeasy
296296
### Releases
297-
- [PyPI v0.14.2] https://pypi.org/project/codat-assess/0.14.2 - assess
297+
- [PyPI v0.14.2] https://pypi.org/project/codat-assess/0.14.2 - assess
298+
299+
## 2023-04-29 00:12:48
300+
### Changes
301+
Based on:
302+
- OpenAPI Doc 1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Assess.yaml
303+
- Speakeasy CLI 1.26.3 (2.23.3) https://github.com/speakeasy-api/speakeasy
304+
### Releases
305+
- [PyPI v0.14.3] https://pypi.org/project/codat-assess/0.14.3 - assess

assess/gen.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ configVersion: 1.0.0
22
management:
33
docChecksum: 881b878ded57a84fd45496103119121c
44
docVersion: "1.0"
5-
speakeasyVersion: 1.26.2
6-
generationVersion: 2.23.2
5+
speakeasyVersion: 1.26.3
6+
generationVersion: 2.23.3
77
generation:
88
telemetryEnabled: false
99
sdkClassName: CodatAssess
1010
singleTagPerOp: false
1111
python:
12-
version: 0.14.2
12+
version: 0.14.3
1313
author: Speakeasy
1414
description: Python Client SDK Generated by Speakeasy
1515
packageName: codat-assess

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.14.2",
13+
version="0.14.3",
1414
author="Speakeasy",
1515
description="Python Client SDK Generated by Speakeasy",
1616
long_description=long_description,

assess/src/codatassess/models/operations/download_excel_report.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,15 @@
1111
class DownloadExcelReportRequest:
1212

1313
company_id: str = dataclasses.field(metadata={'path_param': { 'field_name': 'companyId', 'style': 'simple', 'explode': False }})
14-
1514
report_type: shared_excelreporttype_enum.ExcelReportTypeEnum = dataclasses.field(metadata={'query_param': { 'field_name': 'reportType', 'style': 'form', 'explode': True }})
16-
1715
r"""The type of report you want to generate and download."""
1816

1917

2018
@dataclasses.dataclass
2119
class DownloadExcelReportResponse:
2220

2321
content_type: str = dataclasses.field()
24-
2522
status_code: int = dataclasses.field()
26-
2723
body: Optional[bytes] = dataclasses.field(default=None)
28-
2924
raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
30-
3125

assess/src/codatassess/models/operations/generate_excel_report.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,16 @@
1212
class GenerateExcelReportRequest:
1313

1414
company_id: str = dataclasses.field(metadata={'path_param': { 'field_name': 'companyId', 'style': 'simple', 'explode': False }})
15-
1615
report_type: shared_excelreporttype_enum.ExcelReportTypeEnum = dataclasses.field(metadata={'query_param': { 'field_name': 'reportType', 'style': 'form', 'explode': True }})
17-
1816
r"""The type of report you want to generate and download."""
1917

2018

2119
@dataclasses.dataclass
2220
class GenerateExcelReportResponse:
2321

2422
content_type: str = dataclasses.field()
25-
2623
status_code: int = dataclasses.field()
27-
2824
excel_status: Optional[shared_excelstatus.ExcelStatus] = dataclasses.field(default=None)
29-
3025
r"""OK"""
3126
raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
32-
3327

assess/src/codatassess/models/operations/get_account_category.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,17 @@
1111
class GetAccountCategoryRequest:
1212

1313
account_id: str = dataclasses.field(metadata={'path_param': { 'field_name': 'accountId', 'style': 'simple', 'explode': False }})
14-
1514
r"""Nominal account id"""
1615
company_id: str = dataclasses.field(metadata={'path_param': { 'field_name': 'companyId', 'style': 'simple', 'explode': False }})
17-
1816
connection_id: str = dataclasses.field(metadata={'path_param': { 'field_name': 'connectionId', 'style': 'simple', 'explode': False }})
19-
2017

2118

2219
@dataclasses.dataclass
2320
class GetAccountCategoryResponse:
2421

2522
content_type: str = dataclasses.field()
26-
2723
status_code: int = dataclasses.field()
28-
2924
categorised_account: Optional[shared_categorisedaccount.CategorisedAccount] = dataclasses.field(default=None)
30-
3125
r"""OK"""
3226
raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
33-
3427

assess/src/codatassess/models/operations/get_accounting_marketing_metrics.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,39 +12,27 @@
1212
class GetAccountingMarketingMetricsRequest:
1313

1414
company_id: str = dataclasses.field(metadata={'path_param': { 'field_name': 'companyId', 'style': 'simple', 'explode': False }})
15-
1615
connection_id: str = dataclasses.field(metadata={'path_param': { 'field_name': 'connectionId', 'style': 'simple', 'explode': False }})
17-
1816
number_of_periods: int = dataclasses.field(metadata={'query_param': { 'field_name': 'numberOfPeriods', 'style': 'form', 'explode': True }})
19-
2017
r"""The number of periods to return. There will be no pagination as a query parameter, however Codat will limit the number of periods to request to 12 periods."""
2118
period_length: int = dataclasses.field(metadata={'query_param': { 'field_name': 'periodLength', 'style': 'form', 'explode': True }})
22-
2319
r"""The number of months per period. E.g. 2 = 2 months per period."""
2420
period_unit: shared_periodunit_enum.PeriodUnitEnum = dataclasses.field(metadata={'query_param': { 'field_name': 'periodUnit', 'style': 'form', 'explode': True }})
25-
2621
r"""The period unit of time returned."""
2722
report_date: str = dataclasses.field(metadata={'query_param': { 'field_name': 'reportDate', 'style': 'form', 'explode': True }})
28-
2923
r"""The date in which the report is created up to. Users must specify a specific date, however the response will be provided for the full month."""
3024
include_display_names: Optional[bool] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'includeDisplayNames', 'style': 'form', 'explode': True }})
31-
3225
r"""Shows the dimensionDisplayName and itemDisplayName in measures to make the report data human-readable."""
3326
show_input_values: Optional[bool] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'showInputValues', 'style': 'form', 'explode': True }})
34-
3527
r"""If set to true, then the system includes the input values within the response."""
3628

3729

3830
@dataclasses.dataclass
3931
class GetAccountingMarketingMetricsResponse:
4032

4133
content_type: str = dataclasses.field()
42-
4334
status_code: int = dataclasses.field()
44-
4535
raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
46-
4736
report: Optional[shared_report.Report] = dataclasses.field(default=None)
48-
4937
r"""OK"""
5038

assess/src/codatassess/models/operations/get_accounts_for_enhanced_balance_sheet.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,18 @@
1111
class GetAccountsForEnhancedBalanceSheetRequest:
1212

1313
company_id: str = dataclasses.field(metadata={'path_param': { 'field_name': 'companyId', 'style': 'simple', 'explode': False }})
14-
1514
number_of_periods: int = dataclasses.field(metadata={'query_param': { 'field_name': 'numberOfPeriods', 'style': 'form', 'explode': True }})
16-
1715
r"""The number of periods to return. There will be no pagination as a query parameter, however Codat will limit the number of periods to request to 12 periods."""
1816
report_date: str = dataclasses.field(metadata={'query_param': { 'field_name': 'reportDate', 'style': 'form', 'explode': True }})
19-
2017
r"""The date in which the report is created up to. Users must specify a specific date, however the response will be provided for the full month."""
2118

2219

2320
@dataclasses.dataclass
2421
class GetAccountsForEnhancedBalanceSheetResponse:
2522

2623
content_type: str = dataclasses.field()
27-
2824
status_code: int = dataclasses.field()
29-
3025
enhanced_report: Optional[shared_enhancedreport.EnhancedReport] = dataclasses.field(default=None)
31-
3226
r"""OK"""
3327
raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
34-
3528

assess/src/codatassess/models/operations/get_accounts_for_enhanced_profit_and_loss.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,18 @@
1111
class GetAccountsForEnhancedProfitAndLossRequest:
1212

1313
company_id: str = dataclasses.field(metadata={'path_param': { 'field_name': 'companyId', 'style': 'simple', 'explode': False }})
14-
1514
number_of_periods: int = dataclasses.field(metadata={'query_param': { 'field_name': 'numberOfPeriods', 'style': 'form', 'explode': True }})
16-
1715
r"""The number of periods to return. There will be no pagination as a query parameter, however Codat will limit the number of periods to request to 12 periods."""
1816
report_date: str = dataclasses.field(metadata={'query_param': { 'field_name': 'reportDate', 'style': 'form', 'explode': True }})
19-
2017
r"""The date in which the report is created up to. Users must specify a specific date, however the response will be provided for the full month."""
2118

2219

2320
@dataclasses.dataclass
2421
class GetAccountsForEnhancedProfitAndLossResponse:
2522

2623
content_type: str = dataclasses.field()
27-
2824
status_code: int = dataclasses.field()
29-
3025
enhanced_report: Optional[shared_enhancedreport.EnhancedReport] = dataclasses.field(default=None)
31-
3226
r"""OK"""
3327
raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
34-
3528

assess/src/codatassess/models/operations/get_commerce_customer_retention_metrics.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,36 +12,25 @@
1212
class GetCommerceCustomerRetentionMetricsRequest:
1313

1414
company_id: str = dataclasses.field(metadata={'path_param': { 'field_name': 'companyId', 'style': 'simple', 'explode': False }})
15-
1615
connection_id: str = dataclasses.field(metadata={'path_param': { 'field_name': 'connectionId', 'style': 'simple', 'explode': False }})
17-
1816
number_of_periods: int = dataclasses.field(metadata={'query_param': { 'field_name': 'numberOfPeriods', 'style': 'form', 'explode': True }})
19-
2017
r"""The number of periods to return. There will be no pagination as a query parameter, however Codat will limit the number of periods to request to 12 periods."""
2118
period_length: int = dataclasses.field(metadata={'query_param': { 'field_name': 'periodLength', 'style': 'form', 'explode': True }})
22-
2319
r"""The number of months per period. E.g. 2 = 2 months per period."""
2420
period_unit: shared_periodunit_enum.PeriodUnitEnum = dataclasses.field(metadata={'query_param': { 'field_name': 'periodUnit', 'style': 'form', 'explode': True }})
25-
2621
r"""The period unit of time returned."""
2722
report_date: str = dataclasses.field(metadata={'query_param': { 'field_name': 'reportDate', 'style': 'form', 'explode': True }})
28-
2923
r"""The date in which the report is created up to. Users must specify a specific date, however the response will be provided for the full month."""
3024
include_display_names: Optional[bool] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'includeDisplayNames', 'style': 'form', 'explode': True }})
31-
3225
r"""Shows the dimensionDisplayName and itemDisplayName in measures to make the report data human-readable."""
3326

3427

3528
@dataclasses.dataclass
3629
class GetCommerceCustomerRetentionMetricsResponse:
3730

3831
content_type: str = dataclasses.field()
39-
4032
status_code: int = dataclasses.field()
41-
4233
raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
43-
4434
report: Optional[shared_report.Report] = dataclasses.field(default=None)
45-
4635
r"""OK"""
4736

0 commit comments

Comments
 (0)