Skip to content

Commit ed02e16

Browse files
committed
ci: regenerated with OpenAPI Doc 0.4.0, Speakeasy CLI 1.200.0
1 parent 60edcdd commit ed02e16

File tree

7 files changed

+23
-10
lines changed

7 files changed

+23
-10
lines changed

.speakeasy/gen.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
lockVersion: 2.0.0
22
id: b0b519b1-d1d3-43b2-82dd-b4292eadd4b0
33
management:
4-
docChecksum: 9e766720141ee71ea97dae02c573b883
4+
docChecksum: 9a4517dbb12d2cf1b7c3f411d1e2ff4f
55
docVersion: 0.4.0
66
speakeasyVersion: internal
7-
generationVersion: 2.275.4
8-
releaseVersion: 5.3.0
9-
configChecksum: 0d0e7964adcd5a451c9741b79154fa4e
7+
generationVersion: 2.277.0
8+
releaseVersion: 5.3.1
9+
configChecksum: 2f25cbaf582b44df763f8c3fcfe0437f
1010
repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-python.git
1111
repoSubDirectory: .
1212
installationURL: https://github.com/speakeasy-api/speakeasy-client-sdk-python.git

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1296,4 +1296,14 @@ Based on:
12961296
### Generated
12971297
- [python v5.3.0] .
12981298
### Releases
1299-
- [PyPI v5.3.0] https://pypi.org/project/speakeasy-client-sdk-python/5.3.0 - .
1299+
- [PyPI v5.3.0] https://pypi.org/project/speakeasy-client-sdk-python/5.3.0 - .
1300+
1301+
## 2024-03-02 00:09:49
1302+
### Changes
1303+
Based on:
1304+
- OpenAPI Doc 0.4.0 https://docs.speakeasyapi.dev/openapi.yaml
1305+
- Speakeasy CLI 1.200.0 (2.277.0) https://github.com/speakeasy-api/speakeasy
1306+
### Generated
1307+
- [python v5.3.1] .
1308+
### Releases
1309+
- [PyPI v5.3.1] https://pypi.org/project/speakeasy-client-sdk-python/5.3.1 - .

docs/models/shared/targetsdk.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
| `id` | *str* | :heavy_check_mark: | Unique identifier of the target the same as `generate_gen_lock_id` |
1111
| `last_event_created_at` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | Timestamp when the event was created in the database. |
1212
| `last_event_id` | *str* | :heavy_check_mark: | Unique identifier of the last event for the target |
13+
| `total_events` | *int* | :heavy_check_mark: | Total number of events for the target |
1314
| `commit_head` | *Optional[str]* | :heavy_minus_sign: | Remote commit ID. |
1415
| `generate_config_post_version` | *Optional[str]* | :heavy_minus_sign: | Version of the generated target (post generation) |
1516
| `generate_published` | *Optional[bool]* | :heavy_minus_sign: | Indicates whether the target was considered published. |

gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ generation:
1010
auth:
1111
oAuth2ClientCredentialsEnabled: false
1212
python:
13-
version: 5.3.0
13+
version: 5.3.1
1414
additionalDependencies:
1515
dependencies: {}
1616
extraDependencies:

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="speakeasy-client-sdk-python",
13-
version="5.3.0",
13+
version="5.3.1",
1414
author="Speakeasy",
1515
description="Speakeasy API Client SDK for Python",
1616
long_description=long_description,

src/speakeasy/models/shared/targetsdk.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ class TargetSDK:
2222
r"""Timestamp when the event was created in the database."""
2323
last_event_id: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('last_event_id') }})
2424
r"""Unique identifier of the last event for the target"""
25+
total_events: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('total_events') }})
26+
r"""Total number of events for the target"""
2527
commit_head: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('commit_head'), 'exclude': lambda f: f is None }})
2628
r"""Remote commit ID."""
2729
generate_config_post_version: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('generate_config_post_version'), 'exclude': lambda f: f is None }})

src/speakeasy/sdkconfiguration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ class SDKConfiguration:
2626
globals: Dict[str, Dict[str, Dict[str, Any]]] = field(default_factory=Dict)
2727
language: str = 'python'
2828
openapi_doc_version: str = '0.4.0'
29-
sdk_version: str = '5.3.0'
30-
gen_version: str = '2.275.4'
31-
user_agent: str = 'speakeasy-sdk/python 5.3.0 2.275.4 0.4.0 speakeasy-client-sdk-python'
29+
sdk_version: str = '5.3.1'
30+
gen_version: str = '2.277.0'
31+
user_agent: str = 'speakeasy-sdk/python 5.3.1 2.277.0 0.4.0 speakeasy-client-sdk-python'
3232
retry_config: RetryConfig = None
3333
_hooks: SDKHooks = None
3434

0 commit comments

Comments
 (0)