samplehc 0.11.0__py3-none-any.whl → 0.12.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 (60) 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_automation/availity.py +3 -3
  15. samplehc/resources/v2/clearinghouse/claim.py +29 -29
  16. samplehc/resources/v2/clearinghouse/clearinghouse.py +33 -33
  17. samplehc/resources/v2/clearinghouse/payers.py +5 -5
  18. samplehc/resources/v2/communication.py +29 -29
  19. samplehc/resources/v2/database.py +5 -5
  20. samplehc/resources/v2/documents/documents.py +152 -37
  21. samplehc/resources/v2/documents/formats.py +3 -3
  22. samplehc/resources/v2/documents/legacy.py +91 -6
  23. samplehc/resources/v2/documents/pdf_template.py +3 -3
  24. samplehc/resources/v2/documents/templates.py +27 -27
  25. samplehc/resources/v2/events.py +7 -7
  26. samplehc/resources/v2/hie/adt.py +7 -7
  27. samplehc/resources/v2/hie/documents.py +15 -15
  28. samplehc/resources/v2/integrations/bank/transactions.py +5 -5
  29. samplehc/resources/v2/integrations/careviso.py +29 -29
  30. samplehc/resources/v2/integrations/glidian/glidian.py +13 -13
  31. samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py +5 -5
  32. samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py +19 -19
  33. samplehc/resources/v2/integrations/kno2/messages.py +5 -5
  34. samplehc/resources/v2/integrations/salesforce.py +7 -7
  35. samplehc/resources/v2/integrations/snowflake.py +3 -3
  36. samplehc/resources/v2/integrations/xcures.py +7 -7
  37. samplehc/resources/v2/ledger/account.py +10 -11
  38. samplehc/resources/v2/ledger/entry.py +21 -22
  39. samplehc/resources/v2/policies.py +47 -47
  40. samplehc/resources/v2/tasks/state.py +7 -7
  41. samplehc/resources/v2/tasks/tasks.py +15 -15
  42. samplehc/resources/v2/workflow_runs/step.py +3 -3
  43. samplehc/resources/v2/workflow_runs/workflow_runs.py +11 -11
  44. samplehc/resources/v2/workflows.py +13 -13
  45. samplehc/types/v2/__init__.py +1 -0
  46. samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py +0 -2
  47. samplehc/types/v2/document_extract_params.py +4 -1
  48. samplehc/types/v2/document_split_params.py +16 -1
  49. samplehc/types/v2/document_unzip_async_response.py +12 -0
  50. samplehc/types/v2/documents/__init__.py +2 -0
  51. samplehc/types/v2/documents/legacy_split_params.py +20 -0
  52. samplehc/types/v2/documents/legacy_split_response.py +12 -0
  53. samplehc/types/v2/documents/template_render_document_params.py +17 -5
  54. samplehc/types/v2/ledger/account_writeoff_params.py +2 -3
  55. samplehc/types/v2/ledger/entry_post_params.py +1 -2
  56. samplehc/types/v2/ledger/entry_reverse_params.py +2 -3
  57. {samplehc-0.11.0.dist-info → samplehc-0.12.0.dist-info}/METADATA +1 -1
  58. {samplehc-0.11.0.dist-info → samplehc-0.12.0.dist-info}/RECORD +60 -57
  59. {samplehc-0.11.0.dist-info → samplehc-0.12.0.dist-info}/WHEEL +0 -0
  60. {samplehc-0.11.0.dist-info → samplehc-0.12.0.dist-info}/licenses/LICENSE +0 -0
@@ -6,7 +6,7 @@ from typing_extensions import Literal
6
6
 
7
7
  import httpx
8
8
 
9
- from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
9
+ from ..._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
10
10
  from ..._utils import is_given, maybe_transform, strip_not_given, async_maybe_transform
11
11
  from ..._compat import cached_property
12
12
  from ...types.v2 import workflow_query_params, workflow_start_params
@@ -54,7 +54,7 @@ class WorkflowsResource(SyncAPIResource):
54
54
  extra_headers: Headers | None = None,
55
55
  extra_query: Query | None = None,
56
56
  extra_body: Body | None = None,
57
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
57
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
58
58
  ) -> WorkflowDeployResponse:
