Skip to content

Conversation

hey-api[bot]
Copy link

@hey-api hey-api bot commented Oct 2, 2025

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@hey-api/[email protected]

Minor Changes

Updated output options

We made the output configuration more consistent by using null to represent disabled options. This change does not affect boolean options.

export default {
  input: 'hey-api/backend', // sign up at app.heyapi.dev
  output: {
    format: null,
    lint: null,
    path: 'src/client',
    tsConfigPath: null,
  },
};

Patch Changes

Updated Pinia Colada query options

Pinia Colada query options now use defineQueryOptions to improve reactivity support. Instead of calling the query options function, you can use one of the following approaches.

No params

useQuery(getPetsQuery);

Constant

useQuery(getPetByIdQuery, () => ({
  path: {
    petId: 1,
  },
}));

Reactive

const petId = ref<number | null>(1);

useQuery(getPetByIdQuery, () => ({
  path: {
    petId: petId.value,
  },
}));

Properties

const petId = ref<number | null>(1);

useQuery(() => ({
  ...getPetByIdQuery({
    path: { petId: petId.value as number },
  }),
  enabled: () => petId.value != null,
}));

Copy link

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

Copy link

vercel bot commented Oct 2, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
hey-api-docs Ready Ready Preview Comment Oct 6, 2025 4:21am

@dosubot dosubot bot added the size:S This PR changes 10-29 lines, ignoring generated files. label Oct 2, 2025
@dosubot dosubot bot added the feature 🚀 New feature or request label Oct 2, 2025
Copy link

pkg-pr-new bot commented Oct 2, 2025

Open in StackBlitz

npm i https://pkg.pr.new/hey-api/openapi-ts/@hey-api/codegen-core@2716
npm i https://pkg.pr.new/hey-api/openapi-ts/@hey-api/nuxt@2716
npm i https://pkg.pr.new/hey-api/openapi-ts/@hey-api/openapi-ts@2716
npm i https://pkg.pr.new/hey-api/openapi-ts/@hey-api/vite-plugin@2716

commit: 707141f

Copy link

codecov bot commented Oct 2, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 26.41%. Comparing base (557dce2) to head (707141f).

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #2716   +/-   ##
=======================================
  Coverage   26.41%   26.41%           
=======================================
  Files         387      387           
  Lines       37484    37484           
  Branches     1907     1907           
=======================================
  Hits         9901     9901           
  Misses      27570    27570           
  Partials       13       13           
Flag Coverage Δ
unittests 26.41% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@github-actions github-actions bot force-pushed the changeset-release/main branch from 707141f to e72f9a8 Compare October 3, 2025 18:26
@github-actions github-actions bot force-pushed the changeset-release/main branch from e72f9a8 to ece2de9 Compare October 3, 2025 20:40
@dosubot dosubot bot added size:L This PR changes 100-499 lines, ignoring generated files. and removed size:S This PR changes 10-29 lines, ignoring generated files. labels Oct 3, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from ece2de9 to 3af22ea Compare October 6, 2025 03:12
@github-actions github-actions bot force-pushed the changeset-release/main branch from 3af22ea to 86ee776 Compare October 6, 2025 03:22
@github-actions github-actions bot force-pushed the changeset-release/main branch from 86ee776 to 727e014 Compare October 6, 2025 03:36
@dosubot dosubot bot added size:M This PR changes 30-99 lines, ignoring generated files. and removed size:L This PR changes 100-499 lines, ignoring generated files. labels Oct 6, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 727e014 to 72bde48 Compare October 6, 2025 03:48
@dosubot dosubot bot added size:L This PR changes 100-499 lines, ignoring generated files. and removed size:M This PR changes 30-99 lines, ignoring generated files. labels Oct 6, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 72bde48 to 2028ad0 Compare October 6, 2025 04:09
@github-actions github-actions bot force-pushed the changeset-release/main branch from 2028ad0 to 0b7d5ca Compare October 6, 2025 04:21
@mrlubos mrlubos merged commit 9ca3140 into main Oct 6, 2025
2 checks passed
@mrlubos mrlubos deleted the changeset-release/main branch October 6, 2025 04:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature 🚀 New feature or request size:L This PR changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant