samplehc 0.10.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 (132) hide show
  1. samplehc/__init__.py +3 -1
  2. samplehc/_base_client.py +12 -12
  3. samplehc/_client.py +8 -8
  4. samplehc/_compat.py +48 -48
  5. samplehc/_models.py +50 -44
  6. samplehc/_qs.py +7 -7
  7. samplehc/_types.py +53 -12
  8. samplehc/_utils/__init__.py +9 -2
  9. samplehc/_utils/_compat.py +45 -0
  10. samplehc/_utils/_datetime_parse.py +136 -0
  11. samplehc/_utils/_transform.py +13 -3
  12. samplehc/_utils/_typing.py +6 -1
  13. samplehc/_utils/_utils.py +4 -5
  14. samplehc/_version.py +1 -1
  15. samplehc/resources/v1/v1.py +9 -9
  16. samplehc/resources/v2/async_results.py +13 -13
  17. samplehc/resources/v2/browser_agents/__init__.py +33 -0
  18. samplehc/resources/v2/{browser_agents.py → browser_agents/browser_agents.py} +44 -12
  19. samplehc/resources/v2/browser_agents/runs/__init__.py +33 -0
  20. samplehc/resources/v2/browser_agents/runs/help_requests.py +191 -0
  21. samplehc/resources/v2/browser_agents/runs/runs.py +102 -0
  22. samplehc/resources/v2/browser_automation/availity.py +3 -3
  23. samplehc/resources/v2/clearinghouse/claim.py +29 -29
  24. samplehc/resources/v2/clearinghouse/clearinghouse.py +36 -36
  25. samplehc/resources/v2/clearinghouse/payers.py +5 -5
  26. samplehc/resources/v2/communication.py +29 -29
  27. samplehc/resources/v2/database.py +5 -5
  28. samplehc/resources/v2/documents/documents.py +152 -37
  29. samplehc/resources/v2/documents/formats.py +3 -3
  30. samplehc/resources/v2/documents/legacy.py +91 -6
  31. samplehc/resources/v2/documents/pdf_template.py +3 -3
  32. samplehc/resources/v2/documents/templates.py +27 -27
  33. samplehc/resources/v2/{events/events.py → events.py} +14 -46
  34. samplehc/resources/v2/hie/adt.py +7 -7
  35. samplehc/resources/v2/hie/documents.py +15 -15
  36. samplehc/resources/v2/integrations/__init__.py +28 -0
  37. samplehc/resources/v2/integrations/bank/transactions.py +5 -5
  38. samplehc/resources/v2/integrations/careviso.py +36 -36
  39. samplehc/resources/v2/integrations/glidian/glidian.py +13 -13
  40. samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py +5 -5
  41. samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py +19 -19
  42. samplehc/resources/v2/integrations/integrations.py +64 -0
  43. samplehc/resources/v2/integrations/kno2/messages.py +5 -5
  44. samplehc/resources/v2/integrations/salesforce.py +193 -0
  45. samplehc/resources/v2/integrations/snowflake.py +3 -3
  46. samplehc/resources/v2/{events/integrations → integrations}/xcures.py +13 -13
  47. samplehc/resources/v2/ledger/__init__.py +27 -55
  48. samplehc/resources/v2/ledger/{orders.py → account.py} +123 -86
  49. samplehc/resources/v2/ledger/entry.py +381 -0
  50. samplehc/resources/v2/ledger/ledger.py +38 -1560
  51. samplehc/resources/v2/policies.py +47 -47
  52. samplehc/resources/v2/tasks/state.py +7 -7
  53. samplehc/resources/v2/tasks/tasks.py +15 -15
  54. samplehc/resources/v2/v2.py +16 -16
  55. samplehc/resources/v2/workflow_runs/step.py +3 -3
  56. samplehc/resources/v2/workflow_runs/workflow_runs.py +11 -11
  57. samplehc/resources/v2/workflows.py +13 -13
  58. samplehc/types/v2/__init__.py +1 -28
  59. samplehc/types/v2/browser_agents/runs/__init__.py +6 -0
  60. samplehc/types/v2/browser_agents/runs/help_request_resolve_params.py +18 -0
  61. samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py +28 -0
  62. samplehc/types/v2/clearinghouse/claim_submit_params.py +10 -9
  63. samplehc/types/v2/clearinghouse_calculate_patient_cost_params.py +3 -2
  64. samplehc/types/v2/clearinghouse_check_eligibility_params.py +2 -2
  65. samplehc/types/v2/communication_send_letter_params.py +4 -3
  66. samplehc/types/v2/document_classify_params.py +3 -2
  67. samplehc/types/v2/document_extract_params.py +4 -1
  68. samplehc/types/v2/document_generate_csv_params.py +3 -2
  69. samplehc/types/v2/document_split_params.py +16 -1
  70. samplehc/types/v2/document_unzip_async_response.py +12 -0
  71. samplehc/types/v2/documents/__init__.py +2 -0
  72. samplehc/types/v2/documents/legacy_extract_params.py +8 -7
  73. samplehc/types/v2/documents/legacy_split_params.py +20 -0
  74. samplehc/types/v2/documents/legacy_split_response.py +12 -0
  75. samplehc/types/v2/documents/template_render_document_params.py +17 -5
  76. samplehc/types/v2/integrations/__init__.py +2 -0
  77. samplehc/types/v2/integrations/careviso_submit_prior_authorization_params.py +6 -5
  78. samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_params.py +3 -2
  79. samplehc/types/v2/integrations/salesforce_run_crud_action_params.py +22 -0
  80. samplehc/types/v2/ledger/__init__.py +6 -17
  81. samplehc/types/v2/ledger/account_writeoff_params.py +23 -0
  82. samplehc/types/v2/ledger/account_writeoff_response.py +12 -0
  83. samplehc/types/v2/ledger/entry_post_params.py +60 -0
  84. samplehc/types/v2/ledger/entry_post_response.py +10 -0
  85. samplehc/types/v2/ledger/entry_reverse_params.py +18 -0
  86. samplehc/types/v2/ledger/entry_reverse_response.py +10 -0
  87. {samplehc-0.10.0.dist-info → samplehc-0.12.0.dist-info}/METADATA +1 -1
  88. {samplehc-0.10.0.dist-info → samplehc-0.12.0.dist-info}/RECORD +92 -111
  89. samplehc/resources/v2/events/__init__.py +0 -33
  90. samplehc/resources/v2/events/integrations/__init__.py +0 -33
  91. samplehc/resources/v2/events/integrations/integrations.py +0 -102
  92. samplehc/resources/v2/ledger/institutions/__init__.py +0 -33
  93. samplehc/resources/v2/ledger/institutions/institutions.py +0 -258
  94. samplehc/resources/v2/ledger/institutions/orders.py +0 -169
  95. samplehc/resources/v2/ledger/insurance.py +0 -141
  96. samplehc/resources/v2/ledger/patients.py +0 -141
  97. samplehc/types/v2/events/integrations/__init__.py +0 -5
  98. samplehc/types/v2/ledger/institution_list_outstanding_accounts_response.py +0 -25
  99. samplehc/types/v2/ledger/institution_retrieve_outstanding_orders_response.py +0 -25
  100. samplehc/types/v2/ledger/institutions/__init__.py +0 -5
  101. samplehc/types/v2/ledger/institutions/order_retrieve_balance_response.py +0 -12
  102. samplehc/types/v2/ledger/insurance_list_outstanding_accounts_response.py +0 -25
  103. samplehc/types/v2/ledger/order_retrieve_balances_response.py +0 -31
  104. samplehc/types/v2/ledger/order_retrieve_batch_balances_params.py +0 -15
  105. samplehc/types/v2/ledger/order_retrieve_batch_balances_response.py +0 -38
  106. samplehc/types/v2/ledger/patient_list_outstanding_accounts_response.py +0 -22
  107. samplehc/types/v2/ledger_assign_invoice_params.py +0 -34
  108. samplehc/types/v2/ledger_assign_invoice_response.py +0 -12
  109. samplehc/types/v2/ledger_claim_adjustment_params.py +0 -34
  110. samplehc/types/v2/ledger_claim_adjustment_response.py +0 -12
  111. samplehc/types/v2/ledger_claim_payment_params.py +0 -34
  112. samplehc/types/v2/ledger_claim_payment_response.py +0 -12
  113. samplehc/types/v2/ledger_institution_adjustment_params.py +0 -31
  114. samplehc/types/v2/ledger_institution_adjustment_response.py +0 -12
  115. samplehc/types/v2/ledger_institution_payment_params.py +0 -31
  116. samplehc/types/v2/ledger_institution_payment_response.py +0 -12
  117. samplehc/types/v2/ledger_new_order_params.py +0 -22
  118. samplehc/types/v2/ledger_new_order_response.py +0 -12
  119. samplehc/types/v2/ledger_order_writeoff_params.py +0 -28
  120. samplehc/types/v2/ledger_order_writeoff_response.py +0 -12
  121. samplehc/types/v2/ledger_patient_adjustment_params.py +0 -31
  122. samplehc/types/v2/ledger_patient_adjustment_response.py +0 -12
  123. samplehc/types/v2/ledger_patient_payment_params.py +0 -28
  124. samplehc/types/v2/ledger_patient_payment_response.py +0 -12
  125. samplehc/types/v2/ledger_post_remittance_accepted_params.py +0 -37
  126. samplehc/types/v2/ledger_post_remittance_accepted_response.py +0 -12
  127. samplehc/types/v2/ledger_reverse_entry_params.py +0 -12
  128. samplehc/types/v2/ledger_reverse_entry_response.py +0 -12
  129. /samplehc/types/v2/{events → browser_agents}/__init__.py +0 -0
  130. /samplehc/types/v2/{events/integrations → integrations}/xcure_make_request_params.py +0 -0
  131. {samplehc-0.10.0.dist-info → samplehc-0.12.0.dist-info}/WHEEL +0 -0
  132. {samplehc-0.10.0.dist-info → samplehc-0.12.0.dist-info}/licenses/LICENSE +0 -0
