candidhealth 0.42.5 → 0.43.0
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.
- package/Client.d.ts +3 -0
- package/Client.js +61 -56
- package/api/resources/auth/resources/v2/client/Client.js +1 -1
- package/api/resources/billingNotes/resources/v2/client/Client.js +3 -3
- package/api/resources/chargeCapture/resources/v1/client/Client.d.ts +238 -5
- package/api/resources/chargeCapture/resources/v1/client/Client.js +253 -23
- package/api/resources/chargeCapture/resources/v1/client/requests/ChargeCaptureUpdate.d.ts +118 -1
- package/api/resources/chargeCapture/resources/v1/client/requests/CreateChargeCaptureRequest.d.ts +118 -1
- package/api/resources/chargeCapture/resources/v1/client/requests/GetAllChargeCapturesRequest.d.ts +6 -11
- package/api/resources/chargeCapture/resources/v1/types/ChargeCapture.d.ts +1 -1
- package/api/resources/chargeCapture/resources/v1/types/ChargeCaptureError.d.ts +5 -5
- package/api/resources/chargeCaptureBundles/resources/v1/client/Client.d.ts +8 -16
- package/api/resources/chargeCaptureBundles/resources/v1/client/Client.js +26 -76
- package/api/resources/chargeCaptureBundles/resources/v1/client/index.d.ts +0 -1
- package/api/resources/chargeCaptureBundles/resources/v1/client/index.js +1 -2
- package/api/resources/chargeCaptureBundles/resources/v1/client/requests/{GetAllChargeCaptureBundlesRequest.d.ts → GetAllChargeCaptureClaimCreationsRequest.d.ts} +17 -17
- package/api/resources/chargeCaptureBundles/resources/v1/client/requests/index.d.ts +1 -1
- package/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreation.d.ts +20 -0
- package/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationPage.d.ts +7 -0
- package/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationSortField.d.ts +7 -0
- package/{dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleSortField.js → api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationSortField.js} +2 -2
- package/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationStatus.d.ts +15 -0
- package/{dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleStatus.js → api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationStatus.js} +2 -2
- package/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationSummary.d.ts +15 -0
- package/api/resources/chargeCaptureBundles/resources/v1/types/index.d.ts +5 -5
- package/api/resources/chargeCaptureBundles/resources/v1/types/index.js +5 -5
- package/api/resources/commons/types/ChargeCaptureClaimCreationId.d.ts +8 -0
- package/api/resources/commons/types/ChargeCaptureClaimCreationId.js +9 -0
- package/api/resources/commons/types/index.d.ts +1 -2
- package/api/resources/commons/types/index.js +1 -2
- package/api/resources/contracts/resources/v2/client/Client.js +5 -5
- package/api/resources/credentialing/resources/v2/client/Client.js +5 -5
- package/api/resources/customSchemas/resources/v1/client/Client.js +4 -4
- package/api/resources/diagnoses/client/Client.js +3 -3
- package/api/resources/eligibility/resources/v2/client/Client.js +3 -3
- package/api/resources/encounterAttachments/client/Client.d.ts +30 -0
- package/api/resources/encounterAttachments/client/Client.js +17 -0
- package/api/resources/encounterAttachments/client/index.d.ts +1 -0
- package/api/resources/encounterAttachments/client/index.js +2 -0
- package/api/resources/encounterAttachments/index.d.ts +2 -0
- package/api/resources/encounterAttachments/index.js +18 -0
- package/api/resources/encounterAttachments/resources/index.d.ts +1 -0
- package/{dist/serialization/resources/chargeCaptureBundles/resources/v1/client → api/resources/encounterAttachments/resources}/index.js +2 -2
- package/api/resources/encounterAttachments/resources/v1/client/Client.d.ts +63 -0
- package/api/resources/encounterAttachments/resources/v1/client/Client.js +195 -0
- package/api/resources/encounterAttachments/resources/v1/client/create.d.ts +22 -0
- package/{dist/api/resources/chargeCaptureBundles/resources/v1/client/resubmit.js → api/resources/encounterAttachments/resources/v1/client/create.js} +1 -12
- package/api/resources/encounterAttachments/resources/v1/client/delete.d.ts +22 -0
- package/api/resources/{chargeCaptureBundles/resources/v1/client/resubmit.js → encounterAttachments/resources/v1/client/delete.js} +1 -12
- package/api/resources/encounterAttachments/resources/v1/client/get.d.ts +22 -0
- package/api/resources/encounterAttachments/resources/v1/client/get.js +57 -0
- package/api/resources/encounterAttachments/resources/v1/client/index.d.ts +4 -0
- package/api/resources/encounterAttachments/resources/v1/client/index.js +43 -0
- package/api/resources/encounterAttachments/resources/v1/client/requests/CreateAttachmentRequest.d.ts +11 -0
- package/api/resources/encounterAttachments/resources/v1/client/requests/DeleteAttachmentRequest.d.ts +13 -0
- package/api/resources/encounterAttachments/resources/v1/client/requests/index.d.ts +2 -0
- package/api/resources/encounterAttachments/resources/v1/client/requests/index.js +2 -0
- package/api/resources/encounterAttachments/resources/v1/index.d.ts +2 -0
- package/api/resources/encounterAttachments/resources/v1/index.js +18 -0
- package/api/resources/encounterAttachments/resources/v1/types/AttachmentId.d.ts +8 -0
- package/api/resources/{commons/types/ChargeCaptureBundleId.js → encounterAttachments/resources/v1/types/AttachmentId.js} +2 -2
- package/api/resources/encounterAttachments/resources/v1/types/BaseAttachment.d.ts +11 -0
- package/api/resources/encounterAttachments/resources/v1/types/EncounterAttachment.d.ts +8 -0
- package/api/resources/encounterAttachments/resources/v1/types/EncounterAttachmentType.d.ts +7 -0
- package/api/resources/encounterAttachments/resources/v1/types/EncounterAttachmentType.js +9 -0
- package/api/resources/encounterAttachments/resources/v1/types/index.d.ts +4 -0
- package/api/resources/encounterAttachments/resources/v1/types/index.js +20 -0
- package/api/resources/encounterProviders/resources/v2/client/Client.d.ts +8 -66
- package/api/resources/encounterProviders/resources/v2/client/Client.js +20 -78
- package/api/resources/encounters/resources/v4/client/Client.d.ts +110 -100
- package/api/resources/encounters/resources/v4/client/Client.js +115 -105
- package/api/resources/encounters/resources/v4/client/requests/EncounterCreate.d.ts +9 -83
- package/api/resources/encounters/resources/v4/client/requests/EncounterUpdate.d.ts +97 -1
- package/api/resources/expectedNetworkStatus/resources/v1/client/Client.js +1 -1
- package/api/resources/expectedNetworkStatus/resources/v2/client/Client.js +2 -2
- package/api/resources/exports/resources/v3/client/Client.js +1 -1
- package/api/resources/externalPaymentAccountConfig/resources/v1/client/Client.js +1 -1
- package/api/resources/feeSchedules/resources/v3/client/Client.js +10 -10
- package/api/resources/guarantor/resources/v1/client/Client.d.ts +1 -21
- package/api/resources/guarantor/resources/v1/client/Client.js +4 -24
- package/api/resources/importInvoice/resources/v1/client/Client.js +4 -4
- package/api/resources/index.d.ts +1 -0
- package/api/resources/index.js +3 -2
- package/api/resources/insuranceAdjudications/resources/v1/client/Client.js +3 -3
- package/api/resources/insurancePayments/resources/v1/client/Client.js +2 -2
- package/api/resources/insuranceRefunds/resources/v1/client/Client.js +5 -5
- package/api/resources/medicationDispense/resources/v1/client/Client.js +1 -1
- package/api/resources/nonInsurancePayerPayments/resources/v1/client/Client.js +5 -5
- package/api/resources/nonInsurancePayerRefunds/resources/v1/client/Client.js +5 -5
- package/api/resources/nonInsurancePayers/resources/v1/client/Client.js +6 -6
- package/api/resources/organizationProviders/resources/v3/client/Client.js +4 -4
- package/api/resources/organizationServiceFacilities/resources/v2/client/Client.js +5 -5
- package/api/resources/patientPayments/resources/v4/client/Client.js +5 -5
- package/api/resources/patientRefunds/resources/v1/client/Client.js +5 -5
- package/api/resources/payerPlanGroups/resources/v1/client/Client.js +5 -5
- package/api/resources/payers/resources/v3/client/Client.js +2 -2
- package/api/resources/preEncounter/resources/appointments/resources/v1/client/Client.js +7 -7
- package/api/resources/preEncounter/resources/coverages/resources/v1/client/Client.js +10 -10
- package/api/resources/preEncounter/resources/eligibilityChecks/resources/v1/client/Client.js +1 -1
- package/api/resources/preEncounter/resources/images/resources/v1/client/Client.js +5 -5
- package/api/resources/preEncounter/resources/lists/resources/v1/client/Client.js +2 -2
- package/api/resources/preEncounter/resources/notes/resources/v1/client/Client.js +4 -4
- package/api/resources/preEncounter/resources/patients/resources/v1/client/Client.js +11 -11
- package/api/resources/preEncounter/resources/tags/resources/v1/client/Client.js +5 -5
- package/api/resources/serviceFacility/client/Client.js +1 -1
- package/api/resources/serviceLines/resources/v2/client/Client.d.ts +1 -4
- package/api/resources/serviceLines/resources/v2/client/Client.js +4 -7
- package/api/resources/superbills/resources/v1/client/Client.js +1 -1
- package/api/resources/tasks/resources/v3/client/Client.js +5 -5
- package/api/resources/writeOffs/resources/v1/client/Client.js +6 -6
- package/core/form-data-utils/FormDataWrapper.d.ts +60 -0
- package/core/form-data-utils/FormDataWrapper.js +188 -0
- package/core/form-data-utils/index.d.ts +1 -0
- package/core/form-data-utils/index.js +17 -0
- package/core/index.d.ts +1 -0
- package/core/index.js +1 -0
- package/dist/Client.d.ts +3 -0
- package/dist/Client.js +61 -56
- package/dist/api/resources/auth/resources/v2/client/Client.js +1 -1
- package/dist/api/resources/billingNotes/resources/v2/client/Client.js +3 -3
- package/dist/api/resources/chargeCapture/resources/v1/client/Client.d.ts +238 -5
- package/dist/api/resources/chargeCapture/resources/v1/client/Client.js +253 -23
- package/dist/api/resources/chargeCapture/resources/v1/client/requests/ChargeCaptureUpdate.d.ts +118 -1
- package/dist/api/resources/chargeCapture/resources/v1/client/requests/CreateChargeCaptureRequest.d.ts +118 -1
- package/dist/api/resources/chargeCapture/resources/v1/client/requests/GetAllChargeCapturesRequest.d.ts +6 -11
- package/dist/api/resources/chargeCapture/resources/v1/types/ChargeCapture.d.ts +1 -1
- package/dist/api/resources/chargeCapture/resources/v1/types/ChargeCaptureError.d.ts +5 -5
- package/dist/api/resources/chargeCaptureBundles/resources/v1/client/Client.d.ts +8 -16
- package/dist/api/resources/chargeCaptureBundles/resources/v1/client/Client.js +26 -76
- package/dist/api/resources/chargeCaptureBundles/resources/v1/client/index.d.ts +0 -1
- package/dist/api/resources/chargeCaptureBundles/resources/v1/client/index.js +1 -2
- package/dist/api/resources/chargeCaptureBundles/resources/v1/client/requests/{GetAllChargeCaptureBundlesRequest.d.ts → GetAllChargeCaptureClaimCreationsRequest.d.ts} +17 -17
- package/dist/api/resources/chargeCaptureBundles/resources/v1/client/requests/index.d.ts +1 -1
- package/dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreation.d.ts +20 -0
- package/dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationPage.d.ts +7 -0
- package/dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationPage.js +5 -0
- package/dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationSortField.d.ts +7 -0
- package/{api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleSortField.js → dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationSortField.js} +2 -2
- package/dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationStatus.d.ts +15 -0
- package/{api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleStatus.js → dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationStatus.js} +2 -2
- package/dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationSummary.d.ts +15 -0
- package/dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationSummary.js +5 -0
- package/dist/api/resources/chargeCaptureBundles/resources/v1/types/index.d.ts +5 -5
- package/dist/api/resources/chargeCaptureBundles/resources/v1/types/index.js +5 -5
- package/dist/api/resources/commons/types/ChargeCaptureClaimCreationId.d.ts +8 -0
- package/dist/api/resources/commons/types/ChargeCaptureClaimCreationId.js +9 -0
- package/dist/api/resources/commons/types/index.d.ts +1 -2
- package/dist/api/resources/commons/types/index.js +1 -2
- package/dist/api/resources/contracts/resources/v2/client/Client.js +5 -5
- package/dist/api/resources/credentialing/resources/v2/client/Client.js +5 -5
- package/dist/api/resources/customSchemas/resources/v1/client/Client.js +4 -4
- package/dist/api/resources/diagnoses/client/Client.js +3 -3
- package/dist/api/resources/eligibility/resources/v2/client/Client.js +3 -3
- package/dist/api/resources/encounterAttachments/client/Client.d.ts +30 -0
- package/dist/api/resources/encounterAttachments/client/Client.js +17 -0
- package/dist/api/resources/encounterAttachments/client/index.d.ts +1 -0
- package/dist/api/resources/encounterAttachments/client/index.js +2 -0
- package/dist/api/resources/encounterAttachments/index.d.ts +2 -0
- package/dist/api/resources/encounterAttachments/index.js +18 -0
- package/dist/api/resources/encounterAttachments/resources/index.d.ts +1 -0
- package/{serialization/resources/chargeCaptureBundles/resources/v1/client → dist/api/resources/encounterAttachments/resources}/index.js +2 -2
- package/dist/api/resources/encounterAttachments/resources/v1/client/Client.d.ts +63 -0
- package/dist/api/resources/encounterAttachments/resources/v1/client/Client.js +195 -0
- package/dist/api/resources/encounterAttachments/resources/v1/client/create.d.ts +22 -0
- package/dist/api/resources/encounterAttachments/resources/v1/client/create.js +57 -0
- package/dist/api/resources/encounterAttachments/resources/v1/client/delete.d.ts +22 -0
- package/dist/api/resources/encounterAttachments/resources/v1/client/delete.js +57 -0
- package/dist/api/resources/encounterAttachments/resources/v1/client/get.d.ts +22 -0
- package/dist/api/resources/encounterAttachments/resources/v1/client/get.js +57 -0
- package/dist/api/resources/encounterAttachments/resources/v1/client/index.d.ts +4 -0
- package/dist/api/resources/encounterAttachments/resources/v1/client/index.js +43 -0
- package/dist/api/resources/encounterAttachments/resources/v1/client/requests/CreateAttachmentRequest.d.ts +11 -0
- package/dist/api/resources/encounterAttachments/resources/v1/client/requests/CreateAttachmentRequest.js +5 -0
- package/dist/api/resources/encounterAttachments/resources/v1/client/requests/DeleteAttachmentRequest.d.ts +13 -0
- package/dist/api/resources/encounterAttachments/resources/v1/client/requests/DeleteAttachmentRequest.js +5 -0
- package/dist/api/resources/encounterAttachments/resources/v1/client/requests/index.d.ts +2 -0
- package/dist/api/resources/encounterAttachments/resources/v1/client/requests/index.js +2 -0
- package/dist/api/resources/encounterAttachments/resources/v1/index.d.ts +2 -0
- package/dist/api/resources/encounterAttachments/resources/v1/index.js +18 -0
- package/dist/api/resources/encounterAttachments/resources/v1/types/AttachmentId.d.ts +8 -0
- package/dist/api/resources/{commons/types/ChargeCaptureBundleId.js → encounterAttachments/resources/v1/types/AttachmentId.js} +2 -2
- package/dist/api/resources/encounterAttachments/resources/v1/types/BaseAttachment.d.ts +11 -0
- package/dist/api/resources/encounterAttachments/resources/v1/types/BaseAttachment.js +5 -0
- package/dist/api/resources/encounterAttachments/resources/v1/types/EncounterAttachment.d.ts +8 -0
- package/dist/api/resources/encounterAttachments/resources/v1/types/EncounterAttachment.js +5 -0
- package/dist/api/resources/encounterAttachments/resources/v1/types/EncounterAttachmentType.d.ts +7 -0
- package/dist/api/resources/encounterAttachments/resources/v1/types/EncounterAttachmentType.js +9 -0
- package/dist/api/resources/encounterAttachments/resources/v1/types/index.d.ts +4 -0
- package/dist/api/resources/encounterAttachments/resources/v1/types/index.js +20 -0
- package/dist/api/resources/encounterProviders/resources/v2/client/Client.d.ts +8 -66
- package/dist/api/resources/encounterProviders/resources/v2/client/Client.js +20 -78
- package/dist/api/resources/encounters/resources/v4/client/Client.d.ts +110 -100
- package/dist/api/resources/encounters/resources/v4/client/Client.js +115 -105
- package/dist/api/resources/encounters/resources/v4/client/requests/EncounterCreate.d.ts +9 -83
- package/dist/api/resources/encounters/resources/v4/client/requests/EncounterUpdate.d.ts +97 -1
- package/dist/api/resources/expectedNetworkStatus/resources/v1/client/Client.js +1 -1
- package/dist/api/resources/expectedNetworkStatus/resources/v2/client/Client.js +2 -2
- package/dist/api/resources/exports/resources/v3/client/Client.js +1 -1
- package/dist/api/resources/externalPaymentAccountConfig/resources/v1/client/Client.js +1 -1
- package/dist/api/resources/feeSchedules/resources/v3/client/Client.js +10 -10
- package/dist/api/resources/guarantor/resources/v1/client/Client.d.ts +1 -21
- package/dist/api/resources/guarantor/resources/v1/client/Client.js +4 -24
- package/dist/api/resources/importInvoice/resources/v1/client/Client.js +4 -4
- package/dist/api/resources/index.d.ts +1 -0
- package/dist/api/resources/index.js +3 -2
- package/dist/api/resources/insuranceAdjudications/resources/v1/client/Client.js +3 -3
- package/dist/api/resources/insurancePayments/resources/v1/client/Client.js +2 -2
- package/dist/api/resources/insuranceRefunds/resources/v1/client/Client.js +5 -5
- package/dist/api/resources/medicationDispense/resources/v1/client/Client.js +1 -1
- package/dist/api/resources/nonInsurancePayerPayments/resources/v1/client/Client.js +5 -5
- package/dist/api/resources/nonInsurancePayerRefunds/resources/v1/client/Client.js +5 -5
- package/dist/api/resources/nonInsurancePayers/resources/v1/client/Client.js +6 -6
- package/dist/api/resources/organizationProviders/resources/v3/client/Client.js +4 -4
- package/dist/api/resources/organizationServiceFacilities/resources/v2/client/Client.js +5 -5
- package/dist/api/resources/patientPayments/resources/v4/client/Client.js +5 -5
- package/dist/api/resources/patientRefunds/resources/v1/client/Client.js +5 -5
- package/dist/api/resources/payerPlanGroups/resources/v1/client/Client.js +5 -5
- package/dist/api/resources/payers/resources/v3/client/Client.js +2 -2
- package/dist/api/resources/preEncounter/resources/appointments/resources/v1/client/Client.js +7 -7
- package/dist/api/resources/preEncounter/resources/coverages/resources/v1/client/Client.js +10 -10
- package/dist/api/resources/preEncounter/resources/eligibilityChecks/resources/v1/client/Client.js +1 -1
- package/dist/api/resources/preEncounter/resources/images/resources/v1/client/Client.js +5 -5
- package/dist/api/resources/preEncounter/resources/lists/resources/v1/client/Client.js +2 -2
- package/dist/api/resources/preEncounter/resources/notes/resources/v1/client/Client.js +4 -4
- package/dist/api/resources/preEncounter/resources/patients/resources/v1/client/Client.js +11 -11
- package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/Client.js +5 -5
- package/dist/api/resources/serviceFacility/client/Client.js +1 -1
- package/dist/api/resources/serviceLines/resources/v2/client/Client.d.ts +1 -4
- package/dist/api/resources/serviceLines/resources/v2/client/Client.js +4 -7
- package/dist/api/resources/superbills/resources/v1/client/Client.js +1 -1
- package/dist/api/resources/tasks/resources/v3/client/Client.js +5 -5
- package/dist/api/resources/writeOffs/resources/v1/client/Client.js +6 -6
- package/dist/core/form-data-utils/FormDataWrapper.d.ts +60 -0
- package/dist/core/form-data-utils/FormDataWrapper.js +188 -0
- package/dist/core/form-data-utils/index.d.ts +1 -0
- package/dist/core/form-data-utils/index.js +17 -0
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.js +1 -0
- package/dist/serialization/resources/chargeCapture/resources/v1/types/ChargeCapture.d.ts +2 -2
- package/dist/serialization/resources/chargeCapture/resources/v1/types/ChargeCapture.js +2 -2
- package/dist/serialization/resources/chargeCapture/resources/v1/types/ChargeCaptureError.d.ts +2 -2
- package/dist/serialization/resources/chargeCapture/resources/v1/types/ChargeCaptureError.js +2 -2
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/index.d.ts +0 -1
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/index.js +0 -1
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreation.d.ts +20 -0
- package/{serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundle.js → dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreation.js} +6 -8
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationPage.d.ts +14 -0
- package/{serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundlePage.js → dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationPage.js} +4 -4
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationSortField.d.ts +10 -0
- package/{serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleStatus.js → dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationSortField.js} +2 -2
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/types/{ChargeCaptureBundleStatus.d.ts → ChargeCaptureClaimCreationStatus.d.ts} +2 -2
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationStatus.js +41 -0
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationSummary.d.ts +16 -0
- package/{serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleSummary.js → dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationSummary.js} +5 -5
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/types/index.d.ts +5 -5
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/types/index.js +5 -5
- package/dist/serialization/resources/commons/types/{ChargeCaptureBundleId.d.ts → ChargeCaptureClaimCreationId.d.ts} +2 -2
- package/{serialization/resources/commons/types/ChargeCaptureBundleId.js → dist/serialization/resources/commons/types/ChargeCaptureClaimCreationId.js} +3 -3
- package/dist/serialization/resources/commons/types/index.d.ts +1 -2
- package/dist/serialization/resources/commons/types/index.js +1 -2
- package/dist/serialization/resources/encounterAttachments/index.d.ts +1 -0
- package/dist/serialization/resources/encounterAttachments/index.js +17 -0
- package/dist/serialization/resources/encounterAttachments/resources/index.d.ts +1 -0
- package/dist/serialization/resources/encounterAttachments/resources/index.js +37 -0
- package/dist/serialization/resources/encounterAttachments/resources/v1/client/get.d.ts +11 -0
- package/dist/serialization/resources/{chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleStatus.js → encounterAttachments/resources/v1/client/get.js} +3 -2
- package/dist/serialization/resources/encounterAttachments/resources/v1/client/index.d.ts +2 -0
- package/dist/serialization/resources/encounterAttachments/resources/v1/client/index.js +41 -0
- package/dist/serialization/resources/encounterAttachments/resources/v1/client/requests/DeleteAttachmentRequest.d.ts +13 -0
- package/dist/serialization/resources/{commons/types/NotImplementedErrorMessage.js → encounterAttachments/resources/v1/client/requests/DeleteAttachmentRequest.js} +5 -4
- package/dist/serialization/resources/encounterAttachments/resources/v1/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/encounterAttachments/resources/v1/client/requests/index.js +5 -0
- package/dist/serialization/resources/encounterAttachments/resources/v1/index.d.ts +2 -0
- package/dist/serialization/resources/encounterAttachments/resources/v1/index.js +18 -0
- package/dist/serialization/resources/encounterAttachments/resources/v1/types/AttachmentId.d.ts +10 -0
- package/dist/serialization/resources/encounterAttachments/resources/v1/types/AttachmentId.js +45 -0
- package/dist/serialization/resources/encounterAttachments/resources/v1/types/BaseAttachment.d.ts +18 -0
- package/dist/serialization/resources/encounterAttachments/resources/v1/types/BaseAttachment.js +49 -0
- package/dist/serialization/resources/encounterAttachments/resources/v1/types/EncounterAttachment.d.ts +16 -0
- package/dist/serialization/resources/encounterAttachments/resources/v1/types/EncounterAttachment.js +49 -0
- package/dist/serialization/resources/encounterAttachments/resources/v1/types/EncounterAttachmentType.d.ts +10 -0
- package/dist/serialization/resources/{chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleSortField.js → encounterAttachments/resources/v1/types/EncounterAttachmentType.js} +2 -2
- package/dist/serialization/resources/encounterAttachments/resources/v1/types/index.d.ts +4 -0
- package/dist/serialization/resources/encounterAttachments/resources/v1/types/index.js +20 -0
- package/dist/serialization/resources/index.d.ts +1 -0
- package/dist/serialization/resources/index.js +3 -2
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +3 -2
- package/reference.md +558 -246
- package/serialization/resources/chargeCapture/resources/v1/types/ChargeCapture.d.ts +2 -2
- package/serialization/resources/chargeCapture/resources/v1/types/ChargeCapture.js +2 -2
- package/serialization/resources/chargeCapture/resources/v1/types/ChargeCaptureError.d.ts +2 -2
- package/serialization/resources/chargeCapture/resources/v1/types/ChargeCaptureError.js +2 -2
- package/serialization/resources/chargeCaptureBundles/resources/v1/index.d.ts +0 -1
- package/serialization/resources/chargeCaptureBundles/resources/v1/index.js +0 -1
- package/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreation.d.ts +20 -0
- package/{dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundle.js → serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreation.js} +6 -8
- package/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationPage.d.ts +14 -0
- package/{dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundlePage.js → serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationPage.js} +4 -4
- package/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationSortField.d.ts +10 -0
- package/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationSortField.js +41 -0
- package/serialization/resources/chargeCaptureBundles/resources/v1/types/{ChargeCaptureBundleStatus.d.ts → ChargeCaptureClaimCreationStatus.d.ts} +2 -2
- package/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationStatus.js +41 -0
- package/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationSummary.d.ts +16 -0
- package/{dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleSummary.js → serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreationSummary.js} +5 -5
- package/serialization/resources/chargeCaptureBundles/resources/v1/types/index.d.ts +5 -5
- package/serialization/resources/chargeCaptureBundles/resources/v1/types/index.js +5 -5
- package/serialization/resources/commons/types/{ChargeCaptureBundleId.d.ts → ChargeCaptureClaimCreationId.d.ts} +2 -2
- package/{dist/serialization/resources/commons/types/ChargeCaptureBundleId.js → serialization/resources/commons/types/ChargeCaptureClaimCreationId.js} +3 -3
- package/serialization/resources/commons/types/index.d.ts +1 -2
- package/serialization/resources/commons/types/index.js +1 -2
- package/serialization/resources/encounterAttachments/index.d.ts +1 -0
- package/serialization/resources/encounterAttachments/index.js +17 -0
- package/serialization/resources/encounterAttachments/resources/index.d.ts +1 -0
- package/serialization/resources/encounterAttachments/resources/index.js +37 -0
- package/serialization/resources/encounterAttachments/resources/v1/client/get.d.ts +11 -0
- package/serialization/resources/encounterAttachments/resources/v1/client/get.js +42 -0
- package/serialization/resources/encounterAttachments/resources/v1/client/index.d.ts +2 -0
- package/serialization/resources/encounterAttachments/resources/v1/client/index.js +41 -0
- package/serialization/resources/encounterAttachments/resources/v1/client/requests/DeleteAttachmentRequest.d.ts +13 -0
- package/serialization/resources/{commons/types/NotImplementedErrorMessage.js → encounterAttachments/resources/v1/client/requests/DeleteAttachmentRequest.js} +5 -4
- package/serialization/resources/encounterAttachments/resources/v1/client/requests/index.d.ts +1 -0
- package/serialization/resources/encounterAttachments/resources/v1/client/requests/index.js +5 -0
- package/serialization/resources/encounterAttachments/resources/v1/index.d.ts +2 -0
- package/serialization/resources/encounterAttachments/resources/v1/index.js +18 -0
- package/serialization/resources/encounterAttachments/resources/v1/types/AttachmentId.d.ts +10 -0
- package/serialization/resources/encounterAttachments/resources/v1/types/AttachmentId.js +45 -0
- package/serialization/resources/encounterAttachments/resources/v1/types/BaseAttachment.d.ts +18 -0
- package/serialization/resources/encounterAttachments/resources/v1/types/BaseAttachment.js +49 -0
- package/serialization/resources/encounterAttachments/resources/v1/types/EncounterAttachment.d.ts +16 -0
- package/serialization/resources/encounterAttachments/resources/v1/types/EncounterAttachment.js +49 -0
- package/serialization/resources/encounterAttachments/resources/v1/types/EncounterAttachmentType.d.ts +10 -0
- package/serialization/resources/{chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleSortField.js → encounterAttachments/resources/v1/types/EncounterAttachmentType.js} +2 -2
- package/serialization/resources/encounterAttachments/resources/v1/types/index.d.ts +4 -0
- package/serialization/resources/encounterAttachments/resources/v1/types/index.js +20 -0
- package/serialization/resources/index.d.ts +1 -0
- package/serialization/resources/index.js +3 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/api/resources/chargeCaptureBundles/resources/v1/client/resubmit.d.ts +0 -28
- package/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundle.d.ts +0 -22
- package/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundlePage.d.ts +0 -7
- package/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleSortField.d.ts +0 -7
- package/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleStatus.d.ts +0 -15
- package/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleSummary.d.ts +0 -15
- package/api/resources/commons/types/ChargeCaptureBundleId.d.ts +0 -8
- package/api/resources/commons/types/NotImplementedErrorMessage.d.ts +0 -6
- package/dist/api/resources/chargeCaptureBundles/resources/v1/client/resubmit.d.ts +0 -28
- package/dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundle.d.ts +0 -22
- package/dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundlePage.d.ts +0 -7
- package/dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleSortField.d.ts +0 -7
- package/dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleStatus.d.ts +0 -15
- package/dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleSummary.d.ts +0 -15
- package/dist/api/resources/commons/types/ChargeCaptureBundleId.d.ts +0 -8
- package/dist/api/resources/commons/types/NotImplementedErrorMessage.d.ts +0 -6
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/client/index.d.ts +0 -1
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/client/resubmit.d.ts +0 -15
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/client/resubmit.js +0 -71
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundle.d.ts +0 -22
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundlePage.d.ts +0 -14
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleSortField.d.ts +0 -10
- package/dist/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleSummary.d.ts +0 -16
- package/dist/serialization/resources/commons/types/NotImplementedErrorMessage.d.ts +0 -12
- package/serialization/resources/chargeCaptureBundles/resources/v1/client/index.d.ts +0 -1
- package/serialization/resources/chargeCaptureBundles/resources/v1/client/resubmit.d.ts +0 -15
- package/serialization/resources/chargeCaptureBundles/resources/v1/client/resubmit.js +0 -71
- package/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundle.d.ts +0 -22
- package/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundlePage.d.ts +0 -14
- package/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleSortField.d.ts +0 -10
- package/serialization/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundleSummary.d.ts +0 -16
- package/serialization/resources/commons/types/NotImplementedErrorMessage.d.ts +0 -12
- /package/api/resources/chargeCaptureBundles/resources/v1/client/requests/{GetAllChargeCaptureBundlesRequest.js → GetAllChargeCaptureClaimCreationsRequest.js} +0 -0
- /package/api/resources/chargeCaptureBundles/resources/v1/types/{ChargeCaptureBundle.js → ChargeCaptureClaimCreation.js} +0 -0
- /package/api/resources/chargeCaptureBundles/resources/v1/types/{ChargeCaptureBundlePage.js → ChargeCaptureClaimCreationPage.js} +0 -0
- /package/api/resources/chargeCaptureBundles/resources/v1/types/{ChargeCaptureBundleSummary.js → ChargeCaptureClaimCreationSummary.js} +0 -0
- /package/api/resources/{commons/types/NotImplementedErrorMessage.js → encounterAttachments/resources/v1/client/requests/CreateAttachmentRequest.js} +0 -0
- /package/{dist/api/resources/chargeCaptureBundles/resources/v1/client/requests/GetAllChargeCaptureBundlesRequest.js → api/resources/encounterAttachments/resources/v1/client/requests/DeleteAttachmentRequest.js} +0 -0
- /package/{dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundle.js → api/resources/encounterAttachments/resources/v1/types/BaseAttachment.js} +0 -0
- /package/{dist/api/resources/chargeCaptureBundles/resources/v1/types/ChargeCaptureBundlePage.js → api/resources/encounterAttachments/resources/v1/types/EncounterAttachment.js} +0 -0
- /package/dist/api/resources/chargeCaptureBundles/resources/v1/{types/ChargeCaptureBundleSummary.js → client/requests/GetAllChargeCaptureClaimCreationsRequest.js} +0 -0
- /package/dist/api/resources/{commons/types/NotImplementedErrorMessage.js → chargeCaptureBundles/resources/v1/types/ChargeCaptureClaimCreation.js} +0 -0
package/reference.md
CHANGED
|
@@ -244,7 +244,7 @@ await client.billingNotes.v2.update(CandidApi.BillingNoteId("d5e9c84f-c2b2-4bf4-
|
|
|
244
244
|
|
|
245
245
|
## ChargeCaptureBundles V1
|
|
246
246
|
|
|
247
|
-
<details><summary><code>client.chargeCaptureBundles.v1.<a href="/src/api/resources/chargeCaptureBundles/resources/v1/client/Client.ts">get</a>(
|
|
247
|
+
<details><summary><code>client.chargeCaptureBundles.v1.<a href="/src/api/resources/chargeCaptureBundles/resources/v1/client/Client.ts">get</a>(chargeCaptureClaimCreationId) -> core.APIResponse<CandidApi.ChargeCaptureClaimCreation, CandidApi.chargeCaptureBundles.v1.get.Error></code></summary>
|
|
248
248
|
<dl>
|
|
249
249
|
<dd>
|
|
250
250
|
|
|
@@ -257,7 +257,9 @@ await client.billingNotes.v2.update(CandidApi.BillingNoteId("d5e9c84f-c2b2-4bf4-
|
|
|
257
257
|
<dd>
|
|
258
258
|
|
|
259
259
|
```typescript
|
|
260
|
-
await client.chargeCaptureBundles.v1.get(
|
|
260
|
+
await client.chargeCaptureBundles.v1.get(
|
|
261
|
+
CandidApi.ChargeCaptureClaimCreationId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
262
|
+
);
|
|
261
263
|
```
|
|
262
264
|
|
|
263
265
|
</dd>
|
|
@@ -273,7 +275,7 @@ await client.chargeCaptureBundles.v1.get(CandidApi.ChargeCaptureBundleId("d5e9c8
|
|
|
273
275
|
<dl>
|
|
274
276
|
<dd>
|
|
275
277
|
|
|
276
|
-
**
|
|
278
|
+
**chargeCaptureClaimCreationId:** `CandidApi.ChargeCaptureClaimCreationId`
|
|
277
279
|
|
|
278
280
|
</dd>
|
|
279
281
|
</dl>
|
|
@@ -292,7 +294,7 @@ await client.chargeCaptureBundles.v1.get(CandidApi.ChargeCaptureBundleId("d5e9c8
|
|
|
292
294
|
</dl>
|
|
293
295
|
</details>
|
|
294
296
|
|
|
295
|
-
<details><summary><code>client.chargeCaptureBundles.v1.<a href="/src/api/resources/chargeCaptureBundles/resources/v1/client/Client.ts">getSummary</a>() -> core.APIResponse<CandidApi.
|
|
297
|
+
<details><summary><code>client.chargeCaptureBundles.v1.<a href="/src/api/resources/chargeCaptureBundles/resources/v1/client/Client.ts">getSummary</a>() -> core.APIResponse<CandidApi.ChargeCaptureClaimCreationSummary, CandidApi.chargeCaptureBundles.v1.getSummary.Error></code></summary>
|
|
296
298
|
<dl>
|
|
297
299
|
<dd>
|
|
298
300
|
|
|
@@ -332,55 +334,7 @@ await client.chargeCaptureBundles.v1.getSummary();
|
|
|
332
334
|
</dl>
|
|
333
335
|
</details>
|
|
334
336
|
|
|
335
|
-
<details><summary><code>client.chargeCaptureBundles.v1.<a href="/src/api/resources/chargeCaptureBundles/resources/v1/client/Client.ts">
|
|
336
|
-
<dl>
|
|
337
|
-
<dd>
|
|
338
|
-
|
|
339
|
-
#### 🔌 Usage
|
|
340
|
-
|
|
341
|
-
<dl>
|
|
342
|
-
<dd>
|
|
343
|
-
|
|
344
|
-
<dl>
|
|
345
|
-
<dd>
|
|
346
|
-
|
|
347
|
-
```typescript
|
|
348
|
-
await client.chargeCaptureBundles.v1.resubmit(CandidApi.ChargeCaptureBundleId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"));
|
|
349
|
-
```
|
|
350
|
-
|
|
351
|
-
</dd>
|
|
352
|
-
</dl>
|
|
353
|
-
</dd>
|
|
354
|
-
</dl>
|
|
355
|
-
|
|
356
|
-
#### ⚙️ Parameters
|
|
357
|
-
|
|
358
|
-
<dl>
|
|
359
|
-
<dd>
|
|
360
|
-
|
|
361
|
-
<dl>
|
|
362
|
-
<dd>
|
|
363
|
-
|
|
364
|
-
**chargeCaptureBundleId:** `CandidApi.ChargeCaptureBundleId`
|
|
365
|
-
|
|
366
|
-
</dd>
|
|
367
|
-
</dl>
|
|
368
|
-
|
|
369
|
-
<dl>
|
|
370
|
-
<dd>
|
|
371
|
-
|
|
372
|
-
**requestOptions:** `V1.RequestOptions`
|
|
373
|
-
|
|
374
|
-
</dd>
|
|
375
|
-
</dl>
|
|
376
|
-
</dd>
|
|
377
|
-
</dl>
|
|
378
|
-
|
|
379
|
-
</dd>
|
|
380
|
-
</dl>
|
|
381
|
-
</details>
|
|
382
|
-
|
|
383
|
-
<details><summary><code>client.chargeCaptureBundles.v1.<a href="/src/api/resources/chargeCaptureBundles/resources/v1/client/Client.ts">getAll</a>({ ...params }) -> core.APIResponse<CandidApi.ChargeCaptureBundlePage, CandidApi.chargeCaptureBundles.v1.getAll.Error></code></summary>
|
|
337
|
+
<details><summary><code>client.chargeCaptureBundles.v1.<a href="/src/api/resources/chargeCaptureBundles/resources/v1/client/Client.ts">getAll</a>({ ...params }) -> core.APIResponse<CandidApi.ChargeCaptureClaimCreationPage, CandidApi.chargeCaptureBundles.v1.getAll.Error></code></summary>
|
|
384
338
|
<dl>
|
|
385
339
|
<dd>
|
|
386
340
|
|
|
@@ -399,13 +353,13 @@ await client.chargeCaptureBundles.v1.getAll({
|
|
|
399
353
|
sortDirection: "asc",
|
|
400
354
|
pageToken: CandidApi.PageToken("eyJ0b2tlbiI6IjEiLCJwYWdlX3Rva2VuIjoiMiJ9"),
|
|
401
355
|
patientExternalId: "string",
|
|
402
|
-
|
|
356
|
+
claimCreationStatus: "not-started",
|
|
403
357
|
chargeStatus: "planned",
|
|
404
358
|
chargeExternalId: "string",
|
|
405
359
|
dateOfServiceMin: "2023-01-15",
|
|
406
360
|
dateOfServiceMax: "2023-01-15",
|
|
407
361
|
claimIds: CandidApi.EncounterId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
408
|
-
|
|
362
|
+
claimCreationIds: CandidApi.ChargeCaptureClaimCreationId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
409
363
|
billingProviderNpis: "string",
|
|
410
364
|
serviceFacilityName: "string",
|
|
411
365
|
primaryPayerIds: "string",
|
|
@@ -430,7 +384,7 @@ await client.chargeCaptureBundles.v1.getAll({
|
|
|
430
384
|
<dl>
|
|
431
385
|
<dd>
|
|
432
386
|
|
|
433
|
-
**request:** `CandidApi.chargeCaptureBundles.v1.
|
|
387
|
+
**request:** `CandidApi.chargeCaptureBundles.v1.GetAllChargeCaptureClaimCreationsRequest`
|
|
434
388
|
|
|
435
389
|
</dd>
|
|
436
390
|
</dl>
|
|
@@ -465,7 +419,127 @@ await client.chargeCaptureBundles.v1.getAll({
|
|
|
465
419
|
|
|
466
420
|
```typescript
|
|
467
421
|
await client.chargeCapture.v1.create({
|
|
468
|
-
data: {
|
|
422
|
+
data: {
|
|
423
|
+
diagnoses: [],
|
|
424
|
+
interventions: [],
|
|
425
|
+
externalClaimSubmission: {
|
|
426
|
+
claimCreatedAt: "2023-01-01T12:00:00.000000Z",
|
|
427
|
+
patientControlNumber: "PATIENT_CONTROL_NUMBER",
|
|
428
|
+
submissionRecords: [
|
|
429
|
+
{
|
|
430
|
+
submittedAt: "2023-01-01T13:00:00.000000Z",
|
|
431
|
+
claimFrequencyCode: "1",
|
|
432
|
+
payerResponsibility: "primary",
|
|
433
|
+
intendedSubmissionMedium: "electronic",
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
submittedAt: "2023-01-04T12:00:00.000000Z",
|
|
437
|
+
claimFrequencyCode: "7",
|
|
438
|
+
payerResponsibility: "primary",
|
|
439
|
+
intendedSubmissionMedium: "paper",
|
|
440
|
+
},
|
|
441
|
+
],
|
|
442
|
+
},
|
|
443
|
+
serviceLines: [],
|
|
444
|
+
patientHistories: [],
|
|
445
|
+
billingNotes: [],
|
|
446
|
+
benefitsAssignedToProvider: true,
|
|
447
|
+
priorAuthorizationNumber: CandidApi.PriorAuthorizationNumber("string"),
|
|
448
|
+
externalId: CandidApi.EncounterExternalId("string"),
|
|
449
|
+
dateOfService: "2023-01-15",
|
|
450
|
+
tagIds: [],
|
|
451
|
+
clinicalNotes: [],
|
|
452
|
+
payToAddress: {
|
|
453
|
+
address1: "123 Main St",
|
|
454
|
+
address2: "Apt 1",
|
|
455
|
+
city: "New York",
|
|
456
|
+
state: "NY",
|
|
457
|
+
zipCode: "10001",
|
|
458
|
+
zipPlusFourCode: "1234",
|
|
459
|
+
},
|
|
460
|
+
billableStatus: "BILLABLE",
|
|
461
|
+
responsibleParty: "INSURANCE_PAY",
|
|
462
|
+
providerAcceptsAssignment: true,
|
|
463
|
+
synchronicity: "Synchronous",
|
|
464
|
+
placeOfServiceCode: "01",
|
|
465
|
+
appointmentType: "string",
|
|
466
|
+
endDateOfService: "2023-01-15",
|
|
467
|
+
subscriberPrimary: {
|
|
468
|
+
insuranceCard: {
|
|
469
|
+
memberId: "string",
|
|
470
|
+
payerName: "string",
|
|
471
|
+
payerId: "string",
|
|
472
|
+
},
|
|
473
|
+
patientRelationshipToSubscriberCode: "01",
|
|
474
|
+
firstName: "string",
|
|
475
|
+
lastName: "string",
|
|
476
|
+
gender: "male",
|
|
477
|
+
},
|
|
478
|
+
subscriberSecondary: {
|
|
479
|
+
insuranceCard: {
|
|
480
|
+
memberId: "string",
|
|
481
|
+
payerName: "string",
|
|
482
|
+
payerId: "string",
|
|
483
|
+
},
|
|
484
|
+
patientRelationshipToSubscriberCode: "01",
|
|
485
|
+
firstName: "string",
|
|
486
|
+
lastName: "string",
|
|
487
|
+
gender: "male",
|
|
488
|
+
},
|
|
489
|
+
subscriberTertiary: {
|
|
490
|
+
insuranceCard: {
|
|
491
|
+
memberId: "string",
|
|
492
|
+
payerName: "string",
|
|
493
|
+
payerId: "string",
|
|
494
|
+
},
|
|
495
|
+
patientRelationshipToSubscriberCode: "01",
|
|
496
|
+
firstName: "string",
|
|
497
|
+
lastName: "string",
|
|
498
|
+
gender: "male",
|
|
499
|
+
},
|
|
500
|
+
additionalInformation: "string",
|
|
501
|
+
serviceAuthorizationExceptionCode: "1",
|
|
502
|
+
admissionDate: "2023-01-15",
|
|
503
|
+
dischargeDate: "2023-01-15",
|
|
504
|
+
onsetOfCurrentIllnessOrSymptomDate: "2023-01-15",
|
|
505
|
+
lastMenstrualPeriodDate: "2023-01-15",
|
|
506
|
+
delayReasonCode: "1",
|
|
507
|
+
patient: {},
|
|
508
|
+
patientAuthorizedRelease: true,
|
|
509
|
+
schemaInstances: [],
|
|
510
|
+
vitals: {
|
|
511
|
+
heightIn: 70,
|
|
512
|
+
weightLbs: 165,
|
|
513
|
+
bloodPressureSystolicMmhg: 115,
|
|
514
|
+
bloodPressureDiastolicMmhg: 85,
|
|
515
|
+
bodyTemperatureF: 98,
|
|
516
|
+
hemoglobinGdl: 15.1,
|
|
517
|
+
hematocritPct: 51.2,
|
|
518
|
+
},
|
|
519
|
+
existingMedications: [],
|
|
520
|
+
renderingProvider: {},
|
|
521
|
+
serviceFacility: {
|
|
522
|
+
organizationName: "Test Organization",
|
|
523
|
+
address: {
|
|
524
|
+
address1: "123 Main St",
|
|
525
|
+
address2: "Apt 1",
|
|
526
|
+
city: "New York",
|
|
527
|
+
state: "NY",
|
|
528
|
+
zipCode: "10001",
|
|
529
|
+
zipPlusFourCode: "1234",
|
|
530
|
+
},
|
|
531
|
+
},
|
|
532
|
+
guarantor: {},
|
|
533
|
+
billingProvider: {},
|
|
534
|
+
supervisingProvider: {},
|
|
535
|
+
referringProvider: {},
|
|
536
|
+
initialReferringProvider: {},
|
|
537
|
+
referralNumber: "string",
|
|
538
|
+
epsdtReferral: {
|
|
539
|
+
conditionIndicator1: "AV",
|
|
540
|
+
},
|
|
541
|
+
claimSupplementalInformation: [],
|
|
542
|
+
},
|
|
469
543
|
chargeExternalId: "string",
|
|
470
544
|
ehrSourceUrl: "string",
|
|
471
545
|
patientExternalId: "string",
|
|
@@ -567,7 +641,127 @@ await client.chargeCapture.v1.delete(CandidApi.ChargeCaptureId("d5e9c84f-c2b2-4b
|
|
|
567
641
|
|
|
568
642
|
```typescript
|
|
569
643
|
await client.chargeCapture.v1.update(CandidApi.ChargeCaptureId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"), {
|
|
570
|
-
data: {
|
|
644
|
+
data: {
|
|
645
|
+
diagnoses: [],
|
|
646
|
+
interventions: [],
|
|
647
|
+
externalClaimSubmission: {
|
|
648
|
+
claimCreatedAt: "2023-01-01T12:00:00.000000Z",
|
|
649
|
+
patientControlNumber: "PATIENT_CONTROL_NUMBER",
|
|
650
|
+
submissionRecords: [
|
|
651
|
+
{
|
|
652
|
+
submittedAt: "2023-01-01T13:00:00.000000Z",
|
|
653
|
+
claimFrequencyCode: "1",
|
|
654
|
+
payerResponsibility: "primary",
|
|
655
|
+
intendedSubmissionMedium: "electronic",
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
submittedAt: "2023-01-04T12:00:00.000000Z",
|
|
659
|
+
claimFrequencyCode: "7",
|
|
660
|
+
payerResponsibility: "primary",
|
|
661
|
+
intendedSubmissionMedium: "paper",
|
|
662
|
+
},
|
|
663
|
+
],
|
|
664
|
+
},
|
|
665
|
+
serviceLines: [],
|
|
666
|
+
patientHistories: [],
|
|
667
|
+
billingNotes: [],
|
|
668
|
+
benefitsAssignedToProvider: true,
|
|
669
|
+
priorAuthorizationNumber: CandidApi.PriorAuthorizationNumber("string"),
|
|
670
|
+
externalId: CandidApi.EncounterExternalId("string"),
|
|
671
|
+
dateOfService: "2023-01-15",
|
|
672
|
+
tagIds: [],
|
|
673
|
+
clinicalNotes: [],
|
|
674
|
+
payToAddress: {
|
|
675
|
+
address1: "123 Main St",
|
|
676
|
+
address2: "Apt 1",
|
|
677
|
+
city: "New York",
|
|
678
|
+
state: "NY",
|
|
679
|
+
zipCode: "10001",
|
|
680
|
+
zipPlusFourCode: "1234",
|
|
681
|
+
},
|
|
682
|
+
billableStatus: "BILLABLE",
|
|
683
|
+
responsibleParty: "INSURANCE_PAY",
|
|
684
|
+
providerAcceptsAssignment: true,
|
|
685
|
+
synchronicity: "Synchronous",
|
|
686
|
+
placeOfServiceCode: "01",
|
|
687
|
+
appointmentType: "string",
|
|
688
|
+
endDateOfService: "2023-01-15",
|
|
689
|
+
subscriberPrimary: {
|
|
690
|
+
insuranceCard: {
|
|
691
|
+
memberId: "string",
|
|
692
|
+
payerName: "string",
|
|
693
|
+
payerId: "string",
|
|
694
|
+
},
|
|
695
|
+
patientRelationshipToSubscriberCode: "01",
|
|
696
|
+
firstName: "string",
|
|
697
|
+
lastName: "string",
|
|
698
|
+
gender: "male",
|
|
699
|
+
},
|
|
700
|
+
subscriberSecondary: {
|
|
701
|
+
insuranceCard: {
|
|
702
|
+
memberId: "string",
|
|
703
|
+
payerName: "string",
|
|
704
|
+
payerId: "string",
|
|
705
|
+
},
|
|
706
|
+
patientRelationshipToSubscriberCode: "01",
|
|
707
|
+
firstName: "string",
|
|
708
|
+
lastName: "string",
|
|
709
|
+
gender: "male",
|
|
710
|
+
},
|
|
711
|
+
subscriberTertiary: {
|
|
712
|
+
insuranceCard: {
|
|
713
|
+
memberId: "string",
|
|
714
|
+
payerName: "string",
|
|
715
|
+
payerId: "string",
|
|
716
|
+
},
|
|
717
|
+
patientRelationshipToSubscriberCode: "01",
|
|
718
|
+
firstName: "string",
|
|
719
|
+
lastName: "string",
|
|
720
|
+
gender: "male",
|
|
721
|
+
},
|
|
722
|
+
additionalInformation: "string",
|
|
723
|
+
serviceAuthorizationExceptionCode: "1",
|
|
724
|
+
admissionDate: "2023-01-15",
|
|
725
|
+
dischargeDate: "2023-01-15",
|
|
726
|
+
onsetOfCurrentIllnessOrSymptomDate: "2023-01-15",
|
|
727
|
+
lastMenstrualPeriodDate: "2023-01-15",
|
|
728
|
+
delayReasonCode: "1",
|
|
729
|
+
patient: {},
|
|
730
|
+
patientAuthorizedRelease: true,
|
|
731
|
+
schemaInstances: [],
|
|
732
|
+
vitals: {
|
|
733
|
+
heightIn: 70,
|
|
734
|
+
weightLbs: 165,
|
|
735
|
+
bloodPressureSystolicMmhg: 115,
|
|
736
|
+
bloodPressureDiastolicMmhg: 85,
|
|
737
|
+
bodyTemperatureF: 98,
|
|
738
|
+
hemoglobinGdl: 15.1,
|
|
739
|
+
hematocritPct: 51.2,
|
|
740
|
+
},
|
|
741
|
+
existingMedications: [],
|
|
742
|
+
renderingProvider: {},
|
|
743
|
+
serviceFacility: {
|
|
744
|
+
organizationName: "Test Organization",
|
|
745
|
+
address: {
|
|
746
|
+
address1: "123 Main St",
|
|
747
|
+
address2: "Apt 1",
|
|
748
|
+
city: "New York",
|
|
749
|
+
state: "NY",
|
|
750
|
+
zipCode: "10001",
|
|
751
|
+
zipPlusFourCode: "1234",
|
|
752
|
+
},
|
|
753
|
+
},
|
|
754
|
+
guarantor: {},
|
|
755
|
+
billingProvider: {},
|
|
756
|
+
supervisingProvider: {},
|
|
757
|
+
referringProvider: {},
|
|
758
|
+
initialReferringProvider: {},
|
|
759
|
+
referralNumber: "string",
|
|
760
|
+
epsdtReferral: {
|
|
761
|
+
conditionIndicator1: "AV",
|
|
762
|
+
},
|
|
763
|
+
claimSupplementalInformation: [],
|
|
764
|
+
},
|
|
571
765
|
chargeExternalId: "string",
|
|
572
766
|
ehrSourceUrl: "string",
|
|
573
767
|
patientExternalId: "string",
|
|
@@ -687,8 +881,7 @@ await client.chargeCapture.v1.getAll({
|
|
|
687
881
|
dateOfServiceMin: "2023-01-15",
|
|
688
882
|
dateOfServiceMax: "2023-01-15",
|
|
689
883
|
claimIds: CandidApi.EncounterId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
690
|
-
|
|
691
|
-
bundleIds: CandidApi.ChargeCaptureBundleId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
884
|
+
claimCreationIds: CandidApi.ChargeCaptureClaimCreationId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
692
885
|
billingProviderNpis: "string",
|
|
693
886
|
serviceFacilityName: "string",
|
|
694
887
|
primaryPayerIds: "string",
|
|
@@ -703,7 +896,7 @@ await client.chargeCapture.v1.getAll({
|
|
|
703
896
|
dateOfServiceMinRankedSort: "2023-01-15",
|
|
704
897
|
dateOfServiceMaxRankedSort: "2023-01-15",
|
|
705
898
|
claimIdsRankedSort: CandidApi.EncounterId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
706
|
-
|
|
899
|
+
claimCreationIdsRankedSort: CandidApi.ChargeCaptureClaimCreationId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
707
900
|
billingProviderNpisRankedSort: "string",
|
|
708
901
|
serviceFacilityNameRankedSort: "string",
|
|
709
902
|
primaryPayerIdsRankedSort: "string",
|
|
@@ -1899,17 +2092,201 @@ This API is a wrapper around Availity's coverages API. Below are some helpful do
|
|
|
1899
2092
|
- [Availity - Coverages 1.0.0 API](https://developer.availity.com/partner/documentation#c_coverages_references)
|
|
1900
2093
|
- [Candid Availity Eligibility Integration Guide](https://support.joincandidhealth.com/hc/en-us/articles/24218441631892--Availity-Eligibility-Integration-Guide)
|
|
1901
2094
|
|
|
1902
|
-
A schema of the response object can be found here: [Availity Docs](https://developer.availity.com/partner/product/191210/api/190898#/Coverages_100/operation/%2Fcoverages%2F{id}/get)
|
|
2095
|
+
A schema of the response object can be found here: [Availity Docs](https://developer.availity.com/partner/product/191210/api/190898#/Coverages_100/operation/%2Fcoverages%2F{id}/get)
|
|
2096
|
+
|
|
2097
|
+
- Note Availity requires a free developer account to access this documentation.
|
|
2098
|
+
|
|
2099
|
+
Check connection status of Availity API and partners here:
|
|
2100
|
+
|
|
2101
|
+
- [Availity Trading Partner Connection Status](https://www.availity.com/status/)
|
|
2102
|
+
</dd>
|
|
2103
|
+
</dl>
|
|
2104
|
+
</dd>
|
|
2105
|
+
</dl>
|
|
2106
|
+
|
|
2107
|
+
#### 🔌 Usage
|
|
2108
|
+
|
|
2109
|
+
<dl>
|
|
2110
|
+
<dd>
|
|
2111
|
+
|
|
2112
|
+
<dl>
|
|
2113
|
+
<dd>
|
|
2114
|
+
|
|
2115
|
+
```typescript
|
|
2116
|
+
await client.eligibility.v2.submitEligibilityCheckAvailityPost({
|
|
2117
|
+
key: "value",
|
|
2118
|
+
});
|
|
2119
|
+
```
|
|
2120
|
+
|
|
2121
|
+
</dd>
|
|
2122
|
+
</dl>
|
|
2123
|
+
</dd>
|
|
2124
|
+
</dl>
|
|
2125
|
+
|
|
2126
|
+
#### ⚙️ Parameters
|
|
2127
|
+
|
|
2128
|
+
<dl>
|
|
2129
|
+
<dd>
|
|
2130
|
+
|
|
2131
|
+
<dl>
|
|
2132
|
+
<dd>
|
|
2133
|
+
|
|
2134
|
+
**request:** `unknown`
|
|
2135
|
+
|
|
2136
|
+
</dd>
|
|
2137
|
+
</dl>
|
|
2138
|
+
|
|
2139
|
+
<dl>
|
|
2140
|
+
<dd>
|
|
2141
|
+
|
|
2142
|
+
**requestOptions:** `V2.RequestOptions`
|
|
2143
|
+
|
|
2144
|
+
</dd>
|
|
2145
|
+
</dl>
|
|
2146
|
+
</dd>
|
|
2147
|
+
</dl>
|
|
2148
|
+
|
|
2149
|
+
</dd>
|
|
2150
|
+
</dl>
|
|
2151
|
+
</details>
|
|
2152
|
+
|
|
2153
|
+
## EncounterAttachments V1
|
|
2154
|
+
|
|
2155
|
+
<details><summary><code>client.encounterAttachments.v1.<a href="/src/api/resources/encounterAttachments/resources/v1/client/Client.ts">get</a>(encounterId) -> core.APIResponse<CandidApi.EncounterAttachment[], CandidApi.encounterAttachments.v1.get.Error></code></summary>
|
|
2156
|
+
<dl>
|
|
2157
|
+
<dd>
|
|
2158
|
+
|
|
2159
|
+
#### 🔌 Usage
|
|
2160
|
+
|
|
2161
|
+
<dl>
|
|
2162
|
+
<dd>
|
|
2163
|
+
|
|
2164
|
+
<dl>
|
|
2165
|
+
<dd>
|
|
2166
|
+
|
|
2167
|
+
```typescript
|
|
2168
|
+
await client.encounterAttachments.v1.get(CandidApi.EncounterId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"));
|
|
2169
|
+
```
|
|
2170
|
+
|
|
2171
|
+
</dd>
|
|
2172
|
+
</dl>
|
|
2173
|
+
</dd>
|
|
2174
|
+
</dl>
|
|
2175
|
+
|
|
2176
|
+
#### ⚙️ Parameters
|
|
2177
|
+
|
|
2178
|
+
<dl>
|
|
2179
|
+
<dd>
|
|
2180
|
+
|
|
2181
|
+
<dl>
|
|
2182
|
+
<dd>
|
|
2183
|
+
|
|
2184
|
+
**encounterId:** `CandidApi.EncounterId`
|
|
2185
|
+
|
|
2186
|
+
</dd>
|
|
2187
|
+
</dl>
|
|
2188
|
+
|
|
2189
|
+
<dl>
|
|
2190
|
+
<dd>
|
|
2191
|
+
|
|
2192
|
+
**requestOptions:** `V1.RequestOptions`
|
|
2193
|
+
|
|
2194
|
+
</dd>
|
|
2195
|
+
</dl>
|
|
2196
|
+
</dd>
|
|
2197
|
+
</dl>
|
|
2198
|
+
|
|
2199
|
+
</dd>
|
|
2200
|
+
</dl>
|
|
2201
|
+
</details>
|
|
2202
|
+
|
|
2203
|
+
<details><summary><code>client.encounterAttachments.v1.<a href="/src/api/resources/encounterAttachments/resources/v1/client/Client.ts">create</a>(attachmentFile, encounterId, { ...params }) -> core.APIResponse<CandidApi.AttachmentId, CandidApi.encounterAttachments.v1.create.Error></code></summary>
|
|
2204
|
+
<dl>
|
|
2205
|
+
<dd>
|
|
2206
|
+
|
|
2207
|
+
#### 📝 Description
|
|
2208
|
+
|
|
2209
|
+
<dl>
|
|
2210
|
+
<dd>
|
|
2211
|
+
|
|
2212
|
+
<dl>
|
|
2213
|
+
<dd>
|
|
2214
|
+
|
|
2215
|
+
Uploads a file to the encounter. The file will be stored in the
|
|
2216
|
+
encounter's attachments. The maximum file size is 25MB.
|
|
2217
|
+
|
|
2218
|
+
</dd>
|
|
2219
|
+
</dl>
|
|
2220
|
+
</dd>
|
|
2221
|
+
</dl>
|
|
2222
|
+
|
|
2223
|
+
#### 🔌 Usage
|
|
2224
|
+
|
|
2225
|
+
<dl>
|
|
2226
|
+
<dd>
|
|
2227
|
+
|
|
2228
|
+
<dl>
|
|
2229
|
+
<dd>
|
|
2230
|
+
|
|
2231
|
+
```typescript
|
|
2232
|
+
await client.encounterAttachments.v1.create(
|
|
2233
|
+
fs.createReadStream("/path/to/your/file"),
|
|
2234
|
+
CandidApi.EncounterId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
2235
|
+
{},
|
|
2236
|
+
);
|
|
2237
|
+
```
|
|
2238
|
+
|
|
2239
|
+
</dd>
|
|
2240
|
+
</dl>
|
|
2241
|
+
</dd>
|
|
2242
|
+
</dl>
|
|
2243
|
+
|
|
2244
|
+
#### ⚙️ Parameters
|
|
2245
|
+
|
|
2246
|
+
<dl>
|
|
2247
|
+
<dd>
|
|
2248
|
+
|
|
2249
|
+
<dl>
|
|
2250
|
+
<dd>
|
|
2251
|
+
|
|
2252
|
+
**attachmentFile:** `File | fs.ReadStream | Blob`
|
|
2253
|
+
|
|
2254
|
+
</dd>
|
|
2255
|
+
</dl>
|
|
2256
|
+
|
|
2257
|
+
<dl>
|
|
2258
|
+
<dd>
|
|
2259
|
+
|
|
2260
|
+
**encounterId:** `CandidApi.EncounterId`
|
|
2261
|
+
|
|
2262
|
+
</dd>
|
|
2263
|
+
</dl>
|
|
2264
|
+
|
|
2265
|
+
<dl>
|
|
2266
|
+
<dd>
|
|
2267
|
+
|
|
2268
|
+
**request:** `CandidApi.encounterAttachments.v1.CreateAttachmentRequest`
|
|
2269
|
+
|
|
2270
|
+
</dd>
|
|
2271
|
+
</dl>
|
|
2272
|
+
|
|
2273
|
+
<dl>
|
|
2274
|
+
<dd>
|
|
2275
|
+
|
|
2276
|
+
**requestOptions:** `V1.RequestOptions`
|
|
1903
2277
|
|
|
1904
|
-
|
|
2278
|
+
</dd>
|
|
2279
|
+
</dl>
|
|
2280
|
+
</dd>
|
|
2281
|
+
</dl>
|
|
1905
2282
|
|
|
1906
|
-
|
|
2283
|
+
</dd>
|
|
2284
|
+
</dl>
|
|
2285
|
+
</details>
|
|
1907
2286
|
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
</dd>
|
|
1912
|
-
</dl>
|
|
2287
|
+
<details><summary><code>client.encounterAttachments.v1.<a href="/src/api/resources/encounterAttachments/resources/v1/client/Client.ts">delete</a>(encounterId, { ...params }) -> core.APIResponse<void, CandidApi.encounterAttachments.v1.delete.Error></code></summary>
|
|
2288
|
+
<dl>
|
|
2289
|
+
<dd>
|
|
1913
2290
|
|
|
1914
2291
|
#### 🔌 Usage
|
|
1915
2292
|
|
|
@@ -1920,8 +2297,8 @@ Check connection status of Availity API and partners here:
|
|
|
1920
2297
|
<dd>
|
|
1921
2298
|
|
|
1922
2299
|
```typescript
|
|
1923
|
-
await client.
|
|
1924
|
-
|
|
2300
|
+
await client.encounterAttachments.v1.delete(CandidApi.EncounterId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"), {
|
|
2301
|
+
attachmentId: CandidApi.AttachmentId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
1925
2302
|
});
|
|
1926
2303
|
```
|
|
1927
2304
|
|
|
@@ -1938,7 +2315,7 @@ await client.eligibility.v2.submitEligibilityCheckAvailityPost({
|
|
|
1938
2315
|
<dl>
|
|
1939
2316
|
<dd>
|
|
1940
2317
|
|
|
1941
|
-
**
|
|
2318
|
+
**encounterId:** `CandidApi.EncounterId`
|
|
1942
2319
|
|
|
1943
2320
|
</dd>
|
|
1944
2321
|
</dl>
|
|
@@ -1946,7 +2323,15 @@ await client.eligibility.v2.submitEligibilityCheckAvailityPost({
|
|
|
1946
2323
|
<dl>
|
|
1947
2324
|
<dd>
|
|
1948
2325
|
|
|
1949
|
-
**
|
|
2326
|
+
**request:** `CandidApi.encounterAttachments.v1.DeleteAttachmentRequest`
|
|
2327
|
+
|
|
2328
|
+
</dd>
|
|
2329
|
+
</dl>
|
|
2330
|
+
|
|
2331
|
+
<dl>
|
|
2332
|
+
<dd>
|
|
2333
|
+
|
|
2334
|
+
**requestOptions:** `V1.RequestOptions`
|
|
1950
2335
|
|
|
1951
2336
|
</dd>
|
|
1952
2337
|
</dl>
|
|
@@ -1974,21 +2359,7 @@ await client.eligibility.v2.submitEligibilityCheckAvailityPost({
|
|
|
1974
2359
|
```typescript
|
|
1975
2360
|
await client.encounterProviders.v2.updateReferringProvider(
|
|
1976
2361
|
CandidApi.EncounterId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
1977
|
-
{
|
|
1978
|
-
npi: "string",
|
|
1979
|
-
taxonomyCode: "string",
|
|
1980
|
-
address: {
|
|
1981
|
-
address1: "123 Main St",
|
|
1982
|
-
address2: "Apt 1",
|
|
1983
|
-
city: "New York",
|
|
1984
|
-
state: "NY",
|
|
1985
|
-
zipCode: "10001",
|
|
1986
|
-
zipPlusFourCode: "1234",
|
|
1987
|
-
},
|
|
1988
|
-
firstName: "string",
|
|
1989
|
-
lastName: "string",
|
|
1990
|
-
organizationName: "string",
|
|
1991
|
-
},
|
|
2362
|
+
{},
|
|
1992
2363
|
);
|
|
1993
2364
|
```
|
|
1994
2365
|
|
|
@@ -2047,22 +2418,7 @@ await client.encounterProviders.v2.updateReferringProvider(
|
|
|
2047
2418
|
```typescript
|
|
2048
2419
|
await client.encounterProviders.v2.updateInitialReferringProvider(
|
|
2049
2420
|
CandidApi.EncounterId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
2050
|
-
{
|
|
2051
|
-
npi: "string",
|
|
2052
|
-
taxonomyCode: "string",
|
|
2053
|
-
address: {
|
|
2054
|
-
address1: "123 Main St",
|
|
2055
|
-
address2: "Apt 1",
|
|
2056
|
-
city: "New York",
|
|
2057
|
-
state: "NY",
|
|
2058
|
-
zipCode: "10001",
|
|
2059
|
-
zipPlusFourCode: "1234",
|
|
2060
|
-
},
|
|
2061
|
-
qualifier: "DQ",
|
|
2062
|
-
firstName: "string",
|
|
2063
|
-
lastName: "string",
|
|
2064
|
-
organizationName: "string",
|
|
2065
|
-
},
|
|
2421
|
+
{},
|
|
2066
2422
|
);
|
|
2067
2423
|
```
|
|
2068
2424
|
|
|
@@ -2121,21 +2477,7 @@ await client.encounterProviders.v2.updateInitialReferringProvider(
|
|
|
2121
2477
|
```typescript
|
|
2122
2478
|
await client.encounterProviders.v2.updateSupervisingProvider(
|
|
2123
2479
|
CandidApi.EncounterId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
2124
|
-
{
|
|
2125
|
-
npi: "string",
|
|
2126
|
-
taxonomyCode: "string",
|
|
2127
|
-
address: {
|
|
2128
|
-
address1: "123 Main St",
|
|
2129
|
-
address2: "Apt 1",
|
|
2130
|
-
city: "New York",
|
|
2131
|
-
state: "NY",
|
|
2132
|
-
zipCode: "10001",
|
|
2133
|
-
zipPlusFourCode: "1234",
|
|
2134
|
-
},
|
|
2135
|
-
firstName: "string",
|
|
2136
|
-
lastName: "string",
|
|
2137
|
-
organizationName: "string",
|
|
2138
|
-
},
|
|
2480
|
+
{},
|
|
2139
2481
|
);
|
|
2140
2482
|
```
|
|
2141
2483
|
|
|
@@ -2205,9 +2547,6 @@ await client.encounterProviders.v2.updateOrderingProvider(
|
|
|
2205
2547
|
zipCode: "10001",
|
|
2206
2548
|
zipPlusFourCode: "1234",
|
|
2207
2549
|
},
|
|
2208
|
-
firstName: "string",
|
|
2209
|
-
lastName: "string",
|
|
2210
|
-
organizationName: "string",
|
|
2211
2550
|
},
|
|
2212
2551
|
);
|
|
2213
2552
|
```
|
|
@@ -2278,9 +2617,6 @@ await client.encounterProviders.v2.createReferringProvider(
|
|
|
2278
2617
|
zipCode: "10001",
|
|
2279
2618
|
zipPlusFourCode: "1234",
|
|
2280
2619
|
},
|
|
2281
|
-
firstName: "string",
|
|
2282
|
-
lastName: "string",
|
|
2283
|
-
organizationName: "string",
|
|
2284
2620
|
},
|
|
2285
2621
|
);
|
|
2286
2622
|
```
|
|
@@ -2352,9 +2688,6 @@ await client.encounterProviders.v2.createInitialReferringProvider(
|
|
|
2352
2688
|
zipPlusFourCode: "1234",
|
|
2353
2689
|
},
|
|
2354
2690
|
qualifier: "DQ",
|
|
2355
|
-
firstName: "string",
|
|
2356
|
-
lastName: "string",
|
|
2357
|
-
organizationName: "string",
|
|
2358
2691
|
},
|
|
2359
2692
|
);
|
|
2360
2693
|
```
|
|
@@ -2425,9 +2758,6 @@ await client.encounterProviders.v2.createSupervisingProvider(
|
|
|
2425
2758
|
zipCode: "10001",
|
|
2426
2759
|
zipPlusFourCode: "1234",
|
|
2427
2760
|
},
|
|
2428
|
-
firstName: "string",
|
|
2429
|
-
lastName: "string",
|
|
2430
|
-
organizationName: "string",
|
|
2431
2761
|
},
|
|
2432
2762
|
);
|
|
2433
2763
|
```
|
|
@@ -2498,9 +2828,6 @@ await client.encounterProviders.v2.createOrderingProvider(
|
|
|
2498
2828
|
zipCode: "10001",
|
|
2499
2829
|
zipPlusFourCode: "1234",
|
|
2500
2830
|
},
|
|
2501
|
-
firstName: "string",
|
|
2502
|
-
lastName: "string",
|
|
2503
|
-
organizationName: "string",
|
|
2504
2831
|
},
|
|
2505
2832
|
);
|
|
2506
2833
|
```
|
|
@@ -2917,9 +3244,6 @@ await client.encounters.v4.create({
|
|
|
2917
3244
|
npi: "string",
|
|
2918
3245
|
taxonomyCode: "string",
|
|
2919
3246
|
providerCommercialLicenseType: "0",
|
|
2920
|
-
firstName: "string",
|
|
2921
|
-
lastName: "string",
|
|
2922
|
-
organizationName: "string",
|
|
2923
3247
|
},
|
|
2924
3248
|
renderingProvider: {
|
|
2925
3249
|
npi: "string",
|
|
@@ -2932,9 +3256,6 @@ await client.encounters.v4.create({
|
|
|
2932
3256
|
zipCode: "10001",
|
|
2933
3257
|
zipPlusFourCode: "1234",
|
|
2934
3258
|
},
|
|
2935
|
-
firstName: "string",
|
|
2936
|
-
lastName: "string",
|
|
2937
|
-
organizationName: "string",
|
|
2938
3259
|
},
|
|
2939
3260
|
referringProvider: {
|
|
2940
3261
|
npi: "string",
|
|
@@ -2947,9 +3268,6 @@ await client.encounters.v4.create({
|
|
|
2947
3268
|
zipCode: "10001",
|
|
2948
3269
|
zipPlusFourCode: "1234",
|
|
2949
3270
|
},
|
|
2950
|
-
firstName: "string",
|
|
2951
|
-
lastName: "string",
|
|
2952
|
-
organizationName: "string",
|
|
2953
3271
|
},
|
|
2954
3272
|
initialReferringProvider: {
|
|
2955
3273
|
npi: "string",
|
|
@@ -2963,9 +3281,6 @@ await client.encounters.v4.create({
|
|
|
2963
3281
|
zipPlusFourCode: "1234",
|
|
2964
3282
|
},
|
|
2965
3283
|
qualifier: "DQ",
|
|
2966
|
-
firstName: "string",
|
|
2967
|
-
lastName: "string",
|
|
2968
|
-
organizationName: "string",
|
|
2969
3284
|
},
|
|
2970
3285
|
supervisingProvider: {
|
|
2971
3286
|
npi: "string",
|
|
@@ -2978,9 +3293,6 @@ await client.encounters.v4.create({
|
|
|
2978
3293
|
zipCode: "10001",
|
|
2979
3294
|
zipPlusFourCode: "1234",
|
|
2980
3295
|
},
|
|
2981
|
-
firstName: "string",
|
|
2982
|
-
lastName: "string",
|
|
2983
|
-
organizationName: "string",
|
|
2984
3296
|
},
|
|
2985
3297
|
serviceFacility: {
|
|
2986
3298
|
organizationName: "string",
|
|
@@ -3000,27 +3312,8 @@ await client.encounters.v4.create({
|
|
|
3000
3312
|
memberId: "string",
|
|
3001
3313
|
payerName: "string",
|
|
3002
3314
|
payerId: "string",
|
|
3003
|
-
rxBin: "string",
|
|
3004
|
-
rxPcn: "string",
|
|
3005
|
-
imageUrlFront: "string",
|
|
3006
|
-
imageUrlBack: "string",
|
|
3007
|
-
emrPayerCrosswalk: "HEALTHIE",
|
|
3008
|
-
groupNumber: "string",
|
|
3009
|
-
planName: "string",
|
|
3010
|
-
planType: "09",
|
|
3011
|
-
insuranceType: "01",
|
|
3012
|
-
payerPlanGroupId: CandidApi.PayerPlanGroupId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
3013
3315
|
},
|
|
3014
3316
|
patientRelationshipToSubscriberCode: "01",
|
|
3015
|
-
dateOfBirth: "2023-01-15",
|
|
3016
|
-
address: {
|
|
3017
|
-
address1: "123 Main St",
|
|
3018
|
-
address2: "Apt 1",
|
|
3019
|
-
city: "New York",
|
|
3020
|
-
state: "NY",
|
|
3021
|
-
zipCode: "10001",
|
|
3022
|
-
zipPlusFourCode: "1234",
|
|
3023
|
-
},
|
|
3024
3317
|
firstName: "string",
|
|
3025
3318
|
lastName: "string",
|
|
3026
3319
|
gender: "male",
|
|
@@ -3030,27 +3323,8 @@ await client.encounters.v4.create({
|
|
|
3030
3323
|
memberId: "string",
|
|
3031
3324
|
payerName: "string",
|
|
3032
3325
|
payerId: "string",
|
|
3033
|
-
rxBin: "string",
|
|
3034
|
-
rxPcn: "string",
|
|
3035
|
-
imageUrlFront: "string",
|
|
3036
|
-
imageUrlBack: "string",
|
|
3037
|
-
emrPayerCrosswalk: "HEALTHIE",
|
|
3038
|
-
groupNumber: "string",
|
|
3039
|
-
planName: "string",
|
|
3040
|
-
planType: "09",
|
|
3041
|
-
insuranceType: "01",
|
|
3042
|
-
payerPlanGroupId: CandidApi.PayerPlanGroupId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
3043
3326
|
},
|
|
3044
3327
|
patientRelationshipToSubscriberCode: "01",
|
|
3045
|
-
dateOfBirth: "2023-01-15",
|
|
3046
|
-
address: {
|
|
3047
|
-
address1: "123 Main St",
|
|
3048
|
-
address2: "Apt 1",
|
|
3049
|
-
city: "New York",
|
|
3050
|
-
state: "NY",
|
|
3051
|
-
zipCode: "10001",
|
|
3052
|
-
zipPlusFourCode: "1234",
|
|
3053
|
-
},
|
|
3054
3328
|
firstName: "string",
|
|
3055
3329
|
lastName: "string",
|
|
3056
3330
|
gender: "male",
|
|
@@ -3060,27 +3334,8 @@ await client.encounters.v4.create({
|
|
|
3060
3334
|
memberId: "string",
|
|
3061
3335
|
payerName: "string",
|
|
3062
3336
|
payerId: "string",
|
|
3063
|
-
rxBin: "string",
|
|
3064
|
-
rxPcn: "string",
|
|
3065
|
-
imageUrlFront: "string",
|
|
3066
|
-
imageUrlBack: "string",
|
|
3067
|
-
emrPayerCrosswalk: "HEALTHIE",
|
|
3068
|
-
groupNumber: "string",
|
|
3069
|
-
planName: "string",
|
|
3070
|
-
planType: "09",
|
|
3071
|
-
insuranceType: "01",
|
|
3072
|
-
payerPlanGroupId: CandidApi.PayerPlanGroupId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
|
|
3073
3337
|
},
|
|
3074
3338
|
patientRelationshipToSubscriberCode: "01",
|
|
3075
|
-
dateOfBirth: "2023-01-15",
|
|
3076
|
-
address: {
|
|
3077
|
-
address1: "123 Main St",
|
|
3078
|
-
address2: "Apt 1",
|
|
3079
|
-
city: "New York",
|
|
3080
|
-
state: "NY",
|
|
3081
|
-
zipCode: "10001",
|
|
3082
|
-
zipPlusFourCode: "1234",
|
|
3083
|
-
},
|
|
3084
3339
|
firstName: "string",
|
|
3085
3340
|
lastName: "string",
|
|
3086
3341
|
gender: "male",
|
|
@@ -3193,8 +3448,6 @@ await client.encounters.v4.create({
|
|
|
3193
3448
|
referralNumber: "string",
|
|
3194
3449
|
epsdtReferral: {
|
|
3195
3450
|
conditionIndicator1: "AV",
|
|
3196
|
-
conditionIndicator2: "AV",
|
|
3197
|
-
conditionIndicator3: "AV",
|
|
3198
3451
|
},
|
|
3199
3452
|
claimSupplementalInformation: [
|
|
3200
3453
|
{
|
|
@@ -3363,9 +3616,6 @@ await client.encounters.v4.createFromPreEncounterPatient({
|
|
|
3363
3616
|
npi: "string",
|
|
3364
3617
|
taxonomyCode: "string",
|
|
3365
3618
|
providerCommercialLicenseType: "0",
|
|
3366
|
-
firstName: "string",
|
|
3367
|
-
lastName: "string",
|
|
3368
|
-
organizationName: "string",
|
|
3369
3619
|
},
|
|
3370
3620
|
renderingProvider: {
|
|
3371
3621
|
npi: "string",
|
|
@@ -3378,9 +3628,6 @@ await client.encounters.v4.createFromPreEncounterPatient({
|
|
|
3378
3628
|
zipCode: "10001",
|
|
3379
3629
|
zipPlusFourCode: "1234",
|
|
3380
3630
|
},
|
|
3381
|
-
firstName: "string",
|
|
3382
|
-
lastName: "string",
|
|
3383
|
-
organizationName: "string",
|
|
3384
3631
|
},
|
|
3385
3632
|
initialReferringProvider: {
|
|
3386
3633
|
npi: "string",
|
|
@@ -3394,9 +3641,6 @@ await client.encounters.v4.createFromPreEncounterPatient({
|
|
|
3394
3641
|
zipPlusFourCode: "1234",
|
|
3395
3642
|
},
|
|
3396
3643
|
qualifier: "DQ",
|
|
3397
|
-
firstName: "string",
|
|
3398
|
-
lastName: "string",
|
|
3399
|
-
organizationName: "string",
|
|
3400
3644
|
},
|
|
3401
3645
|
supervisingProvider: {
|
|
3402
3646
|
npi: "string",
|
|
@@ -3409,9 +3653,6 @@ await client.encounters.v4.createFromPreEncounterPatient({
|
|
|
3409
3653
|
zipCode: "10001",
|
|
3410
3654
|
zipPlusFourCode: "1234",
|
|
3411
3655
|
},
|
|
3412
|
-
firstName: "string",
|
|
3413
|
-
lastName: "string",
|
|
3414
|
-
organizationName: "string",
|
|
3415
3656
|
},
|
|
3416
3657
|
serviceFacility: {
|
|
3417
3658
|
organizationName: "string",
|
|
@@ -3623,6 +3864,102 @@ await client.encounters.v4.createFromPreEncounterPatient({
|
|
|
3623
3864
|
await client.encounters.v4.update(CandidApi.EncounterId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"), {
|
|
3624
3865
|
diagnosisIds: [CandidApi.DiagnosisId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32")],
|
|
3625
3866
|
placeOfServiceCodeAsSubmitted: "01",
|
|
3867
|
+
benefitsAssignedToProvider: true,
|
|
3868
|
+
priorAuthorizationNumber: CandidApi.PriorAuthorizationNumber("string"),
|
|
3869
|
+
externalId: CandidApi.EncounterExternalId("string"),
|
|
3870
|
+
dateOfService: "2023-01-15",
|
|
3871
|
+
tagIds: [],
|
|
3872
|
+
clinicalNotes: [],
|
|
3873
|
+
payToAddress: {
|
|
3874
|
+
address1: "123 Main St",
|
|
3875
|
+
address2: "Apt 1",
|
|
3876
|
+
city: "New York",
|
|
3877
|
+
state: "NY",
|
|
3878
|
+
zipCode: "10001",
|
|
3879
|
+
zipPlusFourCode: "1234",
|
|
3880
|
+
},
|
|
3881
|
+
billableStatus: "BILLABLE",
|
|
3882
|
+
responsibleParty: "INSURANCE_PAY",
|
|
3883
|
+
providerAcceptsAssignment: true,
|
|
3884
|
+
synchronicity: "Synchronous",
|
|
3885
|
+
placeOfServiceCode: "01",
|
|
3886
|
+
appointmentType: "string",
|
|
3887
|
+
endDateOfService: "2023-01-15",
|
|
3888
|
+
subscriberPrimary: {
|
|
3889
|
+
insuranceCard: {
|
|
3890
|
+
memberId: "string",
|
|
3891
|
+
payerName: "string",
|
|
3892
|
+
payerId: "string",
|
|
3893
|
+
},
|
|
3894
|
+
patientRelationshipToSubscriberCode: "01",
|
|
3895
|
+
firstName: "string",
|
|
3896
|
+
lastName: "string",
|
|
3897
|
+
gender: "male",
|
|
3898
|
+
},
|
|
3899
|
+
subscriberSecondary: {
|
|
3900
|
+
insuranceCard: {
|
|
3901
|
+
memberId: "string",
|
|
3902
|
+
payerName: "string",
|
|
3903
|
+
payerId: "string",
|
|
3904
|
+
},
|
|
3905
|
+
patientRelationshipToSubscriberCode: "01",
|
|
3906
|
+
firstName: "string",
|
|
3907
|
+
lastName: "string",
|
|
3908
|
+
gender: "male",
|
|
3909
|
+
},
|
|
3910
|
+
subscriberTertiary: {
|
|
3911
|
+
insuranceCard: {
|
|
3912
|
+
memberId: "string",
|
|
3913
|
+
payerName: "string",
|
|
3914
|
+
payerId: "string",
|
|
3915
|
+
},
|
|
3916
|
+
patientRelationshipToSubscriberCode: "01",
|
|
3917
|
+
firstName: "string",
|
|
3918
|
+
lastName: "string",
|
|
3919
|
+
gender: "male",
|
|
3920
|
+
},
|
|
3921
|
+
additionalInformation: "string",
|
|
3922
|
+
serviceAuthorizationExceptionCode: "1",
|
|
3923
|
+
admissionDate: "2023-01-15",
|
|
3924
|
+
dischargeDate: "2023-01-15",
|
|
3925
|
+
onsetOfCurrentIllnessOrSymptomDate: "2023-01-15",
|
|
3926
|
+
lastMenstrualPeriodDate: "2023-01-15",
|
|
3927
|
+
delayReasonCode: "1",
|
|
3928
|
+
patient: {},
|
|
3929
|
+
patientAuthorizedRelease: true,
|
|
3930
|
+
schemaInstances: [],
|
|
3931
|
+
vitals: {
|
|
3932
|
+
heightIn: 70,
|
|
3933
|
+
weightLbs: 165,
|
|
3934
|
+
bloodPressureSystolicMmhg: 115,
|
|
3935
|
+
bloodPressureDiastolicMmhg: 85,
|
|
3936
|
+
bodyTemperatureF: 98,
|
|
3937
|
+
hemoglobinGdl: 15.1,
|
|
3938
|
+
hematocritPct: 51.2,
|
|
3939
|
+
},
|
|
3940
|
+
existingMedications: [],
|
|
3941
|
+
renderingProvider: {},
|
|
3942
|
+
serviceFacility: {
|
|
3943
|
+
organizationName: "Test Organization",
|
|
3944
|
+
address: {
|
|
3945
|
+
address1: "123 Main St",
|
|
3946
|
+
address2: "Apt 1",
|
|
3947
|
+
city: "New York",
|
|
3948
|
+
state: "NY",
|
|
3949
|
+
zipCode: "10001",
|
|
3950
|
+
zipPlusFourCode: "1234",
|
|
3951
|
+
},
|
|
3952
|
+
},
|
|
3953
|
+
guarantor: {},
|
|
3954
|
+
billingProvider: {},
|
|
3955
|
+
supervisingProvider: {},
|
|
3956
|
+
referringProvider: {},
|
|
3957
|
+
initialReferringProvider: {},
|
|
3958
|
+
referralNumber: "string",
|
|
3959
|
+
epsdtReferral: {
|
|
3960
|
+
conditionIndicator1: "AV",
|
|
3961
|
+
},
|
|
3962
|
+
claimSupplementalInformation: [],
|
|
3626
3963
|
});
|
|
3627
3964
|
```
|
|
3628
3965
|
|
|
@@ -4968,29 +5305,7 @@ Updates a guarantor by its `guarantor_id`.
|
|
|
4968
5305
|
<dd>
|
|
4969
5306
|
|
|
4970
5307
|
```typescript
|
|
4971
|
-
await client.guarantor.v1.update(CandidApi.GuarantorId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"), {
|
|
4972
|
-
firstName: "string",
|
|
4973
|
-
lastName: "string",
|
|
4974
|
-
externalId: "string",
|
|
4975
|
-
dateOfBirth: "2023-01-15",
|
|
4976
|
-
address: {
|
|
4977
|
-
address1: "123 Main St",
|
|
4978
|
-
address2: "Apt 1",
|
|
4979
|
-
city: "New York",
|
|
4980
|
-
state: "NY",
|
|
4981
|
-
zipCode: "10001",
|
|
4982
|
-
zipPlusFourCode: "1234",
|
|
4983
|
-
},
|
|
4984
|
-
phoneNumbers: [
|
|
4985
|
-
{
|
|
4986
|
-
number: "1234567890",
|
|
4987
|
-
type: "Home",
|
|
4988
|
-
},
|
|
4989
|
-
],
|
|
4990
|
-
phoneConsent: true,
|
|
4991
|
-
email: CandidApi.Email("johndoe@joincandidhealth.com"),
|
|
4992
|
-
emailConsent: true,
|
|
4993
|
-
});
|
|
5308
|
+
await client.guarantor.v1.update(CandidApi.GuarantorId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"), {});
|
|
4994
5309
|
```
|
|
4995
5310
|
|
|
4996
5311
|
</dd>
|
|
@@ -9011,9 +9326,6 @@ await client.serviceLines.v2.create({
|
|
|
9011
9326
|
zipCode: "10001",
|
|
9012
9327
|
zipPlusFourCode: "1234",
|
|
9013
9328
|
},
|
|
9014
|
-
firstName: "string",
|
|
9015
|
-
lastName: "string",
|
|
9016
|
-
organizationName: "string",
|
|
9017
9329
|
},
|
|
9018
9330
|
testResults: [
|
|
9019
9331
|
{
|