Skip to content

Commit 9ce6d70

Browse files
committed
ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.47.4
1 parent 8fbdd51 commit 9ce6d70

File tree

6 files changed

+22
-13
lines changed

6 files changed

+22
-13
lines changed

accounting/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 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Accounting.yaml
471471
- Speakeasy CLI 1.47.4 (2.40.1) https://github.com/speakeasy-api/speakeasy
472472
### Releases
473-
- [PyPI v0.21.0] https://pypi.org/project/codat-accounting/0.21.0 - accounting
473+
- [PyPI v0.21.0] https://pypi.org/project/codat-accounting/0.21.0 - accounting
474+
475+
## 2023-06-15 12:29:45
476+
### Changes
477+
Based on:
478+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Accounting.yaml
479+
- Speakeasy CLI 1.47.4 (2.40.1) https://github.com/speakeasy-api/speakeasy
480+
### Releases
481+
- [PyPI v0.21.1] https://pypi.org/project/codat-accounting/0.21.1 - accounting

accounting/docs/models/shared/payments.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Success
55

66
## Fields
77

8-
| Field | Type | Required | Description |
9-
| ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- |
10-
| `links` | [Links](../../models/shared/links.md) | :heavy_check_mark: | N/A |
11-
| `page_number` | *int* | :heavy_check_mark: | N/A |
12-
| `page_size` | *int* | :heavy_check_mark: | N/A |
13-
| `results` | list[[Payments](../../models/shared/payments.md)] | :heavy_minus_sign: | N/A |
14-
| `total_results` | *int* | :heavy_check_mark: | N/A |
8+
| Field | Type | Required | Description |
9+
| ----------------------------------------------- | ----------------------------------------------- | ----------------------------------------------- | ----------------------------------------------- |
10+
| `links` | [Links](../../models/shared/links.md) | :heavy_check_mark: | N/A |
11+
| `page_number` | *int* | :heavy_check_mark: | N/A |
12+
| `page_size` | *int* | :heavy_check_mark: | N/A |
13+
| `results` | list[[Payment](../../models/shared/payment.md)] | :heavy_minus_sign: | N/A |
14+
| `total_results` | *int* | :heavy_check_mark: | N/A |

accounting/gen.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
configVersion: 1.0.0
22
management:
3-
docChecksum: 00b3a39dbdd989887f939f8ffadd5382
3+
docChecksum: 2cc72fb74904965a6ed366955189582b
44
docVersion: 2.1.0
55
speakeasyVersion: 1.47.4
66
generationVersion: 2.40.1
@@ -9,7 +9,7 @@ generation:
99
singleTagPerOp: false
1010
telemetryEnabled: true
1111
python:
12-
version: 0.21.0
12+
version: 0.21.1
1313
author: Speakeasy
1414
description: Python Client SDK Generated by Speakeasy
1515
maxMethodParams: 0

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

accounting/src/codataccounting/models/shared/payments.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from __future__ import annotations
44
import dataclasses
55
from ..shared import links as shared_links
6+
from ..shared import payment as shared_payment
67
from codataccounting import utils
78
from dataclasses_json import Undefined, dataclass_json
89
from typing import Optional
@@ -17,6 +18,6 @@ class Payments:
1718
page_number: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('pageNumber') }})
1819
page_size: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('pageSize') }})
1920
total_results: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('totalResults') }})
20-
results: Optional[list[Payments]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('results'), 'exclude': lambda f: f is None }})
21+
results: Optional[list[shared_payment.Payment]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('results'), 'exclude': lambda f: f is None }})
2122

2223

accounting/src/codataccounting/sdkconfiguration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class SDKConfiguration:
1818
server_idx: int = 0
1919
language: str = 'python'
2020
openapi_doc_version: str = '2.1.0'
21-
sdk_version: str = '0.21.0'
21+
sdk_version: str = '0.21.1'
2222
gen_version: str = '2.40.1'
2323

2424
def get_server_details(self) -> tuple[str, dict[str, str]]:

0 commit comments

Comments
 (0)