@@ -2,20 +2,9 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from .order_retrieve_balances_response import OrderRetrieveBalancesResponse as OrderRetrieveBalancesResponse
6
- from .order_retrieve_batch_balances_params import OrderRetrieveBatchBalancesParams as OrderRetrieveBatchBalancesParams
7
- from .order_retrieve_batch_balances_response import (
8
- OrderRetrieveBatchBalancesResponse as OrderRetrieveBatchBalancesResponse,
9
- )
10
- from .patient_list_outstanding_accounts_response import (
11
- PatientListOutstandingAccountsResponse as PatientListOutstandingAccountsResponse,
12
- )
13
- from .insurance_list_outstanding_accounts_response import (
14
- InsuranceListOutstandingAccountsResponse as InsuranceListOutstandingAccountsResponse,
15
- )
16
- from .institution_list_outstanding_accounts_response import (
17
- InstitutionListOutstandingAccountsResponse as InstitutionListOutstandingAccountsResponse,
18
- )
19
- from .institution_retrieve_outstanding_orders_response import (
20
- InstitutionRetrieveOutstandingOrdersResponse as InstitutionRetrieveOutstandingOrdersResponse,
21
- )
5
+ from .entry_post_params import EntryPostParams as EntryPostParams
6
+ from .entry_post_response import EntryPostResponse as EntryPostResponse
7
+ from .entry_reverse_params import EntryReverseParams as EntryReverseParams
8
+ from .entry_reverse_response import EntryReverseResponse as EntryReverseResponse
9
+ from .account_writeoff_params import AccountWriteoffParams as AccountWriteoffParams
10
+ from .account_writeoff_response import AccountWriteoffResponse as AccountWriteoffResponse
@@ -0,0 +1,23 @@
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__ = ["AccountWriteoffParams"]
11
+
12
+
13
+ class AccountWriteoffParams(TypedDict, total=False):
14
+ order_id: Required[Annotated[str, PropertyInfo(alias="orderId")]]
15
+
16
+ description: Required[str]
17
+ """The description of the write-off."""
18
+
19
+ metadata: Dict[str, object]
20
+ """Any optional metadata to associate with the write-off."""
21
+
22
+ posted_at: Annotated[str, PropertyInfo(alias="postedAt")]
23
+ """The date and time to post the write-off."""
@@ -0,0 +1,12 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing_extensions import Literal
4
+
5
+ from ...._models import BaseModel
6
+
7
+ __all__ = ["AccountWriteoffResponse"]
8
+
9
+
10
+ class AccountWriteoffResponse(BaseModel):
11
+ success: Literal[True]
12
+ """Write-off posted successfully."""
@@ -0,0 +1,60 @@
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, Union
6
+ from typing_extensions import Literal, Required, Annotated, TypedDict
7
+
8
+ from ...._utils import PropertyInfo
9
+
10
+ __all__ = ["EntryPostParams"]
11
+
12
+
13
+ class EntryPostParams(TypedDict, total=False):
14
+ amount_usd_cents: Required[Annotated[float, PropertyInfo(alias="amountUsdCents")]]
15
+ """The amount of the ledger entry in cents.
16
+
17
+ Positive for charges, negative for payments.
18
+ """
19
+
20
+ entry_category: Required[Annotated[Literal["charge", "payment", "adjustment"], PropertyInfo(alias="entryCategory")]]
21
+
22
+ line_item_id: Required[Annotated[str, PropertyInfo(alias="lineItemId")]]
23
+ """The line item ID associated with the ledger entry."""
24
+
25
+ order_id: Required[Annotated[str, PropertyInfo(alias="orderId")]]
26
+ """The order ID associated with the ledger entry."""
27
+
28
+ description: str
29
+ """The description of the ledger entry."""
30
+
31
+ entry_type: Annotated[
32
+ Union[
33
+ Literal[
34
+ "insurance-payment",
35
+ "institution-payment",
36
+ "patient-payment",
37
+ "write-off",
38
+ "institution-discount",
39
+ "contracted-payer-adjustment",
40
+ "patient-pay-adjustment",
41
+ "charge",
42
+ "payment",
43
+ "adjustment",
44
+ ],
45
+ object,
46
+ ],
47
+ PropertyInfo(alias="entryType"),
48
+ ]
49
+ """The type of ledger entry."""
50
+
51
+ metadata: Dict[str, object]
52
+ """Any optional metadata to associate with the ledger entry."""
53
+
54
+ payment_source: Annotated[str, PropertyInfo(alias="paymentSource")]
55
+ """The source of the payment, e.g. payer ID, patient ID, etc."""
56
+
57
+ posted_at: Annotated[str, PropertyInfo(alias="postedAt")]
58
+ """The date and time the ledger entry was posted."""
59
+
60
+ idempotency_key: Annotated[str, PropertyInfo(alias="idempotency-key")]
@@ -0,0 +1,10 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from ...._models import BaseModel
4
+
5
+ __all__ = ["EntryPostResponse"]
6
+
7
+
8
+ class EntryPostResponse(BaseModel):
9
+ success: bool
10
+ """Whether the event was emitted successfully."""
@@ -0,0 +1,18 @@
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 Annotated, TypedDict
7
+
8
+ from ...._utils import PropertyInfo
9
+
10
+ __all__ = ["EntryReverseParams"]
11
+
12
+
13
+ class EntryReverseParams(TypedDict, total=False):
14
+ metadata: Dict[str, object]
15
+ """Any optional metadata to associate with the reversal entry."""
16
+
17
+ posted_at: Annotated[str, PropertyInfo(alias="postedAt")]
18
+ """The date and time the reversal entry was posted."""
@@ -0,0 +1,10 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from ...._models import BaseModel
4
+
5
+ __all__ = ["EntryReverseResponse"]
6
+
7
+
8
+ class EntryReverseResponse(BaseModel):
9
+ success: bool
10
+ """Whether the reversal entry was created successfully."""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: samplehc
3
- Version: 0.10.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,106 +1,106 @@
1
- samplehc/__init__.py,sha256=uMVtbSmmDZP3MVFLGkDqFMy2AhSfD9MdZNjCxFj5p-w,2685
2
- samplehc/_base_client.py,sha256=QsB_HMhMtdNDqrVITevVdyxuPUFG8E9tAbUA_njOylE,67037
3
- samplehc/_client.py,sha256=1mpC5wb8f_3zvIszB2NOBBymehmKTeL9a_AsTxd-JVU,16068
4
- samplehc/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
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
+ 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=6rDtUmk6jhjGN1q96CUICYfBunNXNhhEk_AqztTm3uE,30012
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=p36YZ57rnQn_RIwBPcrliWawLmV62NbJeNxPy7Cm5P8,6199
14
- samplehc/_version.py,sha256=EJqllBjYFo7AGMKsQ-3ZSmNFI_vcyqy0jBXKXF2sucY,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
- samplehc/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
16
+ samplehc/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
17
+ samplehc/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
18
+ samplehc/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
17
19
  samplehc/_utils/_logs.py,sha256=EEt3P1dtoGlkVTZOwVml4xf3j9DvdDTzG2TpBjcQINc,789
