Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⏱️ [Do not merge]: Release experimental interop methods to stable #192

Draft
wants to merge 23 commits into
base: main
Choose a base branch
from
Draft
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: 6 additions & 0 deletions airbyte/_util/api_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
# These classes are used internally to cache API responses.
from airbyte_api.models import (
ConnectionResponse,
SourceResponse,
DestinationResponse,
JobResponse,
)
Expand All @@ -32,11 +33,16 @@
# This class is used to represent the status of a job. It may be used in
# type hints for public functions that return a job status.
from airbyte_api.models import JobStatusEnum # Alias not needed
from airbyte_api.models import ActorTypeEnum as ConnectorTypeEnum


__all__: list[str] = [
# Internal-Use Classes
"ConnectionResponse",
"DestinationResponse",
"JobResponse",
"SourceResponse",
# Public-Use Classes
"ConnectorTypeEnum",
"JobStatusEnum",
]
Loading
Loading