Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: 🐝 Update SDK - Generate 0.9.3 #41

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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: e7042734-e669-4c36-85da-bbb4a7500ac8
management:
docChecksum: 8c77dbcf9616a473577c1b831475c46b
docChecksum: 831ba7d4559e432dacdf5426a3f8dc70
docVersion: 0.1.0
speakeasyVersion: 1.448.2
generationVersion: 2.467.4
releaseVersion: 0.9.2
configChecksum: 877ad6a35df16c3c999ad9f15f5def5d
releaseVersion: 0.9.3
configChecksum: faf409a1d6e3169e6a9bb3448edef20d
repoURL: https://github.com/polarsource/polar-python.git
installationURL: https://github.com/polarsource/polar-python.git
published: true
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ generation:
oAuth2ClientCredentialsEnabled: true
oAuth2PasswordEnabled: false
python:
version: 0.9.2
version: 0.9.3
additionalDependencies:
dev:
pytest: ^8.3.3
Expand Down
12 changes: 6 additions & 6 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ speakeasyVersion: 1.448.2
sources:
Polar-OAS:
sourceNamespace: polar-oas
sourceRevisionDigest: sha256:d700372564feec09d41f49b3c3daec485bca998a50b493c434c80554b8ef4723
sourceBlobDigest: sha256:239dfb13abf4b1c207ae51e561a2a4bbfd64f6d2dd849841705967e2302f7371
sourceRevisionDigest: sha256:75e97ae9902259b6a0db3e1371f2120cd9abccd6545c16241dda5206dd49da26
sourceBlobDigest: sha256:1583936acbc690e5dd2c1a4836e42d6ab0b12319e763bf4de3579ea47095513f
tags:
- latest
- speakeasy-sdk-regen-1732839174
- speakeasy-sdk-regen-1732925555
- 0.1.0
targets:
polar:
source: Polar-OAS
sourceNamespace: polar-oas
sourceRevisionDigest: sha256:d700372564feec09d41f49b3c3daec485bca998a50b493c434c80554b8ef4723
sourceBlobDigest: sha256:239dfb13abf4b1c207ae51e561a2a4bbfd64f6d2dd849841705967e2302f7371
sourceRevisionDigest: sha256:75e97ae9902259b6a0db3e1371f2120cd9abccd6545c16241dda5206dd49da26
sourceBlobDigest: sha256:1583936acbc690e5dd2c1a4836e42d6ab0b12319e763bf4de3579ea47095513f
codeSamplesNamespace: polar-oas-code-samples
codeSamplesRevisionDigest: sha256:147b049fed6ff975e3d269ad67c364cfb6bbe3ec6a91bb583b8ec33a4abb983d
codeSamplesRevisionDigest: sha256:a3b8c33e3cdf81c7da50360b55fcd2952fcb6214dab720b63b9ec7535becaae1
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,4 +353,14 @@ Based on:
### Generated
- [python v0.9.2] .
### Releases
- [PyPI v0.9.2] https://pypi.org/project/polar-sdk/0.9.2 - .
- [PyPI v0.9.2] https://pypi.org/project/polar-sdk/0.9.2 - .

## 2024-12-02 00:13:34
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.448.2 (2.467.4) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.9.3] .
### Releases
- [PyPI v0.9.3] https://pypi.org/project/polar-sdk/0.9.3 - .
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 = "polar-sdk"
version = "0.9.2"
version = "0.9.3"
description = "Polar SDK for Python"
authors = ["Polar",]
readme = "README-PYPI.md"
Expand Down
2 changes: 1 addition & 1 deletion src/polar_sdk/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import importlib.metadata

__title__: str = "polar-sdk"
__version__: str = "0.9.2"
__version__: str = "0.9.3"

try:
if __package__ is not None:
Expand Down
4 changes: 2 additions & 2 deletions src/polar_sdk/sdkconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ class SDKConfiguration:
server: Optional[str] = ""
language: str = "python"
openapi_doc_version: str = "0.1.0"
sdk_version: str = "0.9.2"
sdk_version: str = "0.9.3"
gen_version: str = "2.467.4"
user_agent: str = "speakeasy-sdk/python 0.9.2 2.467.4 0.1.0 polar-sdk"
user_agent: str = "speakeasy-sdk/python 0.9.3 2.467.4 0.1.0 polar-sdk"
retry_config: OptionalNullable[RetryConfig] = Field(default_factory=lambda: UNSET)
timeout_ms: Optional[int] = None

Expand Down