18
20
  samplehc/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
19
21
  samplehc/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
20
22
  samplehc/_utils/_resources_proxy.py,sha256=NejY5ZPSVISf1S6P7a-AHToRY85AllNZg7ukouCdCjU,599
21
23
  samplehc/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
22
24
  samplehc/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
23
- samplehc/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,15617
24
- samplehc/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,4602
25
- samplehc/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
25
+ samplehc/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
26
+ samplehc/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
27
+ samplehc/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
26
28
  samplehc/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
27
29
  samplehc/resources/__init__.py,sha256=d6hMh8jB7d3_ni6az6tWaXvUcIewUm0vRE2O_Y4ZTFw,898
28
30
  samplehc/resources/v1/__init__.py,sha256=TSJ6b8GNHShyK5w7efHV93u1bY2jYVySQRa2zKc1dKM,500
29
- samplehc/resources/v1/v1.py,sha256=bpscm6eq4Hxh1-E0smKslGAiLYRZvf_XHkcPX-YqZAg,10989
31
+ samplehc/resources/v1/v1.py,sha256=G1SUS5rZhcE01slcOd5-ZeSn2cERwvmcfJzb0rywAdA,10965
30
32
  samplehc/resources/v2/__init__.py,sha256=wPyLMRjFN73m3XD6y_0NWm0lyMg--2AeFlbevQDXeW4,7982
31
- samplehc/resources/v2/async_results.py,sha256=ZGJZKd0kmAzhhXuIT16X0f87-UvUPp7TOvj6Sd43xkY,13648
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/policies.py,sha256=tejnAQ3K27_FBbLfDEufX7Z0ZIYx12F8AG_UrEpqJsY,25211
36
- samplehc/resources/v2/v2.py,sha256=Vc8q5agcclQpTkTS1sNgbAJRb6EnilZBYhyhc06dnL4,19959
37
- samplehc/resources/v2/workflows.py,sha256=oZ0_vqeHvs02mos0DUPg63LDTMo_i_azz6rLodCTKQ8,14266
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
+ samplehc/resources/v2/v2.py,sha256=3ZGHP9vK81L2YYWh2sGhlIQv2y8F_nmXZNNmumsfRSo,19967
39
+ samplehc/resources/v2/workflows.py,sha256=tORLHVCYwhwFcRLlXHBxcgZ9EYjinwXcFHjX04pCKUs,14242
40
+ samplehc/resources/v2/browser_agents/__init__.py,sha256=Byeyzaw5o_dcSvkefEoViV9xXKlNVKDzcr5QV8ODgl0,1068
41
+ samplehc/resources/v2/browser_agents/browser_agents.py,sha256=fr3DQezSabZK58uAxHKk0GpqVJkXr5uynobs0FZ8Dtk,7919
42
+ samplehc/resources/v2/browser_agents/runs/__init__.py,sha256=v6kly2kRgTEcwzev4KKwLOvU_7iJFuYRbZckR0LmgoM,1055
43
+ samplehc/resources/v2/browser_agents/runs/help_requests.py,sha256=6V1AyR7_64rxBMv3KzdHvAmnzYFVGQ4W-67Wl7O7pwA,7788
44
+ samplehc/resources/v2/browser_agents/runs/runs.py,sha256=zqYLPJ4gZW5P00jtQzcNuxowkMRVVJaJQTc8OxQpct8,3716
38
45
  samplehc/resources/v2/browser_automation/__init__.py,sha256=a7mi3Gg12Vk6CCsm3Q50nsrwLzXK_sVk_iV6ORlqqJY,1172
39
- samplehc/resources/v2/browser_automation/availity.py,sha256=3ApIlx_si_I4Kqe4NQ68gZ-z68BCpvj858L73BMEbiA,9545
46
+ samplehc/resources/v2/browser_automation/availity.py,sha256=QPOa5e364LqdSIlz09XyeZF5myQi6rPILZa4Mpwt0lE,9545
40
47
  samplehc/resources/v2/browser_automation/browser_automation.py,sha256=jiBEq2DdaD6pEaWG2X2SvxNJSug-zaQ8GInPnYALcvQ,4071
41
48
  samplehc/resources/v2/clearinghouse/__init__.py,sha256=q2mqlV5eEa0qmHkoQUSDMsZ5zxunWN5Eo6boQaNs49Q,1530
42
- samplehc/resources/v2/clearinghouse/claim.py,sha256=wH5GIkGOHgKIO9rj7L7g3uskN6V0wlhO3XK_qiIqC9w,16522
43
- samplehc/resources/v2/clearinghouse/clearinghouse.py,sha256=xRqivw0pcZNqFZeTSvVEPxrS9kaEwBYnjdteWB3GL3Q,34900
44
- 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
45
52
  samplehc/resources/v2/documents/__init__.py,sha256=9Hje-AZc-uRh1mgxCDKcRtLRxIdSOB3P7QJVGKCGAc0,2509
