Conversation
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
Contributor
There was a problem hiding this comment.
Pull request overview
This PR upgrades the Nestia/Typia toolchain and updates the generated API client surface to match the new fetcher entry points and improved introspection metadata.
Changes:
- Bump
nestia/@nestia/*from 10.x → 11.x andtypiafrom 11.x → 12.x, and simplifyprepareby removingtypia patch. - Update generated monitor API clients to import
PlainFetcherfrom@nestia/fetcher(root entry point). - Add
@accessorannotations and makeindex.tsre-exports explicit (./.../index) in the functional API modules.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
package.json |
Upgrades Nestia/Typia dependencies and removes typia patch from prepare. |
src/api/functional/index.ts |
Uses explicit ./monitors/index re-export. |
src/api/functional/monitors/index.ts |
Uses explicit ./{health,performance,system}/index re-exports. |
src/api/functional/monitors/health/index.ts |
Switches to root @nestia/fetcher PlainFetcher import and adds @accessor. |
src/api/functional/monitors/performance/index.ts |
Switches to root @nestia/fetcher PlainFetcher import and adds @accessor. |
src/api/functional/monitors/system/index.ts |
Switches to root @nestia/fetcher PlainFetcher import and adds @accessor (multiple endpoints). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates dependencies and refines import paths for improved maintainability and compatibility. It also adds accessor annotations to API functions for better introspection and tooling support.
Dependency upgrades:
nestia-related dependencies (@nestia/core,@nestia/fetcher,@nestia/benchmark,@nestia/e2e,@nestia/sdk, andnestia) from version 10.x to 11.x, andtypiafrom 11.x to 12.x inpackage.json. [1] [2] [3] [4]typia patchfrom thepreparescript inpackage.json, streamlining the build process.Code structure improvements:
src/api/functional/index.tsandsrc/api/functional/monitors/index.tsto reference theindexfiles explicitly, improving clarity and compatibility with tooling. [1] [2]API function enhancements:
@nestia/fetcherentry point, replacing direct imports fromlib/PlainFetcher. [1] [2] [3]@accessorannotations to all monitor API functions for improved introspection and code generation. [1] [2] [3] [4] [5]