@@ -165,7 +165,10 @@ def assets(self) -> AssetsResource:
165165
166166 @cached_property
167167 def info (self ) -> InfoResource :
168- """Control the Beeper Desktop application"""
168+ """Server discovery and capability metadata.
169+
170+ Use /v1/info before authentication setup.
171+ """
169172 from .resources .info import InfoResource
170173
171174 return InfoResource (self )
@@ -270,15 +273,15 @@ def focus(
270273 ) -> FocusResponse :
271274 """
272275 Focus Beeper Desktop and optionally navigate to a specific chat, message, or
273- pre-fill draft text and attachment .
276+ pre-fill plain text and an image path .
274277
275278 Args:
276279 chat_id: Optional Beeper chat ID (or local chat ID) to focus after opening the app. If
277280 omitted, only opens/focuses the app.
278281
279- draft_attachment_path: Optional draft attachment path to populate in the message input field.
282+ draft_attachment_path: Optional image path to populate in the message input field.
280283
281- draft_text: Optional draft text to populate in the message input field.
284+ draft_text: Optional plain text to populate in the message input field.
282285
283286 message_id: Optional message ID. Jumps to that message in the chat when opening.
284287
@@ -474,7 +477,10 @@ def assets(self) -> AsyncAssetsResource:
474477
475478 @cached_property
476479 def info (self ) -> AsyncInfoResource :
477- """Control the Beeper Desktop application"""
480+ """Server discovery and capability metadata.
481+
482+ Use /v1/info before authentication setup.
483+ """
478484 from .resources .info import AsyncInfoResource
479485
480486 return AsyncInfoResource (self )
@@ -579,15 +585,15 @@ async def focus(
579585 ) -> FocusResponse :
580586 """
581587 Focus Beeper Desktop and optionally navigate to a specific chat, message, or
582- pre-fill draft text and attachment .
588+ pre-fill plain text and an image path .
583589
584590 Args:
585591 chat_id: Optional Beeper chat ID (or local chat ID) to focus after opening the app. If
586592 omitted, only opens/focuses the app.
587593
588- draft_attachment_path: Optional draft attachment path to populate in the message input field.
594+ draft_attachment_path: Optional image path to populate in the message input field.
589595
590- draft_text: Optional draft text to populate in the message input field.
596+ draft_text: Optional plain text to populate in the message input field.
591597
592598 message_id: Optional message ID. Jumps to that message in the chat when opening.
593599
@@ -732,7 +738,10 @@ def assets(self) -> assets.AssetsResourceWithRawResponse:
732738
733739 @cached_property
734740 def info (self ) -> info .InfoResourceWithRawResponse :
735- """Control the Beeper Desktop application"""
741+ """Server discovery and capability metadata.
742+
743+ Use /v1/info before authentication setup.
744+ """
736745 from .resources .info import InfoResourceWithRawResponse
737746
738747 return InfoResourceWithRawResponse (self ._client .info )
@@ -781,7 +790,10 @@ def assets(self) -> assets.AsyncAssetsResourceWithRawResponse:
781790
782791 @cached_property
783792 def info (self ) -> info .AsyncInfoResourceWithRawResponse :
784- """Control the Beeper Desktop application"""
793+ """Server discovery and capability metadata.
794+
795+ Use /v1/info before authentication setup.
796+ """
785797 from .resources .info import AsyncInfoResourceWithRawResponse
786798
787799 return AsyncInfoResourceWithRawResponse (self ._client .info )
@@ -830,7 +842,10 @@ def assets(self) -> assets.AssetsResourceWithStreamingResponse:
830842
831843 @cached_property
832844 def info (self ) -> info .InfoResourceWithStreamingResponse :
833- """Control the Beeper Desktop application"""
845+ """Server discovery and capability metadata.
846+
847+ Use /v1/info before authentication setup.
848+ """
834849 from .resources .info import InfoResourceWithStreamingResponse
835850
836851 return InfoResourceWithStreamingResponse (self ._client .info )
@@ -879,7 +894,10 @@ def assets(self) -> assets.AsyncAssetsResourceWithStreamingResponse:
879894
880895 @cached_property
881896 def info (self ) -> info .AsyncInfoResourceWithStreamingResponse :
882- """Control the Beeper Desktop application"""
897+ """Server discovery and capability metadata.
898+
899+ Use /v1/info before authentication setup.
900+ """
883901 from .resources .info import AsyncInfoResourceWithStreamingResponse
884902
885903 return AsyncInfoResourceWithStreamingResponse (self ._client .info )
0 commit comments