46
- samplehc/resources/v2/documents/documents.py,sha256=xZB-Anps-EHq1zHyCLkJno_N7Q6FPAOyM1-IxYv9aug,59454
47
- samplehc/resources/v2/documents/formats.py,sha256=41o04NRVECHsCSQhATpKh9BPn-vlpzHpUDpsRMQvX2k,6993
48
- samplehc/resources/v2/documents/legacy.py,sha256=_3CYS1az2cp3BxOmPOgMAlqGH76_McAojwoUqnuEG4w,10793
49
- samplehc/resources/v2/documents/pdf_template.py,sha256=z7BPMYIK0xSnhehV5vWla8bn5ehPF98MLyoSbwmVGco,6442
50
- samplehc/resources/v2/documents/templates.py,sha256=YBh5E3JcpQ1X_iCTFfrFcOltlUZvSCUr7KTH8jJQ-xc,17101
51
- samplehc/resources/v2/events/__init__.py,sha256=T4SQ0OlX2qpokT11_4K3sq9WRTQKVFZ00Zdaw8Zs2dA,1080
52
- samplehc/resources/v2/events/events.py,sha256=co2yI62HzWfZ2GMmFJ4B-vO6MyBxPfolPj41EkwqSlo,7946
53
- samplehc/resources/v2/events/integrations/__init__.py,sha256=0vla2Ar5seETJ4_QYLoXryRI_BJNHiygBU4L4SpQ-lM,1080
54
- samplehc/resources/v2/events/integrations/integrations.py,sha256=kLGWaejOMoQadqsErchMy6fBYNnzKhYL59SSLu8J2E8,3819
55
- samplehc/resources/v2/events/integrations/xcures.py,sha256=DVtPZk9ROio8TdoLdtqg6XenjzX63DeEw9fC8DAgL6w,7298
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
56
58
  samplehc/resources/v2/hie/__init__.py,sha256=kEs1If5SVR3Inp__6822fiPvynz8MwRIJdYzzwuK0m0,1413
57
- samplehc/resources/v2/hie/adt.py,sha256=Es3OBX4klkHJRCbqpTz_JjVK5fLB0qFFc7HsBF_Yq1g,9562
58
- 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
59
61
  samplehc/resources/v2/hie/hie.py,sha256=bdTM7CeHELmGULZRkOHnnfg-MoKadTnbaY9hDBtNMv4,4550
60
- samplehc/resources/v2/integrations/__init__.py,sha256=MHYvKmsYfoivv4pJtSUR3o0tR145F6sfv8ph16CL8TU,2906
61
- samplehc/resources/v2/integrations/careviso.py,sha256=mA1JmwPm0F_pEe6HbprvdemckYFg8qc4G7iemtafjiY,15578
62
- samplehc/resources/v2/integrations/integrations.py,sha256=I62fQT-hVbixS8_bSXvQ_Glu1Uj9b4UQMyDf6phT0gI,8265
63
- samplehc/resources/v2/integrations/snowflake.py,sha256=HrF1frsQyTGuVONerljq2jw-XVpEG4AV5yoA9aUgSxA,6506
62
+ samplehc/resources/v2/integrations/__init__.py,sha256=YiQg_OIh2fgxRU5bC-_KZW8Q4gfxekvwAzve_37ATeU,3858
63
+ samplehc/resources/v2/integrations/careviso.py,sha256=hrq_Qfw9hXvtXwJ2JayofjACBJhqDHwSU5aCQUy4G1o,15464
64
+ samplehc/resources/v2/integrations/integrations.py,sha256=ee8BjFmeEzZVo7HjEkY-PV2vjVVsltkrLIn9m2wCpOE,10567
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
64
68
  samplehc/resources/v2/integrations/bank/__init__.py,sha256=2aaxngFG7lRvSB6wKMqdXkfQ66OQR_m1fhn2xyD_AE8,1054
65
69
  samplehc/resources/v2/integrations/bank/bank.py,sha256=CzU6LImPm0IYPVWB5B5jswV8VAhY9IdUeW8CPADZUcE,3705
66
- samplehc/resources/v2/integrations/bank/transactions.py,sha256=879RZUBc6py2lwlEitHiYu6WSrw24KF1WFgWArgP6YM,6755
70
+ samplehc/resources/v2/integrations/bank/transactions.py,sha256=U3IuOukqxU6Qqa4icXkbHjd754rkDUcgYNGur4v6qCU,6749
67
71
  samplehc/resources/v2/integrations/glidian/__init__.py,sha256=VRQ1Av6RQJGAHsmBkbkHHFGjvLVW5c5so-goto7s0oM,1185
68
- samplehc/resources/v2/integrations/glidian/glidian.py,sha256=OjRp2hDKskx4eIGKJ8CUxMZ4TdB261ztBTFnt2ztPSI,17100
72
+ samplehc/resources/v2/integrations/glidian/glidian.py,sha256=uJP9taYMyHvBs235YhQlfxkWgkuhAMNXfXyqr5NfKw0,17058
69
73
  samplehc/resources/v2/integrations/glidian/prior_authorizations/__init__.py,sha256=QoVUoYjFui3RXCXxm6fEvLtWPdOfCGl3X7QY2JZcvCU,1316
70
- samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py,sha256=q4VN5kK-RTKG_EeJdMmYu5Ek84sNnVRbmxFV4CqnkgU,11301
71
- 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
72
76
  samplehc/resources/v2/integrations/kno2/__init__.py,sha256=O46p4OnML6RdkmNBI_ZB79u58Sbfo9teFgQ7yrsfmI0,1002
73
77
  samplehc/resources/v2/integrations/kno2/kno2.py,sha256=xc__0U-pQMavJNUN2t8EIZtkg3efeOpdK3JqpvDPsMk,3589
74
- samplehc/resources/v2/integrations/kno2/messages.py,sha256=BNiQTcX78SP8zC96QTwP-8IvhVBxQvFUUsjdE8xalaI,10347
75
- samplehc/resources/v2/ledger/__init__.py,sha256=lylw2bYKFhukq8MTffRi-jqKqYwRHLlsB65ZKl6sUHk,2495
76
- samplehc/resources/v2/ledger/insurance.py,sha256=QumeJ53gptKhHEvBaOHcvWLex7K2bY9MQobf2_ThBCQ,5621
77
- samplehc/resources/v2/ledger/ledger.py,sha256=Fn6sWqUzhfMya7HhBsL3ldlgPx_TAw3_e8hDMtlcs-s,61878
78
- samplehc/resources/v2/ledger/orders.py,sha256=DncKFJsQx7nm42lzb0aug995zZnmRGCjfRz2vnLzYjc,10480
79
- samplehc/resources/v2/ledger/patients.py,sha256=WQiOtXRRJHebEtQg3F5Iz5tI73IYNuP1whDU2RPpHnE,5555
80
- samplehc/resources/v2/ledger/institutions/__init__.py,sha256=ixR0ALO-m-bg9hapMc7lO_OYyZD517vYbu9rcsaTJtw,1080
81
- samplehc/resources/v2/ledger/institutions/institutions.py,sha256=-fj1yhW25fSGEdQjkhGY-irW4h3qxZk9Q-9poiNOgtE,10559
82
- samplehc/resources/v2/ledger/institutions/orders.py,sha256=mCZs0DkCSszFqO-9i8VMrnwEn8BfVc2hS0oXqhHD2JQ,6533
78
+ samplehc/resources/v2/integrations/kno2/messages.py,sha256=BlIUV_1ae2lNtjI6wJigXk7iOTAs2G8vhQJ00qO1dF8,10347
79
+ samplehc/resources/v2/ledger/__init__.py,sha256=wJp8z_TSgl7zuOvOvFxpwUBMAaVp4mRI2NVkbKGKiL0,1452
80
+ samplehc/resources/v2/ledger/account.py,sha256=Fc3A7czMWCVa1jPZXiZ2EQjtmMjVqEOz4jwAihS9N_I,11452
81
+ samplehc/resources/v2/ledger/entry.py,sha256=m0IuJr2Objsnm5int5Z7VGtJQkmVcFDzbK0yAqP1CUg,13982
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=RXCZcdU-k7oG4M7Y8Eqt05ct9wFXGtqT1rwN7-IGdW0,9403
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
99
99
  samplehc/types/v2/browser_agent_invoke_params.py,sha256=GH1bkTIefBLcVz9nKcvQAu1hFuodCd8avTcYEcG1SIQ,367
100
100
  samplehc/types/v2/browser_agent_invoke_response.py,sha256=008fSDAfWWy-GumiQai9BCEhPQgjB9O_3BsywHWNb7s,482
101
- samplehc/types/v2/clearinghouse_calculate_patient_cost_params.py,sha256=maMspSTt4X8dz3iHp-HFKLWv1_B_UtIP4VXQd_FNTMY,86893
101
+ samplehc/types/v2/clearinghouse_calculate_patient_cost_params.py,sha256=iVZPGa5AFaTvuL5ogEQaUWfvASMw1PtTFm6fYlzDruc,86950
102
102
  samplehc/types/v2/clearinghouse_check_claim_status_params.py,sha256=ko1_OwVFSQZ0U2unGPYYNx5eovOObjYORZSc64-DKew,1683
103
- samplehc/types/v2/clearinghouse_check_eligibility_params.py,sha256=403fR7fuCUNla_YfBx0hQD3_ykBBsPAbsp8el-o8mWo,1465
103
+ samplehc/types/v2/clearinghouse_check_eligibility_params.py,sha256=klc12zvARqdGUSUe9hi9UwK6W7Ncz8wF3PIZHeO8UXw,1488
104
104
  samplehc/types/v2/clearinghouse_check_eligibility_response.py,sha256=YFLinf3tqd55F5LS5HarQp9KO3R-qLdf7v1WmPkAaJo,301
105
105
  samplehc/types/v2/clearinghouse_coordination_of_benefits_params.py,sha256=09vrP_Ded8wANL1jBXVBXH7fOXMqYV8ndQclUH4QaMg,1496
106
106
  samplehc/types/v2/clearinghouse_run_discovery_params.py,sha256=JiXY5K6qy70xzuQYhWsgo9eLRGs_N1RI5rIs3FRThWg,1779
@@ -108,19 +108,19 @@ samplehc/types/v2/clearinghouse_run_discovery_response.py,sha256=nwWK_9tJKcdOb8-
108
108
  samplehc/types/v2/communication_send_email_params.py,sha256=thNaWdxK4JwOk4JQ0zvb3rab9AlOfkDbaweP_7vXsIg,1638
109
109
  samplehc/types/v2/communication_send_fax_params.py,sha256=iVnTNnpH31avBEK86gFT8Y9MjduB693NQhQJCN6c3f4,1552
110
110
  samplehc/types/v2/communication_send_fax_response.py,sha256=T-OO3awvoNR2sgv8JvvZiJBsQZJwFjCZsTiKDc76thM,375
111
- samplehc/types/v2/communication_send_letter_params.py,sha256=Et-peWg0B9XL4U4s--70aMA98daNcbvxVYO9RKCSAYA,1911
111
+ samplehc/types/v2/communication_send_letter_params.py,sha256=SBfrTLteva-qGVpUZW-ehlOJTNADlmVDGXK685IP5yE,1962
112
112
  samplehc/types/v2/communication_send_letter_response.py,sha256=9Jdgi6-YBEYaJdY_IC7u_3djufZ67gdH1ocppShg_dI,368
113
113
  samplehc/types/v2/database_execute_sql_params.py,sha256=9JhgbItnJenQAP4VQPuM7CW4P3ONTWbdor9x5Gn1ZWo,783
114
114
  samplehc/types/v2/database_execute_sql_response.py,sha256=dM0wUsOofc-0YowLsU0UiIIepqbTmpv_iRBfudFHL9U,418
115
- samplehc/types/v2/document_classify_params.py,sha256=fnpGhvmBkpqJphdhhBtG4FupY4KbYBy11bxQ0aOn8yc,859
115
+ samplehc/types/v2/document_classify_params.py,sha256=nEx-pdQ6hq3C0NjJxBWOv96rTQz1YoNjL-24ltAjLE0,900
116
116
  samplehc/types/v2/document_classify_response.py,sha256=gBW9NalcRZ4zRuBKg02Efo49M6PBbDz1ObHR9m7KPLg,370
117
117
  samplehc/types/v2/document_combine_params.py,sha256=U4VK6S19oy0n8-ZF6jWFWwwQweWjqqEtASyp5G9OlHw,785
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
- samplehc/types/v2/document_generate_csv_params.py,sha256=XEs74g9L05BT_M258ydVhaXhycZ-OXJi-Wi3HWwisf8,1022
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
125
125
  samplehc/types/v2/document_presigned_upload_url_params.py,sha256=GUooEmi6zACjwCaao3_SP6IqLwfnwKTUxYzVTfRT4rw,1283
126
126
  samplehc/types/v2/document_presigned_upload_url_response.py,sha256=VQ6ffBy1AKnq2Cg4YotbWPokzw_gc0X4DVCfsVMotYE,386
