Skip to content

Commit

Permalink
version 1.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Feb 15, 2023
1 parent df3d5d6 commit 3eaf0ac
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions docs/api-docs/slack_bolt/async_app.html
Original file line number Diff line number Diff line change
Expand Up @@ -3618,7 +3618,7 @@ <h3>Inherited members</h3>
return (resp, False)

@abstractmethod
async def run_ack_function(self, *, request: AsyncBoltRequest, response: BoltResponse) -&gt; BoltResponse:
async def run_ack_function(self, *, request: AsyncBoltRequest, response: BoltResponse) -&gt; Optional[BoltResponse]:
&#34;&#34;&#34;Runs all the registered middleware and then run the listener function.

Args:
Expand Down Expand Up @@ -3683,7 +3683,7 @@ <h3>Methods</h3>
</details>
</dd>
<dt id="slack_bolt.async_app.AsyncListener.run_ack_function"><code class="name flex">
<span>async def <span class="ident">run_ack_function</span></span>(<span>self, *, request: <a title="slack_bolt.request.async_request.AsyncBoltRequest" href="request/async_request.html#slack_bolt.request.async_request.AsyncBoltRequest">AsyncBoltRequest</a>, response: <a title="slack_bolt.response.response.BoltResponse" href="response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a>) ‑> <a title="slack_bolt.response.response.BoltResponse" href="response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a></span>
<span>async def <span class="ident">run_ack_function</span></span>(<span>self, *, request: <a title="slack_bolt.request.async_request.AsyncBoltRequest" href="request/async_request.html#slack_bolt.request.async_request.AsyncBoltRequest">AsyncBoltRequest</a>, response: <a title="slack_bolt.response.response.BoltResponse" href="response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a>) ‑> Optional[<a title="slack_bolt.response.response.BoltResponse" href="response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a>]</span>
</code></dt>
<dd>
<div class="desc"><p>Runs all the registered middleware and then run the listener function.</p>
Expand All @@ -3701,7 +3701,7 @@ <h2 id="returns">Returns</h2>
<span>Expand source code</span>
</summary>
<pre><code class="python">@abstractmethod
async def run_ack_function(self, *, request: AsyncBoltRequest, response: BoltResponse) -&gt; BoltResponse:
async def run_ack_function(self, *, request: AsyncBoltRequest, response: BoltResponse) -&gt; Optional[BoltResponse]:
&#34;&#34;&#34;Runs all the registered middleware and then run the listener function.

Args:
Expand Down
4 changes: 2 additions & 2 deletions docs/api-docs/slack_bolt/authorization/async_authorize.html
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ <h1 class="title">Module <code>slack_bolt.authorization.async_authorize</code></
raise BoltError(self._config_error_message)
refreshed = await self.token_rotator.perform_bot_token_rotation(
bot=bot,
token_rotation_expiration_minutes=self.token_rotation_expiration_minutes,
minutes_before_expiration=self.token_rotation_expiration_minutes,
)
if refreshed is not None:
await self.installation_store.async_save_bot(refreshed)
Expand Down Expand Up @@ -613,7 +613,7 @@ <h3>Ancestors</h3>
raise BoltError(self._config_error_message)
refreshed = await self.token_rotator.perform_bot_token_rotation(
bot=bot,
token_rotation_expiration_minutes=self.token_rotation_expiration_minutes,
minutes_before_expiration=self.token_rotation_expiration_minutes,
)
if refreshed is not None:
await self.installation_store.async_save_bot(refreshed)
Expand Down
6 changes: 3 additions & 3 deletions docs/api-docs/slack_bolt/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3879,7 +3879,7 @@ <h3>Inherited members</h3>
return (resp, False)

@abstractmethod
def run_ack_function(self, *, request: BoltRequest, response: BoltResponse) -&gt; BoltResponse:
def run_ack_function(self, *, request: BoltRequest, response: BoltResponse) -&gt; Optional[BoltResponse]:
&#34;&#34;&#34;Runs all the registered middleware and then run the listener function.

Args:
Expand Down Expand Up @@ -3944,7 +3944,7 @@ <h3>Methods</h3>
</details>
</dd>
<dt id="slack_bolt.Listener.run_ack_function"><code class="name flex">
<span>def <span class="ident">run_ack_function</span></span>(<span>self, *, request: <a title="slack_bolt.request.request.BoltRequest" href="request/request.html#slack_bolt.request.request.BoltRequest">BoltRequest</a>, response: <a title="slack_bolt.response.response.BoltResponse" href="response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a>) ‑> <a title="slack_bolt.response.response.BoltResponse" href="response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a></span>
<span>def <span class="ident">run_ack_function</span></span>(<span>self, *, request: <a title="slack_bolt.request.request.BoltRequest" href="request/request.html#slack_bolt.request.request.BoltRequest">BoltRequest</a>, response: <a title="slack_bolt.response.response.BoltResponse" href="response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a>) ‑> Optional[<a title="slack_bolt.response.response.BoltResponse" href="response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a>]</span>
</code></dt>
<dd>
<div class="desc"><p>Runs all the registered middleware and then run the listener function.</p>
Expand All @@ -3962,7 +3962,7 @@ <h2 id="returns">Returns</h2>
<span>Expand source code</span>
</summary>
<pre><code class="python">@abstractmethod
def run_ack_function(self, *, request: BoltRequest, response: BoltResponse) -&gt; BoltResponse:
def run_ack_function(self, *, request: BoltRequest, response: BoltResponse) -&gt; Optional[BoltResponse]:
&#34;&#34;&#34;Runs all the registered middleware and then run the listener function.

Args:
Expand Down
8 changes: 4 additions & 4 deletions docs/api-docs/slack_bolt/listener/async_listener.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ <h1 class="title">Module <code>slack_bolt.listener.async_listener</code></h1>
return (resp, False)

@abstractmethod
async def run_ack_function(self, *, request: AsyncBoltRequest, response: BoltResponse) -&gt; BoltResponse:
async def run_ack_function(self, *, request: AsyncBoltRequest, response: BoltResponse) -&gt; Optional[BoltResponse]:
&#34;&#34;&#34;Runs all the registered middleware and then run the listener function.

Args:
Expand Down Expand Up @@ -467,7 +467,7 @@ <h3>Inherited members</h3>
return (resp, False)

@abstractmethod
async def run_ack_function(self, *, request: AsyncBoltRequest, response: BoltResponse) -&gt; BoltResponse:
async def run_ack_function(self, *, request: AsyncBoltRequest, response: BoltResponse) -&gt; Optional[BoltResponse]:
&#34;&#34;&#34;Runs all the registered middleware and then run the listener function.

Args:
Expand Down Expand Up @@ -532,7 +532,7 @@ <h3>Methods</h3>
</details>
</dd>
<dt id="slack_bolt.listener.async_listener.AsyncListener.run_ack_function"><code class="name flex">
<span>async def <span class="ident">run_ack_function</span></span>(<span>self, *, request: <a title="slack_bolt.request.async_request.AsyncBoltRequest" href="../request/async_request.html#slack_bolt.request.async_request.AsyncBoltRequest">AsyncBoltRequest</a>, response: <a title="slack_bolt.response.response.BoltResponse" href="../response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a>) ‑> <a title="slack_bolt.response.response.BoltResponse" href="../response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a></span>
<span>async def <span class="ident">run_ack_function</span></span>(<span>self, *, request: <a title="slack_bolt.request.async_request.AsyncBoltRequest" href="../request/async_request.html#slack_bolt.request.async_request.AsyncBoltRequest">AsyncBoltRequest</a>, response: <a title="slack_bolt.response.response.BoltResponse" href="../response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a>) ‑> Optional[<a title="slack_bolt.response.response.BoltResponse" href="../response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a>]</span>
</code></dt>
<dd>
<div class="desc"><p>Runs all the registered middleware and then run the listener function.</p>
Expand All @@ -550,7 +550,7 @@ <h2 id="returns">Returns</h2>
<span>Expand source code</span>
</summary>
<pre><code class="python">@abstractmethod
async def run_ack_function(self, *, request: AsyncBoltRequest, response: BoltResponse) -&gt; BoltResponse:
async def run_ack_function(self, *, request: AsyncBoltRequest, response: BoltResponse) -&gt; Optional[BoltResponse]:
&#34;&#34;&#34;Runs all the registered middleware and then run the listener function.

Args:
Expand Down
6 changes: 3 additions & 3 deletions docs/api-docs/slack_bolt/listener/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ <h3>Inherited members</h3>
return (resp, False)

@abstractmethod
def run_ack_function(self, *, request: BoltRequest, response: BoltResponse) -&gt; BoltResponse:
def run_ack_function(self, *, request: BoltRequest, response: BoltResponse) -&gt; Optional[BoltResponse]:
&#34;&#34;&#34;Runs all the registered middleware and then run the listener function.

Args:
Expand Down Expand Up @@ -343,7 +343,7 @@ <h3>Methods</h3>
</details>
</dd>
<dt id="slack_bolt.listener.Listener.run_ack_function"><code class="name flex">
<span>def <span class="ident">run_ack_function</span></span>(<span>self, *, request: <a title="slack_bolt.request.request.BoltRequest" href="../request/request.html#slack_bolt.request.request.BoltRequest">BoltRequest</a>, response: <a title="slack_bolt.response.response.BoltResponse" href="../response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a>) ‑> <a title="slack_bolt.response.response.BoltResponse" href="../response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a></span>
<span>def <span class="ident">run_ack_function</span></span>(<span>self, *, request: <a title="slack_bolt.request.request.BoltRequest" href="../request/request.html#slack_bolt.request.request.BoltRequest">BoltRequest</a>, response: <a title="slack_bolt.response.response.BoltResponse" href="../response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a>) ‑> Optional[<a title="slack_bolt.response.response.BoltResponse" href="../response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a>]</span>
</code></dt>
<dd>
<div class="desc"><p>Runs all the registered middleware and then run the listener function.</p>
Expand All @@ -361,7 +361,7 @@ <h2 id="returns">Returns</h2>
<span>Expand source code</span>
</summary>
<pre><code class="python">@abstractmethod
def run_ack_function(self, *, request: BoltRequest, response: BoltResponse) -&gt; BoltResponse:
def run_ack_function(self, *, request: BoltRequest, response: BoltResponse) -&gt; Optional[BoltResponse]:
&#34;&#34;&#34;Runs all the registered middleware and then run the listener function.

Args:
Expand Down
8 changes: 4 additions & 4 deletions docs/api-docs/slack_bolt/listener/listener.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ <h1 class="title">Module <code>slack_bolt.listener.listener</code></h1>
return (resp, False)

@abstractmethod
def run_ack_function(self, *, request: BoltRequest, response: BoltResponse) -&gt; BoltResponse:
def run_ack_function(self, *, request: BoltRequest, response: BoltResponse) -&gt; Optional[BoltResponse]:
&#34;&#34;&#34;Runs all the registered middleware and then run the listener function.

Args:
Expand Down Expand Up @@ -162,7 +162,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
return (resp, False)

@abstractmethod
def run_ack_function(self, *, request: BoltRequest, response: BoltResponse) -&gt; BoltResponse:
def run_ack_function(self, *, request: BoltRequest, response: BoltResponse) -&gt; Optional[BoltResponse]:
&#34;&#34;&#34;Runs all the registered middleware and then run the listener function.

Args:
Expand Down Expand Up @@ -227,7 +227,7 @@ <h3>Methods</h3>
</details>
</dd>
<dt id="slack_bolt.listener.listener.Listener.run_ack_function"><code class="name flex">
<span>def <span class="ident">run_ack_function</span></span>(<span>self, *, request: <a title="slack_bolt.request.request.BoltRequest" href="../request/request.html#slack_bolt.request.request.BoltRequest">BoltRequest</a>, response: <a title="slack_bolt.response.response.BoltResponse" href="../response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a>) ‑> <a title="slack_bolt.response.response.BoltResponse" href="../response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a></span>
<span>def <span class="ident">run_ack_function</span></span>(<span>self, *, request: <a title="slack_bolt.request.request.BoltRequest" href="../request/request.html#slack_bolt.request.request.BoltRequest">BoltRequest</a>, response: <a title="slack_bolt.response.response.BoltResponse" href="../response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a>) ‑> Optional[<a title="slack_bolt.response.response.BoltResponse" href="../response/response.html#slack_bolt.response.response.BoltResponse">BoltResponse</a>]</span>
</code></dt>
<dd>
<div class="desc"><p>Runs all the registered middleware and then run the listener function.</p>
Expand All @@ -245,7 +245,7 @@ <h2 id="returns">Returns</h2>
<span>Expand source code</span>
</summary>
<pre><code class="python">@abstractmethod
def run_ack_function(self, *, request: BoltRequest, response: BoltResponse) -&gt; BoltResponse:
def run_ack_function(self, *, request: BoltRequest, response: BoltResponse) -&gt; Optional[BoltResponse]:
&#34;&#34;&#34;Runs all the registered middleware and then run the listener function.

Args:
Expand Down
2 changes: 1 addition & 1 deletion docs/api-docs/slack_bolt/version.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h1 class="title">Module <code>slack_bolt.version</code></h1>
<span>Expand source code</span>
</summary>
<pre><code class="python">&#34;&#34;&#34;Check the latest version at https://pypi.org/project/slack-bolt/&#34;&#34;&#34;
__version__ = &#34;1.16.1&#34;</code></pre>
__version__ = &#34;1.16.2&#34;</code></pre>
</details>
</section>
<section>
Expand Down
2 changes: 1 addition & 1 deletion slack_bolt/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Check the latest version at https://pypi.org/project/slack-bolt/"""
__version__ = "1.16.1"
__version__ = "1.16.2"

0 comments on commit 3eaf0ac

Please sign in to comment.