Reorganize lib/seam directory structure for resources and clients - #533
Merged
Conversation
Move the generated client files from lib/seam/routes/clients up into lib/seam/routes, and move lib/seam/routes/resources out to lib/seam/resources so routes and resources are siblings under lib/seam. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_011wXBufNQ9ngdq47Bw5bH4t
razor-x
marked this pull request as ready for review
July 27, 2026 23:41
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.
Summary
This PR reorganizes the directory structure of the
lib/seammodule by moving resource and client files to a flatter hierarchy. Resources are now located directly underlib/seam/resources/instead oflib/seam/routes/resources/, and client files are moved tolib/seam/routes/(previouslylib/seam/routes/clients/).Key Changes
lib/seam/routes/resources/tolib/seam/resources/lib/seam/routes/clients/tolib/seam/routes/codegen/lib/routes.tsto generate files in the new locationscodegen/smith.tsto clean up bothlib/seam/routesandlib/seam/resourcesdirectories during code generationrequire_relativestatements in:lib/seam/http_multi_workspace.rblib/seam/http_single_workspace.rblib/seam/webhook.rbImplementation Details
resourcesPathconstant incodegen/lib/routes.tsnow points tolib/seam/resourcesinstead of being nested under routesclientsPathconstant was removed as clients are now generated directly inlib/seam/routes/https://claude.ai/code/session_011wXBufNQ9ngdq47Bw5bH4t