Skip to content

Commit

Permalink
publish: Add Ubuntu 24.04 cozy-stack packages
Browse files Browse the repository at this point in the history
generated from commit b2d4b2f
  • Loading branch information
Travis CI User committed Sep 20, 2024
1 parent ad680fb commit 401ff41
Show file tree
Hide file tree
Showing 4 changed files with 598 additions and 451 deletions.
147 changes: 147 additions & 0 deletions en/cozy-client/api/cozy-client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1437,6 +1437,27 @@
dehydrate
</a>

</li>

<li class="md-nav__item">
<a href="#dispatchcreate" title="dispatchCreate" class="md-nav__link">
dispatchCreate
</a>

</li>

<li class="md-nav__item">
<a href="#dispatchdelete" title="dispatchDelete" class="md-nav__link">
dispatchDelete
</a>

</li>

<li class="md-nav__item">
<a href="#dispatchupdate" title="dispatchUpdate" class="md-nav__link">
dispatchUpdate
</a>

</li>

<li class="md-nav__item">
Expand Down Expand Up @@ -3786,6 +3807,27 @@
dehydrate
</a>

</li>

<li class="md-nav__item">
<a href="#dispatchcreate" title="dispatchCreate" class="md-nav__link">
dispatchCreate
</a>

</li>

<li class="md-nav__item">
<a href="#dispatchdelete" title="dispatchDelete" class="md-nav__link">
dispatchDelete
</a>

</li>

<li class="md-nav__item">
<a href="#dispatchupdate" title="dispatchUpdate" class="md-nav__link">
dispatchUpdate
</a>

</li>

<li class="md-nav__item">
Expand Down Expand Up @@ -4491,6 +4533,111 @@ <h3 id="dehydrate">dehydrate<a class="headerlink" href="#dehydrate" title="Perma
<p><em>Defined in</em></p>
<p><a href="https://github.com/cozy/cozy-client/blob/master/packages/cozy-client/src/helpers/dehydrateHelper.js#L3">packages/cozy-client/src/helpers/dehydrateHelper.js:3</a></p>
<hr />
<h3 id="dispatchcreate">dispatchCreate<a class="headerlink" href="#dispatchcreate" title="Permanent link">&para;</a></h3>
<p><strong>dispatchCreate</strong>(<code>client</code>, <code>doctype</code>, <code>couchDBDoc</code>): <code>void</code></p>
<p>Dispatches a create action for a document to update CozyClient store from realtime callbacks.</p>
<p><em>Parameters</em></p>
<table>
<thead>
<tr>
<th align="left">Name</th>
<th align="left">Type</th>
<th align="left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><code>client</code></td>
<td align="left"><code>any</code></td>
<td align="left">CozyClient instance</td>
</tr>
<tr>
<td align="left"><code>doctype</code></td>
<td align="left"><code>string</code></td>
<td align="left">Doctype of the document to create</td>
</tr>
<tr>
<td align="left"><code>couchDBDoc</code></td>
<td align="left"><code>CouchDBDocument</code></td>
<td align="left">Document to create</td>
</tr>
</tbody>
</table>
<p><em>Returns</em></p>
<p><code>void</code></p>
<p><em>Defined in</em></p>
<p><a href="https://github.com/cozy/cozy-client/blob/master/packages/cozy-client/src/store/realtime.js#L58">packages/cozy-client/src/store/realtime.js:58</a></p>
<hr />
<h3 id="dispatchdelete">dispatchDelete<a class="headerlink" href="#dispatchdelete" title="Permanent link">&para;</a></h3>
<p><strong>dispatchDelete</strong>(<code>client</code>, <code>doctype</code>, <code>couchDBDoc</code>): <code>void</code></p>
<p>Dispatches a delete action for a document to update CozyClient store from realtime callbacks.</p>
<p><em>Parameters</em></p>
<table>
<thead>
<tr>
<th align="left">Name</th>
<th align="left">Type</th>
<th align="left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><code>client</code></td>
<td align="left"><code>any</code></td>
<td align="left">CozyClient instance</td>
</tr>
<tr>
<td align="left"><code>doctype</code></td>
<td align="left"><code>string</code></td>
<td align="left">Doctype of the document to create</td>
</tr>
<tr>
<td align="left"><code>couchDBDoc</code></td>
<td align="left"><code>CouchDBDocument</code></td>
<td align="left">Document to create</td>
</tr>
</tbody>
</table>
<p><em>Returns</em></p>
<p><code>void</code></p>
<p><em>Defined in</em></p>
<p><a href="https://github.com/cozy/cozy-client/blob/master/packages/cozy-client/src/store/realtime.js#L80">packages/cozy-client/src/store/realtime.js:80</a></p>
<hr />
<h3 id="dispatchupdate">dispatchUpdate<a class="headerlink" href="#dispatchupdate" title="Permanent link">&para;</a></h3>
<p><strong>dispatchUpdate</strong>(<code>client</code>, <code>doctype</code>, <code>couchDBDoc</code>): <code>void</code></p>
<p>Dispatches a update action for a document to update CozyClient store from realtime callbacks.</p>
<p><em>Parameters</em></p>
<table>
<thead>
<tr>
<th align="left">Name</th>
<th align="left">Type</th>
<th align="left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><code>client</code></td>
<td align="left"><code>any</code></td>
<td align="left">CozyClient instance</td>
</tr>
<tr>
<td align="left"><code>doctype</code></td>
<td align="left"><code>string</code></td>
<td align="left">Doctype of the document to create</td>
</tr>
<tr>
<td align="left"><code>couchDBDoc</code></td>
<td align="left"><code>CouchDBDocument</code></td>
<td align="left">Document to create</td>
</tr>
</tbody>
</table>
<p><em>Returns</em></p>
<p><code>void</code></p>
<p><em>Defined in</em></p>
<p><a href="https://github.com/cozy/cozy-client/blob/master/packages/cozy-client/src/store/realtime.js#L69">packages/cozy-client/src/store/realtime.js:69</a></p>
<hr />
<h3 id="ensurefirstslash">ensureFirstSlash<a class="headerlink" href="#ensurefirstslash" title="Permanent link">&para;</a></h3>
<p><strong>ensureFirstSlash</strong>(<code>path</code>): <code>any</code></p>
<p><em>Parameters</em></p>
Expand Down
2 changes: 1 addition & 1 deletion en/search/search_index.json

Large diffs are not rendered by default.

Loading

0 comments on commit 401ff41

Please sign in to comment.