Conversation
…tput - find-appointment -c/--clinic now accepts multiple IDs (like -s), passed as ClinicIds to the API; useful when one location has separate clinic IDs (e.g. general and dental in the same building) - list-filters specialties/clinics accept -S/--slot-search-type and pass it to the filters endpoint (find_filters already supported it) - list-filters results are printed with print() instead of log.info(); RichHandler wraps long lines, which broke scripts parsing the output Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
- find_appointments tests: clinic is now a list of IDs - list-filters tests: find_filters receives slot_search_type, results go through print() Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
Three small quality-of-life improvements:
find-appointment -c/--clinicaccepts multiple IDs (same syntax as-s), passed asClinicIdsto the API. Useful when one location has separate clinic IDs — e.g. the general clinic and the dental clinic in the same building — and you want a single search/notification stream covering both.list-filters specialtiesandlist-filters clinicsaccept-S/--slot-search-typeand pass it to the filters endpoint (find_filtersalready had the parameter; it just wasn't exposed on the CLI).list-filtersresults are printed withprint()instead oflog.info(). RichHandler wraps long lines to the terminal width, which breaks scripts that parse the output (e.g.... | grep '^[0-9]* - 'to build interactive pickers). Log records still go to the log file; the actual listing is now clean, one entry per line.🤖 Generated with Claude Code