|
31 | 31 | ) |
32 | 32 |
|
33 | 33 | if TYPE_CHECKING: |
34 | | - from .resources import nept, swap, user, assets, status, markets, analytics, integrations |
| 34 | + from .resources import nept, swap, user, assets, status, markets, analytics |
35 | 35 | from .resources.nept import NeptResource, AsyncNeptResource |
36 | 36 | from .resources.assets import AssetsResource, AsyncAssetsResource |
37 | 37 | from .resources.status import StatusResource, AsyncStatusResource |
38 | 38 | from .resources.swap.swap import SwapResource, AsyncSwapResource |
39 | 39 | from .resources.user.user import UserResource, AsyncUserResource |
40 | 40 | from .resources.markets.markets import MarketsResource, AsyncMarketsResource |
41 | 41 | from .resources.analytics.analytics import AnalyticsResource, AsyncAnalyticsResource |
42 | | - from .resources.integrations.integrations import IntegrationsResource, AsyncIntegrationsResource |
43 | 42 |
|
44 | 43 | __all__ = [ |
45 | 44 | "Timeout", |
@@ -131,12 +130,6 @@ def analytics(self) -> AnalyticsResource: |
131 | 130 |
|
132 | 131 | return AnalyticsResource(self) |
133 | 132 |
|
134 | | - @cached_property |
135 | | - def integrations(self) -> IntegrationsResource: |
136 | | - from .resources.integrations import IntegrationsResource |
137 | | - |
138 | | - return IntegrationsResource(self) |
139 | | - |
140 | 133 | @cached_property |
141 | 134 | def swap(self) -> SwapResource: |
142 | 135 | from .resources.swap import SwapResource |
@@ -326,12 +319,6 @@ def analytics(self) -> AsyncAnalyticsResource: |
326 | 319 |
|
327 | 320 | return AsyncAnalyticsResource(self) |
328 | 321 |
|
329 | | - @cached_property |
330 | | - def integrations(self) -> AsyncIntegrationsResource: |
331 | | - from .resources.integrations import AsyncIntegrationsResource |
332 | | - |
333 | | - return AsyncIntegrationsResource(self) |
334 | | - |
335 | 322 | @cached_property |
336 | 323 | def swap(self) -> AsyncSwapResource: |
337 | 324 | from .resources.swap import AsyncSwapResource |
@@ -485,12 +472,6 @@ def analytics(self) -> analytics.AnalyticsResourceWithRawResponse: |
485 | 472 |
|
486 | 473 | return AnalyticsResourceWithRawResponse(self._client.analytics) |
487 | 474 |
|
488 | | - @cached_property |
489 | | - def integrations(self) -> integrations.IntegrationsResourceWithRawResponse: |
490 | | - from .resources.integrations import IntegrationsResourceWithRawResponse |
491 | | - |
492 | | - return IntegrationsResourceWithRawResponse(self._client.integrations) |
493 | | - |
494 | 475 | @cached_property |
495 | 476 | def swap(self) -> swap.SwapResourceWithRawResponse: |
496 | 477 | from .resources.swap import SwapResourceWithRawResponse |
@@ -540,12 +521,6 @@ def analytics(self) -> analytics.AsyncAnalyticsResourceWithRawResponse: |
540 | 521 |
|
541 | 522 | return AsyncAnalyticsResourceWithRawResponse(self._client.analytics) |
542 | 523 |
|
543 | | - @cached_property |
544 | | - def integrations(self) -> integrations.AsyncIntegrationsResourceWithRawResponse: |
545 | | - from .resources.integrations import AsyncIntegrationsResourceWithRawResponse |
546 | | - |
547 | | - return AsyncIntegrationsResourceWithRawResponse(self._client.integrations) |
548 | | - |
549 | 524 | @cached_property |
550 | 525 | def swap(self) -> swap.AsyncSwapResourceWithRawResponse: |
551 | 526 | from .resources.swap import AsyncSwapResourceWithRawResponse |
@@ -595,12 +570,6 @@ def analytics(self) -> analytics.AnalyticsResourceWithStreamingResponse: |
595 | 570 |
|
596 | 571 | return AnalyticsResourceWithStreamingResponse(self._client.analytics) |
597 | 572 |
|
598 | | - @cached_property |
599 | | - def integrations(self) -> integrations.IntegrationsResourceWithStreamingResponse: |
600 | | - from .resources.integrations import IntegrationsResourceWithStreamingResponse |
601 | | - |
602 | | - return IntegrationsResourceWithStreamingResponse(self._client.integrations) |
603 | | - |
604 | 573 | @cached_property |
605 | 574 | def swap(self) -> swap.SwapResourceWithStreamingResponse: |
606 | 575 | from .resources.swap import SwapResourceWithStreamingResponse |
@@ -650,12 +619,6 @@ def analytics(self) -> analytics.AsyncAnalyticsResourceWithStreamingResponse: |
650 | 619 |
|
651 | 620 | return AsyncAnalyticsResourceWithStreamingResponse(self._client.analytics) |
652 | 621 |
|
653 | | - @cached_property |
654 | | - def integrations(self) -> integrations.AsyncIntegrationsResourceWithStreamingResponse: |
655 | | - from .resources.integrations import AsyncIntegrationsResourceWithStreamingResponse |
656 | | - |
657 | | - return AsyncIntegrationsResourceWithStreamingResponse(self._client.integrations) |
658 | | - |
659 | 622 | @cached_property |
660 | 623 | def swap(self) -> swap.AsyncSwapResourceWithStreamingResponse: |
661 | 624 | from .resources.swap import AsyncSwapResourceWithStreamingResponse |
|
0 commit comments