@@ -129,35 +129,14 @@ 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
139
- samplehc/types/v2/ledger_assign_invoice_params.py,sha256=EWL7aWm-Lw8CDhJxKKPIjM4lC-EET6-R_tx4aR1Rhrs,1188
140
- samplehc/types/v2/ledger_assign_invoice_response.py,sha256=5pLgdIJpxmVSIb9nzmIzhrCu5kxqI4tyCQPVhYPvk34,346
141
- samplehc/types/v2/ledger_claim_adjustment_params.py,sha256=7LhRgPR6KdIImjVNSRAV4IWQD9n6NNWFA-Osqb3Qdho,1212
142
- samplehc/types/v2/ledger_claim_adjustment_response.py,sha256=45bUo6rJWMojAUXpIl_C-cQXlRzSjgZAI380594X4Dk,390
143
- samplehc/types/v2/ledger_claim_payment_params.py,sha256=3XtNmXOYegSH33sNpSZWtNVe62seUai8X72hsWeYP-E,1165
144
- samplehc/types/v2/ledger_claim_payment_response.py,sha256=FWisLTj1aWXPRZBXimPJ6NpqoJpEKr4WYhEDQ5Yx-pc,384
145
- samplehc/types/v2/ledger_institution_adjustment_params.py,sha256=DwBl6c2FPXwWuCsiQXrXe2tq3L1EMGShgc7EKA4j5TI,1092
146
- samplehc/types/v2/ledger_institution_adjustment_response.py,sha256=LIQArt9R15FA2uDfT8Kjz9aAKfj9dkPdWhtU77fskH4,402
147
- samplehc/types/v2/ledger_institution_payment_params.py,sha256=yUd20SxwtdDNrfWsq8NMLm98V3B55Fo4q1u7KgcBQHk,1070
148
- samplehc/types/v2/ledger_institution_payment_response.py,sha256=n2v4LpHmQIweXnT4JPTX_yfF6t2rwVYeXenzRoUUO1c,396
149
- samplehc/types/v2/ledger_new_order_params.py,sha256=RmAml-rAM4F_4ut7FapOSmT5h7gNUnO66rFOanfoGn4,785
150
- samplehc/types/v2/ledger_new_order_response.py,sha256=9rJW6reAv3siw0vDKb_4MYuX2jifsXA8kHYs-mIGodM,376
151
- samplehc/types/v2/ledger_order_writeoff_params.py,sha256=bhFaDQjYLk578bIndTuAvilCIqo8OJnv_7MSiL9UHLg,906
152
- samplehc/types/v2/ledger_order_writeoff_response.py,sha256=dVNvRNaVoXGVGhB7xnWtUuORjKwXAvSmqPVM_VAAnnI,386
153
- samplehc/types/v2/ledger_patient_adjustment_params.py,sha256=cffxor2MNYbmMtMEt1TijIgYEjza2DyxagSgWQvGD20,1072
154
- samplehc/types/v2/ledger_patient_adjustment_response.py,sha256=OJvMn75PFzpTsGcObXOcq3HFB1KalGCLQ4m6VrwfTAM,394
155
- samplehc/types/v2/ledger_patient_payment_params.py,sha256=UOJ1VLQYlSE7t3_6V8NCSudHEpilhNDbiY_iRb__kCw,909
156
- samplehc/types/v2/ledger_patient_payment_response.py,sha256=vkn7bi9ICvcPOsu6r0A5okwPI8tHpZH2qBUEryJlB0M,388
157
- samplehc/types/v2/ledger_post_remittance_accepted_params.py,sha256=e1hAzeOm2Gb0hcE30l62aHlYEJNTsRXGM0iBxJ35TgA,1470
158
- samplehc/types/v2/ledger_post_remittance_accepted_response.py,sha256=TRErXY-MzFJfdW0g8Jps4eGTT8gzyvRydFm29ggEUpY,404
159
- samplehc/types/v2/ledger_reverse_entry_params.py,sha256=QDDe48kdjt8FjsHXCQAgCazk5Ap9MLEuRKF0WEYGP3Q,337
160
- samplehc/types/v2/ledger_reverse_entry_response.py,sha256=dYswBaYUHJkvK1KaTssicCIxz7Ve_rBYjpu0WPvSS0g,368
161
140
  samplehc/types/v2/policy_list_companies_params.py,sha256=1cAH6iiVYHmawgEZIcgtqBgJ1OvZueY3qsXeXj18SIw,438
162
141
  samplehc/types/v2/policy_list_companies_response.py,sha256=FQPhwWWqeE-iagulSDS3iufrohdxb7xgfXVRaxegdFg,462
163
142
  samplehc/types/v2/policy_list_params.py,sha256=PMsQB1tUkpe8nBJHHL_gicCp8aClF2M-63mkWFNhSBY,1699
@@ -183,46 +162,51 @@ samplehc/types/v2/workflow_run_resume_when_complete_response.py,sha256=-VG90P9eZ
183
162
  samplehc/types/v2/workflow_run_retrieve_response.py,sha256=TMODOQGlZ8h76i7xDVq6Q_Do1cbyeuZ2PMlKUMMo7CE,407
184
163
  samplehc/types/v2/workflow_start_params.py,sha256=ng_LufXszNHLvDzGflKU4aDMKAtdCw1yqrEoXrWxWzg,477
185
164
  samplehc/types/v2/workflow_start_response.py,sha256=RF8irtsIvRiF6ZuDs0ApgGWnvLSip83n7FGyFboUClQ,669
165
+ samplehc/types/v2/browser_agents/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
166
+ samplehc/types/v2/browser_agents/runs/__init__.py,sha256=wZbYvlop8807cU8yil_oo_d3geBtPwJvKdCPrHIsABI,317
167
+ samplehc/types/v2/browser_agents/runs/help_request_resolve_params.py,sha256=naPrcn1OvvaLQZANW3SchskmRSPkrqy-yR0SGmW4qHY,518
168
+ samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py,sha256=rj29f6cenKn-UvX-Ns4YZ6YvAjXGZKQgSaK1PaflJNw,650
186
169
  samplehc/types/v2/browser_automation/__init__.py,sha256=CCz_Y-fN-C5G-ZvnLdkoE5gN5De8-_LaVjo3nAAw2w4,329
187
170
  samplehc/types/v2/browser_automation/availity_submit_appeal_params.py,sha256=xPpXHjO-5JG4_a5e1RVb9mJQzTt_J_WvypW0nzNq76A,1985
188
171
  samplehc/types/v2/browser_automation/availity_submit_appeal_response.py,sha256=rUKHMayj-Edo78E4hbZMXgXl8u7AxFTvVy0Dbyrc6sY,384
189
172
  samplehc/types/v2/clearinghouse/__init__.py,sha256=wyZ7XAXj5ug8Vnca6DaozMKvxb2bP1fXEJq0mM_4SfM,495
190
- samplehc/types/v2/clearinghouse/claim_submit_params.py,sha256=4CGf004MuDYJhSD3KVsQVVZcruUKx9y7852i7B5M8G4,92614
173
+ samplehc/types/v2/clearinghouse/claim_submit_params.py,sha256=nxrn2qluwkI044Tm7Fg7_MRC99zYL_-Wj1Pa5MXUEWs,92742
191
174
  samplehc/types/v2/clearinghouse/claim_submit_response.py,sha256=slh7pXvvTUerZLvvSZwbzZMM_kV2GCkMZ16MSb6D2D8,585
192
175
  samplehc/types/v2/clearinghouse/payer_list_response.py,sha256=WjyYm7gAQXAuMjI4fGD08rqoDsSgdupXXxQW5-9L33I,529
193
176
  samplehc/types/v2/clearinghouse/payer_search_params.py,sha256=BGRRuYx7doSxrjnxkF4bvgG_9s1SwBvz4H7gi1O0XPY,346
194
177
  samplehc/types/v2/clearinghouse/payer_search_response.py,sha256=NrJiXkx_4Cs_ZeD_yINUZrEoY8pgM6OZSnYrkLGOL-4,618
195
- samplehc/types/v2/documents/__init__.py,sha256=uHbY_gbySx-jWixDJjpw4d45f4iPGi3eaLcMs4gXgho,1252
178
+ samplehc/types/v2/documents/__init__.py,sha256=MMvJNk3KTwvt06oNOpWyZN1VSnm6F4snmOp15XduniY,1402
196
179
  samplehc/types/v2/documents/format_create_pdf_params.py,sha256=OgteE7CfhVP-CAw5RGZlSoXz50rdfxohA-9fJA_9t0Q,458
197
180
  samplehc/types/v2/documents/format_create_pdf_response.py,sha256=S7Bds-J2bb_e9VkripnKiT7Mx4cwcH5yx8BIrUfCng8,307
198
- samplehc/types/v2/documents/legacy_extract_params.py,sha256=x2uMo-XOWJtwTXbEsIW2Fv6lWNc-ii_2E1KBQ_wF0IQ,3136
181
+ samplehc/types/v2/documents/legacy_extract_params.py,sha256=OcutLFkSUgJ_4ZezMMZEtCmhsU-GXRzluIrceaKmDMQ,3228
199
182
  samplehc/types/v2/documents/legacy_extract_response.py,sha256=vxqLiGHV0IZENYPN9ZOZHyLIn-jlY20siNQMjE38vvQ,368
