diff --git a/.speakeasy/gen.lock b/.speakeasy/gen.lock index 1d81e93a..99ad6c1b 100755 --- a/.speakeasy/gen.lock +++ b/.speakeasy/gen.lock @@ -4,9 +4,9 @@ management: docChecksum: c101e6356aa26bcdee80457c4dc64471 docVersion: 1.0.0 speakeasyVersion: internal - generationVersion: 2.253.0 - releaseVersion: 0.47.0 - configChecksum: 3fcff865c11ce83075716a8313369445 + generationVersion: 2.258.0 + releaseVersion: 0.47.1 + configChecksum: fbb6dc853075b3156830a4cae4b1caf1 repoURL: https://github.com/airbytehq/airbyte-api-python-sdk.git repoSubDirectory: . installationURL: https://github.com/airbytehq/airbyte-api-python-sdk.git @@ -15,7 +15,7 @@ features: python: additionalProperties: 0.1.0 constsAndDefaults: 0.1.2 - core: 4.4.5 + core: 4.4.6 globalSecurity: 2.83.2 globalServerURLs: 2.82.1 unions: 2.82.5 diff --git a/RELEASES.md b/RELEASES.md index de88426a..64c8176b 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -848,4 +848,14 @@ Based on: ### Generated - [python v0.47.0] . ### Releases -- [PyPI v0.47.0] https://pypi.org/project/airbyte-api/0.47.0 - . \ No newline at end of file +- [PyPI v0.47.0] https://pypi.org/project/airbyte-api/0.47.0 - . + +## 2024-02-15 00:13:37 +### Changes +Based on: +- OpenAPI Doc 1.0.0 +- Speakeasy CLI 1.180.0 (2.258.0) https://github.com/speakeasy-api/speakeasy +### Generated +- [python v0.47.1] . +### Releases +- [PyPI v0.47.1] https://pypi.org/project/airbyte-api/0.47.1 - . \ No newline at end of file diff --git a/docs/sdks/connections/README.md b/docs/sdks/connections/README.md index 0294375c..9e751c64 100644 --- a/docs/sdks/connections/README.md +++ b/docs/sdks/connections/README.md @@ -77,7 +77,7 @@ s = airbyte.Airbyte( ) req = operations.DeleteConnectionRequest( - connection_id='string', + connection_id='', ) res = s.connections.delete_connection(req) @@ -123,7 +123,7 @@ s = airbyte.Airbyte( ) req = operations.GetConnectionRequest( - connection_id='string', + connection_id='', ) res = s.connections.get_connection(req) @@ -216,7 +216,7 @@ req = operations.PatchConnectionRequest( connection_patch_request=shared.ConnectionPatchRequest( namespace_format='${SOURCE_NAMESPACE}', ), - connection_id='string', + connection_id='', ) res = s.connections.patch_connection(req) diff --git a/docs/sdks/destinations/README.md b/docs/sdks/destinations/README.md index d1aa8b2d..a50bdb73 100644 --- a/docs/sdks/destinations/README.md +++ b/docs/sdks/destinations/README.md @@ -32,13 +32,13 @@ s = airbyte.Airbyte( req = shared.DestinationCreateRequest( configuration=shared.DestinationGoogleSheets( credentials=shared.AuthenticationViaGoogleOAuth( - client_id='string', - client_secret='string', - refresh_token='string', + client_id='', + client_secret='', + refresh_token='', ), spreadsheet_id='https://docs.google.com/spreadsheets/d/1hLd9Qqti3UyLXZB2aFfUWDT7BG/edit', ), - name='string', + name='', workspace_id='8360860a-d46e-48e6-af62-08e5ba5019ef', ) @@ -85,7 +85,7 @@ s = airbyte.Airbyte( ) req = operations.DeleteDestinationRequest( - destination_id='string', + destination_id='', ) res = s.destinations.delete_destination(req) @@ -131,7 +131,7 @@ s = airbyte.Airbyte( ) req = operations.GetDestinationRequest( - destination_id='string', + destination_id='', ) res = s.destinations.get_destination(req) @@ -221,7 +221,7 @@ s = airbyte.Airbyte( ) req = operations.PatchDestinationRequest( - destination_id='string', + destination_id='', ) res = s.destinations.patch_destination(req) @@ -267,7 +267,7 @@ s = airbyte.Airbyte( ) req = operations.PutDestinationRequest( - destination_id='string', + destination_id='', ) res = s.destinations.put_destination(req) diff --git a/docs/sdks/sources/README.md b/docs/sdks/sources/README.md index 7573a554..f9de55da 100644 --- a/docs/sdks/sources/README.md +++ b/docs/sdks/sources/README.md @@ -32,10 +32,10 @@ s = airbyte.Airbyte( req = shared.SourceCreateRequest( configuration=shared.SourceAha( - api_key='string', + api_key='', url='https://complicated-seat.org', ), - name='string', + name='', workspace_id='0f31f3dd-c984-48c3-8bdf-b109056aa6d6', ) @@ -82,7 +82,7 @@ s = airbyte.Airbyte( ) req = operations.DeleteSourceRequest( - source_id='string', + source_id='', ) res = s.sources.delete_source(req) @@ -128,7 +128,7 @@ s = airbyte.Airbyte( ) req = operations.GetSourceRequest( - source_id='string', + source_id='', ) res = s.sources.get_source(req) @@ -271,7 +271,7 @@ s = airbyte.Airbyte( ) req = operations.PatchSourceRequest( - source_id='string', + source_id='', ) res = s.sources.patch_source(req) @@ -317,7 +317,7 @@ s = airbyte.Airbyte( ) req = operations.PutSourceRequest( - source_id='string', + source_id='', ) res = s.sources.put_source(req) diff --git a/docs/sdks/streams/README.md b/docs/sdks/streams/README.md index d449cdbf..84d3f9ec 100644 --- a/docs/sdks/streams/README.md +++ b/docs/sdks/streams/README.md @@ -25,8 +25,8 @@ s = airbyte.Airbyte( ) req = operations.GetStreamPropertiesRequest( - destination_id='string', - source_id='string', + destination_id='', + source_id='', ) res = s.streams.get_stream_properties(req) diff --git a/docs/sdks/workspaces/README.md b/docs/sdks/workspaces/README.md index 48e03515..55ac5e35 100644 --- a/docs/sdks/workspaces/README.md +++ b/docs/sdks/workspaces/README.md @@ -36,7 +36,7 @@ req = operations.CreateOrUpdateWorkspaceOAuthCredentialsRequest( configuration=shared.Airtable(), name=shared.OAuthActorNames.AMAZON_ADS, ), - workspace_id='string', + workspace_id='', ) res = s.workspaces.create_or_update_workspace_o_auth_credentials(req) @@ -82,7 +82,7 @@ s = airbyte.Airbyte( ) req = shared.WorkspaceCreateRequest( - name='string', + name='', ) res = s.workspaces.create_workspace(req) @@ -128,7 +128,7 @@ s = airbyte.Airbyte( ) req = operations.DeleteWorkspaceRequest( - workspace_id='string', + workspace_id='', ) res = s.workspaces.delete_workspace(req) @@ -174,7 +174,7 @@ s = airbyte.Airbyte( ) req = operations.GetWorkspaceRequest( - workspace_id='string', + workspace_id='', ) res = s.workspaces.get_workspace(req) @@ -265,9 +265,9 @@ s = airbyte.Airbyte( req = operations.UpdateWorkspaceRequest( workspace_update_request=shared.WorkspaceUpdateRequest( - name='string', + name='', ), - workspace_id='string', + workspace_id='', ) res = s.workspaces.update_workspace(req) diff --git a/gen.yaml b/gen.yaml index 32377f29..0c364c06 100644 --- a/gen.yaml +++ b/gen.yaml @@ -9,7 +9,7 @@ generation: parameterOrderingFeb2024: false requestResponseComponentNamesFeb2024: false python: - version: 0.47.0 + version: 0.47.1 author: Airbyte clientServerStatusCodesAsErrors: true description: Python Client SDK for Airbyte API diff --git a/setup.py b/setup.py index 2ca3c820..5395988f 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setuptools.setup( name="airbyte-api", - version="0.47.0", + version="0.47.1", author="Airbyte", description="Python Client SDK for Airbyte API", long_description=long_description, diff --git a/src/airbyte/sdkconfiguration.py b/src/airbyte/sdkconfiguration.py index fa821f83..1ad0859e 100644 --- a/src/airbyte/sdkconfiguration.py +++ b/src/airbyte/sdkconfiguration.py @@ -23,9 +23,9 @@ class SDKConfiguration: server_idx: int = 0 language: str = 'python' openapi_doc_version: str = '1.0.0' - sdk_version: str = '0.47.0' - gen_version: str = '2.253.0' - user_agent: str = 'speakeasy-sdk/python 0.47.0 2.253.0 1.0.0 airbyte-api' + sdk_version: str = '0.47.1' + gen_version: str = '2.258.0' + user_agent: str = 'speakeasy-sdk/python 0.47.1 2.258.0 1.0.0 airbyte-api' retry_config: RetryConfig = None def get_server_details(self) -> Tuple[str, Dict[str, str]]: