feat: replace Address type with UserAddress in user registration methods#145
Open
fern-api[bot] wants to merge 1 commit intomasterfrom
Open
feat: replace Address type with UserAddress in user registration methods#145fern-api[bot] wants to merge 1 commit intomasterfrom
fern-api[bot] wants to merge 1 commit intomasterfrom
Conversation
Updated user registration endpoints to use the more specific UserAddress type instead of the generic Address type. This change affects the address parameter in create_user methods across both sync and async user clients. Key changes: - Replace Address with UserAddress in create_user method signatures - Update import statements to use UserAddress type - Add support for Python 3.13-3.15 in project classifiers - Add new client modules for compendium, lab_account, and order_transaction - Add logging configuration support to main client constructors 🌿 Generated with Fern
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.
Version Bump: Changed the address parameter type from Address to UserAddress in create_user methods, breaking existing callers who construct Address objects.
LogConfigandLoggerclasses that can be configured when initializing clients. The lab report parser API has been updated to accept multiple files in a single upload request instead of just one file. HTTP response objects now expose astatus_codeproperty for easier status code access. TheAppointmentPscLabstype has been expanded from a simple literal to a full enum that includes the newSONORA_QUESToption.create_usermethod now requires aUserAddressobject instead ofAddressfor the address parameter. Existing code usingAddress(...)should be updated to useUserAddress(...)which has the same fields and structure.