Skip to content

Commit 9233f8a

Browse files
author
alex-omophub
committed
Update type definitions to include bulk search and semantic search types
- Added new types for bulk search and semantic search functionalities to the `__all__` exports in `__init__.py`. - Removed previously commented sections for clarity and organization.
1 parent 87c5b74 commit 9233f8a

1 file changed

Lines changed: 9 additions & 18 deletions

File tree

src/omophub/types/__init__.py

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,20 @@
6262
)
6363

6464
__all__ = [
65-
# Common
6665
"APIResponse",
67-
# Hierarchy
6866
"Ancestor",
6967
"BatchConceptResult",
70-
# Concept
68+
"BulkSearchDefaults",
69+
"BulkSearchInput",
70+
"BulkSearchResponse",
71+
"BulkSearchResultItem",
72+
"BulkSemanticSearchDefaults",
73+
"BulkSemanticSearchInput",
74+
"BulkSemanticSearchResponse",
75+
"BulkSemanticSearchResultItem",
7176
"Concept",
7277
"ConceptSummary",
7378
"Descendant",
74-
# Domain
7579
"Domain",
7680
"DomainCategory",
7781
"DomainStats",
@@ -80,30 +84,18 @@
8084
"ErrorResponse",
8185
"HierarchyPath",
8286
"HierarchySummary",
83-
# Mapping
8487
"Mapping",
8588
"MappingContext",
8689
"MappingQuality",
8790
"MappingSummary",
8891
"PaginationMeta",
8992
"PaginationParams",
93+
"QueryEnhancement",
9094
"RelatedConcept",
91-
# Relationship
9295
"Relationship",
9396
"RelationshipSummary",
9497
"RelationshipType",
9598
"ResponseMeta",
96-
# Bulk Search
97-
"BulkSearchDefaults",
98-
"BulkSearchInput",
99-
"BulkSearchResponse",
100-
"BulkSearchResultItem",
101-
"BulkSemanticSearchDefaults",
102-
"BulkSemanticSearchInput",
103-
"BulkSemanticSearchResponse",
104-
"BulkSemanticSearchResultItem",
105-
"QueryEnhancement",
106-
# Search
10799
"SearchFacet",
108100
"SearchFacets",
109101
"SearchMetadata",
@@ -115,7 +107,6 @@
115107
"SimilarSearchResult",
116108
"Suggestion",
117109
"Synonym",
118-
# Vocabulary
119110
"Vocabulary",
120111
"VocabularyDomain",
121112
"VocabularyStats",

0 commit comments

Comments
 (0)