Skip to content
Merged
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ pip install git+https://github.com/airbytehq/airbyte-api-python-sdk.git
## SDK Example Usage
<!-- Start SDK Example Usage -->
```python
import sdk
from sdk.models import operations, shared
import airbyte
from airbyte.models import operations, shared

s = sdk.SDK(
s = airbyte.Airbyte(
security=shared.Security(
bearer_auth="Bearer YOUR_BEARER_TOKEN_HERE",
),
Expand Down
8 changes: 7 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,10 @@ Based on:
### Changes
Based on:
- OpenAPI Doc 1.0.0 https://prod.speakeasyapi.dev/v1/apis/public-api/version/v0.1.0/schema/download
- Speakeasy CLI 1.19.3 (2.16.7) https://github.com/speakeasy-api/speakeasy
- Speakeasy CLI 1.19.3 (2.16.7) https://github.com/speakeasy-api/speakeasy

## 2023-04-05 09:19:15
### Changes
Based on:
- OpenAPI Doc 1.0.0 https://prod.speakeasyapi.dev/v1/apis/public-api/version/v0.1.0/schema/download
- Speakeasy CLI 1.19.4 (2.16.7) https://github.com/speakeasy-api/speakeasy
6 changes: 3 additions & 3 deletions USAGE.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<!-- Start SDK Example Usage -->
```python
import sdk
from sdk.models import operations, shared
import airbyte
from airbyte.models import operations, shared

s = sdk.SDK(
s = airbyte.Airbyte(
security=shared.Security(
bearer_auth="Bearer YOUR_BEARER_TOKEN_HERE",
),
Expand Down
Loading