Skip to content

Commit

Permalink
Merge pull request #117 from bento-platform/feat/workflow-provider-se…
Browse files Browse the repository at this point in the history
…rvice-info

feat: add support for bento serviceInfo workflowProvider prop
  • Loading branch information
davidlougheed authored Aug 24, 2023
2 parents da29ce9 + 012f3fe commit 309dd88
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Django==4.2.3
djangorestframework==3.14.0
entrypoints==0.4
exceptiongroup==1.1.2
fastapi==0.100.1
fastapi==0.101.1
filelock==3.12.2
flake8==6.0.0
Flask==2.3.2
Expand Down

0 comments on commit 309dd88

Please sign in to comment.