Skip to content

Commit 7276014

Browse files
author
Kevin Hannegan
committed
update docs, add changelog
1 parent c36c411 commit 7276014

File tree

158 files changed

+21124
-16305
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+21124
-16305
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## v0.5.0 (2020-05-21)
2+
3+
* Refactor authentication / authorization for 3rd Party Provider (Auth0)
4+
* Add `presalytics.client.oidc.OidcClent` to manage token acquisition
5+
* Improve fault tolerance of token handling and refresh

docs/presalytics/client/api.html

Lines changed: 270 additions & 377 deletions
Large diffs are not rendered by default.

docs/presalytics/client/auth.html

Lines changed: 215 additions & 139 deletions
Large diffs are not rendered by default.

docs/presalytics/client/index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ <h2 class="section-title" id="header-submodules">Sub-modules</h2>
6363
<dd>
6464
<section class="desc"></section>
6565
</dd>
66+
<dt><code class="name"><a title="presalytics.client.oidc" href="/python-client/presalytics/client/oidc.html">presalytics.client.oidc</a></code></dt>
67+
<dd>
68+
<section class="desc"></section>
69+
</dd>
6670
<dt><code class="name"><a title="presalytics.client.presalytics_doc_converter" href="/python-client/presalytics/client/presalytics_doc_converter/index.html">presalytics.client.presalytics_doc_converter</a></code></dt>
6771
<dd>
6872
<section class="desc"><p>Doc Converter …</p></section>
@@ -99,6 +103,7 @@ <h1>Index</h1>
99103
<ul>
100104
<li><code><a title="presalytics.client.api" href="/python-client/presalytics/client/api.html">presalytics.client.api</a></code></li>
101105
<li><code><a title="presalytics.client.auth" href="/python-client/presalytics/client/auth.html">presalytics.client.auth</a></code></li>
106+
<li><code><a title="presalytics.client.oidc" href="/python-client/presalytics/client/oidc.html">presalytics.client.oidc</a></code></li>
102107
<li><code><a title="presalytics.client.presalytics_doc_converter" href="/python-client/presalytics/client/presalytics_doc_converter/index.html">presalytics.client.presalytics_doc_converter</a></code></li>
103108
<li><code><a title="presalytics.client.presalytics_ooxml_automation" href="/python-client/presalytics/client/presalytics_ooxml_automation/index.html">presalytics.client.presalytics_ooxml_automation</a></code></li>
104109
<li><code><a title="presalytics.client.presalytics_story" href="/python-client/presalytics/client/presalytics_story/index.html">presalytics.client.presalytics_story</a></code></li>

docs/presalytics/client/oidc.html

Lines changed: 839 additions & 0 deletions
Large diffs are not rendered by default.

docs/presalytics/client/presalytics_ooxml_automation/api/default_api.html

Lines changed: 4227 additions & 6338 deletions
Large diffs are not rendered by default.

docs/presalytics/client/presalytics_ooxml_automation/api_client.html

Lines changed: 88 additions & 118 deletions
Large diffs are not rendered by default.

docs/presalytics/client/presalytics_ooxml_automation/configuration.html

Lines changed: 186 additions & 323 deletions
Large diffs are not rendered by default.

docs/presalytics/client/presalytics_ooxml_automation/models/chart_axes.html

Lines changed: 15 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h1 class="title">Module <code>presalytics.client.presalytics_ooxml_automation.m
2828
<details class="source">
2929
<summary>
3030
<span>Expand source code</span>
31-
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L0-L197" class="git-link">Browse git</a>
31+
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L0-L189" class="git-link">Browse git</a>
3232
</summary>
3333
<pre><code class="python"># coding: utf-8
3434

@@ -47,8 +47,6 @@ <h1 class="title">Module <code>presalytics.client.presalytics_ooxml_automation.m
4747

4848
import six
4949

50-
from presalytics.client.presalytics_ooxml_automation.configuration import Configuration
51-
5250

5351
class ChartAxes(object):
5452
&#34;&#34;&#34;NOTE: This class is auto generated by OpenAPI Generator.
@@ -78,11 +76,8 @@ <h1 class="title">Module <code>presalytics.client.presalytics_ooxml_automation.m
7876
&#39;id&#39;: &#39;id&#39;
7977
}
8078

81-
def __init__(self, charts_id=None, ooxml_id=None, axis_data_type_id=None, id=None, local_vars_configuration=None): # noqa: E501
79+
def __init__(self, charts_id=None, ooxml_id=None, axis_data_type_id=None, id=None): # noqa: E501
8280
&#34;&#34;&#34;ChartAxes - a model defined in OpenAPI&#34;&#34;&#34; # noqa: E501
83-
if local_vars_configuration is None:
84-
local_vars_configuration = Configuration()
85-
self.local_vars_configuration = local_vars_configuration
8681

8782
self._charts_id = None
8883
self._ooxml_id = None
@@ -220,14 +215,11 @@ <h1 class="title">Module <code>presalytics.client.presalytics_ooxml_automation.m
220215
if not isinstance(other, ChartAxes):
221216
return False
222217

223-
return self.to_dict() == other.to_dict()
218+
return self.__dict__ == other.__dict__
224219

