Skip to content
Open
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
477 changes: 241 additions & 236 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ generation:
requestResponseComponentNamesFeb2024: true
securityFeb2025: false
sharedErrorComponentsApr2025: false
sharedNestedComponentsJan2026: false
auth:
oAuth2ClientCredentialsEnabled: false
oAuth2PasswordEnabled: false
Expand All @@ -29,7 +30,7 @@ generation:
generateNewTests: false
skipResponseBodyAssertions: false
python:
version: 1.15.1
version: 1.15.2
additionalDependencies:
dev: {}
main: {}
Expand Down Expand Up @@ -76,3 +77,4 @@ python:
responseFormat: flat
sseFlatResponse: false
templateVersion: v2
useAsyncHooks: false
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.682.0
speakeasyVersion: 1.700.2
sources:
Ragie-OAS:
sourceNamespace: ragie-oas
sourceRevisionDigest: sha256:bbff923159484b6f5a7027ee8c16c13a60ce2d9e9f523603fcba9243d1b38da7
sourceBlobDigest: sha256:e781f18c8b4e50249a130e038774b0f9e647fa416eb773f6d638506da7b70f14
sourceRevisionDigest: sha256:f42fb754a21b1dedb69db5f27056f318642ecedb7f28d82e80925ebcae3168f2
sourceBlobDigest: sha256:9dff3a519b26b3891c484abf6ec355ac0d958d1a56b4ad083e39c63b310bc74c
tags:
- latest
- speakeasy-sdk-regen-1765152535
- speakeasy-sdk-regen-1767917334
- 1.0.0
targets:
ragie:
source: Ragie-OAS
sourceNamespace: ragie-oas
sourceRevisionDigest: sha256:bbff923159484b6f5a7027ee8c16c13a60ce2d9e9f523603fcba9243d1b38da7
sourceBlobDigest: sha256:e781f18c8b4e50249a130e038774b0f9e647fa416eb773f6d638506da7b70f14
sourceRevisionDigest: sha256:f42fb754a21b1dedb69db5f27056f318642ecedb7f28d82e80925ebcae3168f2
sourceBlobDigest: sha256:9dff3a519b26b3891c484abf6ec355ac0d958d1a56b4ad083e39c63b310bc74c
codeSamplesNamespace: ragie-oas-python-code-samples
codeSamplesRevisionDigest: sha256:cb4c40794dfa72db1e2fca9d89f1a2f529ec8379fd12a0d7525ebabf3bee82f7
codeSamplesRevisionDigest: sha256:ec78564dc2d067ec7a9c13d0447421a3751b78c809651433fb1722182b3ee0b6
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
12 changes: 4 additions & 8 deletions README-PYPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,7 @@ with Ragie(

res = r_client.connections.create_connection(request=ragie.PublicCreateConnection(
partition_strategy=ragie.MediaModeParam(),
page_limit=None,
config=None,
page_limit=100,
connection=ragie.PublicGCSConnection(
data=ragie.BucketData(
bucket="<value>",
Expand Down Expand Up @@ -216,8 +215,7 @@ async def main():

res = await r_client.connections.create_connection_async(request=ragie.PublicCreateConnection(
partition_strategy=ragie.MediaModeParam(),
page_limit=None,
config=None,
page_limit=100,
connection=ragie.PublicGCSConnection(
data=ragie.BucketData(
bucket="<value>",
Expand Down Expand Up @@ -302,8 +300,7 @@ with Ragie(

res = r_client.authenticators.create_authenticator_connection(authenticator_id="84b0792c-1330-4854-b4f2-5d9c7bf9a385", create_authenticator_connection=ragie.CreateAuthenticatorConnection(
partition_strategy=ragie.MediaModeParam(),
page_limit=None,
config=None,
page_limit=100,
connection=ragie.AuthenticatorDropboxConnection(
data=ragie.FolderData(
folder_id="<id>",
Expand Down Expand Up @@ -338,8 +335,7 @@ async def main():

res = await r_client.authenticators.create_authenticator_connection_async(authenticator_id="84b0792c-1330-4854-b4f2-5d9c7bf9a385", create_authenticator_connection=ragie.CreateAuthenticatorConnection(
partition_strategy=ragie.MediaModeParam(),
page_limit=None,
config=None,
page_limit=100,
connection=ragie.AuthenticatorDropboxConnection(
data=ragie.FolderData(
folder_id="<id>",
Expand Down
12 changes: 4 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,7 @@ with Ragie(

res = r_client.connections.create_connection(request=ragie.PublicCreateConnection(
partition_strategy=ragie.MediaModeParam(),
page_limit=None,
config=None,
page_limit=100,
connection=ragie.PublicGCSConnection(
data=ragie.BucketData(
bucket="<value>",
Expand Down Expand Up @@ -216,8 +215,7 @@ async def main():

res = await r_client.connections.create_connection_async(request=ragie.PublicCreateConnection(
partition_strategy=ragie.MediaModeParam(),
page_limit=None,
config=None,
page_limit=100,
connection=ragie.PublicGCSConnection(
data=ragie.BucketData(
bucket="<value>",
Expand Down Expand Up @@ -302,8 +300,7 @@ with Ragie(

res = r_client.authenticators.create_authenticator_connection(authenticator_id="84b0792c-1330-4854-b4f2-5d9c7bf9a385", create_authenticator_connection=ragie.CreateAuthenticatorConnection(
partition_strategy=ragie.MediaModeParam(),
page_limit=None,
config=None,
page_limit=100,
connection=ragie.AuthenticatorDropboxConnection(
data=ragie.FolderData(
folder_id="<id>",
Expand Down Expand Up @@ -338,8 +335,7 @@ async def main():

res = await r_client.authenticators.create_authenticator_connection_async(authenticator_id="84b0792c-1330-4854-b4f2-5d9c7bf9a385", create_authenticator_connection=ragie.CreateAuthenticatorConnection(
partition_strategy=ragie.MediaModeParam(),
page_limit=None,
config=None,
page_limit=100,
connection=ragie.AuthenticatorDropboxConnection(
data=ragie.FolderData(
folder_id="<id>",
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,4 +278,14 @@ Based on:
### Generated
- [python v1.15.1] .
### Releases
- [PyPI v1.15.1] https://pypi.org/project/ragie/1.15.1 - .
- [PyPI v1.15.1] https://pypi.org/project/ragie/1.15.1 - .

## 2026-01-29 00:10:41
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.700.2 (2.801.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v1.15.2] .
### Releases
- [PyPI v1.15.2] https://pypi.org/project/ragie/1.15.2 - .
12 changes: 4 additions & 8 deletions USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ with Ragie(

res = r_client.connections.create_connection(request=ragie.PublicCreateConnection(
partition_strategy=ragie.MediaModeParam(),
page_limit=None,
config=None,
page_limit=100,
connection=ragie.PublicGCSConnection(
data=ragie.BucketData(
bucket="<value>",
Expand Down Expand Up @@ -95,8 +94,7 @@ async def main():

res = await r_client.connections.create_connection_async(request=ragie.PublicCreateConnection(
partition_strategy=ragie.MediaModeParam(),
page_limit=None,
config=None,
page_limit=100,
connection=ragie.PublicGCSConnection(
data=ragie.BucketData(
bucket="<value>",
Expand Down Expand Up @@ -177,8 +175,7 @@ with Ragie(

res = r_client.authenticators.create_authenticator_connection(authenticator_id="84b0792c-1330-4854-b4f2-5d9c7bf9a385", create_authenticator_connection=ragie.CreateAuthenticatorConnection(
partition_strategy=ragie.MediaModeParam(),
page_limit=None,
config=None,
page_limit=100,
connection=ragie.AuthenticatorDropboxConnection(
data=ragie.FolderData(
folder_id="<id>",
Expand Down Expand Up @@ -213,8 +210,7 @@ async def main():

res = await r_client.authenticators.create_authenticator_connection_async(authenticator_id="84b0792c-1330-4854-b4f2-5d9c7bf9a385", create_authenticator_connection=ragie.CreateAuthenticatorConnection(
partition_strategy=ragie.MediaModeParam(),
page_limit=None,
config=None,
page_limit=100,
connection=ragie.AuthenticatorDropboxConnection(
data=ragie.FolderData(
folder_id="<id>",
Expand Down
Loading