59
59
  """
60
60
  Creates a new deployment for the specified workflow ID, making the current
@@ -89,7 +89,7 @@ class WorkflowsResource(SyncAPIResource):
89
89
  extra_headers: Headers | None = None,
90
90
  extra_query: Query | None = None,
91
91
  extra_body: Body | None = None,
92
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
92
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
93
93
  ) -> WorkflowQueryResponse:
94
94
  """
95
95
  Query workflow outputs
@@ -120,14 +120,14 @@ class WorkflowsResource(SyncAPIResource):
120
120
  self,
121
121
  workflow_slug: str,
122
122
  *,
123
- body: object | NotGiven = NOT_GIVEN,
124
- x_sample_start_data_parse_method: Literal["standard", "top-level"] | NotGiven = NOT_GIVEN,
123
+ body: object | Omit = omit,
124
+ x_sample_start_data_parse_method: Literal["standard", "top-level"] | Omit = omit,
125
125
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
126
126
  # The extra values given here take precedence over values defined on the client or passed to this method.
127
127
  extra_headers: Headers | None = None,
128
128
  extra_query: Query | None = None,
129
129
  extra_body: Body | None = None,
130
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
130
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
131
131
  ) -> WorkflowStartResponse:
132
132
  """Initiates a workflow run based on its slug.
133
133
 
@@ -150,7 +150,7 @@ class WorkflowsResource(SyncAPIResource):
150
150
  {
151
151
  "X-Sample-Start-Data-Parse-Method": str(x_sample_start_data_parse_method)
152
152
  if is_given(x_sample_start_data_parse_method)
153
- else NOT_GIVEN
153
+ else not_given
154
154
  }
155
155
  ),
156
156
  **(extra_headers or {}),
@@ -194,7 +194,7 @@ class AsyncWorkflowsResource(AsyncAPIResource):
194
194
  extra_headers: Headers | None = None,
195
195
  extra_query: Query | None = None,
196
196
  extra_body: Body | None = None,
197
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
197
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
198
198
  ) -> WorkflowDeployResponse:
199
199
  """
200
200
  Creates a new deployment for the specified workflow ID, making the current
@@ -229,7 +229,7 @@ class AsyncWorkflowsResource(AsyncAPIResource):
229
229
  extra_headers: Headers | None = None,
230
230
  extra_query: Query | None = None,
231
231
  extra_body: Body | None = None,
232
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
232
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
233
233
  ) -> WorkflowQueryResponse:
234
234
  """
235
235
  Query workflow outputs
@@ -260,14 +260,14 @@ class AsyncWorkflowsResource(AsyncAPIResource):
260
260
  self,
261
261
  workflow_slug: str,
262
262
  *,
263
- body: object | NotGiven = NOT_GIVEN,
264
- x_sample_start_data_parse_method: Literal["standard", "top-level"] | NotGiven = NOT_GIVEN,
263
+ body: object | Omit = omit,
264
+ x_sample_start_data_parse_method: Literal["standard", "top-level"] | Omit = omit,
265
265
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
266
266
  # The extra values given here take precedence over values defined on the client or passed to this method.
267
267
  extra_headers: Headers | None = None,
268
268
  extra_query: Query | None = None,
269
269
  extra_body: Body | None = None,
270
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
270
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
271
271
  ) -> WorkflowStartResponse:
272
272
  """Initiates a workflow run based on its slug.
273
273
 
@@ -290,7 +290,7 @@ class AsyncWorkflowsResource(AsyncAPIResource):
290
290
  {
291
291
  "X-Sample-Start-Data-Parse-Method": str(x_sample_start_data_parse_method)
292
292
  if is_given(x_sample_start_data_parse_method)
293
- else NOT_GIVEN
293
+ else not_given
294
294
  }
295
295
  ),
296
296
  **(extra_headers or {}),
@@ -39,6 +39,7 @@ from .policy_list_companies_params import PolicyListCompaniesParams as PolicyLis
39
39
  from .browser_agent_invoke_response import BrowserAgentInvokeResponse as BrowserAgentInvokeResponse
40
40
  from .communication_send_fax_params import CommunicationSendFaxParams as CommunicationSendFaxParams
41
41
  from .database_execute_sql_response import DatabaseExecuteSqlResponse as DatabaseExecuteSqlResponse
