Skip to content

Commit

Permalink
merge release/0.30.2 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-scherzinger committed Jul 12, 2024
2 parents ff11c5f + e02d426 commit 3a3be79
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## <small>0.30.2 (2024-07-12)</small>

* release version 0.30.2 ([e02d426](https://github.com/entrecode/ec.sdk/commit/e02d426))
* fix: do not include undefined values in toOriginal ([599ac1f](https://github.com/entrecode/ec.sdk/commit/599ac1f))



## <small>0.30.1 (2024-07-12)</small>

* release version 0.30.1 ([200f591](https://github.com/entrecode/ec.sdk/commit/200f591))
Expand Down
11 changes: 8 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset='utf-8'>
<title>ec.sdk 0.30.1 | Documentation</title>
<title>ec.sdk 0.30.2 | Documentation</title>
<meta name='description' content='SDK for ec.api'>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<link href='assets/bass.css' rel='stylesheet'>
Expand All @@ -15,7 +15,7 @@
<div id='split-left' class='overflow-auto fs0 height-viewport-100'>
<div class='py1 px2'>
<h3 class='mb0 no-anchor'>ec.sdk</h3>
<div class='mb1'><code>0.30.1</code></div>
<div class='mb1'><code>0.30.2</code></div>
<input
placeholder='Filter'
id='filter-input'
Expand Down Expand Up @@ -32773,7 +32773,12 @@ <h2 id='changelog' class='mt0'>
</h2>


<h2>0.30.1 (2024-07-12)</h2>
<h2>0.30.2 (2024-07-12)</h2>
<ul>
<li>release version 0.30.2 (<a href="https://github.com/entrecode/ec.sdk/commit/e02d426">e02d426</a>)</li>
<li>fix: do not include undefined values in toOriginal (<a href="https://github.com/entrecode/ec.sdk/commit/599ac1f">599ac1f</a>)</li>
</ul>
<h2>0.30.1 (2024-07-12)</h2>
<ul>
<li>release version 0.30.1 (<a href="https://github.com/entrecode/ec.sdk/commit/200f591">200f591</a>)</li>
<li>feat: do not send permissions in account edit (<a href="https://github.com/entrecode/ec.sdk/commit/62066ab">62066ab</a>)</li>
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ec.sdk",
"version": "0.30.1",
"version": "0.30.2",
"description": "SDK for ec.api",
"repository": "entrecode/ec.sdk",
"author": "Simon Scherzinger <scherzinger@entrecode.de>",
Expand Down
4 changes: 3 additions & 1 deletion src/resources/Resource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,9 @@ class Resource {
const out = {};

Object.keys(this[originalSymbol]).forEach((key) => {
out[key] = this[resourceSymbol][key];
if (this[resourceSymbol][key] !== undefined) {
out[key] = this[resourceSymbol][key];
}
});

return out;
Expand Down

0 comments on commit 3a3be79

Please sign in to comment.