Skip to content

Commit cf3efec

Browse files
speakeasybotfrankie567
authored andcommitted
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.448.0
1 parent 0b49f67 commit cf3efec

File tree

9 files changed

+258
-29
lines changed

9 files changed

+258
-29
lines changed

.speakeasy/gen.lock

+6-6
Large diffs are not rendered by default.

.speakeasy/gen.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ generation:
1616
oAuth2ClientCredentialsEnabled: true
1717
oAuth2PasswordEnabled: false
1818
python:
19-
version: 0.9.0
19+
version: 0.9.1
2020
additionalDependencies:
2121
dev:
2222
pytest: ^8.3.3

.speakeasy/workflow.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.446.1
1+
speakeasyVersion: 1.448.0
22
sources:
33
Polar-OAS:
44
sourceNamespace: polar-oas
5-
sourceRevisionDigest: sha256:dae78e5264f7348f47c55eacaf633c5d0d249bdf1ad89ead475f3471645a6c2c
5+
sourceRevisionDigest: sha256:115ac3ae0f597dce27e93fe977d6d2471eb385e611c35ddac56f7fb2c7b8acb6
66
sourceBlobDigest: sha256:3defd416a4202fbf16d78eb0e511f678dbb85e09c9df9dbd75aefd6f66e19dda
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1732634409
9+
- speakeasy-sdk-regen-1732702748
1010
- 0.1.0
1111
targets:
1212
polar:
1313
source: Polar-OAS
1414
sourceNamespace: polar-oas
15-
sourceRevisionDigest: sha256:dae78e5264f7348f47c55eacaf633c5d0d249bdf1ad89ead475f3471645a6c2c
15+
sourceRevisionDigest: sha256:115ac3ae0f597dce27e93fe977d6d2471eb385e611c35ddac56f7fb2c7b8acb6
1616
sourceBlobDigest: sha256:3defd416a4202fbf16d78eb0e511f678dbb85e09c9df9dbd75aefd6f66e19dda
1717
codeSamplesNamespace: polar-oas-code-samples
18-
codeSamplesRevisionDigest: sha256:de0cdd8ebf82736bfc00b1ebcde6da4a5fb1619042822ad5fc6737b9c6004824
18+
codeSamplesRevisionDigest: sha256:60860ff731a79d987094cb40778b8bfcffd13c95b2d1b8d340768739dc55bad6
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

.vscode/settings.json

+1-10
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,5 @@
22
"python.testing.pytestArgs": ["tests", "-vv"],
33
"python.testing.unittestEnabled": false,
44
"python.testing.pytestEnabled": true,
5-
"pylint.args": ["--rcfile=pylintrc"],
6-
"python.analysis.autoImportCompletions": true,
7-
"[python]": {
8-
"editor.formatOnSave": true,
9-
"editor.codeActionsOnSave": {
10-
"source.fixAll": "explicit",
11-
"source.organizeImports": "explicit"
12-
},
13-
"editor.defaultFormatter": "charliermarsh.ruff"
14-
},
5+
"pylint.args": ["--rcfile=pylintrc"]
156
}

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -333,4 +333,14 @@ Based on:
333333
### Generated
334334
- [python v0.9.0] .
335335
### Releases
336-
- [PyPI v0.9.0] https://pypi.org/project/polar-sdk/0.9.0 - .
336+
- [PyPI v0.9.0] https://pypi.org/project/polar-sdk/0.9.0 - .
337+
338+
## 2024-11-27 10:19:04
339+
### Changes
340+
Based on:
341+
- OpenAPI Doc
342+
- Speakeasy CLI 1.448.0 (2.466.0) https://github.com/speakeasy-api/speakeasy
343+
### Generated
344+
- [python v0.9.1] .
345+
### Releases
346+
- [PyPI v0.9.1] https://pypi.org/project/polar-sdk/0.9.1 - .

poetry.lock

+226-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "polar-sdk"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
description = "Polar SDK for Python"
55
authors = ["Polar",]
66
readme = "README-PYPI.md"
@@ -23,11 +23,14 @@ httpx = "^0.27.0"
2323
jsonpath-python = "^1.0.6"
2424
pydantic = "~2.9.2"
2525
python-dateutil = "^2.8.2"
26+
standardwebhooks = "^1.0.0"
2627
typing-inspect = "^0.9.0"
2728

2829
[tool.poetry.group.dev.dependencies]
2930
mypy = "==1.13.0"
3031
pylint = "==3.2.3"
32+
pytest = "^8.3.3"
33+
ruff = "^0.8.0"
3134
types-python-dateutil = "^2.9.0.20240316"
3235

3336
[build-system]

src/polar_sdk/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import importlib.metadata
44

55
__title__: str = "polar-sdk"
6-
__version__: str = "0.9.0"
6+
__version__: str = "0.9.1"
77

88
try:
99
if __package__ is not None:

src/polar_sdk/sdkconfiguration.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ class SDKConfiguration:
3131
server: Optional[str] = ""
3232
language: str = "python"
3333
openapi_doc_version: str = "0.1.0"
34-
sdk_version: str = "0.9.0"
35-
gen_version: str = "2.462.1"
36-
user_agent: str = "speakeasy-sdk/python 0.9.0 2.462.1 0.1.0 polar-sdk"
34+
sdk_version: str = "0.9.1"
35+
gen_version: str = "2.466.0"
36+
user_agent: str = "speakeasy-sdk/python 0.9.1 2.466.0 0.1.0 polar-sdk"
3737
retry_config: OptionalNullable[RetryConfig] = Field(default_factory=lambda: UNSET)
3838
timeout_ms: Optional[int] = None
3939

0 commit comments

Comments
 (0)