42
+ from .document_unzip_async_response import DocumentUnzipAsyncResponse as DocumentUnzipAsyncResponse
42
43
  from .policy_retrieve_text_response import PolicyRetrieveTextResponse as PolicyRetrieveTextResponse
43
44
  from .async_result_retrieve_response import AsyncResultRetrieveResponse as AsyncResultRetrieveResponse
44
45
  from .document_generate_csv_response import DocumentGenerateCsvResponse as DocumentGenerateCsvResponse
@@ -26,5 +26,3 @@ class HelpRequestResolveResponse(BaseModel):
26
26
  resolved_at: Optional[datetime] = FieldInfo(alias="resolvedAt", default=None)
27
27
 
28
28
  status: str
29
-
30
- updated_at: datetime = FieldInfo(alias="updatedAt")
@@ -20,9 +20,12 @@ class DocumentExtractParams(TypedDict, total=False):
20
20
  response_json_schema: Required[Annotated[Dict[str, object], PropertyInfo(alias="responseJsonSchema")]]
21
21
  """A JSON schema defining the structure of the desired extraction output."""
22
22
 
23
- model: Literal["reasoning-3-mini", "reasoning-3"]
23
+ model: Literal["reasoning-3-mini", "reasoning-3", "base-5", "base-5-mini", "base-5-nano"]
24
24
  """The model to use for extraction."""
25
25
 
26
+ priority: Literal["interactive", "non-interactive"]
27
+ """The priority of the extraction task. Non-interactive is lower priority."""
28
+
26
29
  reasoning_effort: Annotated[Literal["low", "medium", "high"], PropertyInfo(alias="reasoningEffort")]
27
30
  """Optional control over the reasoning effort for extraction."""
28
31
 
@@ -2,19 +2,34 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
+ from typing import Iterable
5
6
  from typing_extensions import Required, Annotated, TypedDict
6
7
 
7
8
  from ..._utils import PropertyInfo
8
9
 
9
- __all__ = ["DocumentSplitParams", "Document"]
10
+ __all__ = ["DocumentSplitParams", "Document", "SplitDescription"]
10
11
 
11
12
 
12
13
  class DocumentSplitParams(TypedDict, total=False):
13
14
  document: Required[Document]
14
15
  """The document to be split."""
15
16
 
17
+ split_description: Required[Annotated[Iterable[SplitDescription], PropertyInfo(alias="splitDescription")]]
18
+ """Split description configuration."""
19
+
20
+ split_rules: Annotated[str, PropertyInfo(alias="splitRules")]
21
+ """Optional split rules prompt for the splitter."""
22
+
16
23
 
17
24
  class Document(TypedDict, total=False):
18
25
  id: Required[str]
19
26
 
20
27
  file_name: Required[Annotated[str, PropertyInfo(alias="fileName")]]
28
+
29
+
30
+ class SplitDescription(TypedDict, total=False):
31
+ description: Required[str]
32
+
33
+ name: Required[str]
34
+
35
+ partition_key: Annotated[str, PropertyInfo(alias="partitionKey")]
@@ -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__ = ["DocumentUnzipAsyncResponse"]
8
+
9
+
10
+ class DocumentUnzipAsyncResponse(BaseModel):
11
+ async_result_id: str = FieldInfo(alias="asyncResultId")
12
+ """The ID of the async result for this job."""
@@ -2,8 +2,10 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
+ from .legacy_split_params import LegacySplitParams as LegacySplitParams
5
6
  from .legacy_reason_params import LegacyReasonParams as LegacyReasonParams
6
7
  from .legacy_extract_params import LegacyExtractParams as LegacyExtractParams
8
+ from .legacy_split_response import LegacySplitResponse as LegacySplitResponse
7
9
  from .legacy_reason_response import LegacyReasonResponse as LegacyReasonResponse
8
10
  from .legacy_extract_response import LegacyExtractResponse as LegacyExtractResponse
9
11
  from .format_create_pdf_params import FormatCreatePdfParams as FormatCreatePdfParams
