Commit 5d53cce
authored
chore(deps-dev): bump the hey-api group across 1 directory with 2 updates (#631)
Bumps the hey-api group with 2 updates in the / directory:
[@hey-api/client-fetch](https://github.com/hey-api/openapi-ts) and
[@hey-api/openapi-ts](https://github.com/hey-api/openapi-ts).
Updates `@hey-api/client-fetch` from 0.12.0 to 0.13.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/hey-api/openapi-ts/releases"><code>@hey-api/client-fetch</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@hey-api/client-fetch</code><a
href="https://github.com/0"><code>@0</code></a>.13.0</h2>
<h3>Minor Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/hey-api/openapi-ts/pull/2148">#2148</a>
<a
href="https://github.com/hey-api/openapi-ts/commit/10d2e03b8295e4e887fab8d023aa823699efbae8"><code>10d2e03</code></a>
Thanks <a href="https://github.com/mrlubos"><code>@mrlubos</code></a>!
- feat: export <code>buildClientParams</code> function</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/01134c598ded260907c9e94159c2791934a4aa76"><code>01134c5</code></a>
Merge pull request <a
href="https://redirect.github.com/hey-api/openapi-ts/issues/2144">#2144</a>
from hey-api/changeset-release/main</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/69c9653b4be721a5078bb73e64eb9b7321452edf"><code>69c9653</code></a>
Version Packages</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/60deb25fe446fec266c6b29bc117ee60867d29c9"><code>60deb25</code></a>
Merge pull request <a
href="https://redirect.github.com/hey-api/openapi-ts/issues/2153">#2153</a>
from hey-api/feat/object-property-names</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/b272bd9e4adfb0d87a05b023bc078246e7ee4937"><code>b272bd9</code></a>
fix(parser): handle propertyNames keyword</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/ced57a77e3461c854e85baf928fe6d838b025d04"><code>ced57a7</code></a>
Merge pull request <a
href="https://redirect.github.com/hey-api/openapi-ts/issues/2152">#2152</a>
from hey-api/fix/zod-bigint-default</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/6d5ad37e474ad659efb8ffdc649829ac4e1e1b8a"><code>6d5ad37</code></a>
fix(validators): correctly generate default value for BigInt</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/bfa2c5ba5b7d9fd2d46262351ffadc393074a1b4"><code>bfa2c5b</code></a>
Merge pull request <a
href="https://redirect.github.com/hey-api/openapi-ts/issues/2151">#2151</a>
from hey-api/fix/crash-report</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/aef80c397b254f391543ff11cac417fab8397c8b"><code>aef80c3</code></a>
fix(typescript): handle nested inline objects with write/read only
fields</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/0ea8130ff6b2e047dbc4fd6a30d08f54da367d0c"><code>0ea8130</code></a>
fix: add crash report prompt</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/f0294b4d816edacdb1fed1242cf3f2e78838f389"><code>f0294b4</code></a>
Merge pull request <a
href="https://redirect.github.com/hey-api/openapi-ts/issues/2148">#2148</a>
from hey-api/feat/client-build-params</li>
<li>Additional commits viewable in <a
href="https://github.com/hey-api/openapi-ts/compare/@hey-api/client-fetch@0.12.0...@hey-api/client-fetch@0.13.0">compare
view</a></li>
</ul>
</details>
<br />
Updates `@hey-api/openapi-ts` from 0.71.0 to 0.72.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/hey-api/openapi-ts/releases"><code>@hey-api/openapi-ts</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@hey-api/openapi-ts</code><a
href="https://github.com/0"><code>@0</code></a>.72.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/hey-api/openapi-ts/pull/2141">#2141</a>
<a
href="https://github.com/hey-api/openapi-ts/commit/557769d10a7b4da55489239a437c9611a3c41a24"><code>557769d</code></a>
Thanks <a href="https://github.com/mrlubos"><code>@mrlubos</code></a>!
- feat(sdk): add <code>classStructure</code> option supporting dot or
slash <code>operationId</code> notation when generating class-based
SDKs</p>
<h3>Added <code>sdk.classStructure</code> option</h3>
<p>When generating class-based SDKs, we now try to infer the ideal
structure using <code>operationId</code> keywords. If you'd like to
preserve the previous behavior, set <code>classStructure</code> to
<code>off</code>.</p>
<pre lang="js"><code>export default {
input: 'https://get.heyapi.dev/hey-api/backend',
output: 'src/client',
plugins: [
// ...other plugins
{
classStructure: 'off',
name: '@hey-api/sdk',
},
],
};
</code></pre>
</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/hey-api/openapi-ts/pull/2151">#2151</a>
<a
href="https://github.com/hey-api/openapi-ts/commit/0ea8130ff6b2e047dbc4fd6a30d08f54da367d0c"><code>0ea8130</code></a>
Thanks <a href="https://github.com/mrlubos"><code>@mrlubos</code></a>!
- fix: add crash report prompt</p>
</li>
<li>
<p><a
href="https://redirect.github.com/hey-api/openapi-ts/pull/2153">#2153</a>
<a
href="https://github.com/hey-api/openapi-ts/commit/b272bd9e4adfb0d87a05b023bc078246e7ee4937"><code>b272bd9</code></a>
Thanks <a href="https://github.com/mrlubos"><code>@mrlubos</code></a>!
- fix(parser): handle <code>propertyNames</code> keyword</p>
</li>
<li>
<p><a
href="https://redirect.github.com/hey-api/openapi-ts/pull/2152">#2152</a>
<a
href="https://github.com/hey-api/openapi-ts/commit/6d5ad37e474ad659efb8ffdc649829ac4e1e1b8a"><code>6d5ad37</code></a>
Thanks <a href="https://github.com/mrlubos"><code>@mrlubos</code></a>!
- fix(validators): correctly generate default value for
<code>BigInt</code></p>
</li>
<li>
<p><a
href="https://redirect.github.com/hey-api/openapi-ts/pull/2151">#2151</a>
<a
href="https://github.com/hey-api/openapi-ts/commit/aef80c397b254f391543ff11cac417fab8397c8b"><code>aef80c3</code></a>
Thanks <a href="https://github.com/mrlubos"><code>@mrlubos</code></a>!
- fix(typescript): handle nested inline objects with write/read only
fields</p>
</li>
</ul>
<h2><code>@hey-api/openapi-ts</code><a
href="https://github.com/0"><code>@0</code></a>.71.1</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/hey-api/openapi-ts/pull/2139">#2139</a>
<a
href="https://github.com/hey-api/openapi-ts/commit/0c279378b9be7bf0eaa29586999ecd3b983a26a4"><code>0c27937</code></a>
Thanks <a href="https://github.com/mrlubos"><code>@mrlubos</code></a>!
- fix(parser): skip schema if it's an array or tuple and its items don't
have any matching readable or writable scopes</p>
</li>
<li>
<p><a
href="https://redirect.github.com/hey-api/openapi-ts/pull/2140">#2140</a>
<a
href="https://github.com/hey-api/openapi-ts/commit/54049fe262336f5b439a540cbe362478ecbe8317"><code>54049fe</code></a>
Thanks <a href="https://github.com/mrlubos"><code>@mrlubos</code></a>!
- fix(parser): validate operationId keyword</p>
</li>
<li>
<p><a
href="https://redirect.github.com/hey-api/openapi-ts/pull/2137">#2137</a>
<a
href="https://github.com/hey-api/openapi-ts/commit/058dbc9fa81c95dca02788ad58231915cb1c4de3"><code>058dbc9</code></a>
Thanks <a href="https://github.com/mrlubos"><code>@mrlubos</code></a>!
- fix(parser): respect exportFromIndex option when using legacy
clients</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/01134c598ded260907c9e94159c2791934a4aa76"><code>01134c5</code></a>
Merge pull request <a
href="https://redirect.github.com/hey-api/openapi-ts/issues/2144">#2144</a>
from hey-api/changeset-release/main</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/69c9653b4be721a5078bb73e64eb9b7321452edf"><code>69c9653</code></a>
Version Packages</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/60deb25fe446fec266c6b29bc117ee60867d29c9"><code>60deb25</code></a>
Merge pull request <a
href="https://redirect.github.com/hey-api/openapi-ts/issues/2153">#2153</a>
from hey-api/feat/object-property-names</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/b272bd9e4adfb0d87a05b023bc078246e7ee4937"><code>b272bd9</code></a>
fix(parser): handle propertyNames keyword</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/ced57a77e3461c854e85baf928fe6d838b025d04"><code>ced57a7</code></a>
Merge pull request <a
href="https://redirect.github.com/hey-api/openapi-ts/issues/2152">#2152</a>
from hey-api/fix/zod-bigint-default</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/6d5ad37e474ad659efb8ffdc649829ac4e1e1b8a"><code>6d5ad37</code></a>
fix(validators): correctly generate default value for BigInt</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/bfa2c5ba5b7d9fd2d46262351ffadc393074a1b4"><code>bfa2c5b</code></a>
Merge pull request <a
href="https://redirect.github.com/hey-api/openapi-ts/issues/2151">#2151</a>
from hey-api/fix/crash-report</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/aef80c397b254f391543ff11cac417fab8397c8b"><code>aef80c3</code></a>
fix(typescript): handle nested inline objects with write/read only
fields</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/0ea8130ff6b2e047dbc4fd6a30d08f54da367d0c"><code>0ea8130</code></a>
fix: add crash report prompt</li>
<li><a
href="https://github.com/hey-api/openapi-ts/commit/f0294b4d816edacdb1fed1242cf3f2e78838f389"><code>f0294b4</code></a>
Merge pull request <a
href="https://redirect.github.com/hey-api/openapi-ts/issues/2148">#2148</a>
from hey-api/feat/client-build-params</li>
<li>Additional commits viewable in <a
href="https://github.com/hey-api/openapi-ts/compare/@hey-api/openapi-ts@0.71.0...@hey-api/openapi-ts@0.72.0">compare
view</a></li>
</ul>
</details>
<br />
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 1c3f31c commit 5d53cce
2 files changed
+14
-13
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
44 | | - | |
| 43 | + | |
| 44 | + | |
45 | 45 | | |
46 | 46 | | |
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments