samplehc 0.7.0__py3-none-any.whl → 0.8.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
samplehc/_version.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "samplehc"
4
- __version__ = "0.7.0" # x-release-please-version
4
+ __version__ = "0.8.0" # x-release-please-version
@@ -251,7 +251,10 @@ class ClearinghouseResource(SyncAPIResource):
251
251
  *,
252
252
  person: clearinghouse_run_discovery_params.Person,
253
253
  account_number: str | NotGiven = NOT_GIVEN,
254
+ check_credit: bool | NotGiven = NOT_GIVEN,
255
+ check_demographics: bool | NotGiven = NOT_GIVEN,
254
256
  date_of_service: str | NotGiven = NOT_GIVEN,
257
+ run_business_rules: bool | NotGiven = NOT_GIVEN,
255
258
  service_code: str | NotGiven = NOT_GIVEN,
256
259
  idempotency_key: str | NotGiven = NOT_GIVEN,
257
260
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -266,12 +269,16 @@ class ClearinghouseResource(SyncAPIResource):
266
269
  Front Runner integration.
267
270
 
268
271
  Args:
269
- person: Patient demographic information
270
-
271
272
  account_number: Account number
272
273
 
274
+ check_credit: Whether to check credit
275
+
276
+ check_demographics: Whether to check demographics
277
+
273
278
  date_of_service: Date of service (YYYY-MM-DD)
274
279
 
280
+ run_business_rules: Whether to run business rules
281
+
275
282
  service_code: Service code
276
283
 
277
284
  extra_headers: Send extra headers
@@ -289,7 +296,10 @@ class ClearinghouseResource(SyncAPIResource):
289
296
  {
290
297
  "person": person,
291
298
  "account_number": account_number,
299
+ "check_credit": check_credit,
300
+ "check_demographics": check_demographics,
292
301
  "date_of_service": date_of_service,
302
+ "run_business_rules": run_business_rules,
293
303
  "service_code": service_code,
294
304
  },
295
305
  clearinghouse_run_discovery_params.ClearinghouseRunDiscoveryParams,
@@ -507,7 +517,10 @@ class AsyncClearinghouseResource(AsyncAPIResource):
507
517
  *,
508
518
  person: clearinghouse_run_discovery_params.Person,
509
519
  account_number: str | NotGiven = NOT_GIVEN,
520
+ check_credit: bool | NotGiven = NOT_GIVEN,
521
+ check_demographics: bool | NotGiven = NOT_GIVEN,
510
522
  date_of_service: str | NotGiven = NOT_GIVEN,
523
+ run_business_rules: bool | NotGiven = NOT_GIVEN,
511
524
  service_code: str | NotGiven = NOT_GIVEN,
512
525
  idempotency_key: str | NotGiven = NOT_GIVEN,
513
526
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -522,12 +535,16 @@ class AsyncClearinghouseResource(AsyncAPIResource):
522
535
  Front Runner integration.
523
536
 
524
537
  Args:
525
- person: Patient demographic information
526
-
527
538
  account_number: Account number
528
539
 
540
+ check_credit: Whether to check credit
541
+
542
+ check_demographics: Whether to check demographics
543
+
529
544
  date_of_service: Date of service (YYYY-MM-DD)
530
545
 
546
+ run_business_rules: Whether to run business rules
547
+
531
548
  service_code: Service code
532
549
 
533
550
  extra_headers: Send extra headers
@@ -545,7 +562,10 @@ class AsyncClearinghouseResource(AsyncAPIResource):
545
562
  {
546
563
  "person": person,
547
564
  "account_number": account_number,
565
+ "check_credit": check_credit,
566
+ "check_demographics": check_demographics,
548
567
  "date_of_service": date_of_service,
568
+ "run_business_rules": run_business_rules,
549
569
  "service_code": service_code,
550
570
  },
551
571
  clearinghouse_run_discovery_params.ClearinghouseRunDiscoveryParams,
@@ -4,36 +4,24 @@ from __future__ import annotations
4
4
 
5
5
  import httpx
6
6
 
