samplehc 0.12.0__py3-none-any.whl → 0.14.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.
- samplehc/_version.py +1 -1
- samplehc/resources/v2/browser_agents/runs/runs.py +131 -0
- samplehc/resources/v2/integrations/__init__.py +14 -0
- samplehc/resources/v2/integrations/integrations.py +32 -0
- samplehc/resources/v2/integrations/salesforce.py +85 -1
- samplehc/resources/v2/integrations/wellsky/__init__.py +33 -0
- samplehc/resources/v2/integrations/wellsky/patients.py +324 -0
- samplehc/resources/v2/integrations/wellsky/wellsky.py +102 -0
- samplehc/resources/v2/tasks/tasks.py +110 -1
- samplehc/types/v2/__init__.py +2 -0
- samplehc/types/v2/browser_agents/__init__.py +3 -0
- samplehc/types/v2/browser_agents/run_list_events_params.py +15 -0
- samplehc/types/v2/browser_agents/run_list_events_response.py +30 -0
- samplehc/types/v2/integrations/__init__.py +1 -0
- samplehc/types/v2/integrations/salesforce_run_soql_query_params.py +11 -0
- samplehc/types/v2/integrations/wellsky/__init__.py +6 -0
- samplehc/types/v2/integrations/wellsky/patient_add_params.py +13 -0
- samplehc/types/v2/integrations/wellsky/patient_search_params.py +32 -0
- samplehc/types/v2/task_update_column_params.py +16 -0
- samplehc/types/v2/task_update_column_response.py +9 -0
- {samplehc-0.12.0.dist-info → samplehc-0.14.0.dist-info}/METADATA +2 -2
- {samplehc-0.12.0.dist-info → samplehc-0.14.0.dist-info}/RECORD +24 -13
- {samplehc-0.12.0.dist-info → samplehc-0.14.0.dist-info}/WHEEL +0 -0
- {samplehc-0.12.0.dist-info → samplehc-0.14.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Dict
|
|
6
|
+
from typing_extensions import Required, TypedDict
|
|
7
|
+
|
|
8
|
+
__all__ = ["PatientAddParams"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class PatientAddParams(TypedDict, total=False):
|
|
12
|
+
data: Required[Dict[str, object]]
|
|
13
|
+
"""The data to add the patient to WellSky."""
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing_extensions import Annotated, TypedDict
|
|
6
|
+
|
|
7
|
+
from ....._utils import PropertyInfo
|
|
8
|
+
|
|
9
|
+
__all__ = ["PatientSearchParams"]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class PatientSearchParams(TypedDict, total=False):
|
|
13
|
+
reqdelete: Annotated[str, PropertyInfo(alias="REQDELETE")]
|
|
14
|
+
"""Delete flag (Y/N)"""
|
|
15
|
+
|
|
16
|
+
reqdispin: Annotated[str, PropertyInfo(alias="REQDISPIN")]
|
|
17
|
+
"""Disposition filter"""
|
|
18
|
+
|
|
19
|
+
reqlvl6_in: Annotated[str, PropertyInfo(alias="REQLVL6IN")]
|
|
20
|
+
"""Facility ID"""
|
|
21
|
+
|
|
22
|
+
reqnamein: Annotated[str, PropertyInfo(alias="REQNAMEIN")]
|
|
23
|
+
"""Patient name to search"""
|
|
24
|
+
|
|
25
|
+
reqnonprosp: Annotated[str, PropertyInfo(alias="REQNONPROSP")]
|
|
26
|
+
"""Non-prospect flag (Y/N)"""
|
|
27
|
+
|
|
28
|
+
reqprosp: Annotated[str, PropertyInfo(alias="REQPROSP")]
|
|
29
|
+
"""Prospect flag (Y/N)"""
|
|
30
|
+
|
|
31
|
+
reqsortin: Annotated[str, PropertyInfo(alias="REQSORTIN")]
|
|
32
|
+
"""Sort field"""
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Optional
|
|
6
|
+
from typing_extensions import Required, TypedDict
|
|
7
|
+
|
|
8
|
+
__all__ = ["TaskUpdateColumnParams"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class TaskUpdateColumnParams(TypedDict, total=False):
|
|
12
|
+
key: Required[str]
|
|
13
|
+
"""The column key to update or insert."""
|
|
14
|
+
|
|
15
|
+
value: Required[Optional[str]]
|
|
16
|
+
"""The value to set for the column."""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: samplehc
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.14.0
|
|
4
4
|
Summary: The official Python library for the Sample Healthcare API
|
|
5
5
|
Project-URL: Homepage, https://github.com/samplehc/samplehc-python
|
|
6
6
|
Project-URL: Repository, https://github.com/samplehc/samplehc-python
|
|
@@ -30,7 +30,7 @@ Requires-Dist: sniffio
|
|
|
30
30
|
Requires-Dist: typing-extensions<5,>=4.10
|
|
31
31
|
Provides-Extra: aiohttp
|
|
32
32
|
Requires-Dist: aiohttp; extra == 'aiohttp'
|
|
33
|
-
Requires-Dist: httpx-aiohttp>=0.1.
|
|
33
|
+
Requires-Dist: httpx-aiohttp>=0.1.9; extra == 'aiohttp'
|
|
34
34
|
Description-Content-Type: text/markdown
|
|
35
35
|
|
|
36
36
|
# Sample Healthcare Python API library
|
|
@@ -11,7 +11,7 @@ samplehc/_resource.py,sha256=Mdg6fhf_5wYd2K2JZ4BQIJMPqJOWetqpJE3h3MmGZJE,1160
|
|
|
11
11
|
samplehc/_response.py,sha256=UzsuYRbic274gcdUWq9ShPkdRt7VrzkjaqwSwdxqWIs,28816
|
|
12
12
|
samplehc/_streaming.py,sha256=yAEL3kUU3BoKZpDC6T6Psl11nDAMMAjSyWvWnk3R8vU,10140
|
|
13
13
|
samplehc/_types.py,sha256=Gx3CUAUSTuUToKvgv-KsFoQ25mp6N1qHbODB21j8I8c,7238
|
|
14
|
-
samplehc/_version.py,sha256=
|
|
14
|
+
samplehc/_version.py,sha256=TVrhwlOSQXahwGXqP4B2e5RFQeIx-AaiIHzoWWCz1gU,161
|
|
15
15
|
samplehc/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
samplehc/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
17
17
|
samplehc/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
@@ -41,7 +41,7 @@ samplehc/resources/v2/browser_agents/__init__.py,sha256=Byeyzaw5o_dcSvkefEoViV9x
|
|
|
41
41
|
samplehc/resources/v2/browser_agents/browser_agents.py,sha256=fr3DQezSabZK58uAxHKk0GpqVJkXr5uynobs0FZ8Dtk,7919
|
|
42
42
|
samplehc/resources/v2/browser_agents/runs/__init__.py,sha256=v6kly2kRgTEcwzev4KKwLOvU_7iJFuYRbZckR0LmgoM,1055
|
|
43
43
|
samplehc/resources/v2/browser_agents/runs/help_requests.py,sha256=6V1AyR7_64rxBMv3KzdHvAmnzYFVGQ4W-67Wl7O7pwA,7788
|
|
44
|
-
samplehc/resources/v2/browser_agents/runs/runs.py,sha256=
|
|
44
|
+
samplehc/resources/v2/browser_agents/runs/runs.py,sha256=SYY5LX9dLFlB-LB39lQE2hnMzUwNSjnn2wLKouElpC0,8435
|
|
45
45
|
samplehc/resources/v2/browser_automation/__init__.py,sha256=a7mi3Gg12Vk6CCsm3Q50nsrwLzXK_sVk_iV6ORlqqJY,1172
|
|
46
46
|
samplehc/resources/v2/browser_automation/availity.py,sha256=QPOa5e364LqdSIlz09XyeZF5myQi6rPILZa4Mpwt0lE,9545
|
|
47
47
|
samplehc/resources/v2/browser_automation/browser_automation.py,sha256=jiBEq2DdaD6pEaWG2X2SvxNJSug-zaQ8GInPnYALcvQ,4071
|
|
@@ -59,10 +59,10 @@ samplehc/resources/v2/hie/__init__.py,sha256=kEs1If5SVR3Inp__6822fiPvynz8MwRIJdY
|
|
|
59
59
|
samplehc/resources/v2/hie/adt.py,sha256=wTasDk8rjNpfHO0k8lrGjymchtVhskwlzzd2XC5ruXQ,9538
|
|
60
60
|
samplehc/resources/v2/hie/documents.py,sha256=J3-4S4BBD7vPAo3aCThta8UeX0hyxVjizk2md26EjKs,15318
|
|
61
61
|
samplehc/resources/v2/hie/hie.py,sha256=bdTM7CeHELmGULZRkOHnnfg-MoKadTnbaY9hDBtNMv4,4550
|
|
62
|
-
samplehc/resources/v2/integrations/__init__.py,sha256=
|
|
62
|
+
samplehc/resources/v2/integrations/__init__.py,sha256=_Qn1-4MAe33zZdspy6aX-a_FPKhoi4mJI21pMmVsOZY,4321
|
|
63
63
|
samplehc/resources/v2/integrations/careviso.py,sha256=hrq_Qfw9hXvtXwJ2JayofjACBJhqDHwSU5aCQUy4G1o,15464
|
|
64
|
-
samplehc/resources/v2/integrations/integrations.py,sha256=
|
|
65
|
-
samplehc/resources/v2/integrations/salesforce.py,sha256=
|
|
64
|
+
samplehc/resources/v2/integrations/integrations.py,sha256=6pswQrhQ261h1r2q-wwgzvK2LEi8qDm5A3uGQv0w3zQ,11697
|
|
65
|
+
samplehc/resources/v2/integrations/salesforce.py,sha256=2QcY6sHc12juXX3IDNt_isQk_Vca2bB1QC4ZWA5Ku6c,10914
|
|
66
66
|
samplehc/resources/v2/integrations/snowflake.py,sha256=xOF5bevD1ViDcL6qaoKMeNBtjVpZyeckzRO7dPmLdrs,6506
|
|
67
67
|
samplehc/resources/v2/integrations/xcures.py,sha256=G7d6HaTkxIv-yuePj7KREitEFjgjTk3DlAtCCLYXODE,7260
|
|
68
68
|
samplehc/resources/v2/integrations/bank/__init__.py,sha256=2aaxngFG7lRvSB6wKMqdXkfQ66OQR_m1fhn2xyD_AE8,1054
|
|
@@ -76,13 +76,16 @@ samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizat
|
|
|
76
76
|
samplehc/resources/v2/integrations/kno2/__init__.py,sha256=O46p4OnML6RdkmNBI_ZB79u58Sbfo9teFgQ7yrsfmI0,1002
|
|
77
77
|
samplehc/resources/v2/integrations/kno2/kno2.py,sha256=xc__0U-pQMavJNUN2t8EIZtkg3efeOpdK3JqpvDPsMk,3589
|
|
78
78
|
samplehc/resources/v2/integrations/kno2/messages.py,sha256=BlIUV_1ae2lNtjI6wJigXk7iOTAs2G8vhQJ00qO1dF8,10347
|
|
79
|
+
samplehc/resources/v2/integrations/wellsky/__init__.py,sha256=-DaaU18hvyGskY1k5y3LsMtAw8nv5X6nB2PM4BFHkS8,1041
|
|
80
|
+
samplehc/resources/v2/integrations/wellsky/patients.py,sha256=9TSUdr9taZMtb7yuPOL_85AMMc6BAfKrTgpJgUmsPIU,11493
|
|
81
|
+
samplehc/resources/v2/integrations/wellsky/wellsky.py,sha256=0-8yyclRm13JRUbH-KJpPk0uwbPke8qunO98QNF9mDw,3697
|
|
79
82
|
samplehc/resources/v2/ledger/__init__.py,sha256=wJp8z_TSgl7zuOvOvFxpwUBMAaVp4mRI2NVkbKGKiL0,1452
|
|
80
83
|
samplehc/resources/v2/ledger/account.py,sha256=Fc3A7czMWCVa1jPZXiZ2EQjtmMjVqEOz4jwAihS9N_I,11452
|
|
81
84
|
samplehc/resources/v2/ledger/entry.py,sha256=m0IuJr2Objsnm5int5Z7VGtJQkmVcFDzbK0yAqP1CUg,13982
|
|
82
85
|
samplehc/resources/v2/ledger/ledger.py,sha256=Ayzzu9491xWtnQIFuXNbKDk19JYhHCxqT1msqHElxMI,4670
|
|
83
86
|
samplehc/resources/v2/tasks/__init__.py,sha256=ez5eX-qrV79bmAy3vh-Yp2cWCpVIeDM36Zkn4lDChVg,976
|
|
84
87
|
samplehc/resources/v2/tasks/state.py,sha256=VuECXSNXtdWhaJS3cNcTIdecuQJajCGIFP3lyPZi_xA,9666
|
|
85
|
-
samplehc/resources/v2/tasks/tasks.py,sha256=
|
|
88
|
+
samplehc/resources/v2/tasks/tasks.py,sha256=rT_mWHLmi88GiwmlloXHqvFGzMhFruo8MJuRdlQSLDw,29094
|
|
86
89
|
samplehc/resources/v2/workflow_runs/__init__.py,sha256=maLNLcc-W7a0KHsoPlgCZANcyCE4owxqu3rJwY3lDbY,1055
|
|
87
90
|
samplehc/resources/v2/workflow_runs/step.py,sha256=whzHiJTIhzCNTiRAzvo01FAPEnW-Pye29itDTzZhSyc,6169
|
|
88
91
|
samplehc/resources/v2/workflow_runs/workflow_runs.py,sha256=5a23JhXliB6VNbieEBuDAF5kBbfg6FJKiBOhhwVyix8,19696
|
|
@@ -92,7 +95,7 @@ samplehc/types/v1_query_audit_logs_response.py,sha256=CiFZBhg0Q_c1ydzvNK0MkZLgmP
|
|
|
92
95
|
samplehc/types/v1_sql_execute_params.py,sha256=mC_HUkRzC_d4Ve0XkRMR3VrpZHRqY6RQzaAe-hOdgEA,728
|
|
93
96
|
samplehc/types/v1_sql_execute_response.py,sha256=Fo8npustnKfbqpw8a8FSqYSOwaakmZ4siPC1LRVbpWg,683
|
|
94
97
|
samplehc/types/v1/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
95
|
-
samplehc/types/v2/__init__.py,sha256=
|
|
98
|
+
samplehc/types/v2/__init__.py,sha256=z20GvWZZx6oaePPS4K6bfsAkvlPSsHEkBN2cScyZ88c,7324
|
|
96
99
|
samplehc/types/v2/async_result_retrieve_response.py,sha256=hDRnUnMvLJav6RzGqFH7OsZ2fPrTXOaTqlGbWzUhWVU,504
|
|
97
100
|
samplehc/types/v2/async_result_sleep_params.py,sha256=vdhEdUP6vA9Y44waJBU2p_PEC-rzWBOr4RkE1F2eTHs,729
|
|
98
101
|
samplehc/types/v2/async_result_sleep_response.py,sha256=nAUL4IVyG9RjVZtNyMnn_sp1mcwatJCEBjBCDf6bDtM,366
|
|
@@ -151,6 +154,8 @@ samplehc/types/v2/task_complete_response.py,sha256=8VoaWzaqA39icSu1MrTy9KZBaRyta
|
|
|
151
154
|
samplehc/types/v2/task_get_suspended_payload_response.py,sha256=Sxy6vxXJCxI2x-7lVO-iElm8fHDBSplpsteyBYZepCw,262
|
|
152
155
|
samplehc/types/v2/task_retrieve_response.py,sha256=x48lwXHSysKM3hhi6pYWtBDH9jCI4CamjphR97h4o-o,584
|
|
153
156
|
samplehc/types/v2/task_retry_response.py,sha256=ufX9OgBQKA5JTZVa7k8plZakMj_nm1Xl0IE6r4Abyu0,279
|
|
157
|
+
samplehc/types/v2/task_update_column_params.py,sha256=4XjppbYaMK0HUx0pdKYZtPF0sx7kteWVcFdKNPdRstw,443
|
|
158
|
+
samplehc/types/v2/task_update_column_response.py,sha256=zeQliutLYrphABSmMf3zsCqZBKX9JpQB9XPTrA1BS6M,223
|
|
154
159
|
samplehc/types/v2/task_update_screen_time_params.py,sha256=IBcV9FLFpCj0SbHsnrUR-DK9lQHLeHqf7mBZxu3aO0M,502
|
|
155
160
|
samplehc/types/v2/task_update_screen_time_response.py,sha256=FzVYiZSNczXKIc5BCFwIOFRnVCzAFQQ8KfFGY1ukeTU,277
|
|
156
161
|
samplehc/types/v2/workflow_deploy_response.py,sha256=M9kPNKNKy3yvPEp7SASJnM-f1aiAxq7gEdq6v93_BP4,373
|
|
@@ -162,7 +167,9 @@ samplehc/types/v2/workflow_run_resume_when_complete_response.py,sha256=-VG90P9eZ
|
|
|
162
167
|
samplehc/types/v2/workflow_run_retrieve_response.py,sha256=TMODOQGlZ8h76i7xDVq6Q_Do1cbyeuZ2PMlKUMMo7CE,407
|
|
163
168
|
samplehc/types/v2/workflow_start_params.py,sha256=ng_LufXszNHLvDzGflKU4aDMKAtdCw1yqrEoXrWxWzg,477
|
|
164
169
|
samplehc/types/v2/workflow_start_response.py,sha256=RF8irtsIvRiF6ZuDs0ApgGWnvLSip83n7FGyFboUClQ,669
|
|
165
|
-
samplehc/types/v2/browser_agents/__init__.py,sha256=
|
|
170
|
+
samplehc/types/v2/browser_agents/__init__.py,sha256=X0BUKqs0fBdSpxtv5BV9aPJazc5gRoCq4nmFfwEUZBY,287
|
|
171
|
+
samplehc/types/v2/browser_agents/run_list_events_params.py,sha256=9dSd7lXIqILZrbUmsPZyQwKI45AdwOWQxKtUojFySJQ,366
|
|
172
|
+
samplehc/types/v2/browser_agents/run_list_events_response.py,sha256=7P58g6SnhsKxNKxcS5eQkiS9ktF2mfCKNqiWq0DBFS8,790
|
|
166
173
|
samplehc/types/v2/browser_agents/runs/__init__.py,sha256=wZbYvlop8807cU8yil_oo_d3geBtPwJvKdCPrHIsABI,317
|
|
167
174
|
samplehc/types/v2/browser_agents/runs/help_request_resolve_params.py,sha256=naPrcn1OvvaLQZANW3SchskmRSPkrqy-yR0SGmW4qHY,518
|
|
168
175
|
samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py,sha256=rj29f6cenKn-UvX-Ns4YZ6YvAjXGZKQgSaK1PaflJNw,650
|
|
@@ -194,7 +201,7 @@ samplehc/types/v2/hie/adt_subscribe_params.py,sha256=XNvVgMWAnKEO_So8m7iEHgc3YQl
|
|
|
194
201
|
samplehc/types/v2/hie/document_query_params.py,sha256=vdpaitjffO4TjsSJRiFM1k0haCKJhsNMBsAjXugBb4Q,2977
|
|
195
202
|
samplehc/types/v2/hie/document_query_response.py,sha256=scLiQ-nSkRW8vbAg-QiPgkQRLnBIfmjLKqauoNs0cZQ,442
|
|
196
203
|
samplehc/types/v2/hie/document_upload_params.py,sha256=y7Bu6fD5YyZDCGpxN2z5wBmJuENlPSfl_mmSUqN7V9k,1836
|
|
197
|
-
samplehc/types/v2/integrations/__init__.py,sha256=
|
|
204
|
+
samplehc/types/v2/integrations/__init__.py,sha256=jiv9jsVE-mvGzwyJ2etym3eq85ppJDh7wryoQHHr3cA,1525
|
|
198
205
|
samplehc/types/v2/integrations/careviso_get_payers_response.py,sha256=Et-uLf2afZfEmu38r5xkzhQA2UolbFH5z5gpIV2v33g,543
|
|
199
206
|
samplehc/types/v2/integrations/careviso_submit_prior_authorization_params.py,sha256=Kb1VOG1BtL_3b5uBvdY8cVmicO8v3l9a3J09UPCsfrU,3460
|
|
200
207
|
samplehc/types/v2/integrations/glidian_get_submission_requirements_params.py,sha256=vzs_i2xzudxXQhnVeETVCRDZhQTw-WMIZKJTZsxV0ZM,520
|
|
@@ -204,6 +211,7 @@ samplehc/types/v2/integrations/glidian_list_payers_response.py,sha256=Xh6d76ZIj8
|
|
|
204
211
|
samplehc/types/v2/integrations/glidian_list_services_params.py,sha256=23IGwtyqXNlB2l3i4LpQDOZ56GxxIIbDuMeX3UEGsjE,381
|
|
205
212
|
samplehc/types/v2/integrations/glidian_list_services_response.py,sha256=ezChHI2no32064nkk2feoJEQYq7h9WAyCDCfWW-b110,441
|
|
206
213
|
samplehc/types/v2/integrations/salesforce_run_crud_action_params.py,sha256=DEoYOTlq8wr3h3gJnMPPwfUb5zEeZm0_STNYn9q0894,750
|
|
214
|
+
samplehc/types/v2/integrations/salesforce_run_soql_query_params.py,sha256=G5vP1GwS2YWX96jRn3BX0DLt3ETdY_3E5mLPzbiUsYc,304
|
|
207
215
|
samplehc/types/v2/integrations/snowflake_query_params.py,sha256=ave_87sUwdYtAgU21PahfuWMugSwzDxuxkY-YYUcpK0,324
|
|
208
216
|
samplehc/types/v2/integrations/snowflake_query_response.py,sha256=g3sxN4GAiSJZy7HXAQf_uNZmCcoZnVfWlJGfbVtITus,256
|
|
209
217
|
samplehc/types/v2/integrations/xcure_make_request_params.py,sha256=j-F_IqLDzPeUreW7ov_fcpyOaMmgYpYGyKV1VxtvDEw,441
|
|
@@ -224,6 +232,9 @@ samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_up
|
|
|
224
232
|
samplehc/types/v2/integrations/kno2/__init__.py,sha256=-gOR4o0TRcDJlPLYQR7Xe0kb5WIOcFem52qiHIW6seA,319
|
|
225
233
|
samplehc/types/v2/integrations/kno2/message_get_attachment_response.py,sha256=AZue-qHJSTSNeMpGLkFkdQeQGYKWrPoJ9TaJZmhcoiQ,318
|
|
226
234
|
samplehc/types/v2/integrations/kno2/message_retrieve_response.py,sha256=fr41OON96HnoAyFIpRxh7Hb4pTCreYydkack6lZFPuM,271
|
|
235
|
+
samplehc/types/v2/integrations/wellsky/__init__.py,sha256=yMzbfqlrc8-Dbq1uhpHeZ0XgRCdyyAeo-Vf-gCBhIi8,270
|
|
236
|
+
samplehc/types/v2/integrations/wellsky/patient_add_params.py,sha256=5pHaMWacMXHzybjSOxcDOnw8VRoQz51X0IrYxfe_lwc,367
|
|
237
|
+
samplehc/types/v2/integrations/wellsky/patient_search_params.py,sha256=tFOPYSIsulg6NTYJqQscM2g5Zpt_eBPyJroBRTWxvLY,947
|
|
227
238
|
samplehc/types/v2/ledger/__init__.py,sha256=UR89wcUHLaMEO1ZNDPNCGMK9ibhjF8oJ9eSV9RCw53s,591
|
|
228
239
|
samplehc/types/v2/ledger/account_writeoff_params.py,sha256=hRmn--xzlslRj8HGctk8ZBeWknSX_87P77Qw-sybzE4,695
|
|
229
240
|
samplehc/types/v2/ledger/account_writeoff_response.py,sha256=W-pBaGANRA0VqPme3uyfCxDGrIB_SvOvJW-rzi_w5bw,311
|
|
@@ -237,7 +248,7 @@ samplehc/types/v2/tasks/state_update_params.py,sha256=qSLE4Ic5PJlkvcFbTu-KlfH6qg
|
|
|
237
248
|
samplehc/types/v2/tasks/state_update_response.py,sha256=ZLnR_rl9yasOnaxQvcM3fiaI_H16pDjBve1GUUleul4,214
|
|
238
249
|
samplehc/types/v2/workflow_runs/__init__.py,sha256=Nmrudr30JDOaGyeMcc_dqaqqs_9kTdebHD7W0vHHfdE,208
|
|
239
250
|
samplehc/types/v2/workflow_runs/step_get_output_response.py,sha256=XhRGcpEmxu4TBgpF8r63u5-ruEUDWuXr0ahv1CD9gis,333
|
|
240
|
-
samplehc-0.
|
|
241
|
-
samplehc-0.
|
|
242
|
-
samplehc-0.
|
|
243
|
-
samplehc-0.
|
|
251
|
+
samplehc-0.14.0.dist-info/METADATA,sha256=UgoTLJMYG2Ij-jt1M_WTZT2QIJsxP6i34aV8h6p-AqE,14285
|
|
252
|
+
samplehc-0.14.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
253
|
+
samplehc-0.14.0.dist-info/licenses/LICENSE,sha256=nrJkK4JSAQb1p7FJcTysujPJoAZtrnXxwsLkwHz0-J8,11347
|
|
254
|
+
samplehc-0.14.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|