Skip to content

Commit

Permalink
docs released for new tag: v0.42.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thisismana committed Dec 19, 2023
1 parent 3cc1c1e commit 23c164b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions docs/author.html
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ <h1 id="author"><a class="header" href="#author">Author</a></h1>
<p>This represents an author (or agency). The entity may be the main content
on author pages or simply indicate the author of an <a href="article.html">Article</a>.</p>
<div class="table-wrapper"><table><thead><tr><th>Field name</th><th>Type</th><th>Description</th></tr></thead><tbody>
<tr><td>id</td><td>string</td><td>The unique identifier (cms id) of the author.</td></tr>
<tr><td>id</td><td>int64</td><td>The unique identifier (cms id) of the author.</td></tr>
<tr><td>type</td><td><a href="#enum-type">Author.Type</a></td><td>The type of the author entity.</td></tr>
<tr><td>fields</td><td>map[string, string]</td><td>The fields of the author. This is a map of key-value pairs. The keys are the field names and the values are the field values.</td></tr>
<tr><td>elements</td><td><a href="article_%DB%B0_element.html">Article.Element</a>[]</td><td>The elements of the author, e.g. the author's profile picture.</td></tr>
Expand All @@ -186,7 +186,7 @@ <h1 id="author"><a class="header" href="#author">Author</a></h1>
</tbody></table>
</div>
<pre><code class="language-protobuf/">message Author {
string id = 1;
int64 id = 1;
Type type = 2;
map&lt;string, string&gt; fields = 3; // migrate from Asset[type=metadata]
repeated Article.Element elements = 4; // profile picture
Expand Down Expand Up @@ -227,7 +227,7 @@ <h2 id="historyentry"><a class="header" href="#historyentry"><code>HistoryEntry<
<p><a href="https://github.com/stroeer/tapir/blob/main/stroeer/core/v1/article.proto#L950-L967">[~]</a></p>
<h2 id="sample-author"><a class="header" href="#sample-author">Sample Author</a></h2>
<pre><code class="language-json">{
&quot;id&quot;: &quot;100000001&quot;,
&quot;id&quot;: 100000001,
&quot;type&quot;: &quot;AUTHOR&quot;,
&quot;fields&quot;: {
&quot;flag:hidden&quot;: &quot;true&quot;,
Expand Down
6 changes: 3 additions & 3 deletions docs/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ <h2 id="enum-eventsource"><a class="header" href="#enum-eventsource"><code>enum
<p>This represents an author (or agency). The entity may be the main content
on author pages or simply indicate the author of an <a href="article.html">Article</a>.</p>
<div class="table-wrapper"><table><thead><tr><th>Field name</th><th>Type</th><th>Description</th></tr></thead><tbody>
<tr><td>id</td><td>string</td><td>The unique identifier (cms id) of the author.</td></tr>
<tr><td>id</td><td>int64</td><td>The unique identifier (cms id) of the author.</td></tr>
<tr><td>type</td><td><a href="author.html#enum-type">Author.Type</a></td><td>The type of the author entity.</td></tr>
<tr><td>fields</td><td>map[string, string]</td><td>The fields of the author. This is a map of key-value pairs. The keys are the field names and the values are the field values.</td></tr>
<tr><td>elements</td><td><a href="article_%DB%B0_element.html">Article.Element</a>[]</td><td>The elements of the author, e.g. the author's profile picture.</td></tr>
Expand All @@ -917,7 +917,7 @@ <h2 id="enum-eventsource"><a class="header" href="#enum-eventsource"><code>enum
</tbody></table>
</div>
<pre><code class="language-protobuf/">message Author {
string id = 1;
int64 id = 1;
Type type = 2;
map&lt;string, string&gt; fields = 3; // migrate from Asset[type=metadata]
repeated Article.Element elements = 4; // profile picture
Expand Down Expand Up @@ -958,7 +958,7 @@ <h2 id="historyentry"><a class="header" href="#historyentry"><code>HistoryEntry<
<p><a href="https://github.com/stroeer/tapir/blob/main/stroeer/core/v1/article.proto#L950-L967">[~]</a></p>
<h2 id="sample-author"><a class="header" href="#sample-author">Sample Author</a></h2>
<pre><code class="language-json">{
&quot;id&quot;: &quot;100000001&quot;,
&quot;id&quot;: 100000001,
&quot;type&quot;: &quot;AUTHOR&quot;,
&quot;fields&quot;: {
&quot;flag:hidden&quot;: &quot;true&quot;,
Expand Down
2 changes: 1 addition & 1 deletion docs/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/searchindex.json

Large diffs are not rendered by default.

0 comments on commit 23c164b

Please sign in to comment.