Skip to content

Commit ef32392

Browse files
speakeasybotfrankie567
authored andcommitted
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.535.1
1 parent 50ea975 commit ef32392

39 files changed

+525
-235
lines changed

.speakeasy/gen.lock

Lines changed: 29 additions & 25 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ generation:
1818
oAuth2ClientCredentialsEnabled: true
1919
oAuth2PasswordEnabled: false
2020
python:
21-
version: 0.17.3
21+
version: 0.17.4
2222
additionalDependencies:
2323
dev:
2424
pydantic-ai-slim: ^0.1.0

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.533.0
1+
speakeasyVersion: 1.535.1
22
sources:
33
Polar-OAS:
44
sourceNamespace: polar-oas
5-
sourceRevisionDigest: sha256:5950ed6b42fc99e78ef4974e206e63c82977ed8dc967a700a9be79e023191269
6-
sourceBlobDigest: sha256:d7518ce2c6cdcdfee78bc5958150919baf4e3c8ccd65cf6099509a712abd3ba0
5+
sourceRevisionDigest: sha256:cf3934a728bcae671997585e0a00e14c2c4ae745af938b372b8aca4ca1b5866e
6+
sourceBlobDigest: sha256:f7de4f37fbd445f62763bbc4ca8d61d967f01060333fc26184ff648a906e3bac
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1744899487
9+
- speakeasy-sdk-regen-1744981672
1010
- 0.1.0
1111
targets:
1212
polar:
1313
source: Polar-OAS
1414
sourceNamespace: polar-oas
15-
sourceRevisionDigest: sha256:5950ed6b42fc99e78ef4974e206e63c82977ed8dc967a700a9be79e023191269
16-
sourceBlobDigest: sha256:d7518ce2c6cdcdfee78bc5958150919baf4e3c8ccd65cf6099509a712abd3ba0
15+
sourceRevisionDigest: sha256:cf3934a728bcae671997585e0a00e14c2c4ae745af938b372b8aca4ca1b5866e
16+
sourceBlobDigest: sha256:f7de4f37fbd445f62763bbc4ca8d61d967f01060333fc26184ff648a906e3bac
1717
codeSamplesNamespace: polar-oas-py-code-samples
18-
codeSamplesRevisionDigest: sha256:f7e1709b5ab1a3cb46d1c58aeaa4e7ff6f1baf837635acb88dc0dfb5403390bd
18+
codeSamplesRevisionDigest: sha256:69f00c310733f03e52b0569b2da0d88d6fda2b7c20ff4144edbb9bb6b1e18ab3
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README.md

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ with Polar() as polar:
134134
product_price_id="<value>",
135135
discount_id="<value>",
136136
allow_discount_codes=False,
137+
require_billing_address=False,
137138
is_discount_applicable=False,
138139
is_free_product_price=False,
139140
is_payment_required=False,
@@ -144,7 +145,7 @@ with Polar() as polar:
144145
customer_email="<value>",
145146
customer_ip_address="<value>",
146147
customer_billing_address=polar_sdk.Address(
147-
country="FR",
148+
country="SE",
148149
),
149150
customer_tax_id="<id>",
150151
payment_processor_metadata={
@@ -194,9 +195,7 @@ with Polar() as polar:
194195
preset_amount=441593,
195196
),
196197
],
197-
benefits=[
198-
199-
],
198+
benefits=[],
200199
medias=[
201200
polar_sdk.ProductMediaFileRead(
202201
id="<value>",
@@ -229,9 +228,7 @@ with Polar() as polar:
229228
is_recurring=True,
230229
is_archived=False,
231230
organization_id="<value>",
232-
prices=[
233-
234-
],
231+
prices=[],
235232
benefits=[
236233
polar_sdk.BenefitPublic(
237234
id="<value>",
@@ -360,6 +357,14 @@ with Polar() as polar:
360357
customer_metadata={
361358
"key": True,
362359
},
360+
customer_billing_address_fields=polar_sdk.CheckoutCustomerBillingAddressFields(
361+
country=True,
362+
state=False,
363+
city=True,
364+
postal_code=False,
365+
line1=False,
366+
line2=False,
367+
),
363368
),
364369
))
365370

@@ -403,6 +408,7 @@ async def main():
403408
product_price_id="<value>",
404409
discount_id="<value>",
405410
allow_discount_codes=False,
411+
require_billing_address=False,
406412
is_discount_applicable=False,
407413
is_free_product_price=False,
408414
is_payment_required=False,
@@ -413,7 +419,7 @@ async def main():
413419
customer_email="<value>",
414420
customer_ip_address="<value>",
415421
customer_billing_address=polar_sdk.Address(
416-
country="FR",
422+
country="SE",
417423
),
418424
customer_tax_id="<id>",
419425
payment_processor_metadata={
@@ -462,9 +468,7 @@ async def main():
462468
recurring_interval=polar_sdk.SubscriptionRecurringInterval.YEAR,
463469
),
464470
],
465-
benefits=[
466-
467-
],
471+
benefits=[],
468472
medias=[
469473
polar_sdk.ProductMediaFileRead(
470474
id="<value>",
@@ -497,9 +501,7 @@ async def main():
497501
is_recurring=True,
498502
is_archived=False,
499503
organization_id="<value>",
500-
prices=[
501-
502-
],
504+
prices=[],
503505
benefits=[
504506
polar_sdk.BenefitPublic(
505507
id="<value>",
@@ -639,6 +641,14 @@ async def main():
639641
customer_metadata={
640642
"key": True,
641643
},
644+
customer_billing_address_fields=polar_sdk.CheckoutCustomerBillingAddressFields(
645+
country=True,
646+
state=False,
647+
city=True,
648+
postal_code=False,
649+
line1=False,
650+
line2=False,
651+
),
642652
),
643653
))
644654

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,4 +703,14 @@ Based on:
703703
### Generated
704704
- [python v0.17.3] .
705705
### Releases
706-
- [PyPI v0.17.3] https://pypi.org/project/polar-sdk/0.17.3 - .
706+
- [PyPI v0.17.3] https://pypi.org/project/polar-sdk/0.17.3 - .
707+
708+
## 2025-04-18 13:07:35
709+
### Changes
710+
Based on:
711+
- OpenAPI Doc
712+
- Speakeasy CLI 1.535.1 (2.585.2) https://github.com/speakeasy-api/speakeasy
713+
### Generated
714+
- [python v0.17.4] .
715+
### Releases
716+
- [PyPI v0.17.4] https://pypi.org/project/polar-sdk/0.17.4 - .

codeSamples.yaml

Lines changed: 11 additions & 11 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)