225220
def __ne__(self, other):
226221
&#34;&#34;&#34;Returns true if both objects are not equal&#34;&#34;&#34;
227-
if not isinstance(other, ChartAxes):
228-
return True
229-
230-
return self.to_dict() != other.to_dict()</code></pre>
222+
return not self == other</code></pre>
231223
</details>
232224
</section>
233225
<section>
@@ -241,7 +233,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
241233
<dl>
242234
<dt id="presalytics.client.presalytics_ooxml_automation.models.chart_axes.ChartAxes"><code class="flex name class">
243235
<span>class <span class="ident">ChartAxes</span></span>
244-
<span>(</span><span>charts_id=None, ooxml_id=None, axis_data_type_id=None, id=None, local_vars_configuration=None)</span>
236+
<span>(</span><span>charts_id=None, ooxml_id=None, axis_data_type_id=None, id=None)</span>
245237
</code></dt>
246238
<dd>
247239
<section class="desc"><p>NOTE: This class is auto generated by OpenAPI Generator.
@@ -251,7 +243,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
251243
<details class="source">
252244
<summary>
253245
<span>Expand source code</span>
254-
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L21-L198" class="git-link">Browse git</a>
246+
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L19-L190" class="git-link">Browse git</a>
255247
</summary>
256248
<pre><code class="python">class ChartAxes(object):
257249
&#34;&#34;&#34;NOTE: This class is auto generated by OpenAPI Generator.
@@ -281,11 +273,8 @@ <h2 class="section-title" id="header-classes">Classes</h2>
281273
&#39;id&#39;: &#39;id&#39;
282274
}
283275

284-
def __init__(self, charts_id=None, ooxml_id=None, axis_data_type_id=None, id=None, local_vars_configuration=None): # noqa: E501
276+
def __init__(self, charts_id=None, ooxml_id=None, axis_data_type_id=None, id=None): # noqa: E501
285277
&#34;&#34;&#34;ChartAxes - a model defined in OpenAPI&#34;&#34;&#34; # noqa: E501
286-
if local_vars_configuration is None:
287-
local_vars_configuration = Configuration()
288-
self.local_vars_configuration = local_vars_configuration
289278

290279
self._charts_id = None
291280
self._ooxml_id = None
@@ -423,14 +412,11 @@ <h2 class="section-title" id="header-classes">Classes</h2>
423412
if not isinstance(other, ChartAxes):
424413
return False
425414

426-
return self.to_dict() == other.to_dict()
415+
return self.__dict__ == other.__dict__
427416

428417
def __ne__(self, other):
429418
&#34;&#34;&#34;Returns true if both objects are not equal&#34;&#34;&#34;
430-
if not isinstance(other, ChartAxes):
431-
return True
432-
433-
return self.to_dict() != other.to_dict()</code></pre>
419+
return not self == other</code></pre>
434420
</details>
435421
<h3>Class variables</h3>
436422
<dl>
@@ -475,7 +461,7 @@ <h3>Instance variables</h3>
475461
<details class="source">
476462
<summary>
477463
<span>Expand source code</span>
478-
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L70-L78" class="git-link">Browse git</a>
464+
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L65-L73" class="git-link">Browse git</a>
479465
</summary>
480466
<pre><code class="python">@property
481467
def charts_id(self):
@@ -498,7 +484,7 @@ <h3>Instance variables</h3>
498484
<details class="source">
499485
<summary>
500486
<span>Expand source code</span>
501-
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L91-L99" class="git-link">Browse git</a>
487+
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L86-L94" class="git-link">Browse git</a>
502488
</summary>
503489
<pre><code class="python">@property
504490
def ooxml_id(self):
@@ -521,7 +507,7 @@ <h3>Instance variables</h3>
521507
<details class="source">
522508
<summary>
523509
<span>Expand source code</span>
524-
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L112-L120" class="git-link">Browse git</a>
510+
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L107-L115" class="git-link">Browse git</a>
525511
</summary>
526512
<pre><code class="python">@property
527513
def axis_data_type_id(self):
@@ -544,7 +530,7 @@ <h3>Instance variables</h3>
544530
<details class="source">
545531
<summary>
546532
<span>Expand source code</span>
547-
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L133-L141" class="git-link">Browse git</a>
533+
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L128-L136" class="git-link">Browse git</a>
548534
</summary>
549535
<pre><code class="python">@property
550536
def id(self):
@@ -568,7 +554,7 @@ <h3>Methods</h3>
568554
<details class="source">
569555
<summary>
570556
<span>Expand source code</span>
571-
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L154-L176" class="git-link">Browse git</a>
557+
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L149-L171" class="git-link">Browse git</a>
572558
</summary>
573559
<pre><code class="python">def to_dict(self):
574560
&#34;&#34;&#34;Returns the model properties as a dict&#34;&#34;&#34;
@@ -603,7 +589,7 @@ <h3>Methods</h3>
603589
<details class="source">
604590
<summary>
605591
<span>Expand source code</span>
606-
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L178-L180" class="git-link">Browse git</a>
592+
<a href="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L173-L175" class="git-link">Browse git</a>
607593
</summary>
608594
<pre><code class="python">def to_str(self):
609595
&#34;&#34;&#34;Returns the string representation of the model&#34;&#34;&#34;

0 commit comments

Comments
 (0)