Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.344.1
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Jul 20, 2024
1 parent 831123a commit 3749650
Show file tree
Hide file tree
Showing 9 changed files with 118 additions and 103 deletions.
6 changes: 3 additions & 3 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
lockVersion: 2.0.0
id: b0b519b1-d1d3-43b2-82dd-b4292eadd4b0
management:
docChecksum: 638dbecd668cc1d7818c3b5aefd2d3e1
docChecksum: 5b362866a3e7a85c830c6cb1f1cf4896
docVersion: 0.4.0 .
speakeasyVersion: 1.332.1
generationVersion: 2.366.1
releaseVersion: 6.0.1
configChecksum: 97d1236f08906ddf9eec64830edad7ae
releaseVersion: 6.2.0
configChecksum: 48969b4d7724988d84c0cce48b9a8753
repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-python.git
repoSubDirectory: .
installationURL: https://github.com/speakeasy-api/speakeasy-client-sdk-python.git
Expand Down
3 changes: 2 additions & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: false
python:
version: 6.0.1
version: 6.2.0
additionalDependencies:
dev: {}
main: {}
authors:
- Speakeasy
clientServerStatusCodesAsErrors: true
description: Speakeasy API Client SDK for Python
enumFormat: enum
flattenGlobalSecurity: false
flattenRequests: false
imports:
Expand Down
8 changes: 4 additions & 4 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ speakeasyVersion: 1.332.1
sources:
speakeasy-openapi:
sourceNamespace: speakeasy-openapi
sourceRevisionDigest: sha256:f880ed96c602f2283878bfca703285e92a097cc042dc1f7ab5396a86b55a1895
sourceBlobDigest: sha256:edb4044f351de8961bca49a9b0e558b03ee41e96ed79ba21a86c447b9bf2c53e
sourceRevisionDigest: sha256:121b6a8fba2d6cc7179b89ab8591c1e2941f165008a40ce4f11129d7029625af
sourceBlobDigest: sha256:006c8b9bf2fa7c9da133155e3cba4d985edd45e5ebf8e41639a771c7a207fca5
tags:
- latest
- main
targets:
speakeasy-client-sdk-python:
source: speakeasy-openapi
sourceNamespace: speakeasy-openapi
sourceRevisionDigest: sha256:f880ed96c602f2283878bfca703285e92a097cc042dc1f7ab5396a86b55a1895
sourceBlobDigest: sha256:edb4044f351de8961bca49a9b0e558b03ee41e96ed79ba21a86c447b9bf2c53e
sourceRevisionDigest: sha256:121b6a8fba2d6cc7179b89ab8591c1e2941f165008a40ce4f11129d7029625af
sourceBlobDigest: sha256:006c8b9bf2fa7c9da133155e3cba4d985edd45e5ebf8e41639a771c7a207fca5
outLocation: /github/workspace/repo
workflow:
workflowVersion: 1.0.0
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -1746,4 +1746,14 @@ Based on:
### Generated
- [python v6.0.1] .
### Releases
- [PyPI v6.0.1] https://pypi.org/project/speakeasy-client-sdk-python/6.0.1 - .
- [PyPI v6.0.1] https://pypi.org/project/speakeasy-client-sdk-python/6.0.1 - .

## 2024-07-20 00:11:19
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.344.1 (2.376.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v6.2.0] .
### Releases
- [PyPI v6.2.0] https://pypi.org/project/speakeasy-client-sdk-python/6.2.0 - .
160 changes: 80 additions & 80 deletions docs/models/shared/clievent.md

Large diffs are not rendered by default.

18 changes: 10 additions & 8 deletions docs/models/shared/generatebumptype.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
# GenerateBumpType

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


## Values

| Name | Value |
| -------- | -------- |
| `MAJOR` | major |
| `MINOR` | minor |
| `PATCH` | patch |
| `CUSTOM` | custom |
| `NONE` | none |
| Name | Value |
| ------------ | ------------ |
| `MAJOR` | major |
| `MINOR` | minor |
| `PATCH` | patch |
| `CUSTOM` | custom |
| `GRADUATE` | graduate |
| `PRERELEASE` | prerelease |
| `NONE` | none |
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "speakeasy-client-sdk-python"
version = "6.0.1"
version = "6.2.0"
description = "Speakeasy API Client SDK for Python"
authors = ["Speakeasy",]
readme = "README.md"
Expand Down
8 changes: 5 additions & 3 deletions src/speakeasy_client_sdk_python/models/shared/clievent.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@


class GenerateBumpType(str, Enum):
r"""Bump type of the lock file (calculated semver delta, or a custom change (manual release))"""
r"""Bump type of the lock file (calculated semver delta, custom change (manual release), or prerelease/graduate)"""
MAJOR = "major"
MINOR = "minor"
PATCH = "patch"
CUSTOM = "custom"
GRADUATE = "graduate"
PRERELEASE = "prerelease"
NONE = "none"


Expand Down Expand Up @@ -54,7 +56,7 @@ class CliEventTypedDict(TypedDict):
error: NotRequired[str]
r"""Error message if the event was not successful."""
generate_bump_type: NotRequired[GenerateBumpType]
r"""Bump type of the lock file (calculated semver delta, or a custom change (manual release))"""
r"""Bump type of the lock file (calculated semver delta, custom change (manual release), or prerelease/graduate)"""
generate_config_post_checksum: NotRequired[str]
r"""Checksum of the configuration file (post generation)"""
generate_config_post_raw: NotRequired[str]
Expand Down Expand Up @@ -213,7 +215,7 @@ class CliEvent(BaseModel):
error: Optional[str] = None
r"""Error message if the event was not successful."""
generate_bump_type: Optional[GenerateBumpType] = None
r"""Bump type of the lock file (calculated semver delta, or a custom change (manual release))"""
r"""Bump type of the lock file (calculated semver delta, custom change (manual release), or prerelease/graduate)"""
generate_config_post_checksum: Optional[str] = None
r"""Checksum of the configuration file (post generation)"""
generate_config_post_raw: Optional[str] = None
Expand Down
4 changes: 2 additions & 2 deletions src/speakeasy_client_sdk_python/sdkconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ class SDKConfiguration:
server: Optional[str] = ""
language: str = "python"
openapi_doc_version: str = "0.4.0 ."
sdk_version: str = "6.0.1"
sdk_version: str = "6.2.0"
gen_version: str = "2.366.1"
user_agent: str = "speakeasy-sdk/python 6.0.1 2.366.1 0.4.0 . speakeasy-client-sdk-python"
user_agent: str = "speakeasy-sdk/python 6.2.0 2.366.1 0.4.0 . speakeasy-client-sdk-python"
retry_config: Optional[Nullable[RetryConfig]] = UNSET
timeout_config: Optional[int] = None

Expand Down

0 comments on commit 3749650

Please sign in to comment.