samplehc 0.14.0__py3-none-any.whl → 0.16.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.
Files changed (102) hide show
  1. samplehc/_base_client.py +140 -11
  2. samplehc/_client.py +107 -35
  3. samplehc/_models.py +53 -16
  4. samplehc/_streaming.py +12 -12
  5. samplehc/_types.py +12 -2
  6. samplehc/_utils/_sync.py +3 -31
  7. samplehc/_utils/_utils.py +1 -1
  8. samplehc/_version.py +1 -1
  9. samplehc/resources/v2/__init__.py +0 -42
  10. samplehc/resources/v2/communication.py +5 -4
  11. samplehc/resources/v2/documents/documents.py +8 -0
  12. samplehc/resources/v2/tasks/tasks.py +12 -3
  13. samplehc/resources/v2/v2.py +0 -96
  14. samplehc/types/v1_query_audit_logs_response.py +4 -0
  15. samplehc/types/v2/__init__.py +1 -2
  16. samplehc/types/v2/clearinghouse/claim_submit_response.py +5 -0
  17. samplehc/types/v2/clearinghouse/payer_list_response.py +2 -0
  18. samplehc/types/v2/clearinghouse/payer_search_response.py +2 -0
  19. samplehc/types/v2/clearinghouse_check_eligibility_response.py +4 -0
  20. samplehc/types/v2/clearinghouse_run_discovery_response.py +2 -0
  21. samplehc/types/v2/communication_send_email_response.py +27 -0
  22. samplehc/types/v2/communication_send_fax_params.py +2 -0
  23. samplehc/types/v2/communication_send_fax_response.py +2 -0
  24. samplehc/types/v2/communication_send_letter_params.py +8 -0
  25. samplehc/types/v2/communication_send_letter_response.py +2 -0
  26. samplehc/types/v2/database_execute_sql_response.py +2 -0
  27. samplehc/types/v2/document_classify_params.py +2 -0
  28. samplehc/types/v2/document_classify_response.py +2 -0
  29. samplehc/types/v2/document_combine_response.py +4 -0
  30. samplehc/types/v2/document_create_from_splits_params.py +2 -0
  31. samplehc/types/v2/document_create_from_splits_response.py +2 -0
  32. samplehc/types/v2/document_extract_params.py +40 -3
  33. samplehc/types/v2/document_extract_response.py +2 -0
  34. samplehc/types/v2/document_generate_csv_response.py +4 -0
  35. samplehc/types/v2/document_presigned_upload_url_response.py +2 -0
  36. samplehc/types/v2/document_retrieve_csv_content_response.py +2 -0
  37. samplehc/types/v2/document_retrieve_metadata_response.py +2 -0
  38. samplehc/types/v2/document_search_response.py +2 -0
  39. samplehc/types/v2/document_split_params.py +2 -0
  40. samplehc/types/v2/document_split_response.py +2 -0
  41. samplehc/types/v2/documents/format_create_pdf_response.py +2 -0
  42. samplehc/types/v2/documents/legacy_extract_response.py +2 -0
  43. samplehc/types/v2/documents/legacy_reason_response.py +2 -0
  44. samplehc/types/v2/documents/legacy_split_params.py +2 -0
  45. samplehc/types/v2/documents/legacy_split_response.py +2 -0
  46. samplehc/types/v2/documents/pdf_template_retrieve_metadata_response.py +2 -0
  47. samplehc/types/v2/documents/template_render_document_response.py +2 -0
  48. samplehc/types/v2/hie/document_upload_params.py +2 -0
  49. samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_response.py +2 -0
  50. samplehc/types/v2/integrations/glidian/prior_authorization_retrieve_record_response.py +2 -0
  51. samplehc/types/v2/integrations/glidian/prior_authorization_submit_response.py +2 -0
  52. samplehc/types/v2/integrations/glidian/prior_authorization_update_record_response.py +2 -0
  53. samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_list_response.py +2 -0
  54. samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_response.py +2 -0
  55. samplehc/types/v2/integrations/kno2/message_get_attachment_response.py +2 -0
  56. samplehc/types/v2/integrations/kno2/message_retrieve_response.py +2 -0
  57. samplehc/types/v2/ledger/__init__.py +0 -7
  58. samplehc/types/v2/policy_list_companies_response.py +2 -0
  59. samplehc/types/v2/policy_list_plans_response.py +2 -0
  60. samplehc/types/v2/policy_list_response.py +2 -0
  61. samplehc/types/v2/policy_retrieve_presigned_url_response.py +2 -0
  62. samplehc/types/v2/policy_retrieve_text_response.py +2 -0
  63. samplehc/types/v2/task_cancel_response.py +2 -0
  64. samplehc/types/v2/task_complete_response.py +2 -0
  65. samplehc/types/v2/task_update_column_params.py +6 -3
  66. samplehc/types/v2/workflow_run_resume_when_complete_response.py +2 -0
  67. samplehc/types/v2/workflow_run_retrieve_response.py +2 -0
  68. samplehc/types/v2/workflow_runs/step_get_output_response.py +2 -0
  69. samplehc/types/v2/workflow_start_response.py +2 -0
  70. {samplehc-0.14.0.dist-info → samplehc-0.16.0.dist-info}/METADATA +7 -6
  71. {samplehc-0.14.0.dist-info → samplehc-0.16.0.dist-info}/RECORD +73 -101
  72. {samplehc-0.14.0.dist-info → samplehc-0.16.0.dist-info}/licenses/LICENSE +1 -1
  73. samplehc/resources/v2/browser_agents/__init__.py +0 -33
  74. samplehc/resources/v2/browser_agents/browser_agents.py +0 -209
  75. samplehc/resources/v2/browser_agents/runs/__init__.py +0 -33
  76. samplehc/resources/v2/browser_agents/runs/help_requests.py +0 -191
  77. samplehc/resources/v2/browser_agents/runs/runs.py +0 -233
  78. samplehc/resources/v2/browser_automation/__init__.py +0 -33
  79. samplehc/resources/v2/browser_automation/availity.py +0 -249
  80. samplehc/resources/v2/browser_automation/browser_automation.py +0 -102
  81. samplehc/resources/v2/ledger/__init__.py +0 -47
  82. samplehc/resources/v2/ledger/account.py +0 -297
  83. samplehc/resources/v2/ledger/entry.py +0 -381
  84. samplehc/resources/v2/ledger/ledger.py +0 -134
  85. samplehc/types/v2/browser_agent_invoke_params.py +0 -13
  86. samplehc/types/v2/browser_agent_invoke_response.py +0 -15
  87. samplehc/types/v2/browser_agents/__init__.py +0 -6
  88. samplehc/types/v2/browser_agents/run_list_events_params.py +0 -15
  89. samplehc/types/v2/browser_agents/run_list_events_response.py +0 -30
  90. samplehc/types/v2/browser_agents/runs/__init__.py +0 -6
  91. samplehc/types/v2/browser_agents/runs/help_request_resolve_params.py +0 -18
  92. samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py +0 -28
  93. samplehc/types/v2/browser_automation/__init__.py +0 -6
  94. samplehc/types/v2/browser_automation/availity_submit_appeal_params.py +0 -59
  95. samplehc/types/v2/browser_automation/availity_submit_appeal_response.py +0 -12
  96. samplehc/types/v2/ledger/account_writeoff_params.py +0 -23
  97. samplehc/types/v2/ledger/account_writeoff_response.py +0 -12
  98. samplehc/types/v2/ledger/entry_post_params.py +0 -60
  99. samplehc/types/v2/ledger/entry_post_response.py +0 -10
  100. samplehc/types/v2/ledger/entry_reverse_params.py +0 -18
  101. samplehc/types/v2/ledger/entry_reverse_response.py +0 -10
  102. {samplehc-0.14.0.dist-info → samplehc-0.16.0.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: samplehc
3
- Version: 0.14.0
3
+ Version: 0.16.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
@@ -13,15 +13,15 @@ Classifier: Operating System :: Microsoft :: Windows
13
13
  Classifier: Operating System :: OS Independent
14
14
  Classifier: Operating System :: POSIX
15
15
  Classifier: Operating System :: POSIX :: Linux
16
- Classifier: Programming Language :: Python :: 3.8
17
16
  Classifier: Programming Language :: Python :: 3.9
18
17
  Classifier: Programming Language :: Python :: 3.10
19
18
  Classifier: Programming Language :: Python :: 3.11
20
19
  Classifier: Programming Language :: Python :: 3.12
21
20
  Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
22
22
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
23
  Classifier: Typing :: Typed
24
- Requires-Python: >=3.8
24
+ Requires-Python: >=3.9
25
25
  Requires-Dist: anyio<5,>=3.5.0
26
26
  Requires-Dist: distro<2,>=1.7.0
27
27
  Requires-Dist: httpx<1,>=0.23.0
@@ -38,7 +38,7 @@ Description-Content-Type: text/markdown
38
38
  <!-- prettier-ignore -->
39
39
  [![PyPI version](https://img.shields.io/pypi/v/samplehc.svg?label=pypi%20(stable))](https://pypi.org/project/samplehc/)
40
40
 
41
- The Sample Healthcare Python library provides convenient access to the Sample Healthcare REST API from any Python 3.8+
41
+ The Sample Healthcare Python library provides convenient access to the Sample Healthcare REST API from any Python 3.9+
42
42
  application. The library includes type definitions for all request params and response fields,
43
43
  and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
44
44
 
@@ -118,6 +118,7 @@ pip install samplehc[aiohttp]
118
118
  Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
119
119
 
120
120
  ```python
121
+ import os
121
122
  import asyncio
122
123
  from samplehc import DefaultAioHttpClient
123
124
  from samplehc import AsyncSampleHealthcare
@@ -125,7 +126,7 @@ from samplehc import AsyncSampleHealthcare
125
126
 
126
127
  async def main() -> None:
127
128
  async with AsyncSampleHealthcare(
128
- api_key="My API Key",
129
+ api_key=os.environ.get("SAMPLEHC_API_KEY"), # This is the default and can be omitted
129
130
  http_client=DefaultAioHttpClient(),
130
131
  ) as client:
131
132
  response = await client.v1.sql_execute(
@@ -431,7 +432,7 @@ print(samplehc.__version__)
431
432
 
432
433
  ## Requirements
433
434
 
434
- Python 3.8 or higher.
435
+ Python 3.9 or higher.
435
436
 
436
437
  ## Contributing
437
438
 
@@ -1,17 +1,17 @@
1
1
  samplehc/__init__.py,sha256=Kze-TKDp8j_TYknemcBAyGIxn7a_RUlisf07X8IYIVI,2731
2
- samplehc/_base_client.py,sha256=HFpWk6SW49q8fvGA4X6sDflXdqOGVr-_clNBuWMh0wA,67049
3
- samplehc/_client.py,sha256=CyOrDAMF-oJf_6FSwk08J2sq6dy59FeMosfYHoZsSQI,16053
2
+ samplehc/_base_client.py,sha256=ooaPntKjp5cnswE1QYfWraRZ2j7m2ctk3ypSUQZyfqQ,73411
3
+ samplehc/_client.py,sha256=RltjjBsbgnYUsGYWxlPrUP7dvoV6xs0jkRYHmBbDXvA,17888
4
4
  samplehc/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
5
  samplehc/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
6
  samplehc/_exceptions.py,sha256=MxVd0pThtjM7aV1xjQcQ6nGSfxJMa5xPhoLsmtSxQgU,3240
7
7
  samplehc/_files.py,sha256=KnEzGi_O756MvKyJ4fOCW_u3JhOeWPQ4RsmDvqihDQU,3545
8
- samplehc/_models.py,sha256=lKnskYPONAWDvWo8tmbbVk7HmG7UOsI0Nve0vSMmkRc,30452
8
+ samplehc/_models.py,sha256=R3MpO2z4XhTAnD3ObEks32suRXleF1g7BEgQTOLIxTs,32112
9
9
  samplehc/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
10
10
  samplehc/_resource.py,sha256=Mdg6fhf_5wYd2K2JZ4BQIJMPqJOWetqpJE3h3MmGZJE,1160
11
11
  samplehc/_response.py,sha256=UzsuYRbic274gcdUWq9ShPkdRt7VrzkjaqwSwdxqWIs,28816
12
- samplehc/_streaming.py,sha256=yAEL3kUU3BoKZpDC6T6Psl11nDAMMAjSyWvWnk3R8vU,10140
13
- samplehc/_types.py,sha256=Gx3CUAUSTuUToKvgv-KsFoQ25mp6N1qHbODB21j8I8c,7238
14
- samplehc/_version.py,sha256=TVrhwlOSQXahwGXqP4B2e5RFQeIx-AaiIHzoWWCz1gU,161
12
+ samplehc/_streaming.py,sha256=Wsd0pUQJT1ZW9v_iBIFKDS9lukt3M0X96f3Enqx1PYY,10261
13
+ samplehc/_types.py,sha256=j9OfrgjmrZOU2T8RbK9QKC0plnD1UCUWuH5oRR2oY3c,7596
14
+ samplehc/_version.py,sha256=NqW5Tgc-4ohb9RQyQlhsh_eNNM2WV1Ha7vejtdTaLsE,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
@@ -21,36 +21,28 @@ samplehc/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,197
21
21
  samplehc/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
22
22
  samplehc/_utils/_resources_proxy.py,sha256=NejY5ZPSVISf1S6P7a-AHToRY85AllNZg7ukouCdCjU,599
23
23
  samplehc/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
24
- samplehc/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
24
+ samplehc/_utils/_sync.py,sha256=HBnZkkBnzxtwOZe0212C4EyoRvxhTVtTrLFDz2_xVCg,1589
25
25
  samplehc/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
26
26
  samplehc/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
27
- samplehc/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
27
+ samplehc/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
28
28
  samplehc/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
29
29
  samplehc/resources/__init__.py,sha256=d6hMh8jB7d3_ni6az6tWaXvUcIewUm0vRE2O_Y4ZTFw,898
30
30
  samplehc/resources/v1/__init__.py,sha256=TSJ6b8GNHShyK5w7efHV93u1bY2jYVySQRa2zKc1dKM,500
31
31
  samplehc/resources/v1/v1.py,sha256=G1SUS5rZhcE01slcOd5-ZeSn2cERwvmcfJzb0rywAdA,10965
32
- samplehc/resources/v2/__init__.py,sha256=wPyLMRjFN73m3XD6y_0NWm0lyMg--2AeFlbevQDXeW4,7982
32
+ samplehc/resources/v2/__init__.py,sha256=C-gdjKWxDsIYZL6QSWAOuyYGhWFd1VbIHx86iIk_C8g,6396
33
33
  samplehc/resources/v2/async_results.py,sha256=UBGM6qCcWuivX169CkJ9hvwZymz4-fQbHPSnzQOXhZc,13624
34
- samplehc/resources/v2/communication.py,sha256=m6rytLcGlDtFkajfi-P5WQkaCyYbaMlBI2UrBLJ9xqI,21054
34
+ samplehc/resources/v2/communication.py,sha256=fHM2kBpKvOpzROfVKIx2Nmuw-iSs6nSH-IZJZdte3M8,21239
35
35
  samplehc/resources/v2/database.py,sha256=lFLepM70TzkRBaejyfU5GmE3PfgIaBi_liRTpJs2lzM,7950
36
36
  samplehc/resources/v2/events.py,sha256=Kdx2fSNGr21YA7fAHvs9huMGDRra8bsvnxiO1B1ZlSE,6658
37
37
  samplehc/resources/v2/policies.py,sha256=V9631MIrlZ99oqT8v_V8Qj9a76rG317bklyoV-vNNAY,24899
38
- samplehc/resources/v2/v2.py,sha256=3ZGHP9vK81L2YYWh2sGhlIQv2y8F_nmXZNNmumsfRSo,19967
38
+ samplehc/resources/v2/v2.py,sha256=gT7xJ50qahJQBzrPObc49QvdFMg2yYOVrxYy5HStjDE,16223
39
39
  samplehc/resources/v2/workflows.py,sha256=tORLHVCYwhwFcRLlXHBxcgZ9EYjinwXcFHjX04pCKUs,14242
40
- samplehc/resources/v2/browser_agents/__init__.py,sha256=Byeyzaw5o_dcSvkefEoViV9xXKlNVKDzcr5QV8ODgl0,1068
41
- samplehc/resources/v2/browser_agents/browser_agents.py,sha256=fr3DQezSabZK58uAxHKk0GpqVJkXr5uynobs0FZ8Dtk,7919
42
- samplehc/resources/v2/browser_agents/runs/__init__.py,sha256=v6kly2kRgTEcwzev4KKwLOvU_7iJFuYRbZckR0LmgoM,1055
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=SYY5LX9dLFlB-LB39lQE2hnMzUwNSjnn2wLKouElpC0,8435
45
- samplehc/resources/v2/browser_automation/__init__.py,sha256=a7mi3Gg12Vk6CCsm3Q50nsrwLzXK_sVk_iV6ORlqqJY,1172
46
- samplehc/resources/v2/browser_automation/availity.py,sha256=QPOa5e364LqdSIlz09XyeZF5myQi6rPILZa4Mpwt0lE,9545
47
- samplehc/resources/v2/browser_automation/browser_automation.py,sha256=jiBEq2DdaD6pEaWG2X2SvxNJSug-zaQ8GInPnYALcvQ,4071
48
40
  samplehc/resources/v2/clearinghouse/__init__.py,sha256=q2mqlV5eEa0qmHkoQUSDMsZ5zxunWN5Eo6boQaNs49Q,1530
49
41
  samplehc/resources/v2/clearinghouse/claim.py,sha256=ZgDjj4x9EWiNfFikACEBj6B-rFjtZ5-0oFN_EuDgemo,16336
50
42
  samplehc/resources/v2/clearinghouse/clearinghouse.py,sha256=fME7jXnVG1JH5CmN149eNbefBm0kNxp1TI23kEq914s,34744
51
43
  samplehc/resources/v2/clearinghouse/payers.py,sha256=D5NmoxTV-dS97yj8tXqdFXtPxB82lqIungIrqgW_GV4,8400
52
44
  samplehc/resources/v2/documents/__init__.py,sha256=9Hje-AZc-uRh1mgxCDKcRtLRxIdSOB3P7QJVGKCGAc0,2509
53
- samplehc/resources/v2/documents/documents.py,sha256=bzSkEJ72kgATM3XBi_l7b5wrpKvgRo1ZvEZD09BAqek,64206
45
+ samplehc/resources/v2/documents/documents.py,sha256=dfEsFOpSyV3AfU4n-BAbmJycaPhjnFr5L7CIanrHMNE,64612
54
46
  samplehc/resources/v2/documents/formats.py,sha256=lB60NUBPBceC1XUbL04lsGIsyVWlqsOE8kQkw5oKIM0,6993
55
47
  samplehc/resources/v2/documents/legacy.py,sha256=CbDfHJK_U-sDW1rIp8Hj7pTKKHscwmdijSx4mWALQk8,14095
56
48
  samplehc/resources/v2/documents/pdf_template.py,sha256=1LY-drtfB9_GmyHoVEpEnOz-03E-JjjIHREhACQxOis,6442
@@ -79,61 +71,56 @@ samplehc/resources/v2/integrations/kno2/messages.py,sha256=BlIUV_1ae2lNtjI6wJigX
79
71
  samplehc/resources/v2/integrations/wellsky/__init__.py,sha256=-DaaU18hvyGskY1k5y3LsMtAw8nv5X6nB2PM4BFHkS8,1041
80
72
  samplehc/resources/v2/integrations/wellsky/patients.py,sha256=9TSUdr9taZMtb7yuPOL_85AMMc6BAfKrTgpJgUmsPIU,11493
81
73
  samplehc/resources/v2/integrations/wellsky/wellsky.py,sha256=0-8yyclRm13JRUbH-KJpPk0uwbPke8qunO98QNF9mDw,3697
82
- samplehc/resources/v2/ledger/__init__.py,sha256=wJp8z_TSgl7zuOvOvFxpwUBMAaVp4mRI2NVkbKGKiL0,1452
83
- samplehc/resources/v2/ledger/account.py,sha256=Fc3A7czMWCVa1jPZXiZ2EQjtmMjVqEOz4jwAihS9N_I,11452
84
- samplehc/resources/v2/ledger/entry.py,sha256=m0IuJr2Objsnm5int5Z7VGtJQkmVcFDzbK0yAqP1CUg,13982
85
- samplehc/resources/v2/ledger/ledger.py,sha256=Ayzzu9491xWtnQIFuXNbKDk19JYhHCxqT1msqHElxMI,4670
86
74
  samplehc/resources/v2/tasks/__init__.py,sha256=ez5eX-qrV79bmAy3vh-Yp2cWCpVIeDM36Zkn4lDChVg,976
87
75
  samplehc/resources/v2/tasks/state.py,sha256=VuECXSNXtdWhaJS3cNcTIdecuQJajCGIFP3lyPZi_xA,9666
88
- samplehc/resources/v2/tasks/tasks.py,sha256=rT_mWHLmi88GiwmlloXHqvFGzMhFruo8MJuRdlQSLDw,29094
76
+ samplehc/resources/v2/tasks/tasks.py,sha256=ceIWwD6P0804Hk2HkmP0mEJFC89jDvvL3atk7ep1Paw,29581
89
77
  samplehc/resources/v2/workflow_runs/__init__.py,sha256=maLNLcc-W7a0KHsoPlgCZANcyCE4owxqu3rJwY3lDbY,1055
90
78
  samplehc/resources/v2/workflow_runs/step.py,sha256=whzHiJTIhzCNTiRAzvo01FAPEnW-Pye29itDTzZhSyc,6169
91
79
  samplehc/resources/v2/workflow_runs/workflow_runs.py,sha256=5a23JhXliB6VNbieEBuDAF5kBbfg6FJKiBOhhwVyix8,19696
92
80
  samplehc/types/__init__.py,sha256=s4JqHqYRXYA7SMgFJCKDOOMe7r2x9YSZAmrsc9sOX_g,465
93
81
  samplehc/types/v1_query_audit_logs_params.py,sha256=khSImk9lMmQEN_jhRhR2fgZx1zZoPxMJKk0PaPh1izY,341
94
- samplehc/types/v1_query_audit_logs_response.py,sha256=CiFZBhg0Q_c1ydzvNK0MkZLgmP8tNZ6kUJZflv5FWic,329
82
+ samplehc/types/v1_query_audit_logs_response.py,sha256=q9TZGuYWsOa6nogQLzWyVl3IklWqA65cBK07mIdK0qE,442
95
83
  samplehc/types/v1_sql_execute_params.py,sha256=mC_HUkRzC_d4Ve0XkRMR3VrpZHRqY6RQzaAe-hOdgEA,728
96
84
  samplehc/types/v1_sql_execute_response.py,sha256=Fo8npustnKfbqpw8a8FSqYSOwaakmZ4siPC1LRVbpWg,683
97
85
  samplehc/types/v1/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
98
- samplehc/types/v2/__init__.py,sha256=z20GvWZZx6oaePPS4K6bfsAkvlPSsHEkBN2cScyZ88c,7324
86
+ samplehc/types/v2/__init__.py,sha256=x9TCAkscWFF-RbtHGiE7vLSqbdKOd7PnNdpwYQDI0kI,7242
99
87
  samplehc/types/v2/async_result_retrieve_response.py,sha256=hDRnUnMvLJav6RzGqFH7OsZ2fPrTXOaTqlGbWzUhWVU,504
100
88
  samplehc/types/v2/async_result_sleep_params.py,sha256=vdhEdUP6vA9Y44waJBU2p_PEC-rzWBOr4RkE1F2eTHs,729
101
89
  samplehc/types/v2/async_result_sleep_response.py,sha256=nAUL4IVyG9RjVZtNyMnn_sp1mcwatJCEBjBCDf6bDtM,366
102
- samplehc/types/v2/browser_agent_invoke_params.py,sha256=GH1bkTIefBLcVz9nKcvQAu1hFuodCd8avTcYEcG1SIQ,367
103
- samplehc/types/v2/browser_agent_invoke_response.py,sha256=008fSDAfWWy-GumiQai9BCEhPQgjB9O_3BsywHWNb7s,482
104
90
  samplehc/types/v2/clearinghouse_calculate_patient_cost_params.py,sha256=iVZPGa5AFaTvuL5ogEQaUWfvASMw1PtTFm6fYlzDruc,86950
105
91
  samplehc/types/v2/clearinghouse_check_claim_status_params.py,sha256=ko1_OwVFSQZ0U2unGPYYNx5eovOObjYORZSc64-DKew,1683
106
92
  samplehc/types/v2/clearinghouse_check_eligibility_params.py,sha256=klc12zvARqdGUSUe9hi9UwK6W7Ncz8wF3PIZHeO8UXw,1488
107
- samplehc/types/v2/clearinghouse_check_eligibility_response.py,sha256=YFLinf3tqd55F5LS5HarQp9KO3R-qLdf7v1WmPkAaJo,301
93
+ samplehc/types/v2/clearinghouse_check_eligibility_response.py,sha256=RTEDFrTEymtb-bL4E6G0dwnYJ-9IWpCupZHssOnQtQU,404
108
94
  samplehc/types/v2/clearinghouse_coordination_of_benefits_params.py,sha256=09vrP_Ded8wANL1jBXVBXH7fOXMqYV8ndQclUH4QaMg,1496
109
95
  samplehc/types/v2/clearinghouse_run_discovery_params.py,sha256=JiXY5K6qy70xzuQYhWsgo9eLRGs_N1RI5rIs3FRThWg,1779
110
- samplehc/types/v2/clearinghouse_run_discovery_response.py,sha256=nwWK_9tJKcdOb8-IrnmjqmlMrkJfOrdcfw6BocGfN_I,288
96
+ samplehc/types/v2/clearinghouse_run_discovery_response.py,sha256=w5f93IiFraHYlg5_yUEBpLhtdymZHqGbY5lpUcucZfo,341
111
97
  samplehc/types/v2/communication_send_email_params.py,sha256=thNaWdxK4JwOk4JQ0zvb3rab9AlOfkDbaweP_7vXsIg,1638
112
- samplehc/types/v2/communication_send_fax_params.py,sha256=iVnTNnpH31avBEK86gFT8Y9MjduB693NQhQJCN6c3f4,1552
113
- samplehc/types/v2/communication_send_fax_response.py,sha256=T-OO3awvoNR2sgv8JvvZiJBsQZJwFjCZsTiKDc76thM,375
114
- samplehc/types/v2/communication_send_letter_params.py,sha256=SBfrTLteva-qGVpUZW-ehlOJTNADlmVDGXK685IP5yE,1962
115
- samplehc/types/v2/communication_send_letter_response.py,sha256=9Jdgi6-YBEYaJdY_IC7u_3djufZ67gdH1ocppShg_dI,368
98
+ samplehc/types/v2/communication_send_email_response.py,sha256=0MFpU0BjZymL6dkOnxZ7wo-lUGy0l1eMjJ_vQxotejQ,665
99
+ samplehc/types/v2/communication_send_fax_params.py,sha256=QysQOLT_Rj4Cd_Q-YApgHoa6SOlTpFlXpTipwYJ9d-E,1595
100
+ samplehc/types/v2/communication_send_fax_response.py,sha256=BPXrsTZPB2rMVdkToQC1y69i-9eN-X830gRit10SRwY,427
101
+ samplehc/types/v2/communication_send_letter_params.py,sha256=rr_Ys_-WYo4ihzEyYZWyI9_-agL37zlRoJSW-7Dm5Yw,2136
102
+ samplehc/types/v2/communication_send_letter_response.py,sha256=uCq0J35m9BhzKOUO7DyS4lKCy9q44zgiWhrMkZ_HtMw,404
116
103
  samplehc/types/v2/database_execute_sql_params.py,sha256=9JhgbItnJenQAP4VQPuM7CW4P3ONTWbdor9x5Gn1ZWo,783
117
- samplehc/types/v2/database_execute_sql_response.py,sha256=dM0wUsOofc-0YowLsU0UiIIepqbTmpv_iRBfudFHL9U,418
118
- samplehc/types/v2/document_classify_params.py,sha256=nEx-pdQ6hq3C0NjJxBWOv96rTQz1YoNjL-24ltAjLE0,900
119
- samplehc/types/v2/document_classify_response.py,sha256=gBW9NalcRZ4zRuBKg02Efo49M6PBbDz1ObHR9m7KPLg,370
104
+ samplehc/types/v2/database_execute_sql_response.py,sha256=2C0U5VC94Rvvkxk13KbNwefOYaPBJ3hK3ix-KKxyHVg,468
105
+ samplehc/types/v2/document_classify_params.py,sha256=R8m_hhpmb48itQrqOdUD5oYxWO8Yorl_PFgFE-8J9wg,942
106
+ samplehc/types/v2/document_classify_response.py,sha256=A6aHbd9vBrFcAga4-_TEgSvRLacS86mdAqpy7hKdxII,434
120
107
  samplehc/types/v2/document_combine_params.py,sha256=U4VK6S19oy0n8-ZF6jWFWwwQweWjqqEtASyp5G9OlHw,785
121
- samplehc/types/v2/document_combine_response.py,sha256=WA9LrQej9VOcwQtmjabTkDRr_JTAjtP1aX26JmECUoc,433
122
- samplehc/types/v2/document_create_from_splits_params.py,sha256=MuMvlsL39CUJ6yvclboype1DkhxYOeUYAlZ03uUBa9U,795
123
- samplehc/types/v2/document_create_from_splits_response.py,sha256=3h9NZV3bzQhJYUG78jZ8BMlII1xpraC_oLsZ5YUOo9w,841
124
- samplehc/types/v2/document_extract_params.py,sha256=DhENL3BUfMyx9wdn5FGujGe7EZkHLoTzMTng-4Qc1Gc,1321
125
- samplehc/types/v2/document_extract_response.py,sha256=dhrFk-j9M47SbbJ3rpojO_zeQ_x1OinTNK0worh5dxM,364
108
+ samplehc/types/v2/document_combine_response.py,sha256=SVnRhWvEA-p2MuRJiJLiaVnutlw185xAAwcCp5-xP3w,559
109
+ samplehc/types/v2/document_create_from_splits_params.py,sha256=XVmvzvrYPQY_Z8omsLnFx0zeMvPcKnA9chC_KLTIpkc,878
110
+ samplehc/types/v2/document_create_from_splits_response.py,sha256=VJQCsIWz839BeXyht8fVSmrvfknMiXJDPt7ZAclGKP4,900
111
+ samplehc/types/v2/document_extract_params.py,sha256=CSsMnbzknkT81zLpxIL_Wb_4FidzyIr_ek0NwWbcKTc,2393
112
+ samplehc/types/v2/document_extract_response.py,sha256=k4nKL53ZSLoAmMdlCPZIpjkTdRuOGqG3u-qJyW1kmD4,424
126
113
  samplehc/types/v2/document_generate_csv_params.py,sha256=N_GL20AyXcSG0QAkIJBbtyoq9ZW7RESAyhURmagzOTc,1063
127
- samplehc/types/v2/document_generate_csv_response.py,sha256=ZaIPmJEzWhQ0HhHWCS-ridr0LoVOtFNTI69oQ3-2yWY,434
114
+ samplehc/types/v2/document_generate_csv_response.py,sha256=n8jk3gbEU6rASKTVNCtY7Z9dDxYOWFm4nqFgbfBOcJM,539
128
115
  samplehc/types/v2/document_presigned_upload_url_params.py,sha256=GUooEmi6zACjwCaao3_SP6IqLwfnwKTUxYzVTfRT4rw,1283
129
- samplehc/types/v2/document_presigned_upload_url_response.py,sha256=VQ6ffBy1AKnq2Cg4YotbWPokzw_gc0X4DVCfsVMotYE,386
130
- samplehc/types/v2/document_retrieve_csv_content_response.py,sha256=9f4Hw0106k0SxguhmrRKAQlpWUhsX2Qm97P9B2kO1Gs,367
131
- samplehc/types/v2/document_retrieve_metadata_response.py,sha256=2ZEGgp-eDrB2LWLVuGcVqjrsbXbRNFlmgUyANl0jCeU,382
116
+ samplehc/types/v2/document_presigned_upload_url_response.py,sha256=Xf1WvhKXxvQhz3u_9wA-k2yeYh8f-Ip3BxXZJRkRvQg,465
117
+ samplehc/types/v2/document_retrieve_csv_content_response.py,sha256=0frl9rH6WRnDVLKxop22B1hqqjgPG1C9TVX7ZwyKTUY,414
118
+ samplehc/types/v2/document_retrieve_metadata_response.py,sha256=ImzbvYJ3GSEZXVypmLx3uaYSoL8GXUajog6en2eRhYM,435
132
119
  samplehc/types/v2/document_retrieve_response.py,sha256=AVViza-zUVA3E13VPZug-3u13PVrZQdta5Lbxgx1A_g,1519
133
120
  samplehc/types/v2/document_search_params.py,sha256=lJ7IpiBDoBRcm5SZzhSZflFlQGJ_7h_T2H7eX8gMX-g,651
134
- samplehc/types/v2/document_search_response.py,sha256=9ykxdQ0EXJyyeLkRPxm-pfM2_iDSSIEfCA2ZGo0s92k,329
135
- samplehc/types/v2/document_split_params.py,sha256=W5nrlo_i5bgv8Ru5-AixMXtbHnLc22f5mgbfa5oxSV0,1029
136
- samplehc/types/v2/document_split_response.py,sha256=PoqLsyX3S6JPZumDnGWMp8JyxPeDij-ggyOeWOVWBGo,359
121
+ samplehc/types/v2/document_search_response.py,sha256=8vOHI-5fl5lelBlhbGWCppl9klcyboXS0FPe2IoTOq0,379
122
+ samplehc/types/v2/document_split_params.py,sha256=SXk8xEILeB-nO-WwkR-NgzYGGxpdhac-lg2idfZXYUM,1066
123
+ samplehc/types/v2/document_split_response.py,sha256=1NID9LtcYYLUJ0sq7q1h_2dw9CMjr5cjR6_lM0aWfpM,418
137
124
  samplehc/types/v2/document_transform_json_to_html_params.py,sha256=0bRUKlxD2-JB5VQ0DFDfDX1MaanOR1b0PhsD2x1YYAI,336
138
125
  samplehc/types/v2/document_transform_json_to_html_response.py,sha256=ca5EIuwV1pywWDnIgy2e6vW_QunxA-PDHh69jurvcS0,268
139
126
  samplehc/types/v2/document_unzip_async_response.py,sha256=gSrnsbEE0iIlXsYdIGMEDSzvZFfJ7XzZAAn3jODxaQc,361
@@ -141,20 +128,20 @@ samplehc/types/v2/document_unzip_response.py,sha256=EJemPIV3xxnSFTOkUhgptwy_v8Fc
141
128
  samplehc/types/v2/event_emit_params.py,sha256=SU1pC9tVh84OmyXWsEjxmBMnkTHqHQXQaMZihEZoX2w,506
142
129
  samplehc/types/v2/event_emit_response.py,sha256=Md9mWenySbRoqz2tWrY4jyXS-oWirz5VVdpg9W2gPM8,263
143
130
  samplehc/types/v2/policy_list_companies_params.py,sha256=1cAH6iiVYHmawgEZIcgtqBgJ1OvZueY3qsXeXj18SIw,438
144
- samplehc/types/v2/policy_list_companies_response.py,sha256=FQPhwWWqeE-iagulSDS3iufrohdxb7xgfXVRaxegdFg,462
131
+ samplehc/types/v2/policy_list_companies_response.py,sha256=JNXJ8POAfzfIkUuIW7MnkMFHdHh4Jg8KYwCT6XIrRL8,506
145
132
  samplehc/types/v2/policy_list_params.py,sha256=PMsQB1tUkpe8nBJHHL_gicCp8aClF2M-63mkWFNhSBY,1699
146
133
  samplehc/types/v2/policy_list_plans_params.py,sha256=Hf0hlnNE-Qmq2rCyGDKz83VqP65Ey5cn9bBRrph4Dco,424
147
- samplehc/types/v2/policy_list_plans_response.py,sha256=DLgnsdDTIbl-ZBIq6cduvIkDJrGGSOiX78LeGGwTktA,560
148
- samplehc/types/v2/policy_list_response.py,sha256=PBiGaqPA2E-W_26eeMnnw63M_3v34Mralgswb0H5kPk,1326
149
- samplehc/types/v2/policy_retrieve_presigned_url_response.py,sha256=7e7wyut9FjkHACIQVA3355hK5zdwUJfVINDPT6pHCwA,426
150
- samplehc/types/v2/policy_retrieve_text_response.py,sha256=Ony_Bsyb74arrkrx1CVMQix6Aj6EE5IGU_Nq12iA7oI,273
151
- samplehc/types/v2/task_cancel_response.py,sha256=ThSwp3Od3g6OPChf8zPV6JqmSk8Tb9UYgvU5bT_YZbI,275
134
+ samplehc/types/v2/policy_list_plans_response.py,sha256=f29wOvtrbAS0qxfL9g52sgDLwkaOb2z4vZujjHmKSrM,600
135
+ samplehc/types/v2/policy_list_response.py,sha256=7RYgZAY8-MZQScvKHFW0e3TOzJ-vLaeayd41XpVs9n4,1369
136
+ samplehc/types/v2/policy_retrieve_presigned_url_response.py,sha256=SvipDt9bzbOjCp2eb0d66Zpl1RwVYHl7MdKHezVTC18,474
137
+ samplehc/types/v2/policy_retrieve_text_response.py,sha256=IeBV9gX-rb5jkfyjjYifMxQpoWdy4wUmyl1wfEbpoIE,319
138
+ samplehc/types/v2/task_cancel_response.py,sha256=6GydOTn-FNxdLJt_lUAO3JPItfVg-Wc1OWdODz4H8VI,315
152
139
  samplehc/types/v2/task_complete_params.py,sha256=J4yswtqiJHgkt46PBeVva3MBClZ7Se99Mll18CUgT7I,321
153
- samplehc/types/v2/task_complete_response.py,sha256=8VoaWzaqA39icSu1MrTy9KZBaRyta76Hvbwlc0sZ77M,413
140
+ samplehc/types/v2/task_complete_response.py,sha256=g1UyHlcwvWLjo5J940mx9fq2uQuJiGjlrg3wTLY-Aeo,453
154
141
  samplehc/types/v2/task_get_suspended_payload_response.py,sha256=Sxy6vxXJCxI2x-7lVO-iElm8fHDBSplpsteyBYZepCw,262
155
142
  samplehc/types/v2/task_retrieve_response.py,sha256=x48lwXHSysKM3hhi6pYWtBDH9jCI4CamjphR97h4o-o,584
156
143
  samplehc/types/v2/task_retry_response.py,sha256=ufX9OgBQKA5JTZVa7k8plZakMj_nm1Xl0IE6r4Abyu0,279
157
- samplehc/types/v2/task_update_column_params.py,sha256=4XjppbYaMK0HUx0pdKYZtPF0sx7kteWVcFdKNPdRstw,443
144
+ samplehc/types/v2/task_update_column_params.py,sha256=Vv9rhkCHf5L1rsGzWomlJmAxnGRX3JaDqN_A2owcORc,611
158
145
  samplehc/types/v2/task_update_column_response.py,sha256=zeQliutLYrphABSmMf3zsCqZBKX9JpQB9XPTrA1BS6M,223
159
146
  samplehc/types/v2/task_update_screen_time_params.py,sha256=IBcV9FLFpCj0SbHsnrUR-DK9lQHLeHqf7mBZxu3aO0M,502
160
147
  samplehc/types/v2/task_update_screen_time_response.py,sha256=FzVYiZSNczXKIc5BCFwIOFRnVCzAFQQ8KfFGY1ukeTU,277
@@ -163,44 +150,35 @@ samplehc/types/v2/workflow_query_params.py,sha256=pyvMYe10bS0yxF6f4fsivlL-yddry-
163
150
  samplehc/types/v2/workflow_query_response.py,sha256=Zb6BMUTQk6QwOgJzBV4WaQIngv-tJWJCaJ-2ptD9FJA,254
164
151
  samplehc/types/v2/workflow_run_get_start_data_response.py,sha256=LZbAYXmtHZ5dA40NGOZq_td2ekHnIhFgGTJYtAvJf6k,447
165
152
  samplehc/types/v2/workflow_run_resume_when_complete_params.py,sha256=2EhKTL1vPZnnAF6t6s4iTen5EzGzc25D0VFQwdlFE9A,510
166
- samplehc/types/v2/workflow_run_resume_when_complete_response.py,sha256=-VG90P9eZuXI6KVPzNL6WS0AZj0yRzezYbSJhk6f7Zc,325
167
- samplehc/types/v2/workflow_run_retrieve_response.py,sha256=TMODOQGlZ8h76i7xDVq6Q_Do1cbyeuZ2PMlKUMMo7CE,407
153
+ samplehc/types/v2/workflow_run_resume_when_complete_response.py,sha256=JkBz04MX9Ka6FE1IHVhyE39W48-bprNbmcBg0elS3us,404
154
+ samplehc/types/v2/workflow_run_retrieve_response.py,sha256=VLirZeVrC3MVH5L7xiGSmogC4MkVtzdENO7FKQCfUo0,463
168
155
  samplehc/types/v2/workflow_start_params.py,sha256=ng_LufXszNHLvDzGflKU4aDMKAtdCw1yqrEoXrWxWzg,477
169
- samplehc/types/v2/workflow_start_response.py,sha256=RF8irtsIvRiF6ZuDs0ApgGWnvLSip83n7FGyFboUClQ,669
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
173
- samplehc/types/v2/browser_agents/runs/__init__.py,sha256=wZbYvlop8807cU8yil_oo_d3geBtPwJvKdCPrHIsABI,317
174
- samplehc/types/v2/browser_agents/runs/help_request_resolve_params.py,sha256=naPrcn1OvvaLQZANW3SchskmRSPkrqy-yR0SGmW4qHY,518
175
- samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py,sha256=rj29f6cenKn-UvX-Ns4YZ6YvAjXGZKQgSaK1PaflJNw,650
176
- samplehc/types/v2/browser_automation/__init__.py,sha256=CCz_Y-fN-C5G-ZvnLdkoE5gN5De8-_LaVjo3nAAw2w4,329
177
- samplehc/types/v2/browser_automation/availity_submit_appeal_params.py,sha256=xPpXHjO-5JG4_a5e1RVb9mJQzTt_J_WvypW0nzNq76A,1985
178
- samplehc/types/v2/browser_automation/availity_submit_appeal_response.py,sha256=rUKHMayj-Edo78E4hbZMXgXl8u7AxFTvVy0Dbyrc6sY,384
156
+ samplehc/types/v2/workflow_start_response.py,sha256=FZsu6XeR-P1tCucJUdqU3zW9N8Y9swm0Y0AN6x9XQs4,713
179
157
  samplehc/types/v2/clearinghouse/__init__.py,sha256=wyZ7XAXj5ug8Vnca6DaozMKvxb2bP1fXEJq0mM_4SfM,495
180
158
  samplehc/types/v2/clearinghouse/claim_submit_params.py,sha256=nxrn2qluwkI044Tm7Fg7_MRC99zYL_-Wj1Pa5MXUEWs,92742
181
- samplehc/types/v2/clearinghouse/claim_submit_response.py,sha256=slh7pXvvTUerZLvvSZwbzZMM_kV2GCkMZ16MSb6D2D8,585
182
- samplehc/types/v2/clearinghouse/payer_list_response.py,sha256=WjyYm7gAQXAuMjI4fGD08rqoDsSgdupXXxQW5-9L33I,529
159
+ samplehc/types/v2/clearinghouse/claim_submit_response.py,sha256=UOWalDEMo6BSvvNkhFEHZWMp7uSVkKLR5weOf2d2iiw,692
160
+ samplehc/types/v2/clearinghouse/payer_list_response.py,sha256=EGA4-TySHAzJFWg5-0HTOth3Jy-uPW8E3tUkM5uOG4A,583
183
161
  samplehc/types/v2/clearinghouse/payer_search_params.py,sha256=BGRRuYx7doSxrjnxkF4bvgG_9s1SwBvz4H7gi1O0XPY,346
184
- samplehc/types/v2/clearinghouse/payer_search_response.py,sha256=NrJiXkx_4Cs_ZeD_yINUZrEoY8pgM6OZSnYrkLGOL-4,618
162
+ samplehc/types/v2/clearinghouse/payer_search_response.py,sha256=r6rLznjQZ2sbDeiVfWvDyLShQpCgiZzEi4zWVOguYhY,672
185
163
  samplehc/types/v2/documents/__init__.py,sha256=MMvJNk3KTwvt06oNOpWyZN1VSnm6F4snmOp15XduniY,1402
186
164
  samplehc/types/v2/documents/format_create_pdf_params.py,sha256=OgteE7CfhVP-CAw5RGZlSoXz50rdfxohA-9fJA_9t0Q,458
187
- samplehc/types/v2/documents/format_create_pdf_response.py,sha256=S7Bds-J2bb_e9VkripnKiT7Mx4cwcH5yx8BIrUfCng8,307
165
+ samplehc/types/v2/documents/format_create_pdf_response.py,sha256=XBhC9fjEEbWeDnioXh43z_ySNJKEIycxipucZLDCoPY,362
188
166
  samplehc/types/v2/documents/legacy_extract_params.py,sha256=OcutLFkSUgJ_4ZezMMZEtCmhsU-GXRzluIrceaKmDMQ,3228
189
- samplehc/types/v2/documents/legacy_extract_response.py,sha256=vxqLiGHV0IZENYPN9ZOZHyLIn-jlY20siNQMjE38vvQ,368
167
+ samplehc/types/v2/documents/legacy_extract_response.py,sha256=2TVEWbb1LvUAUfQOS79oum1WY44Stf9IkvMAafQj7ZE,426
190
168
  samplehc/types/v2/documents/legacy_reason_params.py,sha256=vfBpWWWNqTQ0u6QCL2moqHwnIrT-IrENYkFQb1-KjJg,1971
191
- samplehc/types/v2/documents/legacy_reason_response.py,sha256=dDlUslDaiplZcX8wVDGzwhw6B7osR1OlgpGpCrhLP8Y,358
192
- samplehc/types/v2/documents/legacy_split_params.py,sha256=TFAqt4Q1-9_Ot3NGlkzTbzi3a-1qvL0dWuY1IMgaep4,523
193
- samplehc/types/v2/documents/legacy_split_response.py,sha256=IoS8nFdD-kArmMy9CDNA2WWJnWKCIMXTQPyQo86hmXI,356
194
- samplehc/types/v2/documents/pdf_template_retrieve_metadata_response.py,sha256=2hPkTqZOaNddFHuDwPAsvY-PJCc4SRzi411bSogiHvM,389
169
+ samplehc/types/v2/documents/legacy_reason_response.py,sha256=zZMpY7Pu3fXqMqCrLcM4DP8e3dNOIu78bfdaES2e4zA,415
170
+ samplehc/types/v2/documents/legacy_split_params.py,sha256=ohQXKaEZCoApDxVhtgxD-oZLJ1MG7qkWqrv82BC-Bi0,560
171
+ samplehc/types/v2/documents/legacy_split_response.py,sha256=ZxoveeffOYJEBen04VPB19sDtjzWJaWpyh-JjGsmRqM,415
172
+ samplehc/types/v2/documents/pdf_template_retrieve_metadata_response.py,sha256=EUOOfCQ4Kj56aQ_QOTaJc_q_EmWHk3PSxBNWiZP-Wmo,455
195
173
  samplehc/types/v2/documents/template_generate_document_async_params.py,sha256=5ajpeJbd9F8QYjb7Ac_qtj1YtUtK4vJHzO_6VEoRJFk,1273
196
174
  samplehc/types/v2/documents/template_generate_document_async_response.py,sha256=xFivOxAB8jahS6vKcr-3TGR4IhF0INDH37nivTVoHSk,402
197
175
  samplehc/types/v2/documents/template_render_document_params.py,sha256=egYW79gF_UNjE8wTmiwtbgOozqVDa6i8Db0yjwt5IXE,905
198
- samplehc/types/v2/documents/template_render_document_response.py,sha256=sUZYTl_AX3PN9H4B4Xs50tO6eFsj1rXOQuYLZgyt2Fc,319
176
+ samplehc/types/v2/documents/template_render_document_response.py,sha256=yN2JLDHszpaA9RZq8INdJIue_JkrLON3xqWMh-z3MCc,367
199
177
  samplehc/types/v2/hie/__init__.py,sha256=xRIS1W4FJDJeqAukGxx2ZWzJBpWx_95Ckx5zl2UEunM,441
200
178
  samplehc/types/v2/hie/adt_subscribe_params.py,sha256=XNvVgMWAnKEO_So8m7iEHgc3YQl9e7EM0CzzJXfiN3s,2975
201
179
  samplehc/types/v2/hie/document_query_params.py,sha256=vdpaitjffO4TjsSJRiFM1k0haCKJhsNMBsAjXugBb4Q,2977
202
180
  samplehc/types/v2/hie/document_query_response.py,sha256=scLiQ-nSkRW8vbAg-QiPgkQRLnBIfmjLKqauoNs0cZQ,442
203
- samplehc/types/v2/hie/document_upload_params.py,sha256=y7Bu6fD5YyZDCGpxN2z5wBmJuENlPSfl_mmSUqN7V9k,1836
181
+ samplehc/types/v2/hie/document_upload_params.py,sha256=K2uUhTEvxS-ZtqkqSU8nc8iGiZyliN53AnOc9wTnX6U,1884
204
182
  samplehc/types/v2/integrations/__init__.py,sha256=jiv9jsVE-mvGzwyJ2etym3eq85ppJDh7wryoQHHr3cA,1525
205
183
  samplehc/types/v2/integrations/careviso_get_payers_response.py,sha256=Et-uLf2afZfEmu38r5xkzhQA2UolbFH5z5gpIV2v33g,543
206
184
  samplehc/types/v2/integrations/careviso_submit_prior_authorization_params.py,sha256=Kb1VOG1BtL_3b5uBvdY8cVmicO8v3l9a3J09UPCsfrU,3460
@@ -220,35 +198,29 @@ samplehc/types/v2/integrations/bank/transaction_sync_params.py,sha256=7bNeRpP9-F
220
198
  samplehc/types/v2/integrations/bank/transaction_sync_response.py,sha256=2J1PQQIIz1P-CbUvHEqXrTeMjfe1nkhzSO1qgwiInW4,724
221
199
  samplehc/types/v2/integrations/glidian/__init__.py,sha256=UXTRN6T6Ro7X9sv8wlSbrJHHbniBMgQ95gVgb1kI-7E,959
222
200
  samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_params.py,sha256=-YFFi4kOTVksguf-lyXnhj8NG36kUzj6F5dMZe8yO28,1054
223
- samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_response.py,sha256=A2B0OeFKxtu1n3lMJ2v8eY_wwF_Vh7CAMe2lVdDX0FQ,638
224
- samplehc/types/v2/integrations/glidian/prior_authorization_retrieve_record_response.py,sha256=GcQlxLRu06iVgs-xDMEz8ttF-sdtqv2aDU7hwxbPgiI,294
225
- samplehc/types/v2/integrations/glidian/prior_authorization_submit_response.py,sha256=Cz-Mx_L_3JeQvD0O73-RyjxY59QZLQlEumeU8ouAoQY,360
201
+ samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_response.py,sha256=QXKE0UUJst2i-cKVzSNjAhLk0exfQ5mImt9QE3_OGj0,692
202
+ samplehc/types/v2/integrations/glidian/prior_authorization_retrieve_record_response.py,sha256=k0ZOymYc4T1yvGOPigNhVNMf_9UdESi3L_nq-1-z7cI,341
203
+ samplehc/types/v2/integrations/glidian/prior_authorization_submit_response.py,sha256=UXFyLHY80DOzR9GHYouHA_bSwQhENE-W8MbGBhbp9Vs,390
226
204
  samplehc/types/v2/integrations/glidian/prior_authorization_update_record_params.py,sha256=RLiky7fhGuYq73PJZ9TkTee4f2NUbo2eR7N8Dw7mwns,655
227
- samplehc/types/v2/integrations/glidian/prior_authorization_update_record_response.py,sha256=NpH6AhqeKxejCczFzNE6-FIT2b3uz_fKmHFcNUS7SlQ,370
205
+ samplehc/types/v2/integrations/glidian/prior_authorization_update_record_response.py,sha256=tlXjpwJbGaL38gEKgNiFCeMtkqdb1ak2Ec9JzIWW4N0,423
228
206
  samplehc/types/v2/integrations/glidian/prior_authorizations/__init__.py,sha256=L2Zdvs8EaBIctVF0V8LBDPzhZIRpLs3wBw_ozIqqQlk,447
229
- samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_list_response.py,sha256=lScFQQwPxgZLYEA7avKiYmyt9bhUkCD6kJ2OFi1P6aw,886
207
+ samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_list_response.py,sha256=kiYQWpt_pisToMs_pOqFrI4kBcjyQ-xqMRvut8ZQcwk,932
230
208
  samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_params.py,sha256=tomX3tStOg2bclhT6ZIfWf-sQskL6St0nGTmpBRZjoM,647
231
- samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_response.py,sha256=NCQBheHNdcz1fGQ9pP8xSlP4KpeZchrGvO3R0OWnZDw,450
209
+ samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_response.py,sha256=4CRfeUHJ_zkIMM31TYkge5YVnqAODv9DW1np6Xx9AXU,496
232
210
  samplehc/types/v2/integrations/kno2/__init__.py,sha256=-gOR4o0TRcDJlPLYQR7Xe0kb5WIOcFem52qiHIW6seA,319
233
- samplehc/types/v2/integrations/kno2/message_get_attachment_response.py,sha256=AZue-qHJSTSNeMpGLkFkdQeQGYKWrPoJ9TaJZmhcoiQ,318
234
- samplehc/types/v2/integrations/kno2/message_retrieve_response.py,sha256=fr41OON96HnoAyFIpRxh7Hb4pTCreYydkack6lZFPuM,271
211
+ samplehc/types/v2/integrations/kno2/message_get_attachment_response.py,sha256=92R7Hw1OMpTz_wJWOnQFsB_PTx_ZEaUZstj-3MWdf-Q,387
212
+ samplehc/types/v2/integrations/kno2/message_retrieve_response.py,sha256=tZ-l1Pljh4pUp2c85UggXxI-hl7O7Yqlz7KBfz0otXo,314
235
213
  samplehc/types/v2/integrations/wellsky/__init__.py,sha256=yMzbfqlrc8-Dbq1uhpHeZ0XgRCdyyAeo-Vf-gCBhIi8,270
236
214
  samplehc/types/v2/integrations/wellsky/patient_add_params.py,sha256=5pHaMWacMXHzybjSOxcDOnw8VRoQz51X0IrYxfe_lwc,367
237
215
  samplehc/types/v2/integrations/wellsky/patient_search_params.py,sha256=tFOPYSIsulg6NTYJqQscM2g5Zpt_eBPyJroBRTWxvLY,947
238
- samplehc/types/v2/ledger/__init__.py,sha256=UR89wcUHLaMEO1ZNDPNCGMK9ibhjF8oJ9eSV9RCw53s,591
239
- samplehc/types/v2/ledger/account_writeoff_params.py,sha256=hRmn--xzlslRj8HGctk8ZBeWknSX_87P77Qw-sybzE4,695
240
- samplehc/types/v2/ledger/account_writeoff_response.py,sha256=W-pBaGANRA0VqPme3uyfCxDGrIB_SvOvJW-rzi_w5bw,311
241
- samplehc/types/v2/ledger/entry_post_params.py,sha256=5AOS5cXp1gp6plyDyVJ5OMNk_57XqCP1LFUkGbAu7Vc,1976
242
- samplehc/types/v2/ledger/entry_post_response.py,sha256=mHtn35Ec6n-5PNhkkSgwM0xX-tGxx6KB1EYKwX-iY6c,264
243
- samplehc/types/v2/ledger/entry_reverse_params.py,sha256=pcFBLxZ_XiS6hXB8uphYw_H89j83fLW1XpZd40NCgw4,545
244
- samplehc/types/v2/ledger/entry_reverse_response.py,sha256=nJJLjDWSjhPICqxuCoP77v8qwiCVZeocrhoeH3fREWs,279
216
+ samplehc/types/v2/ledger/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
245
217
  samplehc/types/v2/tasks/__init__.py,sha256=iciLaYiYWPApWbgmJHjbUtC00sqrV6ziysyv0z4Pbl8,342
246
218
  samplehc/types/v2/tasks/state_get_response.py,sha256=_Eyz7nB-XpI_zkG45fTR2aC7AZIpNaxJHyYEOV_EN-w,232
247
219
  samplehc/types/v2/tasks/state_update_params.py,sha256=qSLE4Ic5PJlkvcFbTu-KlfH6qgYQCpIMqFoIspMPVNI,299
248
220
  samplehc/types/v2/tasks/state_update_response.py,sha256=ZLnR_rl9yasOnaxQvcM3fiaI_H16pDjBve1GUUleul4,214
249
221
  samplehc/types/v2/workflow_runs/__init__.py,sha256=Nmrudr30JDOaGyeMcc_dqaqqs_9kTdebHD7W0vHHfdE,208
250
- samplehc/types/v2/workflow_runs/step_get_output_response.py,sha256=XhRGcpEmxu4TBgpF8r63u5-ruEUDWuXr0ahv1CD9gis,333
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,,
222
+ samplehc/types/v2/workflow_runs/step_get_output_response.py,sha256=7uRQ1Jlt2LRZyAcn_bN2L9Ac2IkFbZAfpBuGaV6NiBk,385
223
+ samplehc-0.16.0.dist-info/METADATA,sha256=fl-VwzL-IW0c6JUSZRbfHCihENzNLDX69NRQ0lZzO_w,14360
224
+ samplehc-0.16.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
225
+ samplehc-0.16.0.dist-info/licenses/LICENSE,sha256=ll_q1imgsIlRXL5pk6VmrO0f_L0thzOlPI2cc7qcqc0,11347
226
+ samplehc-0.16.0.dist-info/RECORD,,
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2025 Sample Healthcare
189
+ Copyright 2026 Sample Healthcare
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
@@ -1,33 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from .runs import (
4
- RunsResource,
5
- AsyncRunsResource,
6
- RunsResourceWithRawResponse,
7
- AsyncRunsResourceWithRawResponse,
8
- RunsResourceWithStreamingResponse,
9
- AsyncRunsResourceWithStreamingResponse,
10
- )
11
- from .browser_agents import (
12
- BrowserAgentsResource,
13
- AsyncBrowserAgentsResource,
14
- BrowserAgentsResourceWithRawResponse,
15
- AsyncBrowserAgentsResourceWithRawResponse,
16
- BrowserAgentsResourceWithStreamingResponse,
17
- AsyncBrowserAgentsResourceWithStreamingResponse,
18
- )
19
-
20
- __all__ = [
21
- "RunsResource",
22
- "AsyncRunsResource",
23
- "RunsResourceWithRawResponse",
24
- "AsyncRunsResourceWithRawResponse",
25
- "RunsResourceWithStreamingResponse",
26
- "AsyncRunsResourceWithStreamingResponse",
27
- "BrowserAgentsResource",
28
- "AsyncBrowserAgentsResource",
29
- "BrowserAgentsResourceWithRawResponse",
30
- "AsyncBrowserAgentsResourceWithRawResponse",
31
- "BrowserAgentsResourceWithStreamingResponse",
32
- "AsyncBrowserAgentsResourceWithStreamingResponse",
33
- ]
@@ -1,209 +0,0 @@
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
-
7
- import httpx
8
-
9
- from ...._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
10
- from ...._utils import maybe_transform, async_maybe_transform
11
- from .runs.runs import (
12
- RunsResource,
13
- AsyncRunsResource,
14
- RunsResourceWithRawResponse,
15
- AsyncRunsResourceWithRawResponse,
16
- RunsResourceWithStreamingResponse,
17
- AsyncRunsResourceWithStreamingResponse,
18
- )
19
- from ...._compat import cached_property
20
- from ....types.v2 import browser_agent_invoke_params
21
- from ...._resource import SyncAPIResource, AsyncAPIResource
22
- from ...._response import (
23
- to_raw_response_wrapper,
24
- to_streamed_response_wrapper,
25
- async_to_raw_response_wrapper,
26
- async_to_streamed_response_wrapper,
27
- )
28
- from ...._base_client import make_request_options
29
- from ....types.v2.browser_agent_invoke_response import BrowserAgentInvokeResponse
30
-
31
- __all__ = ["BrowserAgentsResource", "AsyncBrowserAgentsResource"]
32
-
33
-
34
- class BrowserAgentsResource(SyncAPIResource):
35
- @cached_property
36
- def runs(self) -> RunsResource:
37
- return RunsResource(self._client)
38
-
39
- @cached_property
40
- def with_raw_response(self) -> BrowserAgentsResourceWithRawResponse:
41
- """
42
- This property can be used as a prefix for any HTTP method call to return
43
- the raw response object instead of the parsed content.
44
-
45
- For more information, see https://www.github.com/samplehc/samplehc-python#accessing-raw-response-data-eg-headers
46
- """
47
- return BrowserAgentsResourceWithRawResponse(self)
48
-
49
- @cached_property
50
- def with_streaming_response(self) -> BrowserAgentsResourceWithStreamingResponse:
51
- """
52
- An alternative to `.with_raw_response` that doesn't eagerly read the response body.
53
-
54
- For more information, see https://www.github.com/samplehc/samplehc-python#with_streaming_response
55
- """
56
- return BrowserAgentsResourceWithStreamingResponse(self)
57
-
58
- def invoke(
59
- self,
60
- slug: str,
61
- *,
62
- variables: Dict[str, object] | Omit = omit,
63
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
64
- # The extra values given here take precedence over values defined on the client or passed to this method.
65
- extra_headers: Headers | None = None,
66
- extra_query: Query | None = None,
67
- extra_body: Body | None = None,
68
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
69
- ) -> BrowserAgentInvokeResponse:
70
- """
71
- Start execution of a browser agent with optional variables.
72
-
73
- Args:
74
- variables: Variables to pass to the browser agent
75
-
76
- extra_headers: Send extra headers
77
-
78
- extra_query: Add additional query parameters to the request
79
-
80
- extra_body: Add additional JSON properties to the request
81
-
82
- timeout: Override the client-level default timeout for this request, in seconds
83
- """
84
- if not slug:
85
- raise ValueError(f"Expected a non-empty value for `slug` but received {slug!r}")
86
- return self._post(
87
- f"/api/v2/browser-agents/{slug}/invoke",
88
- body=maybe_transform({"variables": variables}, browser_agent_invoke_params.BrowserAgentInvokeParams),
89
- options=make_request_options(
90
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
91
- ),
92
- cast_to=BrowserAgentInvokeResponse,
93
- )
94
-
95
-
96
- class AsyncBrowserAgentsResource(AsyncAPIResource):
97
- @cached_property
98
- def runs(self) -> AsyncRunsResource:
99
- return AsyncRunsResource(self._client)
100
-
101
- @cached_property
102
- def with_raw_response(self) -> AsyncBrowserAgentsResourceWithRawResponse:
103
- """
104
- This property can be used as a prefix for any HTTP method call to return
105
- the raw response object instead of the parsed content.
106
-
107
- For more information, see https://www.github.com/samplehc/samplehc-python#accessing-raw-response-data-eg-headers
108
- """
109
- return AsyncBrowserAgentsResourceWithRawResponse(self)
110
-
111
- @cached_property
112
- def with_streaming_response(self) -> AsyncBrowserAgentsResourceWithStreamingResponse:
113
- """
114
- An alternative to `.with_raw_response` that doesn't eagerly read the response body.
115
-
116
- For more information, see https://www.github.com/samplehc/samplehc-python#with_streaming_response
117
- """
118
- return AsyncBrowserAgentsResourceWithStreamingResponse(self)
119
-
120
- async def invoke(
121
- self,
122
- slug: str,
123
- *,
124
- variables: Dict[str, object] | Omit = omit,
125
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
126
- # The extra values given here take precedence over values defined on the client or passed to this method.
127
- extra_headers: Headers | None = None,
128
- extra_query: Query | None = None,
129
- extra_body: Body | None = None,
130
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
131
- ) -> BrowserAgentInvokeResponse:
132
- """
133
- Start execution of a browser agent with optional variables.
134
-
135
- Args:
136
- variables: Variables to pass to the browser agent
137
-
138
- extra_headers: Send extra headers
139
-
140
- extra_query: Add additional query parameters to the request
141
-
142
- extra_body: Add additional JSON properties to the request
143
-
144
- timeout: Override the client-level default timeout for this request, in seconds
145
- """
146
- if not slug:
147
- raise ValueError(f"Expected a non-empty value for `slug` but received {slug!r}")
148
- return await self._post(
149
- f"/api/v2/browser-agents/{slug}/invoke",
150
- body=await async_maybe_transform(
151
- {"variables": variables}, browser_agent_invoke_params.BrowserAgentInvokeParams
152
- ),
153
- options=make_request_options(
154
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
155
- ),
156
- cast_to=BrowserAgentInvokeResponse,
157
- )
158
-
159
-
160
- class BrowserAgentsResourceWithRawResponse:
161
- def __init__(self, browser_agents: BrowserAgentsResource) -> None:
162
- self._browser_agents = browser_agents
163
-
164
- self.invoke = to_raw_response_wrapper(
165
- browser_agents.invoke,
166
- )
167
-
168
- @cached_property
169
- def runs(self) -> RunsResourceWithRawResponse:
170
- return RunsResourceWithRawResponse(self._browser_agents.runs)
171
-
172
-
173
- class AsyncBrowserAgentsResourceWithRawResponse:
174
- def __init__(self, browser_agents: AsyncBrowserAgentsResource) -> None:
175
- self._browser_agents = browser_agents
176
-
177
- self.invoke = async_to_raw_response_wrapper(
178
- browser_agents.invoke,
179
- )
180
-
181
- @cached_property
182
- def runs(self) -> AsyncRunsResourceWithRawResponse:
183
- return AsyncRunsResourceWithRawResponse(self._browser_agents.runs)
184
-
185
-
186
- class BrowserAgentsResourceWithStreamingResponse:
187
- def __init__(self, browser_agents: BrowserAgentsResource) -> None:
188
- self._browser_agents = browser_agents
189
-
190
- self.invoke = to_streamed_response_wrapper(
191
- browser_agents.invoke,
192
- )
193
-
194
- @cached_property
195
- def runs(self) -> RunsResourceWithStreamingResponse:
196
- return RunsResourceWithStreamingResponse(self._browser_agents.runs)
197
-
198
-
199
- class AsyncBrowserAgentsResourceWithStreamingResponse:
200
- def __init__(self, browser_agents: AsyncBrowserAgentsResource) -> None:
201
- self._browser_agents = browser_agents
202
-
203
- self.invoke = async_to_streamed_response_wrapper(
204
- browser_agents.invoke,
205
- )
206
-
207
- @cached_property
208
- def runs(self) -> AsyncRunsResourceWithStreamingResponse:
209
- return AsyncRunsResourceWithStreamingResponse(self._browser_agents.runs)