Skip to content

Commit 8f47b6e

Browse files
speakeasybotfrankie567
authored andcommittedNov 6, 2024·
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.431.0
1 parent 4d16076 commit 8f47b6e

11 files changed

+55
-29
lines changed
 

‎.speakeasy/gen.lock

+17-17
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.7.1
19+
version: 0.7.2
2020
additionalDependencies:
2121
dev: {}
2222
main: {}

‎.speakeasy/workflow.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ speakeasyVersion: 1.431.0
22
sources:
33
Polar-OAS:
44
sourceNamespace: polar-oas
5-
sourceRevisionDigest: sha256:bdfd06b23a17ee112bbcfaaf77e0e5293d2305ec4704ab750626221f270c5bfc
6-
sourceBlobDigest: sha256:7316038513ebb138e351a2af12f12b570b62f9691c2be6df032216ee0406f91a
5+
sourceRevisionDigest: sha256:24ce22f912266c290b90a984be308b37c71712a60a136bd2a24fbe08555eec7d
6+
sourceBlobDigest: sha256:0e4a2d08c7f1223110e726f0037614363ba877289fef1c97a1a12fd3d5a7dc59
77
tags:
88
- latest
99
- main
1010
targets:
1111
polar:
1212
source: Polar-OAS
1313
sourceNamespace: polar-oas
14-
sourceRevisionDigest: sha256:bdfd06b23a17ee112bbcfaaf77e0e5293d2305ec4704ab750626221f270c5bfc
15-
sourceBlobDigest: sha256:7316038513ebb138e351a2af12f12b570b62f9691c2be6df032216ee0406f91a
14+
sourceRevisionDigest: sha256:24ce22f912266c290b90a984be308b37c71712a60a136bd2a24fbe08555eec7d
15+
sourceBlobDigest: sha256:0e4a2d08c7f1223110e726f0037614363ba877289fef1c97a1a12fd3d5a7dc59
1616
workflow:
1717
workflowVersion: 1.0.0
1818
speakeasyVersion: latest

‎RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -283,4 +283,14 @@ Based on:
283283
### Generated
284284
- [python v0.7.1] .
285285
### Releases
286-
- [PyPI v0.7.1] https://pypi.org/project/polar-sdk/0.7.1 - .
286+
- [PyPI v0.7.1] https://pypi.org/project/polar-sdk/0.7.1 - .
287+
288+
## 2024-11-06 14:14:37
289+
### Changes
290+
Based on:
291+
- OpenAPI Doc
292+
- Speakeasy CLI 1.431.0 (2.451.0) https://github.com/speakeasy-api/speakeasy
293+
### Generated
294+
- [python v0.7.2] .
295+
### Releases
296+
- [PyPI v0.7.2] https://pypi.org/project/polar-sdk/0.7.2 - .

‎docs/models/checkoutupdate.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ Update an existing checkout session using an access token.
1616
| `customer_tax_id` | *OptionalNullable[str]* | :heavy_minus_sign: | N/A |
1717
| `metadata` | Dict[str, *str*] | :heavy_minus_sign: | Key-value object allowing you to store additional information.<br/><br/>The key must be a string with a maximum length of **40 characters**.<br/>The value must be a string with a maximum length of **500 characters**.<br/>You can store up to **50 key-value pairs**. |
1818
| `customer_ip_address` | *OptionalNullable[str]* | :heavy_minus_sign: | N/A |
19-
| `success_url` | *OptionalNullable[str]* | :heavy_minus_sign: | URL where the customer will be redirected after a successful payment.You can add the `checkout_id={CHECKOUT_ID}` query parameter to retrieve the checkout session id. |
19+
| `success_url` | *OptionalNullable[str]* | :heavy_minus_sign: | URL where the customer will be redirected after a successful payment.You can add the `checkout_id={CHECKOUT_ID}` query parameter to retrieve the checkout session id. |
20+
| `embed_origin` | *OptionalNullable[str]* | :heavy_minus_sign: | If you plan to embed the checkout session, set this to the Origin of the embedding page. It'll allow the Polar iframe to communicate with the parent page. |

‎docs/models/polarcheckoutschemascheckoutcreate.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ to the resulting order and/or subscription.
2121
| `customer_billing_address` | [OptionalNullable[models.Address]](../models/address.md) | :heavy_minus_sign: | N/A |
2222
| `customer_tax_id` | *OptionalNullable[str]* | :heavy_minus_sign: | N/A |
2323
| `subscription_id` | *OptionalNullable[str]* | :heavy_minus_sign: | ID of a subscription to upgrade. It must be on a free pricing. If checkout is successful, metadata set on this checkout will be copied to the subscription, and existing keys will be overwritten. |
24-
| `success_url` | *OptionalNullable[str]* | :heavy_minus_sign: | URL where the customer will be redirected after a successful payment.You can add the `checkout_id={CHECKOUT_ID}` query parameter to retrieve the checkout session id. |
24+
| `success_url` | *OptionalNullable[str]* | :heavy_minus_sign: | URL where the customer will be redirected after a successful payment.You can add the `checkout_id={CHECKOUT_ID}` query parameter to retrieve the checkout session id. |
25+
| `embed_origin` | *OptionalNullable[str]* | :heavy_minus_sign: | If you plan to embed the checkout session, set this to the Origin of the embedding page. It'll allow the Polar iframe to communicate with the parent page. |

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "polar-sdk"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
description = "Polar SDK for Python"
55
authors = ["Polar",]
66
readme = "README-PYPI.md"

