Conversation
fixes #71) Move all five static methods (httpMethodToAction, httpMethodToDBFunction, argsFromReq, generateApiMetadata, stringifyValues) into lib/utils/ as standalone functions. AbstractApiUtils retained with deprecated delegation stubs for backwards compatibility. Internal consumer AbstractApiModule updated to import directly from utils. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
argsFromReq and httpMethodToDBFunction are only used internally by AbstractApiModule and have no external consumers. Remove them from the package exports. generateApiMetadata, httpMethodToAction and stringifyValues are retained as they have external consumers. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
httpMethodToAction is only used internally with no external consumers. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
stringifyValues is a generic pure function with no API-specific logic. A deprecated re-export from core is kept for backwards compatibility. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
No longer needed now that stringifyValues has moved to core. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…ce method generateApiMetadata is now an instance method on AbstractApiModule. AbstractApiUtils has no remaining consumers and is deleted. generateApiMetadata remains as an internal utility function for testability. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
🎉 This PR is included in version 2.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
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
AbstractApiUtilsstatic methods (httpMethodToAction,httpMethodToDBFunction,argsFromReq,generateApiMetadata,stringifyValues) into individual files underlib/utils/AbstractApiUtilsretained with deprecated delegation stubs for backwards compatibilityAbstractApiModuleupdated to import directly fromlib/utils/index.jsfor direct access^2.0.0Test plan
AbstractApiUtilstests still pass via deprecated stubs🤖 Generated with Claude Code