Skip to content

Commit d633df9

Browse files
speakeasybotfrankie567
authored andcommitted
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.474.1
1 parent 05e8f85 commit d633df9

File tree

137 files changed

+3288
-1202
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+3288
-1202
lines changed

.speakeasy/gen.lock

Lines changed: 491 additions & 665 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
@@ -16,7 +16,7 @@ generation:
1616
oAuth2ClientCredentialsEnabled: true
1717
oAuth2PasswordEnabled: false
1818
python:
19-
version: 0.13.1
19+
version: 0.13.2
2020
additionalDependencies:
2121
dev:
2222
pytest: ^8.3.3

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.468.8
1+
speakeasyVersion: 1.474.1
22
sources:
33
Polar-OAS:
44
sourceNamespace: polar-oas
5-
sourceRevisionDigest: sha256:26267a04112e4ca7830a9d2cf20de2551053fd6e96fecd74bb7e9eb8a8d35cdf
6-
sourceBlobDigest: sha256:451279914e700314f987516e791017dd8a72105f52feaf16240c2c6ce1cc2bf4
5+
sourceRevisionDigest: sha256:5b7b24e3c9ae1fc5c1ed435a392c44938f4e847e30f35e2564d462d8f6c87e73
6+
sourceBlobDigest: sha256:a2c4a9d1003b730a2305769700bfb4c9028732a336ffa7c8c219658d82bd24a1
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1737020860
9+
- speakeasy-sdk-regen-1737159098
1010
- 0.1.0
1111
targets:
1212
polar:
1313
source: Polar-OAS
1414
sourceNamespace: polar-oas
15-
sourceRevisionDigest: sha256:26267a04112e4ca7830a9d2cf20de2551053fd6e96fecd74bb7e9eb8a8d35cdf
16-
sourceBlobDigest: sha256:451279914e700314f987516e791017dd8a72105f52feaf16240c2c6ce1cc2bf4
15+
sourceRevisionDigest: sha256:5b7b24e3c9ae1fc5c1ed435a392c44938f4e847e30f35e2564d462d8f6c87e73
16+
sourceBlobDigest: sha256:a2c4a9d1003b730a2305769700bfb4c9028732a336ffa7c8c219658d82bd24a1
1717
codeSamplesNamespace: polar-oas-py-code-samples
18-
codeSamplesRevisionDigest: sha256:c1c50adac89cca19e8b5a6d98ba22d6a540bb88f5b275efd2270b3da1c76ff91
18+
codeSamplesRevisionDigest: sha256:29d5128ec94cde6a82bab844ffce3d9b81333400ecc451d874e535a51ddb770f
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README.md

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

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,4 +463,14 @@ Based on:
463463
### Generated
464464
- [python v0.13.1] .
465465
### Releases
466-
- [PyPI v0.13.1] https://pypi.org/project/polar-sdk/0.13.1 - .
466+
- [PyPI v0.13.1] https://pypi.org/project/polar-sdk/0.13.1 - .
467+
468+
## 2025-01-24 12:34:54
469+
### Changes
470+
Based on:
471+
- OpenAPI Doc
472+
- Speakeasy CLI 1.474.1 (2.495.1) https://github.com/speakeasy-api/speakeasy
473+
### Generated
474+
- [python v0.13.2] .
475+
### Releases
476+
- [PyPI v0.13.2] https://pypi.org/project/polar-sdk/0.13.2 - .

USAGE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ with Polar(
77
access_token="<YOUR_BEARER_TOKEN_HERE>",
88
) as polar:
99

10-
res = polar.external_organizations.list()
10+
res = polar.external_organizations.list(page=1, limit=10)
1111

1212
while res is not None:
1313
# Handle items
@@ -28,7 +28,7 @@ async def main():
2828
access_token="<YOUR_BEARER_TOKEN_HERE>",
2929
) as polar:
3030

31-
res = await polar.external_organizations.list_async()
31+
res = await polar.external_organizations.list_async(page=1, limit=10)
3232

3333
while res is not None:
3434
# Handle items

codeSamples.yaml

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

docs/models/checkout.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ Checkout session data retrieved using an access token.
3232
| `is_payment_setup_required` | *bool* | :heavy_check_mark: | Whether the checkout requires setting up a payment method, regardless of the amount, e.g. subscriptions that have first free cycles. |
3333
| `is_payment_form_required` | *bool* | :heavy_check_mark: | Whether the checkout requires a payment form, whether because of a payment or payment method setup. |
3434
| `customer_id` | *Nullable[str]* | :heavy_check_mark: | N/A |
35-
| `customer_name` | *Nullable[str]* | :heavy_check_mark: | N/A |
36-
| `customer_email` | *Nullable[str]* | :heavy_check_mark: | N/A |
35+
| `customer_name` | *Nullable[str]* | :heavy_check_mark: | Name of the customer. |
36+
| `customer_email` | *Nullable[str]* | :heavy_check_mark: | Email address of the customer. |
3737
| `customer_ip_address` | *Nullable[str]* | :heavy_check_mark: | N/A |
3838
| `customer_billing_address` | [Nullable[models.Address]](../models/address.md) | :heavy_check_mark: | N/A |
3939
| `customer_tax_id` | *Nullable[str]* | :heavy_check_mark: | N/A |
40-
| `payment_processor_metadata` | [models.PaymentProcessorMetadata](../models/paymentprocessormetadata.md) | :heavy_check_mark: | N/A |
40+
| `payment_processor_metadata` | Dict[str, *str*] | :heavy_check_mark: | N/A |
4141
| `metadata` | Dict[str, [models.CheckoutMetadata](../models/checkoutmetadata.md)] | :heavy_check_mark: | N/A |
4242
| `product` | [models.CheckoutProduct](../models/checkoutproduct.md) | :heavy_check_mark: | Product data for a checkout session. |
4343
| `product_price` | [models.ProductPrice](../models/productprice.md) | :heavy_check_mark: | N/A |
4444
| `discount` | [Nullable[models.CheckoutDiscount]](../models/checkoutdiscount.md) | :heavy_check_mark: | N/A |
4545
| `subscription_id` | *Nullable[str]* | :heavy_check_mark: | N/A |
4646
| `attached_custom_fields` | List[[models.AttachedCustomField](../models/attachedcustomfield.md)] | :heavy_check_mark: | N/A |
4747
| `customer_metadata` | Dict[str, [models.CustomerMetadata](../models/customermetadata.md)] | :heavy_check_mark: | N/A |
48-
| `custom_field_data` | [Optional[models.CheckoutCustomFieldData]](../models/checkoutcustomfielddata.md) | :heavy_minus_sign: | Key-value object storing custom field values. |
48+
| `custom_field_data` | Dict[str, [models.CheckoutCustomFieldData](../models/checkoutcustomfielddata.md)] | :heavy_minus_sign: | Key-value object storing custom field values. |

0 commit comments

Comments
 (0)