Skip to content

Commit

Permalink
feat: add support for bento serviceInfo workflowProvider prop
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Aug 24, 2023
1 parent da29ce9 commit ae6b264
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bento_lib/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ class GA4GHServiceOrganization(TypedDict):

class BentoExtraServiceInfo(TypedDict, total=False):
serviceKind: str # One service_kind per Bento service/instance
dataService: bool # Whether the service provides data types/ingest workflows
dataService: bool # Whether the service provides data types/search/workflows
# Whether the service provides workflows:
# - not necessarily data types; split from dataService to allow services to provide workflows
# without needing to provide data types/search endpoints as well
# - implict default: false
workflowProvider: bool

gitRepository: str
gitTag: str
Expand Down

0 comments on commit ae6b264

Please sign in to comment.