Skip to content

Commit a6b8aac

Browse files
chore(internal): codegen related update
1 parent 1ad2ddf commit a6b8aac

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/beeper_desktop_api/_client.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ def assets(self) -> AssetsResource:
154154

155155
@cached_property
156156
def info(self) -> InfoResource:
157+
"""Control the Beeper Desktop application"""
157158
from .resources.info import InfoResource
158159

159160
return InfoResource(self)
@@ -448,6 +449,7 @@ def assets(self) -> AsyncAssetsResource:
448449

449450
@cached_property
450451
def info(self) -> AsyncInfoResource:
452+
"""Control the Beeper Desktop application"""
451453
from .resources.info import AsyncInfoResource
452454

453455
return AsyncInfoResource(self)
@@ -700,6 +702,7 @@ def assets(self) -> assets.AssetsResourceWithRawResponse:
700702

701703
@cached_property
702704
def info(self) -> info.InfoResourceWithRawResponse:
705+
"""Control the Beeper Desktop application"""
703706
from .resources.info import InfoResourceWithRawResponse
704707

705708
return InfoResourceWithRawResponse(self._client.info)
@@ -748,6 +751,7 @@ def assets(self) -> assets.AsyncAssetsResourceWithRawResponse:
748751

749752
@cached_property
750753
def info(self) -> info.AsyncInfoResourceWithRawResponse:
754+
"""Control the Beeper Desktop application"""
751755
from .resources.info import AsyncInfoResourceWithRawResponse
752756

753757
return AsyncInfoResourceWithRawResponse(self._client.info)
@@ -796,6 +800,7 @@ def assets(self) -> assets.AssetsResourceWithStreamingResponse:
796800

797801
@cached_property
798802
def info(self) -> info.InfoResourceWithStreamingResponse:
803+
"""Control the Beeper Desktop application"""
799804
from .resources.info import InfoResourceWithStreamingResponse
800805

801806
return InfoResourceWithStreamingResponse(self._client.info)
@@ -844,6 +849,7 @@ def assets(self) -> assets.AsyncAssetsResourceWithStreamingResponse:
844849

845850
@cached_property
846851
def info(self) -> info.AsyncInfoResourceWithStreamingResponse:
852+
"""Control the Beeper Desktop application"""
847853
from .resources.info import AsyncInfoResourceWithStreamingResponse
848854

849855
return AsyncInfoResourceWithStreamingResponse(self._client.info)

src/beeper_desktop_api/resources/info.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020

2121

2222
class InfoResource(SyncAPIResource):
23+
"""Control the Beeper Desktop application"""
24+
2325
@cached_property
2426
def with_raw_response(self) -> InfoResourceWithRawResponse:
2527
"""
@@ -63,6 +65,8 @@ def retrieve(
6365

6466

6567
class AsyncInfoResource(AsyncAPIResource):
68+
"""Control the Beeper Desktop application"""
69+
6670
@cached_property
6771
def with_raw_response(self) -> AsyncInfoResourceWithRawResponse:
6872
"""

0 commit comments

Comments
 (0)