@@ -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]
@@ -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."""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: samplehc
3
- Version: 0.11.0
3
+ Version: 0.12.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=kbKX5beOiaqwWugEmhcoKaTA9qFV2fXQMee1c7T01OY,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
43
+ samplehc/resources/v2/browser_agents/runs/help_requests.py,sha256=6V1AyR7_64rxBMv3KzdHvAmnzYFVGQ4W-67Wl7O7pwA,7788
44
44
  samplehc/resources/v2/browser_agents/runs/runs.py,sha256=zqYLPJ4gZW5P00jtQzcNuxowkMRVVJaJQTc8OxQpct8,3716
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=MwWceYFSQ9TesR-Cc_tC390ggg6683h-ndkdNFW-aBU,7480
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=wdkn-kBVGdPM6k_Di0MV5e8AESBy1tjpMrLoqgYWqxc,24915
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=LeoXb9Fc6L5lk-fTeuv79b_BDioJxJ1jF7083ApAZhM,7142
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
@@ -164,7 +165,7 @@ samplehc/types/v2/workflow_start_response.py,sha256=RF8irtsIvRiF6ZuDs0ApgGWnvLSi
164
165
  samplehc/types/v2/browser_agents/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
165
166
  samplehc/types/v2/browser_agents/runs/__init__.py,sha256=wZbYvlop8807cU8yil_oo_d3geBtPwJvKdCPrHIsABI,317
166
167
  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
168
+ samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py,sha256=rj29f6cenKn-UvX-Ns4YZ6YvAjXGZKQgSaK1PaflJNw,650
168
169
  samplehc/types/v2/browser_automation/__init__.py,sha256=CCz_Y-fN-C5G-ZvnLdkoE5gN5De8-_LaVjo3nAAw2w4,329
169
170
  samplehc/types/v2/browser_automation/availity_submit_appeal_params.py,sha256=xPpXHjO-5JG4_a5e1RVb9mJQzTt_J_WvypW0nzNq76A,1985
170
171
  samplehc/types/v2/browser_automation/availity_submit_appeal_response.py,sha256=rUKHMayj-Edo78E4hbZMXgXl8u7AxFTvVy0Dbyrc6sY,384
@@ -174,17 +175,19 @@ samplehc/types/v2/clearinghouse/claim_submit_response.py,sha256=slh7pXvvTUerZLvv
174
175
  samplehc/types/v2/clearinghouse/payer_list_response.py,sha256=WjyYm7gAQXAuMjI4fGD08rqoDsSgdupXXxQW5-9L33I,529
175
176
  samplehc/types/v2/clearinghouse/payer_search_params.py,sha256=BGRRuYx7doSxrjnxkF4bvgG_9s1SwBvz4H7gi1O0XPY,346
176
177
  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
178
+ samplehc/types/v2/documents/__init__.py,sha256=MMvJNk3KTwvt06oNOpWyZN1VSnm6F4snmOp15XduniY,1402
178
179
  samplehc/types/v2/documents/format_create_pdf_params.py,sha256=OgteE7CfhVP-CAw5RGZlSoXz50rdfxohA-9fJA_9t0Q,458
179
180
  samplehc/types/v2/documents/format_create_pdf_response.py,sha256=S7Bds-J2bb_e9VkripnKiT7Mx4cwcH5yx8BIrUfCng8,307
180
181
  samplehc/types/v2/documents/legacy_extract_params.py,sha256=OcutLFkSUgJ_4ZezMMZEtCmhsU-GXRzluIrceaKmDMQ,3228
181
182
  samplehc/types/v2/documents/legacy_extract_response.py,sha256=vxqLiGHV0IZENYPN9ZOZHyLIn-jlY20siNQMjE38vvQ,368
182
183
  samplehc/types/v2/documents/legacy_reason_params.py,sha256=vfBpWWWNqTQ0u6QCL2moqHwnIrT-IrENYkFQb1-KjJg,1971
183
184
  samplehc/types/v2/documents/legacy_reason_response.py,sha256=dDlUslDaiplZcX8wVDGzwhw6B7osR1OlgpGpCrhLP8Y,358
185
+ samplehc/types/v2/documents/legacy_split_params.py,sha256=TFAqt4Q1-9_Ot3NGlkzTbzi3a-1qvL0dWuY1IMgaep4,523
186
+ samplehc/types/v2/documents/legacy_split_response.py,sha256=IoS8nFdD-kArmMy9CDNA2WWJnWKCIMXTQPyQo86hmXI,356
184
187
  samplehc/types/v2/documents/pdf_template_retrieve_metadata_response.py,sha256=2hPkTqZOaNddFHuDwPAsvY-PJCc4SRzi411bSogiHvM,389
185
188
  samplehc/types/v2/documents/template_generate_document_async_params.py,sha256=5ajpeJbd9F8QYjb7Ac_qtj1YtUtK4vJHzO_6VEoRJFk,1273
186
189
  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
190
+ samplehc/types/v2/documents/template_render_document_params.py,sha256=egYW79gF_UNjE8wTmiwtbgOozqVDa6i8Db0yjwt5IXE,905
188
191
  samplehc/types/v2/documents/template_render_document_response.py,sha256=sUZYTl_AX3PN9H4B4Xs50tO6eFsj1rXOQuYLZgyt2Fc,319
189
192
  samplehc/types/v2/hie/__init__.py,sha256=xRIS1W4FJDJeqAukGxx2ZWzJBpWx_95Ckx5zl2UEunM,441
190
193
  samplehc/types/v2/hie/adt_subscribe_params.py,sha256=XNvVgMWAnKEO_So8m7iEHgc3YQl9e7EM0CzzJXfiN3s,2975
@@ -222,11 +225,11 @@ samplehc/types/v2/integrations/kno2/__init__.py,sha256=-gOR4o0TRcDJlPLYQR7Xe0kb5
222
225
  samplehc/types/v2/integrations/kno2/message_get_attachment_response.py,sha256=AZue-qHJSTSNeMpGLkFkdQeQGYKWrPoJ9TaJZmhcoiQ,318
223
226
  samplehc/types/v2/integrations/kno2/message_retrieve_response.py,sha256=fr41OON96HnoAyFIpRxh7Hb4pTCreYydkack6lZFPuM,271
224
227
  samplehc/types/v2/ledger/__init__.py,sha256=UR89wcUHLaMEO1ZNDPNCGMK9ibhjF8oJ9eSV9RCw53s,591
225
- samplehc/types/v2/ledger/account_writeoff_params.py,sha256=2kydTGcRSM_4llR5BOLRmEHADgOgf9JwyZlZc1KBeww,767
228
+ samplehc/types/v2/ledger/account_writeoff_params.py,sha256=hRmn--xzlslRj8HGctk8ZBeWknSX_87P77Qw-sybzE4,695
226
229
  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
230
+ samplehc/types/v2/ledger/entry_post_params.py,sha256=5AOS5cXp1gp6plyDyVJ5OMNk_57XqCP1LFUkGbAu7Vc,1976
228
231
  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
232
+ samplehc/types/v2/ledger/entry_reverse_params.py,sha256=pcFBLxZ_XiS6hXB8uphYw_H89j83fLW1XpZd40NCgw4,545
230
233
  samplehc/types/v2/ledger/entry_reverse_response.py,sha256=nJJLjDWSjhPICqxuCoP77v8qwiCVZeocrhoeH3fREWs,279
231
234
  samplehc/types/v2/tasks/__init__.py,sha256=iciLaYiYWPApWbgmJHjbUtC00sqrV6ziysyv0z4Pbl8,342
232
235
  samplehc/types/v2/tasks/state_get_response.py,sha256=_Eyz7nB-XpI_zkG45fTR2aC7AZIpNaxJHyYEOV_EN-w,232
@@ -234,7 +237,7 @@ samplehc/types/v2/tasks/state_update_params.py,sha256=qSLE4Ic5PJlkvcFbTu-KlfH6qg
234
237
  samplehc/types/v2/tasks/state_update_response.py,sha256=ZLnR_rl9yasOnaxQvcM3fiaI_H16pDjBve1GUUleul4,214
235
238
  samplehc/types/v2/workflow_runs/__init__.py,sha256=Nmrudr30JDOaGyeMcc_dqaqqs_9kTdebHD7W0vHHfdE,208
236
239
  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,,
240
+ samplehc-0.12.0.dist-info/METADATA,sha256=1s3VT18-zgp2mTeTkbdeRATGJys9Kmmp6kT32nVTo38,14285
241
+ samplehc-0.12.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
242
+ samplehc-0.12.0.dist-info/licenses/LICENSE,sha256=nrJkK4JSAQb1p7FJcTysujPJoAZtrnXxwsLkwHz0-J8,11347
243
+ samplehc-0.12.0.dist-info/RECORD,,