Skip to content

Commit

Permalink
chore: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Moritz Vetter committed Jul 25, 2022
1 parent 1421bd2 commit 04730fc
Show file tree
Hide file tree
Showing 4 changed files with 199 additions and 75 deletions.
20 changes: 20 additions & 0 deletions docs/api/common.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ <h1 class="title">Module <code>push_to_3yourmind.api.common</code></h1>
def get_materials(self) -&gt; t.List[types.ResponseDict]:
return self._request(&#34;GET&#34;, &#34;materials/&#34;)

def get_forms(self):
return self._request(&#34;GET&#34;, &#34;forms/&#34;)

def get_tax_types(self) -&gt; t.List[str]:
return self._request(&#34;GET&#34;, &#34;tax-types/&#34;)</code></pre>
</details>
Expand Down Expand Up @@ -134,6 +137,9 @@ <h2 id="args">Args</h2>
def get_materials(self) -&gt; t.List[types.ResponseDict]:
return self._request(&#34;GET&#34;, &#34;materials/&#34;)

def get_forms(self):
return self._request(&#34;GET&#34;, &#34;forms/&#34;)

def get_tax_types(self) -&gt; t.List[str]:
return self._request(&#34;GET&#34;, &#34;tax-types/&#34;)</code></pre>
</details>
Expand Down Expand Up @@ -219,6 +225,19 @@ <h3>Methods</h3>
return self._request(&#34;GET&#34;, &#34;materials/&#34;)</code></pre>
</details>
</dd>
<dt id="push_to_3yourmind.api.common.CommonAPI.get_forms"><code class="name flex">
<span>def <span class="ident">get_forms</span></span>(<span>self)</span>
</code></dt>
<dd>
<div class="desc"></div>
<details class="source">
<summary>
<span>Expand source code</span>
</summary>
<pre><code class="python">def get_forms(self):
return self._request(&#34;GET&#34;, &#34;forms/&#34;)</code></pre>
</details>
</dd>
<dt id="push_to_3yourmind.api.common.CommonAPI.get_tax_types"><code class="name flex">
<span>def <span class="ident">get_tax_types</span></span>(<span>self) ‑> List[str]</span>
</code></dt>
Expand Down Expand Up @@ -258,6 +277,7 @@ <h4><code><a title="push_to_3yourmind.api.common.CommonAPI" href="#push_to_3your
<li><code><a title="push_to_3yourmind.api.common.CommonAPI.get_countries" href="#push_to_3yourmind.api.common.CommonAPI.get_countries">get_countries</a></code></li>
<li><code><a title="push_to_3yourmind.api.common.CommonAPI.get_currencies" href="#push_to_3yourmind.api.common.CommonAPI.get_currencies">get_currencies</a></code></li>
<li><code><a title="push_to_3yourmind.api.common.CommonAPI.get_materials" href="#push_to_3yourmind.api.common.CommonAPI.get_materials">get_materials</a></code></li>
<li><code><a title="push_to_3yourmind.api.common.CommonAPI.get_forms" href="#push_to_3yourmind.api.common.CommonAPI.get_forms">get_forms</a></code></li>
<li><code><a title="push_to_3yourmind.api.common.CommonAPI.get_tax_types" href="#push_to_3yourmind.api.common.CommonAPI.get_tax_types">get_tax_types</a></code></li>
</ul>
</li>
Expand Down
Loading

0 comments on commit 04730fc

Please sign in to comment.