Skip to content

Update generated files #47

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
<!-- Code generated for API Clients. DO NOT EDIT. -->

## 0.15.1
* Un-pin specific version of `requests`

## 0.15.0
* Add support for `vaults`
* Add support for `secrets`
Expand Down
2 changes: 1 addition & 1 deletion docs/_modules/ngrok/datatypes.html
Original file line number Diff line number Diff line change
Expand Up @@ -4079,7 +4079,7 @@ <h1>Source code for ngrok.datatypes</h1><div class="highlight"><pre>

<span class="nd">@property</span>
<span class="k">def</span><span class="w"> </span><span class="nf">uri</span><span class="p">(</span><span class="bp">self</span><span class="p">)</span> <span class="o">-&gt;</span> <span class="nb">str</span><span class="p">:</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;URI of the clep API resource&quot;&quot;&quot;</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;URI of the Cloud Endpoint API resource&quot;&quot;&quot;</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_props</span><span class="p">[</span><span class="s2">&quot;uri&quot;</span><span class="p">]</span>

<span class="nd">@property</span>
Expand Down
2 changes: 1 addition & 1 deletion docs/datatypes.html
Original file line number Diff line number Diff line change
Expand Up @@ -1908,7 +1908,7 @@ <h1>Datatypes<a class="headerlink" href="#datatypes" title="Permalink to this he
<dl class="py property">
<dt class="sig sig-object py" id="ngrok.datatypes.Endpoint.uri">
<em class="property"><span class="pre">property</span><span class="w"> </span></em><span class="sig-name descname"><span class="pre">uri</span></span><em class="property"><span class="p"><span class="pre">:</span></span><span class="w"> </span><span class="pre">str</span></em><a class="headerlink" href="#ngrok.datatypes.Endpoint.uri" title="Permalink to this definition">#</a></dt>
<dd><p>URI of the clep API resource</p>
<dd><p>URI of the Cloud Endpoint API resource</p>
<dl class="field-list simple">
<dt class="field-odd">Return type<span class="colon">:</span></dt>
<dd class="field-odd"><p><code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code></p>
Expand Down
2 changes: 1 addition & 1 deletion docs/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ngrok/datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -3824,7 +3824,7 @@ def tunnel_session(self) -> Ref:

@property
def uri(self) -> str:
"""URI of the clep API resource"""
"""URI of the Cloud Endpoint API resource"""
return self._props["uri"]

@property
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def read_file(filename):

setup(
name="ngrok-api",
version="0.15.0",
version="0.16.0",
description="ngrok HTTP API client library",
long_description=read_file("README.md"),
long_description_content_type="text/markdown",
Expand All @@ -30,7 +30,7 @@ def read_file(filename):
],
python_requires=">=3.7",
install_requires=[
"requests==2.25.1",
"requests>=2.25.1,<3.0",
],
extras_require={
"tox": ["tox==3.23.0"],
Expand Down