-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add raw route #11
Draft
luxass
wants to merge
6
commits into
main
Choose a base branch
from
raw
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
0650f74
feat: add V1_RAW_ROUTER for raw data endpoints and update OpenAPI doc…
luxass 6d90017
Merge branch 'main' into raw
luxass 32c7a44
feat: add version path parameter and middleware for raw API routes
luxass ba36250
Merge remote-tracking branch 'origin/main' into raw
luxass 0740aa0
chore: add missing description
luxass 150fdcf
chore: set fixed version for jsonpath-plus
luxass File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,9 @@ | |
"pnpm": { | ||
"onlyBuiltDependencies": [ | ||
"workerd" | ||
] | ||
], | ||
"overrides": { | ||
"jsonpath-plus": "10.3.0" | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import type { HonoContext } from "../../types"; | ||
import { OpenAPIHono } from "@hono/zod-openapi"; | ||
import { versionMiddleware } from "../../middlewares/version"; | ||
|
||
export const V1_RAW_ROUTER = new OpenAPIHono<HonoContext>().basePath("/api/v1/raw/:version"); | ||
|
||
V1_RAW_ROUTER.use(versionMiddleware); | ||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Router is defined but lacks route handlers
The
V1_RAW_ROUTER
is correctly set up with a base path and middleware, but there are no actual route handlers defined. This means the/api/v1/raw/:version
endpoint won't handle any specific requests yet.Consider adding route handlers to make this router functional, for example:
🏁 Script executed:
Length of output: 103
I'm going to run an additional search to verify if any route handlers are defined for
V1_RAW_ROUTER
. Please run the script below and share its output so we can conclusively determine if the router remains unused for specific HTTP methods.🏁 Script executed:
Length of output: 207
Missing Route Handlers on V1_RAW_ROUTER
After verifying the codebase, it’s clear that while the router is correctly configured with a base path and middleware, there are no HTTP method handlers attached (e.g., GET, POST, PUT, DELETE, or PATCH). This means that the
/api/v1/raw/:version
endpoint isn’t currently set up to handle any requests.src/routes/v1_raw/index.ts
(lines 5–7)V1_RAW_ROUTER