Skip to content

Commit

Permalink
fix(internal): remove integration connections
Browse files Browse the repository at this point in the history
  • Loading branch information
David Meadows authored and Stainless committed Oct 31, 2024
1 parent 77daf23 commit 4d0aee7
Show file tree
Hide file tree
Showing 11 changed files with 0 additions and 553 deletions.
14 changes: 0 additions & 14 deletions src/conductor/resources/end_users/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,8 @@
EndUsersResourceWithStreamingResponse,
AsyncEndUsersResourceWithStreamingResponse,
)
from .integration_connections import (
IntegrationConnectionsResource,
AsyncIntegrationConnectionsResource,
IntegrationConnectionsResourceWithRawResponse,
AsyncIntegrationConnectionsResourceWithRawResponse,
IntegrationConnectionsResourceWithStreamingResponse,
AsyncIntegrationConnectionsResourceWithStreamingResponse,
)

__all__ = [
"IntegrationConnectionsResource",
"AsyncIntegrationConnectionsResource",
"IntegrationConnectionsResourceWithRawResponse",
"AsyncIntegrationConnectionsResourceWithRawResponse",
"IntegrationConnectionsResourceWithStreamingResponse",
"AsyncIntegrationConnectionsResourceWithStreamingResponse",
"EndUsersResource",
"AsyncEndUsersResource",
"EndUsersResourceWithRawResponse",
Expand Down
32 changes: 0 additions & 32 deletions src/conductor/resources/end_users/end_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,6 @@
)
from ..._base_client import make_request_options
from ...types.end_user import EndUser
from .integration_connections import (
IntegrationConnectionsResource,
AsyncIntegrationConnectionsResource,
IntegrationConnectionsResourceWithRawResponse,
AsyncIntegrationConnectionsResourceWithRawResponse,
IntegrationConnectionsResourceWithStreamingResponse,
AsyncIntegrationConnectionsResourceWithStreamingResponse,
)
from ...types.end_user_list_response import EndUserListResponse
from ...types.end_user_ping_response import EndUserPingResponse
from ...types.end_user_delete_response import EndUserDeleteResponse
Expand All @@ -40,10 +32,6 @@


class EndUsersResource(SyncAPIResource):
@cached_property
def integration_connections(self) -> IntegrationConnectionsResource:
return IntegrationConnectionsResource(self._client)

@cached_property
def with_raw_response(self) -> EndUsersResourceWithRawResponse:
"""
Expand Down Expand Up @@ -292,10 +280,6 @@ def request(


class AsyncEndUsersResource(AsyncAPIResource):
@cached_property
def integration_connections(self) -> AsyncIntegrationConnectionsResource:
return AsyncIntegrationConnectionsResource(self._client)

@cached_property
def with_raw_response(self) -> AsyncEndUsersResourceWithRawResponse:
"""
Expand Down Expand Up @@ -566,10 +550,6 @@ def __init__(self, end_users: EndUsersResource) -> None:
end_users.request,
)

@cached_property
def integration_connections(self) -> IntegrationConnectionsResourceWithRawResponse:
return IntegrationConnectionsResourceWithRawResponse(self._end_users.integration_connections)


class AsyncEndUsersResourceWithRawResponse:
def __init__(self, end_users: AsyncEndUsersResource) -> None:
Expand All @@ -594,10 +574,6 @@ def __init__(self, end_users: AsyncEndUsersResource) -> None:
end_users.request,
)

@cached_property
def integration_connections(self) -> AsyncIntegrationConnectionsResourceWithRawResponse:
return AsyncIntegrationConnectionsResourceWithRawResponse(self._end_users.integration_connections)


class EndUsersResourceWithStreamingResponse:
def __init__(self, end_users: EndUsersResource) -> None:
Expand All @@ -622,10 +598,6 @@ def __init__(self, end_users: EndUsersResource) -> None:
end_users.request,
)

@cached_property
def integration_connections(self) -> IntegrationConnectionsResourceWithStreamingResponse:
return IntegrationConnectionsResourceWithStreamingResponse(self._end_users.integration_connections)


class AsyncEndUsersResourceWithStreamingResponse:
def __init__(self, end_users: AsyncEndUsersResource) -> None:
Expand All @@ -649,7 +621,3 @@ def __init__(self, end_users: AsyncEndUsersResource) -> None:
self.request = async_to_streamed_response_wrapper(
end_users.request,
)

@cached_property
def integration_connections(self) -> AsyncIntegrationConnectionsResourceWithStreamingResponse:
return AsyncIntegrationConnectionsResourceWithStreamingResponse(self._end_users.integration_connections)
135 changes: 0 additions & 135 deletions src/conductor/resources/end_users/integration_connections.py

This file was deleted.

135 changes: 0 additions & 135 deletions src/conductor/resources/integration_connections.py

This file was deleted.

5 changes: 0 additions & 5 deletions src/conductor/types/end_users/__init__.py

This file was deleted.

Loading

0 comments on commit 4d0aee7

Please sign in to comment.