Skip to content

Commit 9a27e6f

Browse files
committed
docs: autogenerate reference
1 parent 24022c8 commit 9a27e6f

File tree

5 files changed

+45
-10
lines changed

5 files changed

+45
-10
lines changed

docs/reference/async_app.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5248,11 +5248,18 @@ <h3>Class variables</h3>
52485248
self.channel_id = channel_id
52495249
self.thread_ts = thread_ts
52505250

5251-
async def __call__(self, status: str) -&gt; AsyncSlackResponse:
5251+
async def __call__(
5252+
self,
5253+
status: str,
5254+
loading_messages: Optional[List[str]] = None,
5255+
**kwargs,
5256+
) -&gt; AsyncSlackResponse:
52525257
return await self.client.assistant_threads_setStatus(
5253-
status=status,
52545258
channel_id=self.channel_id,
52555259
thread_ts=self.thread_ts,
5260+
status=status,
5261+
loading_messages=loading_messages,
5262+
**kwargs,
52565263
)</code></pre>
52575264
</details>
52585265
<div class="desc"></div>

docs/reference/context/set_status/async_set_status.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,18 @@ <h2 class="section-title" id="header-classes">Classes</h2>
7070
self.channel_id = channel_id
7171
self.thread_ts = thread_ts
7272

73-
async def __call__(self, status: str) -&gt; AsyncSlackResponse:
73+
async def __call__(
74+
self,
75+
status: str,
76+
loading_messages: Optional[List[str]] = None,
77+
**kwargs,
78+
) -&gt; AsyncSlackResponse:
7479
return await self.client.assistant_threads_setStatus(
75-
status=status,
7680
channel_id=self.channel_id,
7781
thread_ts=self.thread_ts,
82+
status=status,
83+
loading_messages=loading_messages,
84+
**kwargs,
7885
)</code></pre>
7986
</details>
8087
<div class="desc"></div>

docs/reference/context/set_status/index.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,18 @@ <h2 class="section-title" id="header-classes">Classes</h2>
8181
self.channel_id = channel_id
8282
self.thread_ts = thread_ts
8383

84-
def __call__(self, status: str) -&gt; SlackResponse:
84+
def __call__(
85+
self,
86+
status: str,
87+
loading_messages: Optional[List[str]] = None,
88+
**kwargs,
89+
) -&gt; SlackResponse:
8590
return self.client.assistant_threads_setStatus(
86-
status=status,
8791
channel_id=self.channel_id,
8892
thread_ts=self.thread_ts,
93+
status=status,
94+
loading_messages=loading_messages,
95+
**kwargs,
8996
)</code></pre>
9097
</details>
9198
<div class="desc"></div>

docs/reference/context/set_status/set_status.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,18 @@ <h2 class="section-title" id="header-classes">Classes</h2>
7070
self.channel_id = channel_id
7171
self.thread_ts = thread_ts
7272

73-
def __call__(self, status: str) -&gt; SlackResponse:
73+
def __call__(
74+
self,
75+
status: str,
76+
loading_messages: Optional[List[str]] = None,
77+
**kwargs,
78+
) -&gt; SlackResponse:
7479
return self.client.assistant_threads_setStatus(
75-
status=status,
7680
channel_id=self.channel_id,
7781
thread_ts=self.thread_ts,
82+
status=status,
83+
loading_messages=loading_messages,
84+
**kwargs,
7885
)</code></pre>
7986
</details>
8087
<div class="desc"></div>

docs/reference/index.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5786,11 +5786,18 @@ <h3>Class variables</h3>
57865786
self.channel_id = channel_id
57875787
self.thread_ts = thread_ts
57885788

5789-
def __call__(self, status: str) -&gt; SlackResponse:
5789+
def __call__(
5790+
self,
5791+
status: str,
5792+
loading_messages: Optional[List[str]] = None,
5793+
**kwargs,
5794+
) -&gt; SlackResponse:
57905795
return self.client.assistant_threads_setStatus(
5791-
status=status,
57925796
channel_id=self.channel_id,
57935797
thread_ts=self.thread_ts,
5798+
status=status,
5799+
loading_messages=loading_messages,
5800+
**kwargs,
57945801
)</code></pre>
57955802
</details>
57965803
<div class="desc"></div>

0 commit comments

Comments
 (0)