7
- from .hie.hie import (
8
- HieResource,
9
- AsyncHieResource,
10
- HieResourceWithRawResponse,
11
- AsyncHieResourceWithRawResponse,
12
- HieResourceWithStreamingResponse,
13
- AsyncHieResourceWithStreamingResponse,
14
- )
15
- from ...._types import NOT_GIVEN, Body, Query, Headers, NotGiven
16
- from ...._utils import maybe_transform, strip_not_given, async_maybe_transform
17
- from ...._compat import cached_property
18
- from ....types.v2 import event_emit_params
19
- from ...._resource import SyncAPIResource, AsyncAPIResource
20
- from ...._response import (
7
+ from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
8
+ from ..._utils import maybe_transform, strip_not_given, async_maybe_transform
9
+ from ..._compat import cached_property
10
+ from ...types.v2 import event_emit_params
11
+ from ..._resource import SyncAPIResource, AsyncAPIResource
12
+ from ..._response import (
21
13
  to_raw_response_wrapper,
22
14
  to_streamed_response_wrapper,
23
15
  async_to_raw_response_wrapper,
24
16
  async_to_streamed_response_wrapper,
25
17
  )
26
- from ...._base_client import make_request_options
27
- from ....types.v2.event_emit_response import EventEmitResponse
18
+ from ..._base_client import make_request_options
19
+ from ...types.v2.event_emit_response import EventEmitResponse
28
20
 
29
21
  __all__ = ["EventsResource", "AsyncEventsResource"]
30
22
 
31
23
 
32
24
  class EventsResource(SyncAPIResource):
33
- @cached_property
34
- def hie(self) -> HieResource:
35
- return HieResource(self._client)
36
-
37
25
  @cached_property
38
26
  def with_raw_response(self) -> EventsResourceWithRawResponse:
39
27
  """
@@ -100,10 +88,6 @@ class EventsResource(SyncAPIResource):
100
88
 
101
89
 
102
90
  class AsyncEventsResource(AsyncAPIResource):
103
- @cached_property
104
- def hie(self) -> AsyncHieResource:
105
- return AsyncHieResource(self._client)
106
-
107
91
  @cached_property
108
92
  def with_raw_response(self) -> AsyncEventsResourceWithRawResponse:
109
93
  """
@@ -177,10 +161,6 @@ class EventsResourceWithRawResponse:
177
161
  events.emit,
178
162
  )
179
163
 
180
- @cached_property
181
- def hie(self) -> HieResourceWithRawResponse:
182
- return HieResourceWithRawResponse(self._events.hie)
183
-
184
164
 
185
165
  class AsyncEventsResourceWithRawResponse:
186
166
  def __init__(self, events: AsyncEventsResource) -> None:
@@ -190,10 +170,6 @@ class AsyncEventsResourceWithRawResponse:
190
170
  events.emit,
191
171
  )
192
172
 
193
- @cached_property
194
- def hie(self) -> AsyncHieResourceWithRawResponse:
195
- return AsyncHieResourceWithRawResponse(self._events.hie)
196
-
197
173
 
198
174
  class EventsResourceWithStreamingResponse:
199
175
  def __init__(self, events: EventsResource) -> None:
@@ -203,10 +179,6 @@ class EventsResourceWithStreamingResponse:
203
179
  events.emit,
204
180
  )
205
181
 
206
- @cached_property
207
- def hie(self) -> HieResourceWithStreamingResponse:
208
- return HieResourceWithStreamingResponse(self._events.hie)
209
-
210
182
 
211
183
  class AsyncEventsResourceWithStreamingResponse:
212
184
  def __init__(self, events: AsyncEventsResource) -> None:
@@ -215,7 +187,3 @@ class AsyncEventsResourceWithStreamingResponse:
215
187
  self.emit = async_to_streamed_response_wrapper(
216
188
  events.emit,
217
189
  )
218
-
219
- @cached_property
220
- def hie(self) -> AsyncHieResourceWithStreamingResponse:
221
- return AsyncHieResourceWithStreamingResponse(self._events.hie)
@@ -1,5 +1,13 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
+ from .adt import (
4
+ AdtResource,
5
+ AsyncAdtResource,
6
+ AdtResourceWithRawResponse,
7
+ AsyncAdtResourceWithRawResponse,
8
+ AdtResourceWithStreamingResponse,
9
+ AsyncAdtResourceWithStreamingResponse,
10
+ )
3
11
  from .hie import (
4
12
  HieResource,
5
13
  AsyncHieResource,
@@ -24,6 +32,12 @@ __all__ = [
24
32
  "AsyncDocumentsResourceWithRawResponse",
25
33
  "DocumentsResourceWithStreamingResponse",
26
34
  "AsyncDocumentsResourceWithStreamingResponse",
35
+ "AdtResource",
36
+ "AsyncAdtResource",
37
+ "AdtResourceWithRawResponse",
38
+ "AsyncAdtResourceWithRawResponse",
39
+ "AdtResourceWithStreamingResponse",
40
+ "AsyncAdtResourceWithStreamingResponse",
27
41
  "HieResource",
28
42
  "AsyncHieResource",
29
43
  "HieResourceWithRawResponse",
@@ -7,18 +7,18 @@ from typing_extensions import Literal
7
7
 
8
8
  import httpx
9
9
 
10
- from ....._types import NOT_GIVEN, Body, Query, Headers, NotGiven
11
- from ....._utils import maybe_transform, async_maybe_transform
12
- from ....._compat import cached_property
13
- from ....._resource import SyncAPIResource, AsyncAPIResource
14
- from ....._response import (
10
+ from ...._types import NOT_GIVEN, Body, Query, Headers, NotGiven
11
+ from ...._utils import maybe_transform, async_maybe_transform
12
+ from ...._compat import cached_property
13
+ from ...._resource import SyncAPIResource, AsyncAPIResource
14
+ from ...._response import (
15
15
  to_raw_response_wrapper,
16
16
  to_streamed_response_wrapper,
17
17
  async_to_raw_response_wrapper,
18
18
  async_to_streamed_response_wrapper,
19
19
  )
20
- from ....._base_client import make_request_options
21
- from .....types.v2.events.hie import adt_subscribe_params
20
+ from ...._base_client import make_request_options
21
+ from ....types.v2.hie import adt_subscribe_params
22
22
 
23
23
  __all__ = ["AdtResource", "AsyncAdtResource"]
24
24
 
@@ -2,6 +2,14 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
+ from .adt import (
6
+ AdtResource,
7
+ AsyncAdtResource,
8
+ AdtResourceWithRawResponse,
9
+ AsyncAdtResourceWithRawResponse,
10
+ AdtResourceWithStreamingResponse,
11
+ AsyncAdtResourceWithStreamingResponse,
12
+ )
5
13
  from .documents import (
6
14
  DocumentsResource,
7
15
  AsyncDocumentsResource,
@@ -21,6 +29,10 @@ class HieResource(SyncAPIResource):
21
29
  def documents(self) -> DocumentsResource:
22
30
  return DocumentsResource(self._client)
23
31
 
32
+ @cached_property
33
+ def adt(self) -> AdtResource:
34
+ return AdtResource(self._client)
35
+
24
36
  @cached_property
25
37
  def with_raw_response(self) -> HieResourceWithRawResponse:
26
38
  """
@@ -46,6 +58,10 @@ class AsyncHieResource(AsyncAPIResource):
46
58
  def documents(self) -> AsyncDocumentsResource:
47
59
  return AsyncDocumentsResource(self._client)
48
60
 
61
+ @cached_property
62
+ def adt(self) -> AsyncAdtResource:
63
+ return AsyncAdtResource(self._client)
64
+
49
65
  @cached_property
50
66
  def with_raw_response(self) -> AsyncHieResourceWithRawResponse:
51
67
  """
@@ -74,6 +90,10 @@ class HieResourceWithRawResponse:
74
90
  def documents(self) -> DocumentsResourceWithRawResponse:
75
91
  return DocumentsResourceWithRawResponse(self._hie.documents)
76
92
 
93
+ @cached_property
94
+ def adt(self) -> AdtResourceWithRawResponse:
95
+ return AdtResourceWithRawResponse(self._hie.adt)
96
+
77
97
 
78
98
  class AsyncHieResourceWithRawResponse:
79
99
  def __init__(self, hie: AsyncHieResource) -> None:
@@ -83,6 +103,10 @@ class AsyncHieResourceWithRawResponse:
83
103
  def documents(self) -> AsyncDocumentsResourceWithRawResponse:
84
104
  return AsyncDocumentsResourceWithRawResponse(self._hie.documents)
85
105
 
106
+ @cached_property
107
+ def adt(self) -> AsyncAdtResourceWithRawResponse:
108
+ return AsyncAdtResourceWithRawResponse(self._hie.adt)
109
+
86
110
 
87
111
  class HieResourceWithStreamingResponse:
88
112
  def __init__(self, hie: HieResource) -> None:
@@ -92,6 +116,10 @@ class HieResourceWithStreamingResponse:
92
116
  def documents(self) -> DocumentsResourceWithStreamingResponse:
93
117
  return DocumentsResourceWithStreamingResponse(self._hie.documents)
94
118
 
119
+ @cached_property
120
+ def adt(self) -> AdtResourceWithStreamingResponse:
121
+ return AdtResourceWithStreamingResponse(self._hie.adt)
122
+
95
123
 
96
124
  class AsyncHieResourceWithStreamingResponse:
97
125
  def __init__(self, hie: AsyncHieResource) -> None:
@@ -100,3 +128,7 @@ class AsyncHieResourceWithStreamingResponse:
100
128
  @cached_property
101
129
  def documents(self) -> AsyncDocumentsResourceWithStreamingResponse:
102
130
  return AsyncDocumentsResourceWithStreamingResponse(self._hie.documents)
131
+
132
+ @cached_property
133
+ def adt(self) -> AsyncAdtResourceWithStreamingResponse:
134
+ return AsyncAdtResourceWithStreamingResponse(self._hie.adt)
@@ -2,6 +2,14 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
+ from .events import (
6
+ EventsResource,
7
+ AsyncEventsResource,
8
+ EventsResourceWithRawResponse,
9
+ AsyncEventsResourceWithRawResponse,
10
+ EventsResourceWithStreamingResponse,
11
+ AsyncEventsResourceWithStreamingResponse,
12
+ )
5
13
  from .hie.hie import (
6
14
  HieResource,
7
15
  AsyncHieResource,
@@ -60,14 +68,6 @@ from .communication import (
60
68
  CommunicationResourceWithStreamingResponse,
61
69
  AsyncCommunicationResourceWithStreamingResponse,
62
70
  )
63
- from .events.events import (
64
- EventsResource,
65
- AsyncEventsResource,
66
- EventsResourceWithRawResponse,
67
- AsyncEventsResourceWithRawResponse,
68
- EventsResourceWithStreamingResponse,
69
- AsyncEventsResourceWithStreamingResponse,
70
- )
71
71
  from .ledger.ledger import (
72
72
  LedgerResource,
73
73
  AsyncLedgerResource,
@@ -11,14 +11,22 @@ __all__ = ["ClearinghouseRunDiscoveryParams", "Person"]
11
11
 
12
12
  class ClearinghouseRunDiscoveryParams(TypedDict, total=False):
13
13
  person: Required[Person]
14
- """Patient demographic information"""
15
14
 
16
15
  account_number: Annotated[str, PropertyInfo(alias="accountNumber")]
17
16
  """Account number"""
18
17
 
18
+ check_credit: Annotated[bool, PropertyInfo(alias="checkCredit")]
19
+ """Whether to check credit"""
20
+
21
+ check_demographics: Annotated[bool, PropertyInfo(alias="checkDemographics")]
22
+ """Whether to check demographics"""
23
+
19
24
  date_of_service: Annotated[str, PropertyInfo(alias="dateOfService")]
20
25
  """Date of service (YYYY-MM-DD)"""
21
26
 
27
+ run_business_rules: Annotated[bool, PropertyInfo(alias="runBusinessRules")]
28
+ """Whether to run business rules"""
29
+
22
30
  service_code: Annotated[str, PropertyInfo(alias="serviceCode")]
23
31
  """Service code"""
24
32
 
@@ -2,6 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
+ from .adt_subscribe_params import AdtSubscribeParams as AdtSubscribeParams
5
6
  from .document_query_params import DocumentQueryParams as DocumentQueryParams
6
7
  from .document_upload_params import DocumentUploadParams as DocumentUploadParams
7
8
  from .document_query_response import DocumentQueryResponse as DocumentQueryResponse
@@ -5,7 +5,7 @@ from __future__ import annotations
5
5
  from typing import Iterable
6
6
  from typing_extensions import Literal, Required, Annotated, TypedDict
7
7
 
8
- from ....._utils import PropertyInfo
8
+ from ...._utils import PropertyInfo
9
9
 
10
10
  __all__ = ["AdtSubscribeParams", "Address", "Contact", "PersonalIdentifier"]
11
11
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: samplehc
3
- Version: 0.7.0
3
+ Version: 0.8.0
4
4
  Summary: The official Python library for the Sample Healthcare API
5
5
  Project-URL: Homepage, https://github.com/samplehc/samplehc-python
6
6
  Project-URL: Repository, https://github.com/samplehc/samplehc-python
@@ -11,7 +11,7 @@ samplehc/_resource.py,sha256=Mdg6fhf_5wYd2K2JZ4BQIJMPqJOWetqpJE3h3MmGZJE,1160
11
11
  samplehc/_response.py,sha256=UzsuYRbic274gcdUWq9ShPkdRt7VrzkjaqwSwdxqWIs,28816
12
12
  samplehc/_streaming.py,sha256=yAEL3kUU3BoKZpDC6T6Psl11nDAMMAjSyWvWnk3R8vU,10140
13
13
  samplehc/_types.py,sha256=p36YZ57rnQn_RIwBPcrliWawLmV62NbJeNxPy7Cm5P8,6199
14
- samplehc/_version.py,sha256=hnvUz3j8Wlrpj1S3L_C8uFWZi2DaKJb14YbSTFsoFks,160
14
+ samplehc/_version.py,sha256=yb8I3jnzGDOvC72dNNYyDSKXQGFB65b3TXu49fbA3sE,160
15
15
  samplehc/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  samplehc/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
17
17
  samplehc/_utils/_logs.py,sha256=EEt3P1dtoGlkVTZOwVml4xf3j9DvdDTzG2TpBjcQINc,789
@@ -32,15 +32,16 @@ samplehc/resources/v2/async_results.py,sha256=ZGJZKd0kmAzhhXuIT16X0f87-UvUPp7TOv
32
32
  samplehc/resources/v2/browser_agents.py,sha256=61FESBo--lMjtvYu2Ld63ocjjdXe71bwVbxVgRnp_rw,6869
33
33
  samplehc/resources/v2/communication.py,sha256=tdRHQWa3ClbQneGFP2iHQ4jeFAguiSxFCWu_SI_ELqU,21240
34
34
  samplehc/resources/v2/database.py,sha256=ZsVOtU-a9c4RmUp1D_4LCrHR0VEowlnUL1tOjzL18rA,7956
35
+ samplehc/resources/v2/events.py,sha256=zqLt8y2p-H1pXREevjxF5rUVBtP95cZeygUK9RLvoGE,6682
35
36
  samplehc/resources/v2/policies.py,sha256=tejnAQ3K27_FBbLfDEufX7Z0ZIYx12F8AG_UrEpqJsY,25211
36
- samplehc/resources/v2/v2.py,sha256=Vc8q5agcclQpTkTS1sNgbAJRb6EnilZBYhyhc06dnL4,19959
37
+ samplehc/resources/v2/v2.py,sha256=HTJmNdx6ymqsjYczYeqEixlfU_PmaFIzyqc6fUjwoyg,19952
37
38
  samplehc/resources/v2/workflows.py,sha256=oZ0_vqeHvs02mos0DUPg63LDTMo_i_azz6rLodCTKQ8,14266
38
39
  samplehc/resources/v2/browser_automation/__init__.py,sha256=a7mi3Gg12Vk6CCsm3Q50nsrwLzXK_sVk_iV6ORlqqJY,1172
39
40
  samplehc/resources/v2/browser_automation/availity.py,sha256=3ApIlx_si_I4Kqe4NQ68gZ-z68BCpvj858L73BMEbiA,9545
40
41
  samplehc/resources/v2/browser_automation/browser_automation.py,sha256=jiBEq2DdaD6pEaWG2X2SvxNJSug-zaQ8GInPnYALcvQ,4071
41
42
  samplehc/resources/v2/clearinghouse/__init__.py,sha256=q2mqlV5eEa0qmHkoQUSDMsZ5zxunWN5Eo6boQaNs49Q,1530
42
43
  samplehc/resources/v2/clearinghouse/claim.py,sha256=wH5GIkGOHgKIO9rj7L7g3uskN6V0wlhO3XK_qiIqC9w,16522
43
- samplehc/resources/v2/clearinghouse/clearinghouse.py,sha256=pYGjyJo1hnczykfjM7yMIvqW56ZhKTNVbJIY9CdpSDo,27221
44
+ samplehc/resources/v2/clearinghouse/clearinghouse.py,sha256=e8E3gGcdOVS9db8S-gDtOtc5NjCFL0ub59y7NRtlrk8,28139
44
45
  samplehc/resources/v2/clearinghouse/payers.py,sha256=snsp1vc2o54Hi_MZgUh_9fhR3gnC-mVxXWlMoxl6kJk,8620
45
46
  samplehc/resources/v2/documents/__init__.py,sha256=9Hje-AZc-uRh1mgxCDKcRtLRxIdSOB3P7QJVGKCGAc0,2509
46
47
  samplehc/resources/v2/documents/documents.py,sha256=f_M4Je29diD1WjL3SM36OA7gKrJSDGNnzyJrm1HRLeg,59304
@@ -48,14 +49,10 @@ samplehc/resources/v2/documents/formats.py,sha256=41o04NRVECHsCSQhATpKh9BPn-vlpz
48
49
  samplehc/resources/v2/documents/legacy.py,sha256=_3CYS1az2cp3BxOmPOgMAlqGH76_McAojwoUqnuEG4w,10793
49
50
  samplehc/resources/v2/documents/pdf_template.py,sha256=z7BPMYIK0xSnhehV5vWla8bn5ehPF98MLyoSbwmVGco,6442
50
51
  samplehc/resources/v2/documents/templates.py,sha256=YBh5E3JcpQ1X_iCTFfrFcOltlUZvSCUr7KTH8jJQ-xc,17101
51
- samplehc/resources/v2/events/__init__.py,sha256=ixFQlRmV1rvJ97LNri-u0phPNm0LfNiMxomm_675ZE8,963
52
- samplehc/resources/v2/events/events.py,sha256=LO8XsJ9dIcHtycGfgxGlaMQRmsWm2uNzUjUSRrLxgJM,7676
53
- samplehc/resources/v2/events/hie/__init__.py,sha256=HxdTnAT7VrZI0pRArGw3mvcymxje5Fs2yCR7pyBlV68,924
54
- samplehc/resources/v2/events/hie/adt.py,sha256=nymKqFCRH8yZOBmJz7qa7xXa6VDhNLEAMeDXJXQH-qM,9576
55
- samplehc/resources/v2/events/hie/hie.py,sha256=XVRm9KU7qO-XYuUhO_XxTB2JVj3-jFYpmUVtKdpnDvM,3408
56
- samplehc/resources/v2/hie/__init__.py,sha256=-j4lJKDacYHe_clPoh02daaFAXBSpU07xaWejo1UqyM,1002
52
+ samplehc/resources/v2/hie/__init__.py,sha256=kEs1If5SVR3Inp__6822fiPvynz8MwRIJdYzzwuK0m0,1413
53
+ samplehc/resources/v2/hie/adt.py,sha256=Es3OBX4klkHJRCbqpTz_JjVK5fLB0qFFc7HsBF_Yq1g,9562
57
54
  samplehc/resources/v2/hie/documents.py,sha256=uDF0pVXLku8qJXy4gcju_EemlxXtN7Rhpyfz74xXWyc,15396
58
- samplehc/resources/v2/hie/hie.py,sha256=3z2xmxvEpM8Q4U5tugzH1g3-BDiQNCZ9Rv334Xw_ZzY,3580
55
+ samplehc/resources/v2/hie/hie.py,sha256=bdTM7CeHELmGULZRkOHnnfg-MoKadTnbaY9hDBtNMv4,4550
59
56
  samplehc/resources/v2/integrations/__init__.py,sha256=MHYvKmsYfoivv4pJtSUR3o0tR145F6sfv8ph16CL8TU,2906
60
57
  samplehc/resources/v2/integrations/careviso.py,sha256=mA1JmwPm0F_pEe6HbprvdemckYFg8qc4G7iemtafjiY,15578
61
58
  samplehc/resources/v2/integrations/integrations.py,sha256=I62fQT-hVbixS8_bSXvQ_Glu1Uj9b4UQMyDf6phT0gI,8265
@@ -101,7 +98,7 @@ samplehc/types/v2/clearinghouse_calculate_patient_cost_params.py,sha256=maMspSTt
101
98
  samplehc/types/v2/clearinghouse_check_eligibility_params.py,sha256=403fR7fuCUNla_YfBx0hQD3_ykBBsPAbsp8el-o8mWo,1465
102
99
  samplehc/types/v2/clearinghouse_check_eligibility_response.py,sha256=YFLinf3tqd55F5LS5HarQp9KO3R-qLdf7v1WmPkAaJo,301
103
100
  samplehc/types/v2/clearinghouse_coordination_of_benefits_params.py,sha256=09vrP_Ded8wANL1jBXVBXH7fOXMqYV8ndQclUH4QaMg,1496
104
- samplehc/types/v2/clearinghouse_run_discovery_params.py,sha256=4S3Okkx6HVUTDZD7QDhHUjpkVh4fpf4R89kGtwhCMgU,1474
101
+ samplehc/types/v2/clearinghouse_run_discovery_params.py,sha256=JiXY5K6qy70xzuQYhWsgo9eLRGs_N1RI5rIs3FRThWg,1779
105
102
  samplehc/types/v2/clearinghouse_run_discovery_response.py,sha256=nwWK_9tJKcdOb8-IrnmjqmlMrkJfOrdcfw6BocGfN_I,288
106
103
  samplehc/types/v2/communication_send_email_params.py,sha256=thNaWdxK4JwOk4JQ0zvb3rab9AlOfkDbaweP_7vXsIg,1638
107
104
  samplehc/types/v2/communication_send_fax_params.py,sha256=iVnTNnpH31avBEK86gFT8Y9MjduB693NQhQJCN6c3f4,1552
@@ -202,10 +199,8 @@ samplehc/types/v2/documents/template_generate_document_async_params.py,sha256=5a
202
199
  samplehc/types/v2/documents/template_generate_document_async_response.py,sha256=xFivOxAB8jahS6vKcr-3TGR4IhF0INDH37nivTVoHSk,402
203
200
  samplehc/types/v2/documents/template_render_document_params.py,sha256=kEmhC3acpJ9uTOF-AZL4BGAGwi-10Rps1fbFVWj8Z4w,571
204
201
  samplehc/types/v2/documents/template_render_document_response.py,sha256=sUZYTl_AX3PN9H4B4Xs50tO6eFsj1rXOQuYLZgyt2Fc,319
205
- samplehc/types/v2/events/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
206
- samplehc/types/v2/events/hie/__init__.py,sha256=peMOjMj0eadLKyqBEUvRPTGBa8mryZt_4joWLZjIsJY,198
207
- samplehc/types/v2/events/hie/adt_subscribe_params.py,sha256=_U0YPKsg5VW2rgTzSaPWlczPaBOQrEc4nJujPhkA5K8,2956
208
- samplehc/types/v2/hie/__init__.py,sha256=eT5VvujnS-QJKStL44Loj_u_XtFggofT0Jc4PrzK798,366
202
+ samplehc/types/v2/hie/__init__.py,sha256=xRIS1W4FJDJeqAukGxx2ZWzJBpWx_95Ckx5zl2UEunM,441
203
+ samplehc/types/v2/hie/adt_subscribe_params.py,sha256=0gjI4JxtsRBD5ktli9d6O5k_TNM-Wj3p1IFYZB1TTDw,2955
209
204
  samplehc/types/v2/hie/document_query_params.py,sha256=a0o8USrHhSaKoW7Yc5KwLHXQmNhrm0NRez2w6TdIWPM,2957
210
205
  samplehc/types/v2/hie/document_query_response.py,sha256=scLiQ-nSkRW8vbAg-QiPgkQRLnBIfmjLKqauoNs0cZQ,442
211
206
  samplehc/types/v2/hie/document_upload_params.py,sha256=y7Bu6fD5YyZDCGpxN2z5wBmJuENlPSfl_mmSUqN7V9k,1836
@@ -253,7 +248,7 @@ samplehc/types/v2/tasks/state_update_params.py,sha256=qSLE4Ic5PJlkvcFbTu-KlfH6qg
253
248
  samplehc/types/v2/tasks/state_update_response.py,sha256=ZLnR_rl9yasOnaxQvcM3fiaI_H16pDjBve1GUUleul4,214
254
249
  samplehc/types/v2/workflow_runs/__init__.py,sha256=Nmrudr30JDOaGyeMcc_dqaqqs_9kTdebHD7W0vHHfdE,208
255
250
  samplehc/types/v2/workflow_runs/step_get_output_response.py,sha256=XhRGcpEmxu4TBgpF8r63u5-ruEUDWuXr0ahv1CD9gis,333
256
- samplehc-0.7.0.dist-info/METADATA,sha256=rny8-Sf8K7KJ-mdqvqSwLa8kiQitDdTTqYfQWyiitHo,14284
257
- samplehc-0.7.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
258
- samplehc-0.7.0.dist-info/licenses/LICENSE,sha256=nrJkK4JSAQb1p7FJcTysujPJoAZtrnXxwsLkwHz0-J8,11347
259
- samplehc-0.7.0.dist-info/RECORD,,
251
+ samplehc-0.8.0.dist-info/METADATA,sha256=lRrbCkj-gZO5nOlbu1pPIHesU9lMEg7RVanfdQDPL5k,14284
252
+ samplehc-0.8.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
253
+ samplehc-0.8.0.dist-info/licenses/LICENSE,sha256=nrJkK4JSAQb1p7FJcTysujPJoAZtrnXxwsLkwHz0-J8,11347
254
+ samplehc-0.8.0.dist-info/RECORD,,
@@ -1,33 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from .hie import (
4
- HieResource,
5
- AsyncHieResource,
6
- HieResourceWithRawResponse,
7
- AsyncHieResourceWithRawResponse,
8
- HieResourceWithStreamingResponse,
9
- AsyncHieResourceWithStreamingResponse,
10
- )
11
- from .events import (
12
- EventsResource,
13
- AsyncEventsResource,
14
- EventsResourceWithRawResponse,
15
- AsyncEventsResourceWithRawResponse,
16
- EventsResourceWithStreamingResponse,
17
- AsyncEventsResourceWithStreamingResponse,
18
- )
19
-
20
- __all__ = [
21
- "HieResource",
22
- "AsyncHieResource",
23
- "HieResourceWithRawResponse",
24
- "AsyncHieResourceWithRawResponse",
25
- "HieResourceWithStreamingResponse",
26
- "AsyncHieResourceWithStreamingResponse",
27
- "EventsResource",
28
- "AsyncEventsResource",
29
- "EventsResourceWithRawResponse",
30
- "AsyncEventsResourceWithRawResponse",
31
- "EventsResourceWithStreamingResponse",
32
- "AsyncEventsResourceWithStreamingResponse",
33
- ]
@@ -1,33 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from .adt import (
4
- AdtResource,
5
- AsyncAdtResource,
6
- AdtResourceWithRawResponse,
7
- AsyncAdtResourceWithRawResponse,
8
- AdtResourceWithStreamingResponse,
9
- AsyncAdtResourceWithStreamingResponse,
10
- )
11
- from .hie import (
12
- HieResource,
13
- AsyncHieResource,
14
- HieResourceWithRawResponse,
15
- AsyncHieResourceWithRawResponse,
16
- HieResourceWithStreamingResponse,
17
- AsyncHieResourceWithStreamingResponse,
18
- )
19
-
20
- __all__ = [
21
- "AdtResource",
22
- "AsyncAdtResource",
23
- "AdtResourceWithRawResponse",
24
- "AsyncAdtResourceWithRawResponse",
25
- "AdtResourceWithStreamingResponse",
26
- "AsyncAdtResourceWithStreamingResponse",
27
- "HieResource",
28
- "AsyncHieResource",
29
- "HieResourceWithRawResponse",
30
- "AsyncHieResourceWithRawResponse",
31
- "HieResourceWithStreamingResponse",
32
- "AsyncHieResourceWithStreamingResponse",
33
- ]
@@ -1,102 +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 .adt import (
6
- AdtResource,
7
- AsyncAdtResource,
8
- AdtResourceWithRawResponse,
9
- AsyncAdtResourceWithRawResponse,
10
- AdtResourceWithStreamingResponse,
11
- AsyncAdtResourceWithStreamingResponse,
12
- )
13
- from ....._compat import cached_property
14
- from ....._resource import SyncAPIResource, AsyncAPIResource
15
-
16
- __all__ = ["HieResource", "AsyncHieResource"]
17
-
18
-
19
- class HieResource(SyncAPIResource):
20
- @cached_property
21
- def adt(self) -> AdtResource:
22
- return AdtResource(self._client)
23
-
24
- @cached_property
25
- def with_raw_response(self) -> HieResourceWithRawResponse:
26
- """
27
- This property can be used as a prefix for any HTTP method call to return
28
- the raw response object instead of the parsed content.
29
-
30
- For more information, see https://www.github.com/samplehc/samplehc-python#accessing-raw-response-data-eg-headers
31
- """
32
- return HieResourceWithRawResponse(self)
33
-
34
- @cached_property
35
- def with_streaming_response(self) -> HieResourceWithStreamingResponse:
36
- """
37
- An alternative to `.with_raw_response` that doesn't eagerly read the response body.
38
-
39
- For more information, see https://www.github.com/samplehc/samplehc-python#with_streaming_response
40
- """
41
- return HieResourceWithStreamingResponse(self)
42
-
43
-
44
- class AsyncHieResource(AsyncAPIResource):
45
- @cached_property
46
- def adt(self) -> AsyncAdtResource:
47
- return AsyncAdtResource(self._client)
48
-
49
- @cached_property
50
- def with_raw_response(self) -> AsyncHieResourceWithRawResponse:
51
- """
52
- This property can be used as a prefix for any HTTP method call to return
53
- the raw response object instead of the parsed content.
54
-
55
- For more information, see https://www.github.com/samplehc/samplehc-python#accessing-raw-response-data-eg-headers
56
- """
57
- return AsyncHieResourceWithRawResponse(self)
58
-
59
- @cached_property
60
- def with_streaming_response(self) -> AsyncHieResourceWithStreamingResponse:
61
- """
62
- An alternative to `.with_raw_response` that doesn't eagerly read the response body.
63
-
64
- For more information, see https://www.github.com/samplehc/samplehc-python#with_streaming_response
65
- """
66
- return AsyncHieResourceWithStreamingResponse(self)
67
-
68
-
69
- class HieResourceWithRawResponse:
70
- def __init__(self, hie: HieResource) -> None:
71
- self._hie = hie
72
-
73
- @cached_property
74
- def adt(self) -> AdtResourceWithRawResponse:
75
- return AdtResourceWithRawResponse(self._hie.adt)
76
-
77
-
78
- class AsyncHieResourceWithRawResponse:
79
- def __init__(self, hie: AsyncHieResource) -> None:
80
- self._hie = hie
81
-
82
- @cached_property
83
- def adt(self) -> AsyncAdtResourceWithRawResponse:
84
- return AsyncAdtResourceWithRawResponse(self._hie.adt)
85
-
86
-
87
- class HieResourceWithStreamingResponse:
88
- def __init__(self, hie: HieResource) -> None:
89
- self._hie = hie
90
-
91
- @cached_property
92
- def adt(self) -> AdtResourceWithStreamingResponse:
93
- return AdtResourceWithStreamingResponse(self._hie.adt)
94
-
95
-
96
- class AsyncHieResourceWithStreamingResponse:
97
- def __init__(self, hie: AsyncHieResource) -> None:
98
- self._hie = hie
99
-
100
- @cached_property
101
- def adt(self) -> AsyncAdtResourceWithStreamingResponse:
102
- return AsyncAdtResourceWithStreamingResponse(self._hie.adt)
@@ -1,3 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from __future__ import annotations
@@ -1,5 +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 .adt_subscribe_params import AdtSubscribeParams as AdtSubscribeParams