Skip to content
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
86 changes: 55 additions & 31 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ generation:
generateNewTests: false
skipResponseBodyAssertions: false
python:
version: 4.0.0
version: 4.0.1
additionalDependencies:
dev:
pytest: ^8.3.3
Expand Down Expand Up @@ -60,6 +60,7 @@ python:
webhooks: ""
inputModelSuffix: input
legacyPyright: true
license: ""
maxMethodParams: 20
methodArguments: infer-optional-args
moduleName: ""
Expand Down
14 changes: 7 additions & 7 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
speakeasyVersion: 1.653.0
speakeasyVersion: 1.658.2
sources:
clerk-openapi:
sourceNamespace: clerk-openapi
sourceRevisionDigest: sha256:0ad1ab10e9dc7635ff065c7eea5cf70ed2049cc5eebca5e85278cd446d42606c
sourceBlobDigest: sha256:b3995c2bca4313402799b1179ab92208ee1e784309bec497e06110b42933f48c
sourceRevisionDigest: sha256:07e65c01a719ba72c42a868fd0c08267849c6b2bc52eb5f6c4ff226d829d59e6
sourceBlobDigest: sha256:95031745ebff8f1aafd86d389e1524a449d53cf53203f4b2ba99db442dcbd8cb
tags:
- latest
- speakeasy-sdk-regen-lamone-update-sdk-version-1762792475
- speakeasy-sdk-regen-dc-trusted-publishing-1763479403
- "2025-11-10"
targets:
clerk-sdk-python:
source: clerk-openapi
sourceNamespace: clerk-openapi
sourceRevisionDigest: sha256:0ad1ab10e9dc7635ff065c7eea5cf70ed2049cc5eebca5e85278cd446d42606c
sourceBlobDigest: sha256:b3995c2bca4313402799b1179ab92208ee1e784309bec497e06110b42933f48c
sourceRevisionDigest: sha256:07e65c01a719ba72c42a868fd0c08267849c6b2bc52eb5f6c4ff226d829d59e6
sourceBlobDigest: sha256:95031745ebff8f1aafd86d389e1524a449d53cf53203f4b2ba99db442dcbd8cb
codeSamplesNamespace: clerk-openapi-python-code-samples
codeSamplesRevisionDigest: sha256:9220c7eb7f21688c8de2a25887058cbaf96c1da1860848f4966e0384dd8c36b8
codeSamplesRevisionDigest: sha256:d761dfe32088e3abd19e0dba1ca14ef39ead1e73bb0622f0c70be0596d6b67c9
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
17 changes: 3 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,6 @@ with Clerk(

res = clerk.email_addresses.get(email_address_id="email_address_id_example")

assert res is not None

# Handle response
print(res)
```
Expand All @@ -166,8 +164,6 @@ async def main():

res = await clerk.email_addresses.get_async(email_address_id="email_address_id_example")

assert res is not None

# Handle response
print(res)

Expand Down Expand Up @@ -272,6 +268,9 @@ def verify_machine_token(request: httpx.Request):

### [billing](docs/sdks/billing/README.md)

* [list_plans](docs/sdks/billing/README.md#list_plans) - List all billing plans
* [list_subscription_items](docs/sdks/billing/README.md#list_subscription_items) - List all subscription items
* [cancel_subscription_item](docs/sdks/billing/README.md#cancel_subscription_item) - Cancel a subscription item
* [extend_subscription_item_free_trial](docs/sdks/billing/README.md#extend_subscription_item_free_trial) - Extend free trial for a subscription item
* [list_statements](docs/sdks/billing/README.md#list_statements) - List all billing statements
* [get_statement](docs/sdks/billing/README.md#get_statement) - Retrieve a billing statement
Expand All @@ -289,12 +288,6 @@ def verify_machine_token(request: httpx.Request):
* [verify](docs/sdks/clients/README.md#verify) - Verify a client
* [get](docs/sdks/clients/README.md#get) - Get a client

### [commerce](docs/sdks/commerce/README.md)

* [list_plans](docs/sdks/commerce/README.md#list_plans) - List all commerce plans
* [list_subscription_items](docs/sdks/commerce/README.md#list_subscription_items) - List all subscription items
* [cancel_subscription_item](docs/sdks/commerce/README.md#cancel_subscription_item) - Cancel a subscription item

### [domains](docs/sdks/domainssdk/README.md)

* [list](docs/sdks/domainssdk/README.md#list) - List all instance domains
Expand Down Expand Up @@ -546,8 +539,6 @@ with Clerk(
"content": open("example.file", "rb"),
})

assert res is not None

# Handle response
print(res)

Expand Down Expand Up @@ -621,8 +612,6 @@ with Clerk(
"token": "jwt_token_example",
})

assert res is not None

# Handle response
print(res)

Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -478,4 +478,14 @@ Based on:
### Generated
- [python v4.0.0] .
### Releases
- [PyPI v4.0.0] https://pypi.org/project/clerk-backend-api/4.0.0 - .
- [PyPI v4.0.0] https://pypi.org/project/clerk-backend-api/4.0.0 - .

## 2025-11-18 15:23:05
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.658.2 (2.755.9) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v4.0.1] .
### Releases
- [PyPI v4.0.1] https://pypi.org/project/clerk-backend-api/4.0.1 - .
4 changes: 0 additions & 4 deletions USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ with Clerk(

res = clerk.email_addresses.get(email_address_id="email_address_id_example")

assert res is not None

# Handle response
print(res)
```
Expand All @@ -33,8 +31,6 @@ async def main():

res = await clerk.email_addresses.get_async(email_address_id="email_address_id_example")

assert res is not None

# Handle response
print(res)

Expand Down
7 changes: 7 additions & 0 deletions docs/models/clerkerrorerrorenterpriseaccountmeta.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ClerkErrorErrorEnterpriseAccountMeta


## Fields

| Field | Type | Required | Description |
| ----------- | ----------- | ----------- | ----------- |
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ClerkErrorErrorEnterpriseAccountVerificationMeta


## Fields

| Field | Type | Required | Description |
| ----------- | ----------- | ----------- | ----------- |
Loading