-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from airtop-ai/fix-module-exporting
Fix main module exporting
- Loading branch information
Showing
2 changed files
with
33 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,141 +1,20 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
from .types import ( | ||
AiPromptResponse, | ||
AiResponseEnvelope, | ||
ClientProvidedResponseMetadata, | ||
CustomProxy, | ||
OperationOutcome, | ||
OperationOutcomeResponse, | ||
VisualAnalysisConfig, | ||
VisualAnalysisConfigPartitionDirection, | ||
VisualAnalysisConfigScope, | ||
EnvelopeDefaultMeta, | ||
ErrorDetail, | ||
ErrorMessage, | ||
ErrorModel, | ||
ExternalProfileV1, | ||
ExternalSessionAiResponseMetadata, | ||
ExternalSessionAiResponseMetadataStatus, | ||
ExternalSessionAiResponseMetadataUsage, | ||
ExternalSessionConfig, | ||
ExternalSessionWithConnectionInfo, | ||
Issue, | ||
Pagination, | ||
PageQueryExperimentalConfig, | ||
ProfilesResponse, | ||
Proxy, | ||
ScrapeResponse, | ||
ScrapeResponseContent, | ||
ScrapeResponseEnvelope, | ||
ScrapeResponseOutput, | ||
SessionConfigV1, | ||
SessionConfigV1Proxy, | ||
SessionConfigV1ProxyItem, | ||
SessionResponse, | ||
SessionsResponse, | ||
SessionsWithPagination, | ||
StatusMessage, | ||
StatusMessageStatus, | ||
SummaryExperimentalConfig, | ||
Window, | ||
WindowId, | ||
WindowIdResponse, | ||
WindowResponse, | ||
) | ||
from .errors import InternalServerError, NotFoundError, UnprocessableEntityError | ||
from .types import * | ||
from .errors import * | ||
from . import profiles, sessions, windows | ||
from .client import Airtop, AsyncAirtop | ||
from .environment import AirtopEnvironment | ||
from .sessions import ( | ||
SessionsEventsResponse, | ||
SessionsEventsResponseError, | ||
SessionsEventsResponseStatus, | ||
SessionsEventsResponse_Error, | ||
SessionsEventsResponse_Status, | ||
SessionsListRequestStatus, | ||
) | ||
from .client import * | ||
from .environment import * | ||
from .sessions import * | ||
from .windows import * | ||
from .core import * | ||
from .core.api_error import * | ||
from .utils import * | ||
from .wrapper.sessions_client import * | ||
from .wrapper.windows_client import * | ||
from .version import __version__ | ||
from .windows import CreateWindowInputV1BodyWaitUntil, WindowLoadUrlV1BodyWaitUntil | ||
from .wrapper.sessions_client import SessionConfig | ||
from .wrapper.windows_client import SummaryConfig, PageQueryConfig | ||
from .core import RequestOptions | ||
from .core.api_error import ApiError | ||
from .utils import BatchOperationUrl, BatchOperationInput, BatchOperationResponse, BatchOperationError, BatchOperateConfig | ||
|
||
|
||
__all__ = [ | ||
"AiPromptResponse", | ||
"AiResponseEnvelope", | ||
"Airtop", | ||
"AirtopEnvironment", | ||
"AsyncAirtop", | ||
"ApiError", | ||
"ClientProvidedResponseMetadata", | ||
"CreateWindowInputV1BodyWaitUntil", | ||
"CustomProxy", | ||
"EmptyResponse", | ||
"EmptyResponseJson", | ||
"EnvelopeDefaultMeta", | ||
"EnvelopeStatusDefaultMeta", | ||
"EnvelopeStatusDefaultMetaStatus", | ||
"ErrorDetail", | ||
"ErrorMessage", | ||
"ErrorModel", | ||
"ExternalProfileV1", | ||
"ExternalSessionAiResponseMetadata", | ||
"ExternalSessionAiResponseMetadataStatus", | ||
"ExternalSessionAiResponseMetadataUsage", | ||
"ExternalSessionConfig", | ||
"ExternalSessionWithConnectionInfo", | ||
"InternalServerError", | ||
"Issue", | ||
"NotFoundError", | ||
"OperationOutcome", | ||
"OperationOutcomeResponse", | ||
'PageQueryConfig', | ||
"PageQueryExperimentalConfig", | ||
"Pagination", | ||
"ProfilesResponse", | ||
"Proxy", | ||
"RequestOptions", | ||
"ScrapeResponse", | ||
"ScrapeResponseContent", | ||
"ScrapeResponseEnvelope", | ||
"ScrapeResponseOutput", | ||
"SessionConfig", | ||
"SessionConfigV1", | ||
"SessionConfigV1Proxy", | ||
"SessionConfigV1ProxyItem", | ||
"SessionResponse", | ||
"SessionsEventsResponse", | ||
"SessionsEventsResponseError", | ||
"SessionsEventsResponseStatus", | ||
"SessionsEventsResponse_Error", | ||
"SessionsEventsResponse_Status", | ||
"SessionsListRequestStatus", | ||
"SessionsResponse", | ||
"SessionsWithPagination", | ||
"StatusMessage", | ||
"StatusMessageStatus", | ||
"SummaryConfig", | ||
"SummaryExperimentalConfig", | ||
"UnprocessableEntityError", | ||
"VisualAnalysisConfig", | ||
"VisualAnalysisConfigPartitionDirection", | ||
"VisualAnalysisConfigScope", | ||
"Window", | ||
"WindowId", | ||
"WindowIdResponse", | ||
"WindowLoadUrlV1BodyWaitUntil", | ||
"WindowResponse", | ||
"__version__", | ||
"profiles", | ||
"sessions", | ||
"windows", | ||
"BatchOperationUrl", | ||
"BatchOperationInput", | ||
"BatchOperationResponse", | ||
"BatchOperationError", | ||
"BatchOperateConfig", | ||
] | ||
# Exclude specific types from wildcard imports | ||
__all__ = [name for name in dir() if not name.startswith('_') and name not in { | ||
'SessionConfigV1', | ||
}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters