samplehc 0.5.0__py3-none-any.whl → 0.6.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 (45) hide show
  1. samplehc/_version.py +1 -1
  2. samplehc/resources/v2/__init__.py +14 -0
  3. samplehc/resources/v2/browser_agents.py +177 -0
  4. samplehc/resources/v2/clearinghouse/claim.py +20 -32
  5. samplehc/resources/v2/communication.py +8 -0
  6. samplehc/resources/v2/database.py +19 -9
  7. samplehc/resources/v2/events.py +2 -2
  8. samplehc/resources/v2/integrations/__init__.py +14 -0
  9. samplehc/resources/v2/integrations/glidian/__init__.py +33 -0
  10. samplehc/resources/v2/integrations/glidian/glidian.py +425 -0
  11. samplehc/resources/v2/integrations/glidian/prior_authorizations/__init__.py +33 -0
  12. samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py +276 -0
  13. samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py +527 -0
  14. samplehc/resources/v2/integrations/integrations.py +32 -0
  15. samplehc/resources/v2/v2.py +32 -0
  16. samplehc/types/v2/__init__.py +2 -0
  17. samplehc/types/v2/browser_agent_invoke_params.py +13 -0
  18. samplehc/types/v2/browser_agent_invoke_response.py +12 -0
  19. samplehc/types/v2/clearinghouse/claim_submit_params.py +1214 -882
  20. samplehc/types/v2/clearinghouse/claim_submit_response.py +10 -1
  21. samplehc/types/v2/communication_send_email_params.py +3 -0
  22. samplehc/types/v2/database_execute_sql_params.py +5 -3
  23. samplehc/types/v2/event_emit_params.py +1 -1
  24. samplehc/types/v2/integrations/__init__.py +10 -0
  25. samplehc/types/v2/integrations/glidian/__init__.py +20 -0
  26. samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_params.py +32 -0
  27. samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_response.py +22 -0
  28. samplehc/types/v2/integrations/glidian/prior_authorization_retrieve_record_response.py +11 -0
  29. samplehc/types/v2/integrations/glidian/prior_authorization_submit_response.py +14 -0
  30. samplehc/types/v2/integrations/glidian/prior_authorization_update_record_params.py +20 -0
  31. samplehc/types/v2/integrations/glidian/prior_authorization_update_record_response.py +14 -0
  32. samplehc/types/v2/integrations/glidian/prior_authorizations/__init__.py +7 -0
  33. samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_list_response.py +40 -0
  34. samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_params.py +22 -0
  35. samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_response.py +17 -0
  36. samplehc/types/v2/integrations/glidian_get_submission_requirements_params.py +17 -0
  37. samplehc/types/v2/integrations/glidian_get_submission_requirements_response.py +31 -0
  38. samplehc/types/v2/integrations/glidian_list_payers_params.py +11 -0
  39. samplehc/types/v2/integrations/glidian_list_payers_response.py +17 -0
  40. samplehc/types/v2/integrations/glidian_list_services_params.py +13 -0
  41. samplehc/types/v2/integrations/glidian_list_services_response.py +19 -0
  42. {samplehc-0.5.0.dist-info → samplehc-0.6.0.dist-info}/METADATA +1 -1
  43. {samplehc-0.5.0.dist-info → samplehc-0.6.0.dist-info}/RECORD +45 -20
  44. {samplehc-0.5.0.dist-info → samplehc-0.6.0.dist-info}/WHEEL +0 -0
  45. {samplehc-0.5.0.dist-info → samplehc-0.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,9 +1,18 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
+ from pydantic import Field as FieldInfo
4
+
3
5
  from ...._models import BaseModel
4
6
 
5
7
  __all__ = ["ClaimSubmitResponse"]
6
8
 
7
9
 
8
10
  class ClaimSubmitResponse(BaseModel):
9
- async_result_id: str
11
+ claim_submission_id: str = FieldInfo(alias="claimSubmissionId")
12
+ """Sample's internal ID of the claim submission."""
13
+
14
+ patient_control_number: str = FieldInfo(alias="patientControlNumber")
15
+ """The patient control number we send to the clearinghouse for identification.
16
+
17
+ This is a alphanumeric string with <= 20 characters.
18
+ """
@@ -37,6 +37,9 @@ class CommunicationSendEmailParams(TypedDict, total=False):
37
37
  Note that encrypted emails do not support attachments.
38
38
  """
39
39
 
40
+ from_: Annotated[str, PropertyInfo(alias="from")]
41
+ """The email address of the sender"""
42
+
40
43
  zip_attachments: Annotated[bool, PropertyInfo(alias="zipAttachments")]
41
44
  """Whether to compress all attachments into a single zip file before sending"""
42
45
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import List, Union, Optional
5
+ from typing import Dict, List, Union, Iterable, Optional
6
6
  from typing_extensions import Literal, Required, TypedDict
7
7
 
8
8
  __all__ = ["DatabaseExecuteSqlParams"]
@@ -12,8 +12,10 @@ class DatabaseExecuteSqlParams(TypedDict, total=False):
12
12
  query: Required[str]
13
13
  """The SQL query to execute."""
14
14
 
15
- params: List[Union[str, float, bool, Optional[Literal["null"]]]]
15
+ params: List[Union[str, float, bool, Optional[Literal["null"]], Iterable[object], Dict[str, object]]]
16
16
  """An array of parameters to be used in the SQL query.
17
17
 
18
- Use placeholders like $1, $2, etc. in the query string.
18
+ Supports primitive types (string, number, boolean, null), arrays, and objects.
19
+ Use placeholders like $1, $2, etc. in the query string. Examples: ["hello", 123,
20
+ [1,2,3], {"name": "John", "age": 30}]
19
21
  """
@@ -16,4 +16,4 @@ class EventEmitParams(TypedDict, total=False):
16
16
  payload: object
17
17
  """The payload data for the event."""
18
18
 
19
- idempotency_key: Annotated[str, PropertyInfo(alias="Idempotency-Key")]
19
+ idempotency_key: Annotated[str, PropertyInfo(alias="idempotency-key")]
@@ -4,7 +4,17 @@ from __future__ import annotations
4
4
 
5
5
  from .snowflake_query_params import SnowflakeQueryParams as SnowflakeQueryParams
6
6
  from .snowflake_query_response import SnowflakeQueryResponse as SnowflakeQueryResponse
7
+ from .glidian_list_payers_params import GlidianListPayersParams as GlidianListPayersParams
7
8
  from .careviso_get_payers_response import CarevisoGetPayersResponse as CarevisoGetPayersResponse
9
+ from .glidian_list_payers_response import GlidianListPayersResponse as GlidianListPayersResponse
10
+ from .glidian_list_services_params import GlidianListServicesParams as GlidianListServicesParams
11
+ from .glidian_list_services_response import GlidianListServicesResponse as GlidianListServicesResponse
8
12
  from .careviso_submit_prior_authorization_params import (
9
13
  CarevisoSubmitPriorAuthorizationParams as CarevisoSubmitPriorAuthorizationParams,
10
14
  )
15
+ from .glidian_get_submission_requirements_params import (
16
+ GlidianGetSubmissionRequirementsParams as GlidianGetSubmissionRequirementsParams,
17
+ )
18
+ from .glidian_get_submission_requirements_response import (
19
+ GlidianGetSubmissionRequirementsResponse as GlidianGetSubmissionRequirementsResponse,
20
+ )
@@ -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 .prior_authorization_submit_response import PriorAuthorizationSubmitResponse as PriorAuthorizationSubmitResponse
6
+ from .prior_authorization_create_draft_params import (
7
+ PriorAuthorizationCreateDraftParams as PriorAuthorizationCreateDraftParams,
8
+ )
9
+ from .prior_authorization_update_record_params import (
10
+ PriorAuthorizationUpdateRecordParams as PriorAuthorizationUpdateRecordParams,
11
+ )
12
+ from .prior_authorization_create_draft_response import (
13
+ PriorAuthorizationCreateDraftResponse as PriorAuthorizationCreateDraftResponse,
14
+ )
15
+ from .prior_authorization_update_record_response import (
16
+ PriorAuthorizationUpdateRecordResponse as PriorAuthorizationUpdateRecordResponse,
17
+ )
18
+ from .prior_authorization_retrieve_record_response import (
19
+ PriorAuthorizationRetrieveRecordResponse as PriorAuthorizationRetrieveRecordResponse,
20
+ )
@@ -0,0 +1,32 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import Dict, Iterable
6
+ from typing_extensions import Required, Annotated, TypedDict
7
+
8
+ from ....._utils import PropertyInfo
9
+
10
+ __all__ = ["PriorAuthorizationCreateDraftParams", "Attachment"]
11
+
12
+
13
+ class PriorAuthorizationCreateDraftParams(TypedDict, total=False):
14
+ attachments: Required[Iterable[Attachment]]
15
+
16
+ glidian_payer_id: Required[Annotated[float, PropertyInfo(alias="glidianPayerId")]]
17
+
18
+ glidian_service_id: Required[Annotated[str, PropertyInfo(alias="glidianServiceId")]]
19
+
20
+ reference_number: Required[Annotated[str, PropertyInfo(alias="referenceNumber")]]
21
+
22
+ submission_requirements: Required[Annotated[Dict[str, str], PropertyInfo(alias="submissionRequirements")]]
23
+
24
+ reference_number_two: Annotated[str, PropertyInfo(alias="referenceNumberTwo")]
25
+
26
+ state: str
27
+
28
+
29
+ class Attachment(TypedDict, total=False):
30
+ id: Required[str]
31
+
32
+ file_name: Required[Annotated[str, PropertyInfo(alias="fileName")]]
@@ -0,0 +1,22 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List, Optional
4
+ from typing_extensions import Literal
5
+
6
+ from pydantic import Field as FieldInfo
7
+
8
+ from ....._models import BaseModel
9
+
10
+ __all__ = ["PriorAuthorizationCreateDraftResponse"]
11
+
12
+
13
+ class PriorAuthorizationCreateDraftResponse(BaseModel):
14
+ are_all_questions_answered: bool = FieldInfo(alias="areAllQuestionsAnswered")
15
+
16
+ clinical_questions: List[object] = FieldInfo(alias="clinicalQuestions")
17
+
18
+ glidian_record_id: str = FieldInfo(alias="glidianRecordId")
19
+
20
+ status: Literal["draft"]
21
+
22
+ record: Optional[object] = None
@@ -0,0 +1,11 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Dict
4
+
5
+ from ....._models import BaseModel
6
+
7
+ __all__ = ["PriorAuthorizationRetrieveRecordResponse"]
8
+
9
+
10
+ class PriorAuthorizationRetrieveRecordResponse(BaseModel):
11
+ record: Dict[str, object]
@@ -0,0 +1,14 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Optional
4
+ from typing_extensions import Literal
5
+
6
+ from ....._models import BaseModel
7
+
8
+ __all__ = ["PriorAuthorizationSubmitResponse"]
9
+
10
+
11
+ class PriorAuthorizationSubmitResponse(BaseModel):
12
+ status: Literal["submitted"]
13
+
14
+ record: Optional[object] = None
@@ -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 import Dict
6
+ from typing_extensions import Required, Annotated, TypedDict
7
+
8
+ from ....._utils import PropertyInfo
9
+
10
+ __all__ = ["PriorAuthorizationUpdateRecordParams"]
11
+
12
+
13
+ class PriorAuthorizationUpdateRecordParams(TypedDict, total=False):
14
+ slug: Required[str]
15
+
16
+ reference_number: Annotated[str, PropertyInfo(alias="referenceNumber")]
17
+
18
+ reference_number_two: Annotated[str, PropertyInfo(alias="referenceNumberTwo")]
19
+
20
+ submission_requirements: Annotated[Dict[str, str], PropertyInfo(alias="submissionRequirements")]
@@ -0,0 +1,14 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Optional
4
+ from typing_extensions import Literal
5
+
6
+ from ....._models import BaseModel
7
+
8
+ __all__ = ["PriorAuthorizationUpdateRecordResponse"]
9
+
10
+
11
+ class PriorAuthorizationUpdateRecordResponse(BaseModel):
12
+ status: Literal["updated"]
13
+
14
+ record: Optional[object] = None
@@ -0,0 +1,7 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from .clinical_question_list_response import ClinicalQuestionListResponse as ClinicalQuestionListResponse
6
+ from .clinical_question_update_params import ClinicalQuestionUpdateParams as ClinicalQuestionUpdateParams
7
+ from .clinical_question_update_response import ClinicalQuestionUpdateResponse as ClinicalQuestionUpdateResponse
@@ -0,0 +1,40 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List, Union, Optional
4
+ from typing_extensions import Literal
5
+
6
+ from pydantic import Field as FieldInfo
7
+
8
+ from ......_models import BaseModel
9
+
10
+ __all__ = ["ClinicalQuestionListResponse", "Question", "Response"]
11
+
12
+
13
+ class Question(BaseModel):
14
+ id: float
15
+
16
+ prompt: str
17
+
18
+ type: Literal["text", "select", "select-other", "multi-select"]
19
+
20
+ options: Optional[List[str]] = None
21
+
22
+
23
+ class Response(BaseModel):
24
+ question_id: float
25
+
26
+ value: Union[str, List[str]]
27
+
28
+ is_valid: Optional[bool] = None
29
+
30
+ other_value: Optional[str] = None
31
+
32
+
33
+ class ClinicalQuestionListResponse(BaseModel):
34
+ are_all_questions_answered: bool = FieldInfo(alias="areAllQuestionsAnswered")
35
+
36
+ questions: List[Question]
37
+
38
+ status: Literal["success"]
39
+
40
+ responses: Optional[List[Response]] = None
@@ -0,0 +1,22 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import Dict, List, Union
6
+ from typing_extensions import Required, Annotated, TypedDict
7
+
8
+ from ......_utils import PropertyInfo
9
+
10
+ __all__ = ["ClinicalQuestionUpdateParams", "Responses"]
11
+
12
+
13
+ class ClinicalQuestionUpdateParams(TypedDict, total=False):
14
+ slug: Required[str]
15
+
16
+ responses: Required[Dict[str, Responses]]
17
+
18
+
19
+ class Responses(TypedDict, total=False):
20
+ value: Required[Union[str, List[str]]]
21
+
22
+ other_value: Annotated[str, PropertyInfo(alias="otherValue")]
@@ -0,0 +1,17 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List
4
+
5
+ from pydantic import Field as FieldInfo
6
+
7
+ from ......_models import BaseModel
8
+
9
+ __all__ = ["ClinicalQuestionUpdateResponse"]
10
+
11
+
12
+ class ClinicalQuestionUpdateResponse(BaseModel):
13
+ are_all_questions_answered: bool = FieldInfo(alias="areAllQuestionsAnswered")
14
+
15
+ can_submit: bool = FieldInfo(alias="canSubmit")
16
+
17
+ questions: List[object]
@@ -0,0 +1,17 @@
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__ = ["GlidianGetSubmissionRequirementsParams"]
10
+
11
+
12
+ class GlidianGetSubmissionRequirementsParams(TypedDict, total=False):
13
+ insurance_id: Required[Annotated[float, PropertyInfo(alias="insuranceId")]]
14
+
15
+ service_id: Required[Annotated[float, PropertyInfo(alias="serviceId")]]
16
+
17
+ state: str
@@ -0,0 +1,31 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List, Union
4
+ from typing_extensions import Literal, TypeAlias
5
+
6
+ from pydantic import Field as FieldInfo
7
+
8
+ from ...._models import BaseModel
9
+
10
+ __all__ = ["GlidianGetSubmissionRequirementsResponse", "UnionMember0", "UnionMember0Requirements", "UnionMember1"]
11
+
12
+
13
+ class UnionMember0Requirements(BaseModel):
14
+ available_fields: List[str] = FieldInfo(alias="availableFields")
15
+
16
+ required_fields: List[str] = FieldInfo(alias="requiredFields")
17
+
18
+
19
+ class UnionMember0(BaseModel):
20
+ requirements: UnionMember0Requirements
21
+
22
+ status: Literal["success"]
23
+
24
+
25
+ class UnionMember1(BaseModel):
26
+ available_states: List[str] = FieldInfo(alias="availableStates")
27
+
28
+ status: Literal["invalid-state"]
29
+
30
+
31
+ GlidianGetSubmissionRequirementsResponse: TypeAlias = Union[UnionMember0, UnionMember1]
@@ -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 TypedDict
6
+
7
+ __all__ = ["GlidianListPayersParams"]
8
+
9
+
10
+ class GlidianListPayersParams(TypedDict, total=False):
11
+ state: str
@@ -0,0 +1,17 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List
4
+ from typing_extensions import TypeAlias
5
+
6
+ from ...._models import BaseModel
7
+
8
+ __all__ = ["GlidianListPayersResponse", "GlidianListPayersResponseItem"]
9
+
10
+
11
+ class GlidianListPayersResponseItem(BaseModel):
12
+ id: float
13
+
14
+ name: str
15
+
16
+
17
+ GlidianListPayersResponse: TypeAlias = List[GlidianListPayersResponseItem]
@@ -0,0 +1,13 @@
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 Annotated, TypedDict
6
+
7
+ from ...._utils import PropertyInfo
8
+
9
+ __all__ = ["GlidianListServicesParams"]
10
+
11
+
12
+ class GlidianListServicesParams(TypedDict, total=False):
13
+ insurance_id: Annotated[float, PropertyInfo(alias="insuranceId")]
@@ -0,0 +1,19 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List
4
+ from typing_extensions import TypeAlias
5
+
6
+ from ...._models import BaseModel
7
+
8
+ __all__ = ["GlidianListServicesResponse", "GlidianListServicesResponseItem"]
9
+
10
+
11
+ class GlidianListServicesResponseItem(BaseModel):
12
+ id: float
13
+
14
+ name: str
15
+
16
+ type: str
17
+
18
+
19
+ GlidianListServicesResponse: TypeAlias = List[GlidianListServicesResponseItem]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: samplehc
3
- Version: 0.5.0
3
+ Version: 0.6.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=KC0NnOISNdorvneY9JqltjLBQgTffNGKme5fQPsPIFE,160
14
+ samplehc/_version.py,sha256=mhnz1VrtpYao7_uqmY4E5iqL8JaCZKhzCZZZ6QbvPcg,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
@@ -27,19 +27,20 @@ samplehc/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
27
27
  samplehc/resources/__init__.py,sha256=d6hMh8jB7d3_ni6az6tWaXvUcIewUm0vRE2O_Y4ZTFw,898
28
28
  samplehc/resources/v1/__init__.py,sha256=TSJ6b8GNHShyK5w7efHV93u1bY2jYVySQRa2zKc1dKM,500
29
29
  samplehc/resources/v1/v1.py,sha256=bpscm6eq4Hxh1-E0smKslGAiLYRZvf_XHkcPX-YqZAg,10989
30
- samplehc/resources/v2/__init__.py,sha256=mhM7SXjTlJay7ld7KXJPiIAiifSoReQLUyHVfJd7fEU,7440
30
+ samplehc/resources/v2/__init__.py,sha256=wPyLMRjFN73m3XD6y_0NWm0lyMg--2AeFlbevQDXeW4,7982
31
31
  samplehc/resources/v2/async_results.py,sha256=ZGJZKd0kmAzhhXuIT16X0f87-UvUPp7TOvj6Sd43xkY,13648
32
- samplehc/resources/v2/communication.py,sha256=rPuY1otPaISMSz6uZBTrKVFCY5Tey5Tod4-x8eVVBnA,20982
33
- samplehc/resources/v2/database.py,sha256=vDf4C4XOTwXzIhurcGS_1-2X2cWUNRyMEyvcVeX6a0U,7142
34
- samplehc/resources/v2/events.py,sha256=DyvKJIqjkueT0b4ENAIN-vE1q8FdhEQy84b8FenQVLQ,6682
32
+ samplehc/resources/v2/browser_agents.py,sha256=61FESBo--lMjtvYu2Ld63ocjjdXe71bwVbxVgRnp_rw,6869
33
+ samplehc/resources/v2/communication.py,sha256=tdRHQWa3ClbQneGFP2iHQ4jeFAguiSxFCWu_SI_ELqU,21240
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=u1h88bAaY0J9YUxGtDrsAgI8vaeRdM5sF8qq3_e03Sc,18685
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
- samplehc/resources/v2/clearinghouse/claim.py,sha256=s5DibeXR8kUYXM0pFT5cGHj9d7kDAJBGO2BeBeV46aI,17844
43
+ samplehc/resources/v2/clearinghouse/claim.py,sha256=DtwOl6SX5BP4xiTLRPY98RYRCFhgoZKGxMnzBCsirQE,16694
43
44
  samplehc/resources/v2/clearinghouse/clearinghouse.py,sha256=pYGjyJo1hnczykfjM7yMIvqW56ZhKTNVbJIY9CdpSDo,27221
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
@@ -51,13 +52,18 @@ samplehc/resources/v2/documents/templates.py,sha256=YBh5E3JcpQ1X_iCTFfrFcOltlUZv
51
52
  samplehc/resources/v2/hie/__init__.py,sha256=-j4lJKDacYHe_clPoh02daaFAXBSpU07xaWejo1UqyM,1002
52
53
  samplehc/resources/v2/hie/documents.py,sha256=uDF0pVXLku8qJXy4gcju_EemlxXtN7Rhpyfz74xXWyc,15396
53
54
  samplehc/resources/v2/hie/hie.py,sha256=3z2xmxvEpM8Q4U5tugzH1g3-BDiQNCZ9Rv334Xw_ZzY,3580
54
- samplehc/resources/v2/integrations/__init__.py,sha256=_OOgjoMIYe9vmy_DzY_8BpKN2BCNmSh5uqlxagCQk3I,2443
55
+ samplehc/resources/v2/integrations/__init__.py,sha256=MHYvKmsYfoivv4pJtSUR3o0tR145F6sfv8ph16CL8TU,2906
55
56
  samplehc/resources/v2/integrations/careviso.py,sha256=mA1JmwPm0F_pEe6HbprvdemckYFg8qc4G7iemtafjiY,15578
56
- samplehc/resources/v2/integrations/integrations.py,sha256=lxUgYgECeVdmq9qhJi68aeD7zucbfG403mYrduUoq2o,7135
57
+ samplehc/resources/v2/integrations/integrations.py,sha256=I62fQT-hVbixS8_bSXvQ_Glu1Uj9b4UQMyDf6phT0gI,8265
57
58
  samplehc/resources/v2/integrations/snowflake.py,sha256=HrF1frsQyTGuVONerljq2jw-XVpEG4AV5yoA9aUgSxA,6506
58
59
  samplehc/resources/v2/integrations/bank/__init__.py,sha256=2aaxngFG7lRvSB6wKMqdXkfQ66OQR_m1fhn2xyD_AE8,1054
59
60
  samplehc/resources/v2/integrations/bank/bank.py,sha256=CzU6LImPm0IYPVWB5B5jswV8VAhY9IdUeW8CPADZUcE,3705
60
61
  samplehc/resources/v2/integrations/bank/transactions.py,sha256=879RZUBc6py2lwlEitHiYu6WSrw24KF1WFgWArgP6YM,6755
62
+ samplehc/resources/v2/integrations/glidian/__init__.py,sha256=VRQ1Av6RQJGAHsmBkbkHHFGjvLVW5c5so-goto7s0oM,1185
63
+ samplehc/resources/v2/integrations/glidian/glidian.py,sha256=OjRp2hDKskx4eIGKJ8CUxMZ4TdB261ztBTFnt2ztPSI,17100
64
+ samplehc/resources/v2/integrations/glidian/prior_authorizations/__init__.py,sha256=QoVUoYjFui3RXCXxm6fEvLtWPdOfCGl3X7QY2JZcvCU,1316
65
+ samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py,sha256=q4VN5kK-RTKG_EeJdMmYu5Ek84sNnVRbmxFV4CqnkgU,11301
66
+ samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py,sha256=gbtyXC4bqwIZWttp_DLuccxFjnPZJ3RTNsZYGtb3aLA,22484
61
67
  samplehc/resources/v2/integrations/kno2/__init__.py,sha256=O46p4OnML6RdkmNBI_ZB79u58Sbfo9teFgQ7yrsfmI0,1002
62
68
  samplehc/resources/v2/integrations/kno2/kno2.py,sha256=xc__0U-pQMavJNUN2t8EIZtkg3efeOpdK3JqpvDPsMk,3589
63
69
  samplehc/resources/v2/integrations/kno2/messages.py,sha256=BNiQTcX78SP8zC96QTwP-8IvhVBxQvFUUsjdE8xalaI,10347
@@ -81,22 +87,24 @@ samplehc/types/v1_query_audit_logs_response.py,sha256=CiFZBhg0Q_c1ydzvNK0MkZLgmP
81
87
  samplehc/types/v1_sql_execute_params.py,sha256=mC_HUkRzC_d4Ve0XkRMR3VrpZHRqY6RQzaAe-hOdgEA,728
82
88
  samplehc/types/v1_sql_execute_response.py,sha256=Fo8npustnKfbqpw8a8FSqYSOwaakmZ4siPC1LRVbpWg,683
83
89
  samplehc/types/v1/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
84
- samplehc/types/v2/__init__.py,sha256=7xiaQ2onT8xXAAHdj99cJg_bz6j7xE4nxHU1ibbfl8o,8798
90
+ samplehc/types/v2/__init__.py,sha256=fnCsXFDxKv9X-cq2lkLYGe0hZfL7Yz33Kqn379TyL5M,8992
85
91
  samplehc/types/v2/async_result_retrieve_response.py,sha256=hDRnUnMvLJav6RzGqFH7OsZ2fPrTXOaTqlGbWzUhWVU,504
86
92
  samplehc/types/v2/async_result_sleep_params.py,sha256=vdhEdUP6vA9Y44waJBU2p_PEC-rzWBOr4RkE1F2eTHs,729
87
93
  samplehc/types/v2/async_result_sleep_response.py,sha256=nAUL4IVyG9RjVZtNyMnn_sp1mcwatJCEBjBCDf6bDtM,366
94
+ samplehc/types/v2/browser_agent_invoke_params.py,sha256=GH1bkTIefBLcVz9nKcvQAu1hFuodCd8avTcYEcG1SIQ,367
95
+ samplehc/types/v2/browser_agent_invoke_response.py,sha256=_dX2oZvsQlQhJpqaMsyxBeI6MLHApm-uCD4ogauKWWo,368
88
96
  samplehc/types/v2/clearinghouse_calculate_patient_cost_params.py,sha256=maMspSTt4X8dz3iHp-HFKLWv1_B_UtIP4VXQd_FNTMY,86893
89
97
  samplehc/types/v2/clearinghouse_check_eligibility_params.py,sha256=403fR7fuCUNla_YfBx0hQD3_ykBBsPAbsp8el-o8mWo,1465
90
98
  samplehc/types/v2/clearinghouse_check_eligibility_response.py,sha256=YFLinf3tqd55F5LS5HarQp9KO3R-qLdf7v1WmPkAaJo,301
91
99
  samplehc/types/v2/clearinghouse_coordination_of_benefits_params.py,sha256=09vrP_Ded8wANL1jBXVBXH7fOXMqYV8ndQclUH4QaMg,1496
92
100
  samplehc/types/v2/clearinghouse_run_discovery_params.py,sha256=4S3Okkx6HVUTDZD7QDhHUjpkVh4fpf4R89kGtwhCMgU,1474
93
101
  samplehc/types/v2/clearinghouse_run_discovery_response.py,sha256=nwWK_9tJKcdOb8-IrnmjqmlMrkJfOrdcfw6BocGfN_I,288
94
- samplehc/types/v2/communication_send_email_params.py,sha256=GKEmMxmtYDwMnrOZkxR6MMiJ6DUDP9rRhjBnJk2BYzU,1541
102
+ samplehc/types/v2/communication_send_email_params.py,sha256=thNaWdxK4JwOk4JQ0zvb3rab9AlOfkDbaweP_7vXsIg,1638
95
103
  samplehc/types/v2/communication_send_fax_params.py,sha256=iVnTNnpH31avBEK86gFT8Y9MjduB693NQhQJCN6c3f4,1552
96
104
  samplehc/types/v2/communication_send_fax_response.py,sha256=T-OO3awvoNR2sgv8JvvZiJBsQZJwFjCZsTiKDc76thM,375
97
105
  samplehc/types/v2/communication_send_letter_params.py,sha256=Et-peWg0B9XL4U4s--70aMA98daNcbvxVYO9RKCSAYA,1911
98
106
  samplehc/types/v2/communication_send_letter_response.py,sha256=9Jdgi6-YBEYaJdY_IC7u_3djufZ67gdH1ocppShg_dI,368
99
- samplehc/types/v2/database_execute_sql_params.py,sha256=NaOWZBAkwKDrHOO4y3Ua7fWrOMdfxYYjXf82mSrwQZI,580
107
+ samplehc/types/v2/database_execute_sql_params.py,sha256=9JhgbItnJenQAP4VQPuM7CW4P3ONTWbdor9x5Gn1ZWo,783
100
108
  samplehc/types/v2/database_execute_sql_response.py,sha256=dM0wUsOofc-0YowLsU0UiIIepqbTmpv_iRBfudFHL9U,418
101
109
  samplehc/types/v2/document_classify_params.py,sha256=fnpGhvmBkpqJphdhhBtG4FupY4KbYBy11bxQ0aOn8yc,859
102
110
  samplehc/types/v2/document_classify_response.py,sha256=gBW9NalcRZ4zRuBKg02Efo49M6PBbDz1ObHR9m7KPLg,370
@@ -120,7 +128,7 @@ samplehc/types/v2/document_split_response.py,sha256=PoqLsyX3S6JPZumDnGWMp8JyxPeD
120
128
  samplehc/types/v2/document_transform_json_to_html_params.py,sha256=0bRUKlxD2-JB5VQ0DFDfDX1MaanOR1b0PhsD2x1YYAI,336
121
129
  samplehc/types/v2/document_transform_json_to_html_response.py,sha256=ca5EIuwV1pywWDnIgy2e6vW_QunxA-PDHh69jurvcS0,268
122
130
  samplehc/types/v2/document_unzip_response.py,sha256=EJemPIV3xxnSFTOkUhgptwy_v8FcT-gBNVBmhG5q3aA,448
123
- samplehc/types/v2/event_emit_params.py,sha256=U9wwtmIc8PpuCeHGEY1Gm_7fr-UP_OhJSg1wj0lEuoU,506
131
+ samplehc/types/v2/event_emit_params.py,sha256=SU1pC9tVh84OmyXWsEjxmBMnkTHqHQXQaMZihEZoX2w,506
124
132
  samplehc/types/v2/event_emit_response.py,sha256=Md9mWenySbRoqz2tWrY4jyXS-oWirz5VVdpg9W2gPM8,263
125
133
  samplehc/types/v2/ledger_assign_invoice_params.py,sha256=EWL7aWm-Lw8CDhJxKKPIjM4lC-EET6-R_tx4aR1Rhrs,1188
126
134
  samplehc/types/v2/ledger_assign_invoice_response.py,sha256=5pLgdIJpxmVSIb9nzmIzhrCu5kxqI4tyCQPVhYPvk34,346
@@ -171,8 +179,8 @@ samplehc/types/v2/browser_automation/__init__.py,sha256=CCz_Y-fN-C5G-ZvnLdkoE5gN
171
179
  samplehc/types/v2/browser_automation/availity_submit_appeal_params.py,sha256=xPpXHjO-5JG4_a5e1RVb9mJQzTt_J_WvypW0nzNq76A,1985
172
180
  samplehc/types/v2/browser_automation/availity_submit_appeal_response.py,sha256=rUKHMayj-Edo78E4hbZMXgXl8u7AxFTvVy0Dbyrc6sY,384
173
181
  samplehc/types/v2/clearinghouse/__init__.py,sha256=1OM8agjZ4fezuxrcCqugZWDzk_ELJ1eORWXYIcI2Cew,545
174
- samplehc/types/v2/clearinghouse/claim_submit_params.py,sha256=O7h9FDBhF8UszqjHAc2edkYVgvRAGNrI9kHh47nrkzM,83955
175
- samplehc/types/v2/clearinghouse/claim_submit_response.py,sha256=9BLAaqLY2gXSuhTLaqEm2CzMz5kx71xG_LRODtlY0XA,221
182
+ samplehc/types/v2/clearinghouse/claim_submit_params.py,sha256=ZAwjncdrpWqBNA26wMqe8TsfvTme9iHV5VAT6nNT9O4,92699
183
+ samplehc/types/v2/clearinghouse/claim_submit_response.py,sha256=slh7pXvvTUerZLvvSZwbzZMM_kV2GCkMZ16MSb6D2D8,585
176
184
  samplehc/types/v2/clearinghouse/payer_list_response.py,sha256=WjyYm7gAQXAuMjI4fGD08rqoDsSgdupXXxQW5-9L33I,529
177
185
  samplehc/types/v2/clearinghouse/payer_retrieve_search_params.py,sha256=1opEzMaoOSnQV3HFkf4J88yAxwm5YCNvvX5M78_7bJs,362
178
186
  samplehc/types/v2/clearinghouse/payer_retrieve_search_response.py,sha256=KeuGwof0MG7Sx63NPG9W79o0QafkepwR-JoOHq9FgF0,634
@@ -192,14 +200,31 @@ samplehc/types/v2/hie/__init__.py,sha256=eT5VvujnS-QJKStL44Loj_u_XtFggofT0Jc4Prz
192
200
  samplehc/types/v2/hie/document_query_params.py,sha256=a0o8USrHhSaKoW7Yc5KwLHXQmNhrm0NRez2w6TdIWPM,2957
193
201
  samplehc/types/v2/hie/document_query_response.py,sha256=scLiQ-nSkRW8vbAg-QiPgkQRLnBIfmjLKqauoNs0cZQ,442
194
202
  samplehc/types/v2/hie/document_upload_params.py,sha256=y7Bu6fD5YyZDCGpxN2z5wBmJuENlPSfl_mmSUqN7V9k,1836
195
- samplehc/types/v2/integrations/__init__.py,sha256=468milV6MQm1LsDyHszQTrH87pXr1UavGwDwbkJFb3c,534
203
+ samplehc/types/v2/integrations/__init__.py,sha256=DFiEwWHMv5014DLqxhMlufd3vuWcZrlIOgAfjoVGx64,1220
196
204
  samplehc/types/v2/integrations/careviso_get_payers_response.py,sha256=Et-uLf2afZfEmu38r5xkzhQA2UolbFH5z5gpIV2v33g,543
197
205
  samplehc/types/v2/integrations/careviso_submit_prior_authorization_params.py,sha256=5GXjyVE8x2H5_EmIUioCGJ2X9uR5yKmmoSrlTs7XXXQ,3388
206
+ samplehc/types/v2/integrations/glidian_get_submission_requirements_params.py,sha256=vzs_i2xzudxXQhnVeETVCRDZhQTw-WMIZKJTZsxV0ZM,520
207
+ samplehc/types/v2/integrations/glidian_get_submission_requirements_response.py,sha256=-tqZkOr5shcOl42McU20IvK9oNwJaraUeRK84He2pac,879
208
+ samplehc/types/v2/integrations/glidian_list_payers_params.py,sha256=fA5-lxgAWC-P33RFHz8AlXAHUS1ujl5EuPMfU2LX2YY,274
209
+ samplehc/types/v2/integrations/glidian_list_payers_response.py,sha256=Xh6d76ZIj8yLWpk6CvoXKnXXnyNEQrfhhfAAB3qnk3w,416
210
+ samplehc/types/v2/integrations/glidian_list_services_params.py,sha256=23IGwtyqXNlB2l3i4LpQDOZ56GxxIIbDuMeX3UEGsjE,381
211
+ samplehc/types/v2/integrations/glidian_list_services_response.py,sha256=ezChHI2no32064nkk2feoJEQYq7h9WAyCDCfWW-b110,441
198
212
  samplehc/types/v2/integrations/snowflake_query_params.py,sha256=ave_87sUwdYtAgU21PahfuWMugSwzDxuxkY-YYUcpK0,324
199
213
  samplehc/types/v2/integrations/snowflake_query_response.py,sha256=g3sxN4GAiSJZy7HXAQf_uNZmCcoZnVfWlJGfbVtITus,256
200
214
  samplehc/types/v2/integrations/bank/__init__.py,sha256=PII6VpyEwGsiBaP1UKrkyLNEhtMkpxHMaynx4Dexz_w,297
201
215
  samplehc/types/v2/integrations/bank/transaction_sync_params.py,sha256=7bNeRpP9-Fv8agjs2ixoRDA17UzKyHsX4i4TKg1acWo,398
202
216
  samplehc/types/v2/integrations/bank/transaction_sync_response.py,sha256=2J1PQQIIz1P-CbUvHEqXrTeMjfe1nkhzSO1qgwiInW4,724
217
+ samplehc/types/v2/integrations/glidian/__init__.py,sha256=UXTRN6T6Ro7X9sv8wlSbrJHHbniBMgQ95gVgb1kI-7E,959
218
+ samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_params.py,sha256=-YFFi4kOTVksguf-lyXnhj8NG36kUzj6F5dMZe8yO28,1054
219
+ samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_response.py,sha256=A2B0OeFKxtu1n3lMJ2v8eY_wwF_Vh7CAMe2lVdDX0FQ,638
220
+ samplehc/types/v2/integrations/glidian/prior_authorization_retrieve_record_response.py,sha256=GcQlxLRu06iVgs-xDMEz8ttF-sdtqv2aDU7hwxbPgiI,294
221
+ samplehc/types/v2/integrations/glidian/prior_authorization_submit_response.py,sha256=Cz-Mx_L_3JeQvD0O73-RyjxY59QZLQlEumeU8ouAoQY,360
222
+ samplehc/types/v2/integrations/glidian/prior_authorization_update_record_params.py,sha256=RLiky7fhGuYq73PJZ9TkTee4f2NUbo2eR7N8Dw7mwns,655
223
+ samplehc/types/v2/integrations/glidian/prior_authorization_update_record_response.py,sha256=NpH6AhqeKxejCczFzNE6-FIT2b3uz_fKmHFcNUS7SlQ,370
224
+ samplehc/types/v2/integrations/glidian/prior_authorizations/__init__.py,sha256=L2Zdvs8EaBIctVF0V8LBDPzhZIRpLs3wBw_ozIqqQlk,447
225
+ samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_list_response.py,sha256=lScFQQwPxgZLYEA7avKiYmyt9bhUkCD6kJ2OFi1P6aw,886
226
+ samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_params.py,sha256=68R6iRnr3tCY7ktpcqUm7ioRNV7PuwzPHy5chsvJcNE,603
227
+ samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_response.py,sha256=NCQBheHNdcz1fGQ9pP8xSlP4KpeZchrGvO3R0OWnZDw,450
203
228
  samplehc/types/v2/integrations/kno2/__init__.py,sha256=-gOR4o0TRcDJlPLYQR7Xe0kb5WIOcFem52qiHIW6seA,319
204
229
  samplehc/types/v2/integrations/kno2/message_get_attachment_response.py,sha256=AZue-qHJSTSNeMpGLkFkdQeQGYKWrPoJ9TaJZmhcoiQ,318
205
230
  samplehc/types/v2/integrations/kno2/message_retrieve_response.py,sha256=fr41OON96HnoAyFIpRxh7Hb4pTCreYydkack6lZFPuM,271
@@ -219,7 +244,7 @@ samplehc/types/v2/tasks/state_update_params.py,sha256=qSLE4Ic5PJlkvcFbTu-KlfH6qg
219
244
  samplehc/types/v2/tasks/state_update_response.py,sha256=ZLnR_rl9yasOnaxQvcM3fiaI_H16pDjBve1GUUleul4,214
220
245
  samplehc/types/v2/workflow_runs/__init__.py,sha256=Nmrudr30JDOaGyeMcc_dqaqqs_9kTdebHD7W0vHHfdE,208
221
246
  samplehc/types/v2/workflow_runs/step_get_output_response.py,sha256=XhRGcpEmxu4TBgpF8r63u5-ruEUDWuXr0ahv1CD9gis,333
222
- samplehc-0.5.0.dist-info/METADATA,sha256=awQOmvuesAZZQfHigq_Ld5L3FWyvBdgkf-rzrUwFA4w,14284
223
- samplehc-0.5.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
224
- samplehc-0.5.0.dist-info/licenses/LICENSE,sha256=nrJkK4JSAQb1p7FJcTysujPJoAZtrnXxwsLkwHz0-J8,11347
225
- samplehc-0.5.0.dist-info/RECORD,,
247
+ samplehc-0.6.0.dist-info/METADATA,sha256=laghSwesgnAjF4kdxLAAzdI__JG0VEFafMIPAovX6Ow,14284
248
+ samplehc-0.6.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
249
+ samplehc-0.6.0.dist-info/licenses/LICENSE,sha256=nrJkK4JSAQb1p7FJcTysujPJoAZtrnXxwsLkwHz0-J8,11347
250
+ samplehc-0.6.0.dist-info/RECORD,,