fountain-life-service-clients 3.35.3__py3-none-any.whl → 3.37.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fountain_life_service_clients/genomics_report_service.py +32 -0
- {fountain_life_service_clients-3.35.3.dist-info → fountain_life_service_clients-3.37.0.dist-info}/METADATA +1 -1
- {fountain_life_service_clients-3.35.3.dist-info → fountain_life_service_clients-3.37.0.dist-info}/RECORD +4 -3
- {fountain_life_service_clients-3.35.3.dist-info → fountain_life_service_clients-3.37.0.dist-info}/WHEEL +0 -0
@@ -0,0 +1,32 @@
|
|
1
|
+
# This file was generated automatically. Do not edit it directly.
|
2
|
+
from typing import List, TypedDict, Unpack, cast
|
3
|
+
|
4
|
+
from fountain_life_service_clients._base_client import (
|
5
|
+
AlphaConfig,
|
6
|
+
AlphaResponse,
|
7
|
+
BaseClient,
|
8
|
+
)
|
9
|
+
|
10
|
+
|
11
|
+
class GenerateHereditaryReportRequest(TypedDict):
|
12
|
+
patientId: str
|
13
|
+
variantSetId: str
|
14
|
+
variantIds: List[str]
|
15
|
+
|
16
|
+
|
17
|
+
class GenerateHereditaryReportResponse(TypedDict):
|
18
|
+
pass
|
19
|
+
|
20
|
+
|
21
|
+
class GenomicsReportServiceClient(BaseClient):
|
22
|
+
def __init__(self, **cfg: Unpack[AlphaConfig]):
|
23
|
+
kwargs = {"target": "lambda://genomics-report-service:deployed", **(cfg or {})}
|
24
|
+
super().__init__(**kwargs)
|
25
|
+
|
26
|
+
async def generate_hereditary_report(self, body: GenerateHereditaryReportRequest):
|
27
|
+
res = await self.client.request(
|
28
|
+
path="/v1/v1/genomics-report/generate/hereditary",
|
29
|
+
method="POST",
|
30
|
+
body=cast(dict, body),
|
31
|
+
)
|
32
|
+
return cast(AlphaResponse[GenerateHereditaryReportResponse], res)
|
@@ -14,6 +14,7 @@ fountain_life_service_clients/fhir_post_processor_service.py,sha256=4IsyyRoCIzSN
|
|
14
14
|
fountain_life_service_clients/fhir_search_service.py,sha256=O_y8YrOjvKj_Tfs5Pj4MM4X6RvV1E2s762lRH5U8ji8,6014
|
15
15
|
fountain_life_service_clients/file_service.py,sha256=CY36fpvCAi17npAKAWkFDDaNhwbvTC5hx-sGZmPfyBM,4046
|
16
16
|
fountain_life_service_clients/ga4gh_service.py,sha256=SSFdYM_oW2ZATUOaZT_xjp3jlEJt7rR_ai2US6HolgI,989
|
17
|
+
fountain_life_service_clients/genomics_report_service.py,sha256=F5J7flSpVvJFmE6vmIEYP5O0s-ZyzBhFYlV7Dr4603w,970
|
17
18
|
fountain_life_service_clients/genomics_service.py,sha256=Xx5rhgzjEJfdNA_g0Je4xDo26NKZQiIuNC88cUI-v-s,4225
|
18
19
|
fountain_life_service_clients/invitation_service.py,sha256=tKWgb-bGIwT4x3MWSLiVChQRaZURj43S6Uyrg3Lt7HA,2596
|
19
20
|
fountain_life_service_clients/medical_results_service_results.py,sha256=L0clTifU4LWWKgBsIzEfelmkaICxG1_q8sHyrdA5es4,4876
|
@@ -26,6 +27,6 @@ fountain_life_service_clients/rules_service.py,sha256=VxPYboYQmw--6Kn78RKu6_9as1
|
|
26
27
|
fountain_life_service_clients/scheduler_service.py,sha256=IkwRns_QHh6fx1IZWEXZ35DeRiW7OHaROM5wjWubZm4,4440
|
27
28
|
fountain_life_service_clients/survey_service.py,sha256=hxOl3gBDxEdjrsKcMCoPl9RxumQzRT-e4zTbEAA0Iq4,13343
|
28
29
|
fountain_life_service_clients/user_service.py,sha256=rM9xcF-VzdLp9aDOhg1UbecX2VPPMxH9PlgpNpGdC18,4253
|
29
|
-
fountain_life_service_clients-3.
|
30
|
-
fountain_life_service_clients-3.
|
31
|
-
fountain_life_service_clients-3.
|
30
|
+
fountain_life_service_clients-3.37.0.dist-info/METADATA,sha256=qTCHyqckn6ndpB7uMsMpHPSYbR-lZYpS6ZFRgoWODNE,1405
|
31
|
+
fountain_life_service_clients-3.37.0.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
|
32
|
+
fountain_life_service_clients-3.37.0.dist-info/RECORD,,
|
File without changes
|