Release v1.1.1 - #13
Merged
Merged
Conversation
added 3 commits
August 27, 2026 20:48
- Updated README.md to clarify default algorithm options for similarity search. - Modified autocomplete response structure in `search.test.ts` and `search-concepts.ts` to reflect changes in suggestion format. - Improved `AutocompleteOptions` interface to include `domainIds` and updated documentation for deprecated fields. - Enhanced `SimilarSearchOptions` and `SimilarConcept` interfaces to provide more detailed response handling and options. - Added tests to ensure correct handling of new options and response structures in autocomplete and similarity search functionalities.
…tures, update mappings interface - Updated CHANGELOG.md to document changes in version 1.1.1, including enhancements to autocomplete and similarity search functionalities. - Modified package.json and package-lock.json to reflect the new version. - Improved README.md with examples of handling unmapped sources in mappings. - Removed deprecated `failed_mappings` from mappings interface and introduced `unmapped_sources` for better error handling. - Updated tests to validate new mappings behavior and ensure accurate logging of unmapped sources.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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 by cubic
Releases v1.1.1 aligning autocomplete and similarity search with the API's full option set and response shapes, and correcting
mappings.map()to type its real per-source result instead of the never-emittedfailed_mappingsfield. Similarity search now exposes pagination metadata, lower-bound totals, source-concept details, score omission, and explanations.Migration
suggestionis the concept-name string, withconcept_id,concept_code,vocabulary_id,domain_id,concept_class_id, andstandard_conceptas sibling fields.pageSizemax is now 20, matching the API.MapConceptsResultnow requiresunmapped_sourcesand asummarywithrequested_sources,mapped_sources,unmapped_sources, andtotal_mappings;failed_mappingsand the old optional summary are removed.mappings.get()results no longer includesummary.similarity_scoreis now optional because the API omits it whenincludeScores: false; deprecatedsimilarity_explanationstill works, but readexplanation.match_scoreandmatch_typeare gone from autocomplete entries.domainsautocomplete option still works and is sent asdomain_ids.Written for commit 165e0ae. Summary will update on new commits.