samplehc 0.16.0__py3-none-any.whl → 0.17.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/workflows.py +12 -0
- samplehc/types/v2/workflow_start_params.py +8 -0
- {samplehc-0.16.0.dist-info → samplehc-0.17.0.dist-info}/METADATA +1 -1
- {samplehc-0.16.0.dist-info → samplehc-0.17.0.dist-info}/RECORD +7 -7
- {samplehc-0.16.0.dist-info → samplehc-0.17.0.dist-info}/WHEEL +0 -0
- {samplehc-0.16.0.dist-info → samplehc-0.17.0.dist-info}/licenses/LICENSE +0 -0
samplehc/_version.py
CHANGED
|
@@ -135,6 +135,12 @@ class WorkflowsResource(SyncAPIResource):
|
|
|
135
135
|
for input.
|
|
136
136
|
|
|
137
137
|
Args:
|
|
138
|
+
body: The workflow input data. Format depends on X-Sample-Start-Data-Parse-Method
|
|
139
|
+
header: If 'standard' (default), wrap your data in a 'startData' key: {
|
|
140
|
+
"startData": { ... } }. If 'top-level', provide your data directly at the root
|
|
141
|
+
level: { ... }. For multipart/form-data requests, include fields and files
|
|
142
|
+
directly in the form data.
|
|
143
|
+
|
|
138
144
|
extra_headers: Send extra headers
|
|
139
145
|
|
|
140
146
|
extra_query: Add additional query parameters to the request
|
|
@@ -275,6 +281,12 @@ class AsyncWorkflowsResource(AsyncAPIResource):
|
|
|
275
281
|
for input.
|
|
276
282
|
|
|
277
283
|
Args:
|
|
284
|
+
body: The workflow input data. Format depends on X-Sample-Start-Data-Parse-Method
|
|
285
|
+
header: If 'standard' (default), wrap your data in a 'startData' key: {
|
|
286
|
+
"startData": { ... } }. If 'top-level', provide your data directly at the root
|
|
287
|
+
level: { ... }. For multipart/form-data requests, include fields and files
|
|
288
|
+
directly in the form data.
|
|
289
|
+
|
|
278
290
|
extra_headers: Send extra headers
|
|
279
291
|
|
|
280
292
|
extra_query: Add additional query parameters to the request
|
|
@@ -11,6 +11,14 @@ __all__ = ["WorkflowStartParams"]
|
|
|
11
11
|
|
|
12
12
|
class WorkflowStartParams(TypedDict, total=False):
|
|
13
13
|
body: object
|
|
14
|
+
"""The workflow input data.
|
|
15
|
+
|
|
16
|
+
Format depends on X-Sample-Start-Data-Parse-Method header: If 'standard'
|
|
17
|
+
(default), wrap your data in a 'startData' key: { "startData": { ... } }. If
|
|
18
|
+
'top-level', provide your data directly at the root level: { ... }. For
|
|
19
|
+
multipart/form-data requests, include fields and files directly in the form
|
|
20
|
+
data.
|
|
21
|
+
"""
|
|
14
22
|
|
|
15
23
|
x_sample_start_data_parse_method: Annotated[
|
|
16
24
|
Literal["standard", "top-level"], PropertyInfo(alias="X-Sample-Start-Data-Parse-Method")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: samplehc
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.17.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
|
|
@@ -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=Wsd0pUQJT1ZW9v_iBIFKDS9lukt3M0X96f3Enqx1PYY,10261
|
|
13
13
|
samplehc/_types.py,sha256=j9OfrgjmrZOU2T8RbK9QKC0plnD1UCUWuH5oRR2oY3c,7596
|
|
14
|
-
samplehc/_version.py,sha256=
|
|
14
|
+
samplehc/_version.py,sha256=i4H51xLEcSSlWlf3-Z2Dt2PCYgAb02F1iGqUxaZ63S4,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
|
|
@@ -36,7 +36,7 @@ samplehc/resources/v2/database.py,sha256=lFLepM70TzkRBaejyfU5GmE3PfgIaBi_liRTpJs
|
|
|
36
36
|
samplehc/resources/v2/events.py,sha256=Kdx2fSNGr21YA7fAHvs9huMGDRra8bsvnxiO1B1ZlSE,6658
|
|
37
37
|
samplehc/resources/v2/policies.py,sha256=V9631MIrlZ99oqT8v_V8Qj9a76rG317bklyoV-vNNAY,24899
|
|
38
38
|
samplehc/resources/v2/v2.py,sha256=gT7xJ50qahJQBzrPObc49QvdFMg2yYOVrxYy5HStjDE,16223
|
|
39
|
-
samplehc/resources/v2/workflows.py,sha256=
|
|
39
|
+
samplehc/resources/v2/workflows.py,sha256=kWMg1kdnX3K-QIoN7J7eCEWTrY_Hz08hQqRECR9uNWw,15046
|
|
40
40
|
samplehc/resources/v2/clearinghouse/__init__.py,sha256=q2mqlV5eEa0qmHkoQUSDMsZ5zxunWN5Eo6boQaNs49Q,1530
|
|
41
41
|
samplehc/resources/v2/clearinghouse/claim.py,sha256=ZgDjj4x9EWiNfFikACEBj6B-rFjtZ5-0oFN_EuDgemo,16336
|
|
42
42
|
samplehc/resources/v2/clearinghouse/clearinghouse.py,sha256=fME7jXnVG1JH5CmN149eNbefBm0kNxp1TI23kEq914s,34744
|
|
@@ -152,7 +152,7 @@ samplehc/types/v2/workflow_run_get_start_data_response.py,sha256=LZbAYXmtHZ5dA40
|
|
|
152
152
|
samplehc/types/v2/workflow_run_resume_when_complete_params.py,sha256=2EhKTL1vPZnnAF6t6s4iTen5EzGzc25D0VFQwdlFE9A,510
|
|
153
153
|
samplehc/types/v2/workflow_run_resume_when_complete_response.py,sha256=JkBz04MX9Ka6FE1IHVhyE39W48-bprNbmcBg0elS3us,404
|
|
154
154
|
samplehc/types/v2/workflow_run_retrieve_response.py,sha256=VLirZeVrC3MVH5L7xiGSmogC4MkVtzdENO7FKQCfUo0,463
|
|
155
|
-
samplehc/types/v2/workflow_start_params.py,sha256=
|
|
155
|
+
samplehc/types/v2/workflow_start_params.py,sha256=GewrTDqlAaB1Vk7P1fQ0o4zm8mBNfWbBvDl9wRLXZlk,842
|
|
156
156
|
samplehc/types/v2/workflow_start_response.py,sha256=FZsu6XeR-P1tCucJUdqU3zW9N8Y9swm0Y0AN6x9XQs4,713
|
|
157
157
|
samplehc/types/v2/clearinghouse/__init__.py,sha256=wyZ7XAXj5ug8Vnca6DaozMKvxb2bP1fXEJq0mM_4SfM,495
|
|
158
158
|
samplehc/types/v2/clearinghouse/claim_submit_params.py,sha256=nxrn2qluwkI044Tm7Fg7_MRC99zYL_-Wj1Pa5MXUEWs,92742
|
|
@@ -220,7 +220,7 @@ samplehc/types/v2/tasks/state_update_params.py,sha256=qSLE4Ic5PJlkvcFbTu-KlfH6qg
|
|
|
220
220
|
samplehc/types/v2/tasks/state_update_response.py,sha256=ZLnR_rl9yasOnaxQvcM3fiaI_H16pDjBve1GUUleul4,214
|
|
221
221
|
samplehc/types/v2/workflow_runs/__init__.py,sha256=Nmrudr30JDOaGyeMcc_dqaqqs_9kTdebHD7W0vHHfdE,208
|
|
222
222
|
samplehc/types/v2/workflow_runs/step_get_output_response.py,sha256=7uRQ1Jlt2LRZyAcn_bN2L9Ac2IkFbZAfpBuGaV6NiBk,385
|
|
223
|
-
samplehc-0.
|
|
224
|
-
samplehc-0.
|
|
225
|
-
samplehc-0.
|
|
226
|
-
samplehc-0.
|
|
223
|
+
samplehc-0.17.0.dist-info/METADATA,sha256=y5bEBgq85MqYWlzLL3tIu4cEbWJL1LO2_UPqRG02V24,14360
|
|
224
|
+
samplehc-0.17.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
225
|
+
samplehc-0.17.0.dist-info/licenses/LICENSE,sha256=ll_q1imgsIlRXL5pk6VmrO0f_L0thzOlPI2cc7qcqc0,11347
|
|
226
|
+
samplehc-0.17.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|