200
183
  samplehc/types/v2/documents/legacy_reason_params.py,sha256=vfBpWWWNqTQ0u6QCL2moqHwnIrT-IrENYkFQb1-KjJg,1971
201
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
202
187
  samplehc/types/v2/documents/pdf_template_retrieve_metadata_response.py,sha256=2hPkTqZOaNddFHuDwPAsvY-PJCc4SRzi411bSogiHvM,389
203
188
  samplehc/types/v2/documents/template_generate_document_async_params.py,sha256=5ajpeJbd9F8QYjb7Ac_qtj1YtUtK4vJHzO_6VEoRJFk,1273
204
189
  samplehc/types/v2/documents/template_generate_document_async_response.py,sha256=xFivOxAB8jahS6vKcr-3TGR4IhF0INDH37nivTVoHSk,402
205
- 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
206
191
  samplehc/types/v2/documents/template_render_document_response.py,sha256=sUZYTl_AX3PN9H4B4Xs50tO6eFsj1rXOQuYLZgyt2Fc,319
207
- samplehc/types/v2/events/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
208
- samplehc/types/v2/events/integrations/__init__.py,sha256=qcDTPf4uUOAdYpbrY5I8HozgOsK4u_eU2sQFnA2WevI,211
209
- samplehc/types/v2/events/integrations/xcure_make_request_params.py,sha256=j-F_IqLDzPeUreW7ov_fcpyOaMmgYpYGyKV1VxtvDEw,441
210
192
  samplehc/types/v2/hie/__init__.py,sha256=xRIS1W4FJDJeqAukGxx2ZWzJBpWx_95Ckx5zl2UEunM,441
211
193
  samplehc/types/v2/hie/adt_subscribe_params.py,sha256=XNvVgMWAnKEO_So8m7iEHgc3YQl9e7EM0CzzJXfiN3s,2975
212
194
  samplehc/types/v2/hie/document_query_params.py,sha256=vdpaitjffO4TjsSJRiFM1k0haCKJhsNMBsAjXugBb4Q,2977
213
195
  samplehc/types/v2/hie/document_query_response.py,sha256=scLiQ-nSkRW8vbAg-QiPgkQRLnBIfmjLKqauoNs0cZQ,442
214
196
  samplehc/types/v2/hie/document_upload_params.py,sha256=y7Bu6fD5YyZDCGpxN2z5wBmJuENlPSfl_mmSUqN7V9k,1836
215
- samplehc/types/v2/integrations/__init__.py,sha256=DFiEwWHMv5014DLqxhMlufd3vuWcZrlIOgAfjoVGx64,1220
197
+ samplehc/types/v2/integrations/__init__.py,sha256=l9sOSRw85qbjk_LIgmInl3WSfz8-uhxu3m9n6bgmaYc,1418
216
198
  samplehc/types/v2/integrations/careviso_get_payers_response.py,sha256=Et-uLf2afZfEmu38r5xkzhQA2UolbFH5z5gpIV2v33g,543
217
- samplehc/types/v2/integrations/careviso_submit_prior_authorization_params.py,sha256=5GXjyVE8x2H5_EmIUioCGJ2X9uR5yKmmoSrlTs7XXXQ,3388
199
+ samplehc/types/v2/integrations/careviso_submit_prior_authorization_params.py,sha256=Kb1VOG1BtL_3b5uBvdY8cVmicO8v3l9a3J09UPCsfrU,3460
218
200
  samplehc/types/v2/integrations/glidian_get_submission_requirements_params.py,sha256=vzs_i2xzudxXQhnVeETVCRDZhQTw-WMIZKJTZsxV0ZM,520
219
201
  samplehc/types/v2/integrations/glidian_get_submission_requirements_response.py,sha256=-tqZkOr5shcOl42McU20IvK9oNwJaraUeRK84He2pac,879
220
202
  samplehc/types/v2/integrations/glidian_list_payers_params.py,sha256=fA5-lxgAWC-P33RFHz8AlXAHUS1ujl5EuPMfU2LX2YY,274
221
203
  samplehc/types/v2/integrations/glidian_list_payers_response.py,sha256=Xh6d76ZIj8yLWpk6CvoXKnXXnyNEQrfhhfAAB3qnk3w,416
222
204
  samplehc/types/v2/integrations/glidian_list_services_params.py,sha256=23IGwtyqXNlB2l3i4LpQDOZ56GxxIIbDuMeX3UEGsjE,381
223
205
  samplehc/types/v2/integrations/glidian_list_services_response.py,sha256=ezChHI2no32064nkk2feoJEQYq7h9WAyCDCfWW-b110,441
206
+ samplehc/types/v2/integrations/salesforce_run_crud_action_params.py,sha256=DEoYOTlq8wr3h3gJnMPPwfUb5zEeZm0_STNYn9q0894,750
224
207
  samplehc/types/v2/integrations/snowflake_query_params.py,sha256=ave_87sUwdYtAgU21PahfuWMugSwzDxuxkY-YYUcpK0,324
225
208
  samplehc/types/v2/integrations/snowflake_query_response.py,sha256=g3sxN4GAiSJZy7HXAQf_uNZmCcoZnVfWlJGfbVtITus,256
209
+ samplehc/types/v2/integrations/xcure_make_request_params.py,sha256=j-F_IqLDzPeUreW7ov_fcpyOaMmgYpYGyKV1VxtvDEw,441
226
210
  samplehc/types/v2/integrations/bank/__init__.py,sha256=PII6VpyEwGsiBaP1UKrkyLNEhtMkpxHMaynx4Dexz_w,297
227
211
  samplehc/types/v2/integrations/bank/transaction_sync_params.py,sha256=7bNeRpP9-Fv8agjs2ixoRDA17UzKyHsX4i4TKg1acWo,398
228
212
  samplehc/types/v2/integrations/bank/transaction_sync_response.py,sha256=2J1PQQIIz1P-CbUvHEqXrTeMjfe1nkhzSO1qgwiInW4,724
@@ -235,28 +219,25 @@ samplehc/types/v2/integrations/glidian/prior_authorization_update_record_params.
235
219
  samplehc/types/v2/integrations/glidian/prior_authorization_update_record_response.py,sha256=NpH6AhqeKxejCczFzNE6-FIT2b3uz_fKmHFcNUS7SlQ,370
236
220
  samplehc/types/v2/integrations/glidian/prior_authorizations/__init__.py,sha256=L2Zdvs8EaBIctVF0V8LBDPzhZIRpLs3wBw_ozIqqQlk,447
237
221
  samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_list_response.py,sha256=lScFQQwPxgZLYEA7avKiYmyt9bhUkCD6kJ2OFi1P6aw,886
238
- samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_params.py,sha256=68R6iRnr3tCY7ktpcqUm7ioRNV7PuwzPHy5chsvJcNE,603
222
+ samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_params.py,sha256=tomX3tStOg2bclhT6ZIfWf-sQskL6St0nGTmpBRZjoM,647
239
223
  samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_response.py,sha256=NCQBheHNdcz1fGQ9pP8xSlP4KpeZchrGvO3R0OWnZDw,450
240
224
  samplehc/types/v2/integrations/kno2/__init__.py,sha256=-gOR4o0TRcDJlPLYQR7Xe0kb5WIOcFem52qiHIW6seA,319
241
225
  samplehc/types/v2/integrations/kno2/message_get_attachment_response.py,sha256=AZue-qHJSTSNeMpGLkFkdQeQGYKWrPoJ9TaJZmhcoiQ,318
