samplehc 0.11.0__py3-none-any.whl → 0.13.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 (68) hide show
  1. samplehc/__init__.py +3 -1
  2. samplehc/_base_client.py +9 -9
  3. samplehc/_client.py +8 -8
  4. samplehc/_models.py +10 -4
  5. samplehc/_qs.py +7 -7
  6. samplehc/_types.py +18 -11
  7. samplehc/_utils/_transform.py +2 -2
  8. samplehc/_utils/_utils.py +4 -4
  9. samplehc/_version.py +1 -1
  10. samplehc/resources/v1/v1.py +9 -9
  11. samplehc/resources/v2/async_results.py +13 -13
  12. samplehc/resources/v2/browser_agents/browser_agents.py +5 -5
  13. samplehc/resources/v2/browser_agents/runs/help_requests.py +3 -3
  14. samplehc/resources/v2/browser_agents/runs/runs.py +131 -0
  15. samplehc/resources/v2/browser_automation/availity.py +3 -3
  16. samplehc/resources/v2/clearinghouse/claim.py +29 -29
  17. samplehc/resources/v2/clearinghouse/clearinghouse.py +33 -33
  18. samplehc/resources/v2/clearinghouse/payers.py +5 -5
  19. samplehc/resources/v2/communication.py +29 -29
  20. samplehc/resources/v2/database.py +5 -5
  21. samplehc/resources/v2/documents/documents.py +152 -37
  22. samplehc/resources/v2/documents/formats.py +3 -3
  23. samplehc/resources/v2/documents/legacy.py +91 -6
  24. samplehc/resources/v2/documents/pdf_template.py +3 -3
  25. samplehc/resources/v2/documents/templates.py +27 -27
  26. samplehc/resources/v2/events.py +7 -7
  27. samplehc/resources/v2/hie/adt.py +7 -7
  28. samplehc/resources/v2/hie/documents.py +15 -15
  29. samplehc/resources/v2/integrations/bank/transactions.py +5 -5
  30. samplehc/resources/v2/integrations/careviso.py +29 -29
  31. samplehc/resources/v2/integrations/glidian/glidian.py +13 -13
  32. samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py +5 -5
  33. samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py +19 -19
  34. samplehc/resources/v2/integrations/kno2/messages.py +5 -5
  35. samplehc/resources/v2/integrations/salesforce.py +92 -8
  36. samplehc/resources/v2/integrations/snowflake.py +3 -3
  37. samplehc/resources/v2/integrations/xcures.py +7 -7
  38. samplehc/resources/v2/ledger/account.py +10 -11
  39. samplehc/resources/v2/ledger/entry.py +21 -22
  40. samplehc/resources/v2/policies.py +47 -47
  41. samplehc/resources/v2/tasks/state.py +7 -7
  42. samplehc/resources/v2/tasks/tasks.py +125 -16
  43. samplehc/resources/v2/workflow_runs/step.py +3 -3
  44. samplehc/resources/v2/workflow_runs/workflow_runs.py +11 -11
  45. samplehc/resources/v2/workflows.py +13 -13
  46. samplehc/types/v2/__init__.py +3 -0
  47. samplehc/types/v2/browser_agents/__init__.py +3 -0
  48. samplehc/types/v2/browser_agents/run_list_events_params.py +15 -0
  49. samplehc/types/v2/browser_agents/run_list_events_response.py +30 -0
  50. samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py +0 -2
  51. samplehc/types/v2/document_extract_params.py +4 -1
  52. samplehc/types/v2/document_split_params.py +16 -1
  53. samplehc/types/v2/document_unzip_async_response.py +12 -0
  54. samplehc/types/v2/documents/__init__.py +2 -0
  55. samplehc/types/v2/documents/legacy_split_params.py +20 -0
  56. samplehc/types/v2/documents/legacy_split_response.py +12 -0
  57. samplehc/types/v2/documents/template_render_document_params.py +17 -5
  58. samplehc/types/v2/integrations/__init__.py +1 -0
  59. samplehc/types/v2/integrations/salesforce_run_soql_query_params.py +11 -0
  60. samplehc/types/v2/ledger/account_writeoff_params.py +2 -3
  61. samplehc/types/v2/ledger/entry_post_params.py +1 -2
  62. samplehc/types/v2/ledger/entry_reverse_params.py +2 -3
  63. samplehc/types/v2/task_update_column_params.py +16 -0
  64. samplehc/types/v2/task_update_column_response.py +9 -0
  65. {samplehc-0.11.0.dist-info → samplehc-0.13.0.dist-info}/METADATA +1 -1
  66. {samplehc-0.11.0.dist-info → samplehc-0.13.0.dist-info}/RECORD +68 -60
  67. {samplehc-0.11.0.dist-info → samplehc-0.13.0.dist-info}/WHEEL +0 -0
  68. {samplehc-0.11.0.dist-info → samplehc-0.13.0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,20 @@
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 Required, Annotated, TypedDict
6
+
7
+ from ...._utils import PropertyInfo
8
+
9
+ __all__ = ["LegacySplitParams", "Document"]
10
+
11
+
12
+ class LegacySplitParams(TypedDict, total=False):
13
+ document: Required[Document]
14
+ """The document to be split."""
15
+
16
+
17
+ class Document(TypedDict, total=False):
18
+ id: Required[str]
19
+
20
+ file_name: Required[Annotated[str, PropertyInfo(alias="fileName")]]
@@ -0,0 +1,12 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from pydantic import Field as FieldInfo
4
+
5
+ from ...._models import BaseModel
6
+
7
+ __all__ = ["LegacySplitResponse"]
8
+
9
+
10
+ class LegacySplitResponse(BaseModel):
11
+ async_result_id: str = FieldInfo(alias="asyncResultId")
12
+ """The ID to track the asynchronous splitting task."""
@@ -3,17 +3,29 @@
3
3
  from __future__ import annotations
4
4
 
5
5
  from typing import Dict, Union, Iterable
6
- from typing_extensions import Required, TypedDict
6
+ from typing_extensions import Literal, Required, TypeAlias, TypedDict
7
7
 
8
- __all__ = ["TemplateRenderDocumentParams"]
8
+ __all__ = ["TemplateRenderDocumentParams", "Variables", "VariablesUnionMember0"]
9
9
 
10
10
 
11
11
  class TemplateRenderDocumentParams(TypedDict, total=False):
12
12
  slug: Required[str]
13
13
  """The slug of the template to use."""
14
14
 
15
- variables: Required[Dict[str, Union[Iterable[Dict[str, str]], str]]]
16
- """The variables to use in the template.
15
+ variables: Required[Dict[str, Variables]]
16
+ """Variables for the template.
17
17
 
18
- Can be strings or arrays of objects for table data.
18
+ Accepts strings, arrays of objects for tables, or nested templates via
19
+ `{ type: 'template', slug, variables }`.
19
20
  """
21
+
22
+
23
+ class VariablesUnionMember0(TypedDict, total=False):
24
+ slug: Required[str]
25
+
26
+ type: Required[Literal["template"]]
27
+
28
+ variables: Required[Dict[str, object]]
29
+
30
+
31
+ Variables: TypeAlias = Union[VariablesUnionMember0, Iterable[Dict[str, str]], str]
@@ -10,6 +10,7 @@ from .careviso_get_payers_response import CarevisoGetPayersResponse as CarevisoG
10
10
  from .glidian_list_payers_response import GlidianListPayersResponse as GlidianListPayersResponse
11
11
  from .glidian_list_services_params import GlidianListServicesParams as GlidianListServicesParams
12
12
  from .glidian_list_services_response import GlidianListServicesResponse as GlidianListServicesResponse
13
+ from .salesforce_run_soql_query_params import SalesforceRunSoqlQueryParams as SalesforceRunSoqlQueryParams
13
14
  from .salesforce_run_crud_action_params import SalesforceRunCrudActionParams as SalesforceRunCrudActionParams
14
15
  from .careviso_submit_prior_authorization_params import (
15
16
  CarevisoSubmitPriorAuthorizationParams as CarevisoSubmitPriorAuthorizationParams,
@@ -0,0 +1,11 @@
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 Required, TypedDict
6
+
7
+ __all__ = ["SalesforceRunSoqlQueryParams"]
8
+
9
+
10
+ class SalesforceRunSoqlQueryParams(TypedDict, total=False):
11
+ query: Required[str]
@@ -2,8 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Dict, Union
6
- from datetime import datetime
5
+ from typing import Dict
7
6
  from typing_extensions import Required, Annotated, TypedDict
8
7
 
9
8
  from ...._utils import PropertyInfo
@@ -20,5 +19,5 @@ class AccountWriteoffParams(TypedDict, total=False):
20
19
  metadata: Dict[str, object]
21
20
  """Any optional metadata to associate with the write-off."""
22
21
 
23
- posted_at: Annotated[Union[str, datetime], PropertyInfo(alias="postedAt", format="iso8601")]
22
+ posted_at: Annotated[str, PropertyInfo(alias="postedAt")]
24
23
  """The date and time to post the write-off."""
@@ -3,7 +3,6 @@
3
3
  from __future__ import annotations
4
4
 
5
5
  from typing import Dict, Union
6
- from datetime import datetime
7
6
  from typing_extensions import Literal, Required, Annotated, TypedDict
8
7
 
9
8
  from ...._utils import PropertyInfo
@@ -55,7 +54,7 @@ class EntryPostParams(TypedDict, total=False):
55
54
  payment_source: Annotated[str, PropertyInfo(alias="paymentSource")]
56
55
  """The source of the payment, e.g. payer ID, patient ID, etc."""
57
56
 
58
- posted_at: Annotated[Union[str, datetime], PropertyInfo(alias="postedAt", format="iso8601")]
57
+ posted_at: Annotated[str, PropertyInfo(alias="postedAt")]
59
58
  """The date and time the ledger entry was posted."""
60
59
 
61
60
  idempotency_key: Annotated[str, PropertyInfo(alias="idempotency-key")]
@@ -2,8 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Dict, Union
6
- from datetime import datetime
5
+ from typing import Dict
7
6
  from typing_extensions import Annotated, TypedDict
8
7
 
9
8
  from ...._utils import PropertyInfo
@@ -15,5 +14,5 @@ class EntryReverseParams(TypedDict, total=False):
15
14
  metadata: Dict[str, object]
16
15
  """Any optional metadata to associate with the reversal entry."""
17
16
 
18
- posted_at: Annotated[Union[str, datetime], PropertyInfo(alias="postedAt", format="iso8601")]
17
+ posted_at: Annotated[str, PropertyInfo(alias="postedAt")]
19
18
  """The date and time the reversal entry was posted."""
@@ -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."""
@@ -0,0 +1,9 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from ..._models import BaseModel
4
+
5
+ __all__ = ["TaskUpdateColumnResponse"]
6
+
7
+
8
+ class TaskUpdateColumnResponse(BaseModel):
9
+ success: bool
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: samplehc
3
- Version: 0.11.0
3
+ Version: 0.13.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
@@ -1,17 +1,17 @@
1
- samplehc/__init__.py,sha256=uMVtbSmmDZP3MVFLGkDqFMy2AhSfD9MdZNjCxFj5p-w,2685
2
- samplehc/_base_client.py,sha256=RKmeSnnxwg_W56zEzQ1JyCht9DExd7sxuz4HKqiqQ2w,67049
3
- samplehc/_client.py,sha256=1mpC5wb8f_3zvIszB2NOBBymehmKTeL9a_AsTxd-JVU,16068
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
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=c29x_mRccdxlGwdUPfSR5eJxGXe74Ea5Dje5igZTrKQ,30024
9
- samplehc/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
8
+ samplehc/_models.py,sha256=lKnskYPONAWDvWo8tmbbVk7HmG7UOsI0Nve0vSMmkRc,30452
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
12
  samplehc/_streaming.py,sha256=yAEL3kUU3BoKZpDC6T6Psl11nDAMMAjSyWvWnk3R8vU,10140
13
- samplehc/_types.py,sha256=x5l_qMAFStPsmUkwKxtPBp-QZFNC7-sMZgwJRV8gfCk,7298
14
- samplehc/_version.py,sha256=fQBJsfJwq8Xm9B7PGZTCwrywQb-Okgc-Q4BWUnI36_w,161
13
+ samplehc/_types.py,sha256=Gx3CUAUSTuUToKvgv-KsFoQ25mp6N1qHbODB21j8I8c,7238
14
+ samplehc/_version.py,sha256=Ndowe8w0P8o2TF_NLb06QTQ4jiKAxUAMNzt2PaE0C1E,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
@@ -22,77 +22,77 @@ samplehc/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEM
22
22
  samplehc/_utils/_resources_proxy.py,sha256=NejY5ZPSVISf1S6P7a-AHToRY85AllNZg7ukouCdCjU,599
23
23
  samplehc/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
24
24
  samplehc/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
25
- samplehc/_utils/_transform.py,sha256=i_U4R82RtQJtKKCriwFqmfcWjtwmmsiiF1AEXKQ_OPo,15957
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=D2QE7mVPNEJzaB50u8rvDQAUDS5jx7JoeFD7zdj-TeI,12231
27
+ samplehc/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
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
- samplehc/resources/v1/v1.py,sha256=bpscm6eq4Hxh1-E0smKslGAiLYRZvf_XHkcPX-YqZAg,10989
31
+ samplehc/resources/v1/v1.py,sha256=G1SUS5rZhcE01slcOd5-ZeSn2cERwvmcfJzb0rywAdA,10965
32
32
  samplehc/resources/v2/__init__.py,sha256=wPyLMRjFN73m3XD6y_0NWm0lyMg--2AeFlbevQDXeW4,7982
33
- samplehc/resources/v2/async_results.py,sha256=ZGJZKd0kmAzhhXuIT16X0f87-UvUPp7TOvj6Sd43xkY,13648
34
- samplehc/resources/v2/communication.py,sha256=tdRHQWa3ClbQneGFP2iHQ4jeFAguiSxFCWu_SI_ELqU,21240
35
- samplehc/resources/v2/database.py,sha256=ZsVOtU-a9c4RmUp1D_4LCrHR0VEowlnUL1tOjzL18rA,7956
36
- samplehc/resources/v2/events.py,sha256=zqLt8y2p-H1pXREevjxF5rUVBtP95cZeygUK9RLvoGE,6682
37
- samplehc/resources/v2/policies.py,sha256=tejnAQ3K27_FBbLfDEufX7Z0ZIYx12F8AG_UrEpqJsY,25211
33
+ samplehc/resources/v2/async_results.py,sha256=UBGM6qCcWuivX169CkJ9hvwZymz4-fQbHPSnzQOXhZc,13624
34
+ samplehc/resources/v2/communication.py,sha256=m6rytLcGlDtFkajfi-P5WQkaCyYbaMlBI2UrBLJ9xqI,21054
35
+ samplehc/resources/v2/database.py,sha256=lFLepM70TzkRBaejyfU5GmE3PfgIaBi_liRTpJs2lzM,7950
36
+ samplehc/resources/v2/events.py,sha256=Kdx2fSNGr21YA7fAHvs9huMGDRra8bsvnxiO1B1ZlSE,6658
37
+ samplehc/resources/v2/policies.py,sha256=V9631MIrlZ99oqT8v_V8Qj9a76rG317bklyoV-vNNAY,24899
38
38
  samplehc/resources/v2/v2.py,sha256=3ZGHP9vK81L2YYWh2sGhlIQv2y8F_nmXZNNmumsfRSo,19967
39
- samplehc/resources/v2/workflows.py,sha256=oZ0_vqeHvs02mos0DUPg63LDTMo_i_azz6rLodCTKQ8,14266
39
+ samplehc/resources/v2/workflows.py,sha256=tORLHVCYwhwFcRLlXHBxcgZ9EYjinwXcFHjX04pCKUs,14242
40
40
  samplehc/resources/v2/browser_agents/__init__.py,sha256=Byeyzaw5o_dcSvkefEoViV9xXKlNVKDzcr5QV8ODgl0,1068
41
- samplehc/resources/v2/browser_agents/browser_agents.py,sha256=oyw9M7QWn9EXXB4ffef2E8hV6J7InGj7P2dOmo9_9is,7925
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
- samplehc/resources/v2/browser_agents/runs/help_requests.py,sha256=be1-IOJPzttyjF9T_NTcb5eRCeO3EAHNzIkzgaE9nVg,7788
44
- samplehc/resources/v2/browser_agents/runs/runs.py,sha256=zqYLPJ4gZW5P00jtQzcNuxowkMRVVJaJQTc8OxQpct8,3716
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
45
  samplehc/resources/v2/browser_automation/__init__.py,sha256=a7mi3Gg12Vk6CCsm3Q50nsrwLzXK_sVk_iV6ORlqqJY,1172
46
- samplehc/resources/v2/browser_automation/availity.py,sha256=3ApIlx_si_I4Kqe4NQ68gZ-z68BCpvj858L73BMEbiA,9545
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
48
48
  samplehc/resources/v2/clearinghouse/__init__.py,sha256=q2mqlV5eEa0qmHkoQUSDMsZ5zxunWN5Eo6boQaNs49Q,1530
49
- samplehc/resources/v2/clearinghouse/claim.py,sha256=wH5GIkGOHgKIO9rj7L7g3uskN6V0wlhO3XK_qiIqC9w,16522
50
- samplehc/resources/v2/clearinghouse/clearinghouse.py,sha256=GTXfTyVaReK9kqR7Y7MPJWO3PnG8Z4TLxDWgsZhZG6E,34930
51
- samplehc/resources/v2/clearinghouse/payers.py,sha256=ftIYehQXSKST7JZ-3NWt-W1-Lzzp4izu3LztP3AbWZw,8400
49
+ samplehc/resources/v2/clearinghouse/claim.py,sha256=ZgDjj4x9EWiNfFikACEBj6B-rFjtZ5-0oFN_EuDgemo,16336
50
+ samplehc/resources/v2/clearinghouse/clearinghouse.py,sha256=fME7jXnVG1JH5CmN149eNbefBm0kNxp1TI23kEq914s,34744
51
+ samplehc/resources/v2/clearinghouse/payers.py,sha256=D5NmoxTV-dS97yj8tXqdFXtPxB82lqIungIrqgW_GV4,8400
52
52
  samplehc/resources/v2/documents/__init__.py,sha256=9Hje-AZc-uRh1mgxCDKcRtLRxIdSOB3P7QJVGKCGAc0,2509
53
- samplehc/resources/v2/documents/documents.py,sha256=xZB-Anps-EHq1zHyCLkJno_N7Q6FPAOyM1-IxYv9aug,59454
54
- samplehc/resources/v2/documents/formats.py,sha256=41o04NRVECHsCSQhATpKh9BPn-vlpzHpUDpsRMQvX2k,6993
55
- samplehc/resources/v2/documents/legacy.py,sha256=_3CYS1az2cp3BxOmPOgMAlqGH76_McAojwoUqnuEG4w,10793
56
- samplehc/resources/v2/documents/pdf_template.py,sha256=z7BPMYIK0xSnhehV5vWla8bn5ehPF98MLyoSbwmVGco,6442
57
- samplehc/resources/v2/documents/templates.py,sha256=YBh5E3JcpQ1X_iCTFfrFcOltlUZvSCUr7KTH8jJQ-xc,17101
53
+ samplehc/resources/v2/documents/documents.py,sha256=bzSkEJ72kgATM3XBi_l7b5wrpKvgRo1ZvEZD09BAqek,64206
54
+ samplehc/resources/v2/documents/formats.py,sha256=lB60NUBPBceC1XUbL04lsGIsyVWlqsOE8kQkw5oKIM0,6993
55
+ samplehc/resources/v2/documents/legacy.py,sha256=CbDfHJK_U-sDW1rIp8Hj7pTKKHscwmdijSx4mWALQk8,14095
56
+ samplehc/resources/v2/documents/pdf_template.py,sha256=1LY-drtfB9_GmyHoVEpEnOz-03E-JjjIHREhACQxOis,6442
57
+ samplehc/resources/v2/documents/templates.py,sha256=P6gbC8JxEKXN05yCO2NUXGv-ooLBkwQvDpOy4KccprY,17115
58
58
  samplehc/resources/v2/hie/__init__.py,sha256=kEs1If5SVR3Inp__6822fiPvynz8MwRIJdYzzwuK0m0,1413
59
- samplehc/resources/v2/hie/adt.py,sha256=Es3OBX4klkHJRCbqpTz_JjVK5fLB0qFFc7HsBF_Yq1g,9562
60
- samplehc/resources/v2/hie/documents.py,sha256=uDF0pVXLku8qJXy4gcju_EemlxXtN7Rhpyfz74xXWyc,15396
59
+ samplehc/resources/v2/hie/adt.py,sha256=wTasDk8rjNpfHO0k8lrGjymchtVhskwlzzd2XC5ruXQ,9538
60
+ samplehc/resources/v2/hie/documents.py,sha256=J3-4S4BBD7vPAo3aCThta8UeX0hyxVjizk2md26EjKs,15318
61
61
  samplehc/resources/v2/hie/hie.py,sha256=bdTM7CeHELmGULZRkOHnnfg-MoKadTnbaY9hDBtNMv4,4550
62
62
  samplehc/resources/v2/integrations/__init__.py,sha256=YiQg_OIh2fgxRU5bC-_KZW8Q4gfxekvwAzve_37ATeU,3858
63
- samplehc/resources/v2/integrations/careviso.py,sha256=LpTtbnujME-hnS5ETghVLyhYWhlib26JPEwu7Wv3Jfs,15668
63
+ samplehc/resources/v2/integrations/careviso.py,sha256=hrq_Qfw9hXvtXwJ2JayofjACBJhqDHwSU5aCQUy4G1o,15464
64
64
  samplehc/resources/v2/integrations/integrations.py,sha256=ee8BjFmeEzZVo7HjEkY-PV2vjVVsltkrLIn9m2wCpOE,10567
65
- samplehc/resources/v2/integrations/salesforce.py,sha256=jt_Kcepm_tVddOybjVSy969PzziSIe_VF005IF9z4-s,7504
66
- samplehc/resources/v2/integrations/snowflake.py,sha256=HrF1frsQyTGuVONerljq2jw-XVpEG4AV5yoA9aUgSxA,6506
67
- samplehc/resources/v2/integrations/xcures.py,sha256=boiygxSRsT5NlrgKz8mRJyZBltVB36Ij0f55lo8jeDU,7284
65
+ samplehc/resources/v2/integrations/salesforce.py,sha256=2QcY6sHc12juXX3IDNt_isQk_Vca2bB1QC4ZWA5Ku6c,10914
66
+ samplehc/resources/v2/integrations/snowflake.py,sha256=xOF5bevD1ViDcL6qaoKMeNBtjVpZyeckzRO7dPmLdrs,6506
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
69
69
  samplehc/resources/v2/integrations/bank/bank.py,sha256=CzU6LImPm0IYPVWB5B5jswV8VAhY9IdUeW8CPADZUcE,3705
70
- samplehc/resources/v2/integrations/bank/transactions.py,sha256=879RZUBc6py2lwlEitHiYu6WSrw24KF1WFgWArgP6YM,6755
70
+ samplehc/resources/v2/integrations/bank/transactions.py,sha256=U3IuOukqxU6Qqa4icXkbHjd754rkDUcgYNGur4v6qCU,6749
71
71
  samplehc/resources/v2/integrations/glidian/__init__.py,sha256=VRQ1Av6RQJGAHsmBkbkHHFGjvLVW5c5so-goto7s0oM,1185
72
- samplehc/resources/v2/integrations/glidian/glidian.py,sha256=OjRp2hDKskx4eIGKJ8CUxMZ4TdB261ztBTFnt2ztPSI,17100
72
+ samplehc/resources/v2/integrations/glidian/glidian.py,sha256=uJP9taYMyHvBs235YhQlfxkWgkuhAMNXfXyqr5NfKw0,17058
73
73
  samplehc/resources/v2/integrations/glidian/prior_authorizations/__init__.py,sha256=QoVUoYjFui3RXCXxm6fEvLtWPdOfCGl3X7QY2JZcvCU,1316
74
- samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py,sha256=q4VN5kK-RTKG_EeJdMmYu5Ek84sNnVRbmxFV4CqnkgU,11301
75
- samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py,sha256=gbtyXC4bqwIZWttp_DLuccxFjnPZJ3RTNsZYGtb3aLA,22484
74
+ samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py,sha256=A4199BxkPgDm0B4kjB7gJiYlxHYnOs5rUIe2YJEytSA,11301
75
+ samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py,sha256=lSoAN9upmzUzVM_RKtHQhVUjEbibNgz3HoHWuNcas54,22406
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
- samplehc/resources/v2/integrations/kno2/messages.py,sha256=BNiQTcX78SP8zC96QTwP-8IvhVBxQvFUUsjdE8xalaI,10347
78
+ samplehc/resources/v2/integrations/kno2/messages.py,sha256=BlIUV_1ae2lNtjI6wJigXk7iOTAs2G8vhQJ00qO1dF8,10347
79
79
  samplehc/resources/v2/ledger/__init__.py,sha256=wJp8z_TSgl7zuOvOvFxpwUBMAaVp4mRI2NVkbKGKiL0,1452
80
- samplehc/resources/v2/ledger/account.py,sha256=wVjIwLYdi-vKAVxdfnkqyeAbQruDp3MSlCbCjaP0nf4,11547
81
- samplehc/resources/v2/ledger/entry.py,sha256=5wpcvlQAkU7yv9PgGtaO2C3GneP8mdE0p6_bPc0_RAs,14212
80
+ samplehc/resources/v2/ledger/account.py,sha256=Fc3A7czMWCVa1jPZXiZ2EQjtmMjVqEOz4jwAihS9N_I,11452
81
+ samplehc/resources/v2/ledger/entry.py,sha256=m0IuJr2Objsnm5int5Z7VGtJQkmVcFDzbK0yAqP1CUg,13982
82
82
  samplehc/resources/v2/ledger/ledger.py,sha256=Ayzzu9491xWtnQIFuXNbKDk19JYhHCxqT1msqHElxMI,4670
83
83
  samplehc/resources/v2/tasks/__init__.py,sha256=ez5eX-qrV79bmAy3vh-Yp2cWCpVIeDM36Zkn4lDChVg,976
84
- samplehc/resources/v2/tasks/state.py,sha256=bvbswMqA8yPgqi2wO1B1O_-GTM23bq-LD6wMl-d0WA0,9672
85
- samplehc/resources/v2/tasks/tasks.py,sha256=Tpup9pgRpObPQUAOFTdBiIVHK4Yy_BwV20Xxr0rFtgk,24921
84
+ samplehc/resources/v2/tasks/state.py,sha256=VuECXSNXtdWhaJS3cNcTIdecuQJajCGIFP3lyPZi_xA,9666
85
+ samplehc/resources/v2/tasks/tasks.py,sha256=rT_mWHLmi88GiwmlloXHqvFGzMhFruo8MJuRdlQSLDw,29094
86
86
  samplehc/resources/v2/workflow_runs/__init__.py,sha256=maLNLcc-W7a0KHsoPlgCZANcyCE4owxqu3rJwY3lDbY,1055
87
- samplehc/resources/v2/workflow_runs/step.py,sha256=3ZnmmK6CBKbNt2WFht7GEZRxIfL0lx0xImU_OH6VvVo,6169
88
- samplehc/resources/v2/workflow_runs/workflow_runs.py,sha256=fD6zCUDNesf0ySmCogHqOb3LpM39Ykdwmq5DEHenzw0,19696
87
+ samplehc/resources/v2/workflow_runs/step.py,sha256=whzHiJTIhzCNTiRAzvo01FAPEnW-Pye29itDTzZhSyc,6169
88
+ samplehc/resources/v2/workflow_runs/workflow_runs.py,sha256=5a23JhXliB6VNbieEBuDAF5kBbfg6FJKiBOhhwVyix8,19696
89
89
  samplehc/types/__init__.py,sha256=s4JqHqYRXYA7SMgFJCKDOOMe7r2x9YSZAmrsc9sOX_g,465
90
90
  samplehc/types/v1_query_audit_logs_params.py,sha256=khSImk9lMmQEN_jhRhR2fgZx1zZoPxMJKk0PaPh1izY,341
91
91
  samplehc/types/v1_query_audit_logs_response.py,sha256=CiFZBhg0Q_c1ydzvNK0MkZLgmP8tNZ6kUJZflv5FWic,329
92
92
  samplehc/types/v1_sql_execute_params.py,sha256=mC_HUkRzC_d4Ve0XkRMR3VrpZHRqY6RQzaAe-hOdgEA,728
93
93
  samplehc/types/v1_sql_execute_response.py,sha256=Fo8npustnKfbqpw8a8FSqYSOwaakmZ4siPC1LRVbpWg,683
94
94
  samplehc/types/v1/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
95
- samplehc/types/v2/__init__.py,sha256=jBFGZafeJHDNJpZSM1b1ySF0gn_U9itfkM8pBQKdJ9I,7042
95
+ samplehc/types/v2/__init__.py,sha256=z20GvWZZx6oaePPS4K6bfsAkvlPSsHEkBN2cScyZ88c,7324
96
96
  samplehc/types/v2/async_result_retrieve_response.py,sha256=hDRnUnMvLJav6RzGqFH7OsZ2fPrTXOaTqlGbWzUhWVU,504
97
97
  samplehc/types/v2/async_result_sleep_params.py,sha256=vdhEdUP6vA9Y44waJBU2p_PEC-rzWBOr4RkE1F2eTHs,729
98
98
  samplehc/types/v2/async_result_sleep_response.py,sha256=nAUL4IVyG9RjVZtNyMnn_sp1mcwatJCEBjBCDf6bDtM,366
@@ -118,7 +118,7 @@ samplehc/types/v2/document_combine_params.py,sha256=U4VK6S19oy0n8-ZF6jWFWwwQweWj
118
118
  samplehc/types/v2/document_combine_response.py,sha256=WA9LrQej9VOcwQtmjabTkDRr_JTAjtP1aX26JmECUoc,433
119
119
  samplehc/types/v2/document_create_from_splits_params.py,sha256=MuMvlsL39CUJ6yvclboype1DkhxYOeUYAlZ03uUBa9U,795
120
120
  samplehc/types/v2/document_create_from_splits_response.py,sha256=3h9NZV3bzQhJYUG78jZ8BMlII1xpraC_oLsZ5YUOo9w,841
121
- samplehc/types/v2/document_extract_params.py,sha256=p79B_7dAfoF0ksmeF0kmeGyFubz5rJ-xklXjNEfwORQ,1142
121
+ samplehc/types/v2/document_extract_params.py,sha256=DhENL3BUfMyx9wdn5FGujGe7EZkHLoTzMTng-4Qc1Gc,1321
122
122
  samplehc/types/v2/document_extract_response.py,sha256=dhrFk-j9M47SbbJ3rpojO_zeQ_x1OinTNK0worh5dxM,364
123
123
  samplehc/types/v2/document_generate_csv_params.py,sha256=N_GL20AyXcSG0QAkIJBbtyoq9ZW7RESAyhURmagzOTc,1063
124
124
  samplehc/types/v2/document_generate_csv_response.py,sha256=ZaIPmJEzWhQ0HhHWCS-ridr0LoVOtFNTI69oQ3-2yWY,434
@@ -129,10 +129,11 @@ samplehc/types/v2/document_retrieve_metadata_response.py,sha256=2ZEGgp-eDrB2LWLV
129
129
  samplehc/types/v2/document_retrieve_response.py,sha256=AVViza-zUVA3E13VPZug-3u13PVrZQdta5Lbxgx1A_g,1519
130
130
  samplehc/types/v2/document_search_params.py,sha256=lJ7IpiBDoBRcm5SZzhSZflFlQGJ_7h_T2H7eX8gMX-g,651
131
131
  samplehc/types/v2/document_search_response.py,sha256=9ykxdQ0EXJyyeLkRPxm-pfM2_iDSSIEfCA2ZGo0s92k,329
132
- samplehc/types/v2/document_split_params.py,sha256=dx3jPUDk68cY4ctWO9fLmA6O_GSk3egFvISWVmUqHiQ,526
132
+ samplehc/types/v2/document_split_params.py,sha256=W5nrlo_i5bgv8Ru5-AixMXtbHnLc22f5mgbfa5oxSV0,1029
133
133
  samplehc/types/v2/document_split_response.py,sha256=PoqLsyX3S6JPZumDnGWMp8JyxPeDij-ggyOeWOVWBGo,359
134
134
  samplehc/types/v2/document_transform_json_to_html_params.py,sha256=0bRUKlxD2-JB5VQ0DFDfDX1MaanOR1b0PhsD2x1YYAI,336
135
135
  samplehc/types/v2/document_transform_json_to_html_response.py,sha256=ca5EIuwV1pywWDnIgy2e6vW_QunxA-PDHh69jurvcS0,268
136
+ samplehc/types/v2/document_unzip_async_response.py,sha256=gSrnsbEE0iIlXsYdIGMEDSzvZFfJ7XzZAAn3jODxaQc,361
136
137
  samplehc/types/v2/document_unzip_response.py,sha256=EJemPIV3xxnSFTOkUhgptwy_v8FcT-gBNVBmhG5q3aA,448
137
138
  samplehc/types/v2/event_emit_params.py,sha256=SU1pC9tVh84OmyXWsEjxmBMnkTHqHQXQaMZihEZoX2w,506
138
139
  samplehc/types/v2/event_emit_response.py,sha256=Md9mWenySbRoqz2tWrY4jyXS-oWirz5VVdpg9W2gPM8,263
@@ -150,6 +151,8 @@ samplehc/types/v2/task_complete_response.py,sha256=8VoaWzaqA39icSu1MrTy9KZBaRyta
150
151
  samplehc/types/v2/task_get_suspended_payload_response.py,sha256=Sxy6vxXJCxI2x-7lVO-iElm8fHDBSplpsteyBYZepCw,262
151
152
  samplehc/types/v2/task_retrieve_response.py,sha256=x48lwXHSysKM3hhi6pYWtBDH9jCI4CamjphR97h4o-o,584
152
153
  samplehc/types/v2/task_retry_response.py,sha256=ufX9OgBQKA5JTZVa7k8plZakMj_nm1Xl0IE6r4Abyu0,279
154
+ samplehc/types/v2/task_update_column_params.py,sha256=4XjppbYaMK0HUx0pdKYZtPF0sx7kteWVcFdKNPdRstw,443
155
+ samplehc/types/v2/task_update_column_response.py,sha256=zeQliutLYrphABSmMf3zsCqZBKX9JpQB9XPTrA1BS6M,223
153
156
  samplehc/types/v2/task_update_screen_time_params.py,sha256=IBcV9FLFpCj0SbHsnrUR-DK9lQHLeHqf7mBZxu3aO0M,502
154
157
  samplehc/types/v2/task_update_screen_time_response.py,sha256=FzVYiZSNczXKIc5BCFwIOFRnVCzAFQQ8KfFGY1ukeTU,277
155
158
  samplehc/types/v2/workflow_deploy_response.py,sha256=M9kPNKNKy3yvPEp7SASJnM-f1aiAxq7gEdq6v93_BP4,373
@@ -161,10 +164,12 @@ samplehc/types/v2/workflow_run_resume_when_complete_response.py,sha256=-VG90P9eZ
161
164
  samplehc/types/v2/workflow_run_retrieve_response.py,sha256=TMODOQGlZ8h76i7xDVq6Q_Do1cbyeuZ2PMlKUMMo7CE,407
162
165
  samplehc/types/v2/workflow_start_params.py,sha256=ng_LufXszNHLvDzGflKU4aDMKAtdCw1yqrEoXrWxWzg,477
163
166
  samplehc/types/v2/workflow_start_response.py,sha256=RF8irtsIvRiF6ZuDs0ApgGWnvLSip83n7FGyFboUClQ,669
164
- samplehc/types/v2/browser_agents/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
167
+ samplehc/types/v2/browser_agents/__init__.py,sha256=X0BUKqs0fBdSpxtv5BV9aPJazc5gRoCq4nmFfwEUZBY,287
168
+ samplehc/types/v2/browser_agents/run_list_events_params.py,sha256=9dSd7lXIqILZrbUmsPZyQwKI45AdwOWQxKtUojFySJQ,366
169
+ samplehc/types/v2/browser_agents/run_list_events_response.py,sha256=7P58g6SnhsKxNKxcS5eQkiS9ktF2mfCKNqiWq0DBFS8,790
165
170
  samplehc/types/v2/browser_agents/runs/__init__.py,sha256=wZbYvlop8807cU8yil_oo_d3geBtPwJvKdCPrHIsABI,317
166
171
  samplehc/types/v2/browser_agents/runs/help_request_resolve_params.py,sha256=naPrcn1OvvaLQZANW3SchskmRSPkrqy-yR0SGmW4qHY,518
167
- samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py,sha256=9KeOed459_Fu_Y-dH0NRIDzYfNJJWay4EqUPjyzC3Sw,707
172
+ samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py,sha256=rj29f6cenKn-UvX-Ns4YZ6YvAjXGZKQgSaK1PaflJNw,650
168
173
  samplehc/types/v2/browser_automation/__init__.py,sha256=CCz_Y-fN-C5G-ZvnLdkoE5gN5De8-_LaVjo3nAAw2w4,329
169
174
  samplehc/types/v2/browser_automation/availity_submit_appeal_params.py,sha256=xPpXHjO-5JG4_a5e1RVb9mJQzTt_J_WvypW0nzNq76A,1985
170
175
  samplehc/types/v2/browser_automation/availity_submit_appeal_response.py,sha256=rUKHMayj-Edo78E4hbZMXgXl8u7AxFTvVy0Dbyrc6sY,384
@@ -174,24 +179,26 @@ samplehc/types/v2/clearinghouse/claim_submit_response.py,sha256=slh7pXvvTUerZLvv
174
179
  samplehc/types/v2/clearinghouse/payer_list_response.py,sha256=WjyYm7gAQXAuMjI4fGD08rqoDsSgdupXXxQW5-9L33I,529
175
180
  samplehc/types/v2/clearinghouse/payer_search_params.py,sha256=BGRRuYx7doSxrjnxkF4bvgG_9s1SwBvz4H7gi1O0XPY,346
176
181
  samplehc/types/v2/clearinghouse/payer_search_response.py,sha256=NrJiXkx_4Cs_ZeD_yINUZrEoY8pgM6OZSnYrkLGOL-4,618
177
- samplehc/types/v2/documents/__init__.py,sha256=uHbY_gbySx-jWixDJjpw4d45f4iPGi3eaLcMs4gXgho,1252
182
+ samplehc/types/v2/documents/__init__.py,sha256=MMvJNk3KTwvt06oNOpWyZN1VSnm6F4snmOp15XduniY,1402
178
183
  samplehc/types/v2/documents/format_create_pdf_params.py,sha256=OgteE7CfhVP-CAw5RGZlSoXz50rdfxohA-9fJA_9t0Q,458
179
184
  samplehc/types/v2/documents/format_create_pdf_response.py,sha256=S7Bds-J2bb_e9VkripnKiT7Mx4cwcH5yx8BIrUfCng8,307
180
185
  samplehc/types/v2/documents/legacy_extract_params.py,sha256=OcutLFkSUgJ_4ZezMMZEtCmhsU-GXRzluIrceaKmDMQ,3228
181
186
  samplehc/types/v2/documents/legacy_extract_response.py,sha256=vxqLiGHV0IZENYPN9ZOZHyLIn-jlY20siNQMjE38vvQ,368
182
187
  samplehc/types/v2/documents/legacy_reason_params.py,sha256=vfBpWWWNqTQ0u6QCL2moqHwnIrT-IrENYkFQb1-KjJg,1971
183
188
  samplehc/types/v2/documents/legacy_reason_response.py,sha256=dDlUslDaiplZcX8wVDGzwhw6B7osR1OlgpGpCrhLP8Y,358
189
+ samplehc/types/v2/documents/legacy_split_params.py,sha256=TFAqt4Q1-9_Ot3NGlkzTbzi3a-1qvL0dWuY1IMgaep4,523
190
+ samplehc/types/v2/documents/legacy_split_response.py,sha256=IoS8nFdD-kArmMy9CDNA2WWJnWKCIMXTQPyQo86hmXI,356
184
191
  samplehc/types/v2/documents/pdf_template_retrieve_metadata_response.py,sha256=2hPkTqZOaNddFHuDwPAsvY-PJCc4SRzi411bSogiHvM,389
185
192
  samplehc/types/v2/documents/template_generate_document_async_params.py,sha256=5ajpeJbd9F8QYjb7Ac_qtj1YtUtK4vJHzO_6VEoRJFk,1273
186
193
  samplehc/types/v2/documents/template_generate_document_async_response.py,sha256=xFivOxAB8jahS6vKcr-3TGR4IhF0INDH37nivTVoHSk,402
187
- samplehc/types/v2/documents/template_render_document_params.py,sha256=kEmhC3acpJ9uTOF-AZL4BGAGwi-10Rps1fbFVWj8Z4w,571
194
+ samplehc/types/v2/documents/template_render_document_params.py,sha256=egYW79gF_UNjE8wTmiwtbgOozqVDa6i8Db0yjwt5IXE,905
188
195
  samplehc/types/v2/documents/template_render_document_response.py,sha256=sUZYTl_AX3PN9H4B4Xs50tO6eFsj1rXOQuYLZgyt2Fc,319
189
196
  samplehc/types/v2/hie/__init__.py,sha256=xRIS1W4FJDJeqAukGxx2ZWzJBpWx_95Ckx5zl2UEunM,441
190
197
  samplehc/types/v2/hie/adt_subscribe_params.py,sha256=XNvVgMWAnKEO_So8m7iEHgc3YQl9e7EM0CzzJXfiN3s,2975
191
198
  samplehc/types/v2/hie/document_query_params.py,sha256=vdpaitjffO4TjsSJRiFM1k0haCKJhsNMBsAjXugBb4Q,2977
192
199
  samplehc/types/v2/hie/document_query_response.py,sha256=scLiQ-nSkRW8vbAg-QiPgkQRLnBIfmjLKqauoNs0cZQ,442
193
200
  samplehc/types/v2/hie/document_upload_params.py,sha256=y7Bu6fD5YyZDCGpxN2z5wBmJuENlPSfl_mmSUqN7V9k,1836
194
- samplehc/types/v2/integrations/__init__.py,sha256=l9sOSRw85qbjk_LIgmInl3WSfz8-uhxu3m9n6bgmaYc,1418
201
+ samplehc/types/v2/integrations/__init__.py,sha256=jiv9jsVE-mvGzwyJ2etym3eq85ppJDh7wryoQHHr3cA,1525
195
202
  samplehc/types/v2/integrations/careviso_get_payers_response.py,sha256=Et-uLf2afZfEmu38r5xkzhQA2UolbFH5z5gpIV2v33g,543
196
203
  samplehc/types/v2/integrations/careviso_submit_prior_authorization_params.py,sha256=Kb1VOG1BtL_3b5uBvdY8cVmicO8v3l9a3J09UPCsfrU,3460
197
204
  samplehc/types/v2/integrations/glidian_get_submission_requirements_params.py,sha256=vzs_i2xzudxXQhnVeETVCRDZhQTw-WMIZKJTZsxV0ZM,520
@@ -201,6 +208,7 @@ samplehc/types/v2/integrations/glidian_list_payers_response.py,sha256=Xh6d76ZIj8
201
208
  samplehc/types/v2/integrations/glidian_list_services_params.py,sha256=23IGwtyqXNlB2l3i4LpQDOZ56GxxIIbDuMeX3UEGsjE,381
202
209
  samplehc/types/v2/integrations/glidian_list_services_response.py,sha256=ezChHI2no32064nkk2feoJEQYq7h9WAyCDCfWW-b110,441
203
210
  samplehc/types/v2/integrations/salesforce_run_crud_action_params.py,sha256=DEoYOTlq8wr3h3gJnMPPwfUb5zEeZm0_STNYn9q0894,750
211
+ samplehc/types/v2/integrations/salesforce_run_soql_query_params.py,sha256=G5vP1GwS2YWX96jRn3BX0DLt3ETdY_3E5mLPzbiUsYc,304
204
212
  samplehc/types/v2/integrations/snowflake_query_params.py,sha256=ave_87sUwdYtAgU21PahfuWMugSwzDxuxkY-YYUcpK0,324
205
213
  samplehc/types/v2/integrations/snowflake_query_response.py,sha256=g3sxN4GAiSJZy7HXAQf_uNZmCcoZnVfWlJGfbVtITus,256
206
214
  samplehc/types/v2/integrations/xcure_make_request_params.py,sha256=j-F_IqLDzPeUreW7ov_fcpyOaMmgYpYGyKV1VxtvDEw,441
@@ -222,11 +230,11 @@ samplehc/types/v2/integrations/kno2/__init__.py,sha256=-gOR4o0TRcDJlPLYQR7Xe0kb5
222
230
  samplehc/types/v2/integrations/kno2/message_get_attachment_response.py,sha256=AZue-qHJSTSNeMpGLkFkdQeQGYKWrPoJ9TaJZmhcoiQ,318
223
231
  samplehc/types/v2/integrations/kno2/message_retrieve_response.py,sha256=fr41OON96HnoAyFIpRxh7Hb4pTCreYydkack6lZFPuM,271
224
232
  samplehc/types/v2/ledger/__init__.py,sha256=UR89wcUHLaMEO1ZNDPNCGMK9ibhjF8oJ9eSV9RCw53s,591
225
- samplehc/types/v2/ledger/account_writeoff_params.py,sha256=2kydTGcRSM_4llR5BOLRmEHADgOgf9JwyZlZc1KBeww,767
233
+ samplehc/types/v2/ledger/account_writeoff_params.py,sha256=hRmn--xzlslRj8HGctk8ZBeWknSX_87P77Qw-sybzE4,695
226
234
  samplehc/types/v2/ledger/account_writeoff_response.py,sha256=W-pBaGANRA0VqPme3uyfCxDGrIB_SvOvJW-rzi_w5bw,311
227
- samplehc/types/v2/ledger/entry_post_params.py,sha256=KKwiehfIsxX9we_AE6W4JoEWw_wX5HoVqJnwZfybTjs,2041
235
+ samplehc/types/v2/ledger/entry_post_params.py,sha256=5AOS5cXp1gp6plyDyVJ5OMNk_57XqCP1LFUkGbAu7Vc,1976
228
236
  samplehc/types/v2/ledger/entry_post_response.py,sha256=mHtn35Ec6n-5PNhkkSgwM0xX-tGxx6KB1EYKwX-iY6c,264
229
- samplehc/types/v2/ledger/entry_reverse_params.py,sha256=UH3iFtPdecY1gDHS2xgi6Z32O8I7j_7bRMDDHItxWzA,617
237
+ samplehc/types/v2/ledger/entry_reverse_params.py,sha256=pcFBLxZ_XiS6hXB8uphYw_H89j83fLW1XpZd40NCgw4,545
230
238
  samplehc/types/v2/ledger/entry_reverse_response.py,sha256=nJJLjDWSjhPICqxuCoP77v8qwiCVZeocrhoeH3fREWs,279
231
239
  samplehc/types/v2/tasks/__init__.py,sha256=iciLaYiYWPApWbgmJHjbUtC00sqrV6ziysyv0z4Pbl8,342
232
240
  samplehc/types/v2/tasks/state_get_response.py,sha256=_Eyz7nB-XpI_zkG45fTR2aC7AZIpNaxJHyYEOV_EN-w,232
@@ -234,7 +242,7 @@ samplehc/types/v2/tasks/state_update_params.py,sha256=qSLE4Ic5PJlkvcFbTu-KlfH6qg
234
242
  samplehc/types/v2/tasks/state_update_response.py,sha256=ZLnR_rl9yasOnaxQvcM3fiaI_H16pDjBve1GUUleul4,214
235
243
  samplehc/types/v2/workflow_runs/__init__.py,sha256=Nmrudr30JDOaGyeMcc_dqaqqs_9kTdebHD7W0vHHfdE,208
236
244
  samplehc/types/v2/workflow_runs/step_get_output_response.py,sha256=XhRGcpEmxu4TBgpF8r63u5-ruEUDWuXr0ahv1CD9gis,333
237
- samplehc-0.11.0.dist-info/METADATA,sha256=GRdg1rrkQq5aM3rmUoN4P4mm0WEZ_ZXjbT53kW81XCU,14285
238
- samplehc-0.11.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
239
- samplehc-0.11.0.dist-info/licenses/LICENSE,sha256=nrJkK4JSAQb1p7FJcTysujPJoAZtrnXxwsLkwHz0-J8,11347
240
- samplehc-0.11.0.dist-info/RECORD,,
245
+ samplehc-0.13.0.dist-info/METADATA,sha256=xQ-FOFnNAabeX3AofU3v8T6K5pMY0SfRhyFYuK6TWkA,14285
246
+ samplehc-0.13.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
247
+ samplehc-0.13.0.dist-info/licenses/LICENSE,sha256=nrJkK4JSAQb1p7FJcTysujPJoAZtrnXxwsLkwHz0-J8,11347
248
+ samplehc-0.13.0.dist-info/RECORD,,