Skip to content

Commit 3749650

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.344.1
1 parent 831123a commit 3749650

File tree

9 files changed

+118
-103
lines changed

9 files changed

+118
-103
lines changed

.speakeasy/gen.lock

+3-3
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: 638dbecd668cc1d7818c3b5aefd2d3e1
4+
docChecksum: 5b362866a3e7a85c830c6cb1f1cf4896
55
docVersion: 0.4.0 .
66
speakeasyVersion: 1.332.1
77
generationVersion: 2.366.1
8-
releaseVersion: 6.0.1
9-
configChecksum: 97d1236f08906ddf9eec64830edad7ae
8+
releaseVersion: 6.2.0
9+
configChecksum: 48969b4d7724988d84c0cce48b9a8753
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

.speakeasy/gen.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@ generation:
1010
auth:
1111
oAuth2ClientCredentialsEnabled: false
1212
python:
13-
version: 6.0.1
13+
version: 6.2.0
1414
additionalDependencies:
1515
dev: {}
1616
main: {}
1717
authors:
1818
- Speakeasy
1919
clientServerStatusCodesAsErrors: true
2020
description: Speakeasy API Client SDK for Python
21+
enumFormat: enum
2122
flattenGlobalSecurity: false
2223
flattenRequests: false
2324
imports:

.speakeasy/workflow.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ speakeasyVersion: 1.332.1
22
sources:
33
speakeasy-openapi:
44
sourceNamespace: speakeasy-openapi
5-
sourceRevisionDigest: sha256:f880ed96c602f2283878bfca703285e92a097cc042dc1f7ab5396a86b55a1895
6-
sourceBlobDigest: sha256:edb4044f351de8961bca49a9b0e558b03ee41e96ed79ba21a86c447b9bf2c53e
5+
sourceRevisionDigest: sha256:121b6a8fba2d6cc7179b89ab8591c1e2941f165008a40ce4f11129d7029625af
6+
sourceBlobDigest: sha256:006c8b9bf2fa7c9da133155e3cba4d985edd45e5ebf8e41639a771c7a207fca5
77
tags:
88
- latest
99
- main
1010
targets:
1111
speakeasy-client-sdk-python:
1212
source: speakeasy-openapi
1313
sourceNamespace: speakeasy-openapi
14-
sourceRevisionDigest: sha256:f880ed96c602f2283878bfca703285e92a097cc042dc1f7ab5396a86b55a1895
15-
sourceBlobDigest: sha256:edb4044f351de8961bca49a9b0e558b03ee41e96ed79ba21a86c447b9bf2c53e
14+
sourceRevisionDigest: sha256:121b6a8fba2d6cc7179b89ab8591c1e2941f165008a40ce4f11129d7029625af
15+
sourceBlobDigest: sha256:006c8b9bf2fa7c9da133155e3cba4d985edd45e5ebf8e41639a771c7a207fca5
1616
outLocation: /github/workspace/repo
1717
workflow:
1818
workflowVersion: 1.0.0

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1746,4 +1746,14 @@ Based on:
17461746
### Generated
17471747
- [python v6.0.1] .
17481748
### Releases
1749-
- [PyPI v6.0.1] https://pypi.org/project/speakeasy-client-sdk-python/6.0.1 - .
1749+
- [PyPI v6.0.1] https://pypi.org/project/speakeasy-client-sdk-python/6.0.1 - .
1750+
1751+
## 2024-07-20 00:11:19
1752+
### Changes
1753+
Based on:
1754+
- OpenAPI Doc
1755+
- Speakeasy CLI 1.344.1 (2.376.2) https://github.com/speakeasy-api/speakeasy
1756+
### Generated
1757+
- [python v6.2.0] .
1758+
### Releases
1759+
- [PyPI v6.2.0] https://pypi.org/project/speakeasy-client-sdk-python/6.2.0 - .

docs/models/shared/clievent.md

+80-80
Large diffs are not rendered by default.
+10-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
# GenerateBumpType
22

3-
Bump type of the lock file (calculated semver delta, or a custom change (manual release))
3+
Bump type of the lock file (calculated semver delta, custom change (manual release), or prerelease/graduate)
44

55

66
## Values
77

8-
| Name | Value |
9-
| -------- | -------- |
10-
| `MAJOR` | major |
11-
| `MINOR` | minor |
12-
| `PATCH` | patch |
13-
| `CUSTOM` | custom |
14-
| `NONE` | none |
8+
| Name | Value |
9+
| ------------ | ------------ |
10+
| `MAJOR` | major |
11+
| `MINOR` | minor |
12+
| `PATCH` | patch |
13+
| `CUSTOM` | custom |
14+
| `GRADUATE` | graduate |
15+
| `PRERELEASE` | prerelease |
16+
| `NONE` | none |

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "speakeasy-client-sdk-python"
3-
version = "6.0.1"
3+
version = "6.2.0"
44
description = "Speakeasy API Client SDK for Python"
55
authors = ["Speakeasy",]
66
readme = "README.md"

src/speakeasy_client_sdk_python/models/shared/clievent.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,13 @@
1010

1111

1212
class GenerateBumpType(str, Enum):
13-
r"""Bump type of the lock file (calculated semver delta, or a custom change (manual release))"""
13+
r"""Bump type of the lock file (calculated semver delta, custom change (manual release), or prerelease/graduate)"""
1414
MAJOR = "major"
1515
MINOR = "minor"
1616
PATCH = "patch"
1717
CUSTOM = "custom"
18+
GRADUATE = "graduate"
19+
PRERELEASE = "prerelease"
1820
NONE = "none"
1921

2022

@@ -54,7 +56,7 @@ class CliEventTypedDict(TypedDict):
5456
error: NotRequired[str]
5557
r"""Error message if the event was not successful."""
5658
generate_bump_type: NotRequired[GenerateBumpType]
57-
r"""Bump type of the lock file (calculated semver delta, or a custom change (manual release))"""
59+
r"""Bump type of the lock file (calculated semver delta, custom change (manual release), or prerelease/graduate)"""
5860
generate_config_post_checksum: NotRequired[str]
5961
r"""Checksum of the configuration file (post generation)"""
6062
generate_config_post_raw: NotRequired[str]
@@ -213,7 +215,7 @@ class CliEvent(BaseModel):
213215
error: Optional[str] = None
214216
r"""Error message if the event was not successful."""
215217
generate_bump_type: Optional[GenerateBumpType] = None
216-
r"""Bump type of the lock file (calculated semver delta, or a custom change (manual release))"""
218+
r"""Bump type of the lock file (calculated semver delta, custom change (manual release), or prerelease/graduate)"""
217219
generate_config_post_checksum: Optional[str] = None
218220
r"""Checksum of the configuration file (post generation)"""
219221
generate_config_post_raw: Optional[str] = None

src/speakeasy_client_sdk_python/sdkconfiguration.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ class SDKConfiguration:
2727
server: Optional[str] = ""
2828
language: str = "python"
2929
openapi_doc_version: str = "0.4.0 ."
30-
sdk_version: str = "6.0.1"
30+
sdk_version: str = "6.2.0"
3131
gen_version: str = "2.366.1"
32-
user_agent: str = "speakeasy-sdk/python 6.0.1 2.366.1 0.4.0 . speakeasy-client-sdk-python"
32+
user_agent: str = "speakeasy-sdk/python 6.2.0 2.366.1 0.4.0 . speakeasy-client-sdk-python"
3333
retry_config: Optional[Nullable[RetryConfig]] = UNSET
3434
timeout_config: Optional[int] = None
3535

0 commit comments

Comments
 (0)