‎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.7.1"
6+
__version__: str = "0.7.2"
77

88
try:
99
if __package__ is not None:

‎src/polar_sdk/models/checkoutupdate.py

+7
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ class CheckoutUpdateTypedDict(TypedDict):
3838
customer_ip_address: NotRequired[Nullable[str]]
3939
success_url: NotRequired[Nullable[str]]
4040
r"""URL where the customer will be redirected after a successful payment.You can add the `checkout_id={CHECKOUT_ID}` query parameter to retrieve the checkout session id."""
41+
embed_origin: NotRequired[Nullable[str]]
42+
r"""If you plan to embed the checkout session, set this to the Origin of the embedding page. It'll allow the Polar iframe to communicate with the parent page."""
4143

4244

4345
class CheckoutUpdate(BaseModel):
@@ -72,6 +74,9 @@ class CheckoutUpdate(BaseModel):
7274
success_url: OptionalNullable[str] = UNSET
7375
r"""URL where the customer will be redirected after a successful payment.You can add the `checkout_id={CHECKOUT_ID}` query parameter to retrieve the checkout session id."""
7476

77+
embed_origin: OptionalNullable[str] = UNSET
78+
r"""If you plan to embed the checkout session, set this to the Origin of the embedding page. It'll allow the Polar iframe to communicate with the parent page."""
79+
7580
@model_serializer(mode="wrap")
7681
def serialize_model(self, handler):
7782
optional_fields = [
@@ -85,6 +90,7 @@ def serialize_model(self, handler):
8590
"metadata",
8691
"customer_ip_address",
8792
"success_url",
93+
"embed_origin",
8894
]
8995
nullable_fields = [
9096
"custom_field_data",
@@ -97,6 +103,7 @@ def serialize_model(self, handler):
97103
"metadata",
98104
"customer_ip_address",
99105
"success_url",
106+
"embed_origin",
100107
]
101108
null_default_fields = []
102109

‎src/polar_sdk/models/polar_checkout_schemas_checkoutcreate.py

+7
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ class PolarCheckoutSchemasCheckoutCreateTypedDict(TypedDict):
5858
r"""ID of a subscription to upgrade. It must be on a free pricing. If checkout is successful, metadata set on this checkout will be copied to the subscription, and existing keys will be overwritten."""
5959
success_url: NotRequired[Nullable[str]]
6060
r"""URL where the customer will be redirected after a successful payment.You can add the `checkout_id={CHECKOUT_ID}` query parameter to retrieve the checkout session id."""
61+
embed_origin: NotRequired[Nullable[str]]
62+
r"""If you plan to embed the checkout session, set this to the Origin of the embedding page. It'll allow the Polar iframe to communicate with the parent page."""
6163

6264

6365
class PolarCheckoutSchemasCheckoutCreate(BaseModel):
@@ -109,6 +111,9 @@ class PolarCheckoutSchemasCheckoutCreate(BaseModel):
109111
success_url: OptionalNullable[str] = UNSET
110112
r"""URL where the customer will be redirected after a successful payment.You can add the `checkout_id={CHECKOUT_ID}` query parameter to retrieve the checkout session id."""
111113

114+
embed_origin: OptionalNullable[str] = UNSET
115+
r"""If you plan to embed the checkout session, set this to the Origin of the embedding page. It'll allow the Polar iframe to communicate with the parent page."""
116+
112117
@model_serializer(mode="wrap")
113118
def serialize_model(self, handler):
114119
optional_fields = [
@@ -122,6 +127,7 @@ def serialize_model(self, handler):
122127
"customer_tax_id",
123128
"subscription_id",
124129
"success_url",
130+
"embed_origin",
125131
]
126132
nullable_fields = [
127133
"amount",
@@ -132,6 +138,7 @@ def serialize_model(self, handler):
132138
"customer_tax_id",
133139
"subscription_id",
134140
"success_url",
141+
"embed_origin",
135142
]
136143
null_default_fields = []
137144

‎src/polar_sdk/sdkconfiguration.py

+2-2
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.7.1"
34+
sdk_version: str = "0.7.2"
3535
gen_version: str = "2.451.0"
36-
user_agent: str = "speakeasy-sdk/python 0.7.1 2.451.0 0.1.0 polar-sdk"
36+
user_agent: str = "speakeasy-sdk/python 0.7.2 2.451.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)
Please sign in to comment.