fountain-life-service-clients 3.35.2__tar.gz → 3.36.0__tar.gz
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-3.35.2 → fountain_life_service_clients-3.36.0}/PKG-INFO +1 -1
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/agents_api_service.py +2 -4
- fountain_life_service_clients-3.36.0/fountain_life_service_clients/genomics_report_service.py +32 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/pyproject.toml +1 -1
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/README.md +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/__init__.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/_base_client.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/account_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/account_service_policy_attributes.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/ai_template_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/claimed_domains_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/cohorts_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/ehr_ingestion_wearables_api.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/ehr_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/email_service_email.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/email_service_sms.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/fhir_post_processor_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/fhir_search_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/file_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/ga4gh_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/genomics_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/invitation_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/medical_results_service_results.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/member_notification_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/member_operations_service_members.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/member_scheduling_service_scheduling_prompts.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/oauth_apps_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/patient_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/rules_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/scheduler_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/survey_service.py +0 -0
- {fountain_life_service_clients-3.35.2 → fountain_life_service_clients-3.36.0}/fountain_life_service_clients/user_service.py +0 -0
@@ -202,7 +202,7 @@ class AgentsApiServiceClient(BaseClient):
|
|
202
202
|
async def invoke_action_plan(self, body: InvokeActionPlanRequest):
|
203
203
|
"""Invoke the action plan agent"""
|
204
204
|
res = await self.client.request(
|
205
|
-
path="/v1/
|
205
|
+
path="/v1/agents-v2/action-plan/invoke",
|
206
206
|
method="POST",
|
207
207
|
body=cast(dict, body),
|
208
208
|
)
|
@@ -211,9 +211,7 @@ class AgentsApiServiceClient(BaseClient):
|
|
211
211
|
async def invoke_template(self, body: InvokeTemplateRequest):
|
212
212
|
"""Invoke the template agent"""
|
213
213
|
res = await self.client.request(
|
214
|
-
path="/v1/
|
215
|
-
method="POST",
|
216
|
-
body=cast(dict, body),
|
214
|
+
path="/v1/agents-v2/template/invoke", method="POST", body=cast(dict, body)
|
217
215
|
)
|
218
216
|
return cast(AlphaResponse[InvokeTemplateResponse], res)
|
219
217
|
|
@@ -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)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|