Skip to content

Commit e169ff0

Browse files
committed
ci: regenerated with OpenAPI Doc 0.4.0, Speakeasy CLI 1.192.1
1 parent dc906d3 commit e169ff0

File tree

7 files changed

+29
-13
lines changed

7 files changed

+29
-13
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: 90bb5b2f880d4a86868122f9a6b08d40
4+
docChecksum: 10893fff3e9a4e77b8628de48190cd77
55
docVersion: 0.4.0
66
speakeasyVersion: internal
7-
generationVersion: 2.263.3
8-
releaseVersion: 5.2.4
9-
configChecksum: 00988069ae8cd3cbef681c9574631de7
7+
generationVersion: 2.269.0
8+
releaseVersion: 5.2.5
9+
configChecksum: 5fd79df4352833b4f341c2b7935cdca0
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
@@ -1246,4 +1246,14 @@ Based on:
12461246
### Generated
12471247
- [python v5.2.4] .
12481248
### Releases
1249-
- [PyPI v5.2.4] https://pypi.org/project/speakeasy-client-sdk-python/5.2.4 - .
1249+
- [PyPI v5.2.4] https://pypi.org/project/speakeasy-client-sdk-python/5.2.4 - .
1250+
1251+
## 2024-02-23 00:10:15
1252+
### Changes
1253+
Based on:
1254+
- OpenAPI Doc 0.4.0 https://docs.speakeasyapi.dev/openapi.yaml
1255+
- Speakeasy CLI 1.192.1 (2.269.0) https://github.com/speakeasy-api/speakeasy
1256+
### Generated
1257+
- [python v5.2.5] .
1258+
### Releases
1259+
- [PyPI v5.2.5] https://pypi.org/project/speakeasy-client-sdk-python/5.2.5 - .

docs/models/operations/getworkspaceaccessrequest.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
## Fields
55

6-
| Field | Type | Required | Description |
7-
| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- | ------------------------------------------- |
8-
| `gen_lock_id` | *Optional[str]* | :heavy_minus_sign: | Unique identifier of the generation target. |
6+
| Field | Type | Required | Description |
7+
| -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- |
8+
| `gen_lock_id` | *Optional[str]* | :heavy_minus_sign: | Unique identifier of the generation target. |
9+
| `passive` | *Optional[bool]* | :heavy_minus_sign: | Skip side-effects like incrementing metrics. |
10+
| `target_type` | *Optional[str]* | :heavy_minus_sign: | The type of the generated target. |

gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ generation:
88
parameterOrderingFeb2024: false
99
requestResponseComponentNamesFeb2024: false
1010
python:
11-
version: 5.2.4
11+
version: 5.2.5
1212
author: Speakeasy
1313
clientServerStatusCodesAsErrors: true
1414
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.4",
13+
version="5.2.5",
1414
author="Speakeasy",
1515
description="Speakeasy API Client SDK for Python",
1616
long_description=long_description,

src/speakeasy/models/operations/getworkspaceaccess.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
class GetWorkspaceAccessRequest:
1212
gen_lock_id: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'genLockId', 'style': 'form', 'explode': True }})
1313
r"""Unique identifier of the generation target."""
14+
passive: Optional[bool] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'passive', 'style': 'form', 'explode': True }})
15+
r"""Skip side-effects like incrementing metrics."""
16+
target_type: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'targetType', 'style': 'form', 'explode': True }})
17+
r"""The type of the generated target."""
1418

1519

1620

src/speakeasy/sdkconfiguration.py

Lines changed: 3 additions & 3 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.4'
29-
gen_version: str = '2.263.3'
30-
user_agent: str = 'speakeasy-sdk/python 5.2.4 2.263.3 0.4.0 speakeasy-client-sdk-python'
28+
sdk_version: str = '5.2.5'
29+
gen_version: str = '2.269.0'
30+
user_agent: str = 'speakeasy-sdk/python 5.2.5 2.269.0 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)