We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b622991 + d4d9ce9 commit 0e13dcfCopy full SHA for 0e13dcf
1 file changed
src/chat_sdk/shared/mock_adapter.py
@@ -167,7 +167,12 @@ def is_dm(self, thread_id: str) -> bool:
167
def get_channel_visibility(self, thread_id: str) -> ChannelVisibility:
168
return "unknown"
169
170
- async def open_modal(self, **kwargs: Any) -> dict[str, str]:
+ async def open_modal(
171
+ self,
172
+ trigger_id: str = "",
173
+ modal: Any = None,
174
+ context_id: str | None = None,
175
+ ) -> dict[str, str]:
176
return {"view_id": "V123"}
177
178
async def fetch_channel_messages(self, channel_id: str, options: FetchOptions | None = None) -> FetchResult:
0 commit comments