242
226
  samplehc/types/v2/integrations/kno2/message_retrieve_response.py,sha256=fr41OON96HnoAyFIpRxh7Hb4pTCreYydkack6lZFPuM,271
243
- samplehc/types/v2/ledger/__init__.py,sha256=KN0exAku7xib0S15DzvtTyHYO_pjH3sovyu1plLfxlc,1105
244
- samplehc/types/v2/ledger/institution_list_outstanding_accounts_response.py,sha256=ep5YScXAC57g7RgjSX191sP5tt6nOIIOAZyQYFaZUyg,695
245
- samplehc/types/v2/ledger/institution_retrieve_outstanding_orders_response.py,sha256=QAha8ZeohVFmZodsxTLnWP8UV3Hw0ktwg3RzoIeoHGk,679
246
- samplehc/types/v2/ledger/insurance_list_outstanding_accounts_response.py,sha256=f3E4INlo_03bQFXHUV-uB2wg-E2Wz3HKNv3f9mUikkM,675
247
- samplehc/types/v2/ledger/order_retrieve_balances_response.py,sha256=m6Dh4xXZvQQ5bks9MnmoEiTaveJQXHVnYHI0cPC_uRg,932
248
- samplehc/types/v2/ledger/order_retrieve_batch_balances_params.py,sha256=CgbBDsG0viRanM7nDQQTW9yEFMCnoAIAk6zS-6c8a7A,501
249
- samplehc/types/v2/ledger/order_retrieve_batch_balances_response.py,sha256=cSH13Hz2SJKxf9t3DdIwKl-7Wu1G0iRtd9_Wgla4dQ8,1099
250
- samplehc/types/v2/ledger/patient_list_outstanding_accounts_response.py,sha256=o_h3UmFaHsLMtKw5qu5v-k8DcQ_d_epou4HQQQZbFHE,596
251
- samplehc/types/v2/ledger/institutions/__init__.py,sha256=duScaPD7h05xeuWzxy-HTKyNtK7xBhzwe6AfDtBZvFM,229
252
- samplehc/types/v2/ledger/institutions/order_retrieve_balance_response.py,sha256=PQV5CObaxz8wepri9FeZRjUeI2_VCFrZzgdOsXOrAz0,349
227
+ samplehc/types/v2/ledger/__init__.py,sha256=UR89wcUHLaMEO1ZNDPNCGMK9ibhjF8oJ9eSV9RCw53s,591
228
+ samplehc/types/v2/ledger/account_writeoff_params.py,sha256=hRmn--xzlslRj8HGctk8ZBeWknSX_87P77Qw-sybzE4,695
229
+ samplehc/types/v2/ledger/account_writeoff_response.py,sha256=W-pBaGANRA0VqPme3uyfCxDGrIB_SvOvJW-rzi_w5bw,311
230
+ samplehc/types/v2/ledger/entry_post_params.py,sha256=5AOS5cXp1gp6plyDyVJ5OMNk_57XqCP1LFUkGbAu7Vc,1976
231
+ samplehc/types/v2/ledger/entry_post_response.py,sha256=mHtn35Ec6n-5PNhkkSgwM0xX-tGxx6KB1EYKwX-iY6c,264
232
+ samplehc/types/v2/ledger/entry_reverse_params.py,sha256=pcFBLxZ_XiS6hXB8uphYw_H89j83fLW1XpZd40NCgw4,545
233
+ samplehc/types/v2/ledger/entry_reverse_response.py,sha256=nJJLjDWSjhPICqxuCoP77v8qwiCVZeocrhoeH3fREWs,279
253
234
  samplehc/types/v2/tasks/__init__.py,sha256=iciLaYiYWPApWbgmJHjbUtC00sqrV6ziysyv0z4Pbl8,342
254
235
  samplehc/types/v2/tasks/state_get_response.py,sha256=_Eyz7nB-XpI_zkG45fTR2aC7AZIpNaxJHyYEOV_EN-w,232
255
236
  samplehc/types/v2/tasks/state_update_params.py,sha256=qSLE4Ic5PJlkvcFbTu-KlfH6qgYQCpIMqFoIspMPVNI,299
256
237
  samplehc/types/v2/tasks/state_update_response.py,sha256=ZLnR_rl9yasOnaxQvcM3fiaI_H16pDjBve1GUUleul4,214
257
238
  samplehc/types/v2/workflow_runs/__init__.py,sha256=Nmrudr30JDOaGyeMcc_dqaqqs_9kTdebHD7W0vHHfdE,208
258
239
  samplehc/types/v2/workflow_runs/step_get_output_response.py,sha256=XhRGcpEmxu4TBgpF8r63u5-ruEUDWuXr0ahv1CD9gis,333
259
- samplehc-0.10.0.dist-info/METADATA,sha256=fjUJayjSnHRS-_tSJk8jYZROM0MtR19ilV_bWnsSOOc,14285
260
- samplehc-0.10.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
261
- samplehc-0.10.0.dist-info/licenses/LICENSE,sha256=nrJkK4JSAQb1p7FJcTysujPJoAZtrnXxwsLkwHz0-J8,11347
262
- samplehc-0.10.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,,
@@ -1,33 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from .events import (
4
- EventsResource,
5
- AsyncEventsResource,
6
- EventsResourceWithRawResponse,
7
- AsyncEventsResourceWithRawResponse,
8
- EventsResourceWithStreamingResponse,
9
- AsyncEventsResourceWithStreamingResponse,
10
- )
11
- from .integrations import (
12
- IntegrationsResource,
13
- AsyncIntegrationsResource,
14
- IntegrationsResourceWithRawResponse,
15
- AsyncIntegrationsResourceWithRawResponse,
16
- IntegrationsResourceWithStreamingResponse,
17
- AsyncIntegrationsResourceWithStreamingResponse,
18
- )
19
-
20
- __all__ = [
21
- "IntegrationsResource",
22
- "AsyncIntegrationsResource",
23
- "IntegrationsResourceWithRawResponse",
24
- "AsyncIntegrationsResourceWithRawResponse",
25
- "IntegrationsResourceWithStreamingResponse",
26
- "AsyncIntegrationsResourceWithStreamingResponse",
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 .xcures import (
4
- XcuresResource,
5
- AsyncXcuresResource,
6
- XcuresResourceWithRawResponse,
7
- AsyncXcuresResourceWithRawResponse,
8
- XcuresResourceWithStreamingResponse,
9
- AsyncXcuresResourceWithStreamingResponse,
10
- )
11
- from .integrations import (
12
- IntegrationsResource,
13
- AsyncIntegrationsResource,
14
- IntegrationsResourceWithRawResponse,
15
- AsyncIntegrationsResourceWithRawResponse,
16
- IntegrationsResourceWithStreamingResponse,
17
- AsyncIntegrationsResourceWithStreamingResponse,
18
- )
19
-
20
- __all__ = [
21
- "XcuresResource",
22
- "AsyncXcuresResource",
23
- "XcuresResourceWithRawResponse",
24
- "AsyncXcuresResourceWithRawResponse",
25
- "XcuresResourceWithStreamingResponse",
26
- "AsyncXcuresResourceWithStreamingResponse",
27
- "IntegrationsResource",
28
- "AsyncIntegrationsResource",
29
- "IntegrationsResourceWithRawResponse",
30
- "AsyncIntegrationsResourceWithRawResponse",
31
- "IntegrationsResourceWithStreamingResponse",
32
- "AsyncIntegrationsResourceWithStreamingResponse",
33
- ]