Skip to content

Commit fff5adb

Browse files
committed
ci: regenerated with OpenAPI Doc 0.4.0, Speakeasy CLI 1.195.0
1 parent 59827bf commit fff5adb

File tree

9 files changed

+26
-11
lines changed

9 files changed

+26
-11
lines changed

.speakeasy/gen.lock

Lines changed: 3 additions & 3 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: 2341dd6743191a8c0148cd7bca25811d
4+
docChecksum: e7803aa801c8a80e23dbe21edbf4e9c5
55
docVersion: 0.4.0
66
speakeasyVersion: internal
77
generationVersion: 2.272.7
8-
releaseVersion: 5.2.7
9-
configChecksum: 62161fdeabb14e96b6ec69abeedd0ead
8+
releaseVersion: 5.2.8
9+
configChecksum: 2153cf881203d9f64e713f949a098799
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
@@ -1276,4 +1276,14 @@ Based on:
12761276
### Generated
12771277
- [python v5.2.7] .
12781278
### Releases
1279-
- [PyPI v5.2.7] https://pypi.org/project/speakeasy-client-sdk-python/5.2.7 - .
1279+
- [PyPI v5.2.7] https://pypi.org/project/speakeasy-client-sdk-python/5.2.7 - .
1280+
1281+
## 2024-02-28 00:10:05
1282+
### Changes
1283+
Based on:
1284+
- OpenAPI Doc 0.4.0 https://docs.speakeasyapi.dev/openapi.yaml
1285+
- Speakeasy CLI 1.195.0 (2.272.7) https://github.com/speakeasy-api/speakeasy
1286+
### Generated
1287+
- [python v5.2.8] .
1288+
### Releases
1289+
- [PyPI v5.2.8] https://pypi.org/project/speakeasy-client-sdk-python/5.2.8 - .

docs/models/shared/accessdetails.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55

66
| Field | Type | Required | Description |
77
| -------------------- | -------------------- | -------------------- | -------------------- |
8-
| `generation_allowed` | *bool* | :heavy_check_mark: | N/A |
8+
| `generation_allowed` | *bool* | :heavy_check_mark: | N/A |
9+
| `message` | *str* | :heavy_check_mark: | N/A |

docs/models/shared/targetsdk.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@
66
| Field | Type | Required | Description |
77
| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ |
88
| `generate_gen_lock_id` | *str* | :heavy_check_mark: | gen.lock ID (expected to be a uuid). The same as `id`. A unique identifier for the target. |
9-
| `generate_target` | *str* | :heavy_check_mark: | The target of the event. |
9+
| `generate_target` | *str* | :heavy_check_mark: | eg `typescript`, `terraform`, `python` |
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 |
1313
| `commit_head` | *Optional[str]* | :heavy_minus_sign: | Remote commit ID. |
1414
| `generate_config_post_version` | *Optional[str]* | :heavy_minus_sign: | Version of the generated target (post generation) |
1515
| `generate_published` | *Optional[bool]* | :heavy_minus_sign: | Indicates whether the target was considered published. |
16+
| `generate_target_name` | *Optional[str]* | :heavy_minus_sign: | The name of the target as defined by the user. |
1617
| `generate_target_version` | *Optional[str]* | :heavy_minus_sign: | The version of the Speakeasy generator for this target eg v2 of the typescript generator. |
1718
| `gh_action_organization` | *Optional[str]* | :heavy_minus_sign: | GitHub organization of the action. |
1819
| `gh_action_repository` | *Optional[str]* | :heavy_minus_sign: | GitHub repository of the action. |

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.2.7
13+
version: 5.2.8
1414
author: Speakeasy
1515
clientServerStatusCodesAsErrors: true
1616
description: Speakeasy API Client SDK for Python

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.2.7",
13+
version="5.2.8",
1414
author="Speakeasy",
1515
description="Speakeasy API Client SDK for Python",
1616
long_description=long_description,

src/speakeasy/models/shared/accessdetails.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
@dataclasses.dataclass
1111
class AccessDetails:
1212
generation_allowed: bool = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('generation_allowed') }})
13+
message: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('message') }})
1314

1415

src/speakeasy/models/shared/targetsdk.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class TargetSDK:
1515
generate_gen_lock_id: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('generate_gen_lock_id') }})
1616
r"""gen.lock ID (expected to be a uuid). The same as `id`. A unique identifier for the target."""
1717
generate_target: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('generate_target') }})
18-
r"""The target of the event."""
18+
r"""eg `typescript`, `terraform`, `python`"""
1919
id: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('id') }})
2020
r"""Unique identifier of the target the same as `generate_gen_lock_id`"""
2121
last_event_created_at: datetime = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('last_event_created_at'), 'encoder': utils.datetimeisoformat(False), 'decoder': dateutil.parser.isoparse }})
@@ -28,6 +28,8 @@ class TargetSDK:
2828
r"""Version of the generated target (post generation)"""
2929
generate_published: Optional[bool] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('generate_published'), 'exclude': lambda f: f is None }})
3030
r"""Indicates whether the target was considered published."""
31+
generate_target_name: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('generate_target_name'), 'exclude': lambda f: f is None }})
32+
r"""The name of the target as defined by the user."""
3133
generate_target_version: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('generate_target_version'), 'exclude': lambda f: f is None }})
3234
r"""The version of the Speakeasy generator for this target eg v2 of the typescript generator."""
3335
gh_action_organization: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('gh_action_organization'), 'exclude': lambda f: f is None }})

src/speakeasy/sdkconfiguration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ class SDKConfiguration:
2525
globals: Dict[str, Dict[str, Dict[str, Any]]] = field(default_factory=Dict)
2626
language: str = 'python'
2727
openapi_doc_version: str = '0.4.0'
28-
sdk_version: str = '5.2.7'
28+
sdk_version: str = '5.2.8'
2929
gen_version: str = '2.272.7'
30-
user_agent: str = 'speakeasy-sdk/python 5.2.7 2.272.7 0.4.0 speakeasy-client-sdk-python'
30+
user_agent: str = 'speakeasy-sdk/python 5.2.8 2.272.7 0.4.0 speakeasy-client-sdk-python'
3131
retry_config: RetryConfig = None
3232

3333
def get_server_details(self) -> Tuple[str, Dict[str, str]]:

0 commit comments

Comments
 (0)