candidhealth 0.9.0 → 0.10.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 +7 -2
- package/api/resources/auth/resources/v2/client/Client.js +1 -1
- package/api/resources/billingNotes/resources/v2/client/Client.js +1 -1
- package/api/resources/commons/types/TaskAssignmentId.d.ts +8 -0
- package/api/resources/commons/types/TaskAssignmentId.js +10 -0
- package/api/resources/commons/types/TaskId.d.ts +8 -0
- package/api/resources/commons/types/TaskId.js +10 -0
- package/api/resources/commons/types/TaskNoteId.d.ts +8 -0
- package/api/resources/commons/types/TaskNoteId.js +10 -0
- package/api/resources/commons/types/UnprocessableEntityErrorMessage.d.ts +6 -0
- package/api/resources/commons/types/UnprocessableEntityErrorMessage.js +5 -0
- package/api/resources/commons/types/UserId.d.ts +8 -0
- package/api/resources/commons/types/UserId.js +10 -0
- package/api/resources/commons/types/index.d.ts +5 -0
- package/api/resources/commons/types/index.js +5 -0
- package/api/resources/eligibility/resources/v2/client/Client.js +1 -1
- package/api/resources/encounters/resources/v4/client/Client.js +4 -4
- 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/guarantor/resources/v1/client/Client.js +3 -3
- package/api/resources/index.d.ts +1 -0
- package/api/resources/index.js +2 -1
- package/api/resources/insuranceAdjudications/resources/v1/client/Client.js +3 -3
- package/api/resources/insuranceRefunds/resources/v1/client/Client.js +3 -3
- package/api/resources/insuranceRefunds/resources/v1/types/InsuranceRefund.d.ts +1 -0
- package/api/resources/insuranceRefunds/resources/v1/types/InsuranceRefundCreate.d.ts +1 -0
- 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 +3 -3
- package/api/resources/patientRefunds/resources/v1/client/Client.js +3 -3
- package/api/resources/payers/resources/v3/client/Client.js +2 -2
- package/api/resources/payers/resources/v3/types/PayerId.d.ts +8 -0
- package/api/resources/payers/resources/v3/types/PayerId.js +10 -0
- package/api/resources/payers/resources/v3/types/index.d.ts +1 -0
- package/api/resources/payers/resources/v3/types/index.js +1 -0
- package/api/resources/tasks/client/Client.d.ts +18 -0
- package/api/resources/tasks/client/Client.js +18 -0
- package/api/resources/tasks/client/index.d.ts +1 -0
- package/api/resources/tasks/client/index.js +2 -0
- package/api/resources/tasks/index.d.ts +2 -0
- package/api/resources/tasks/index.js +18 -0
- package/api/resources/tasks/resources/commons/index.d.ts +1 -0
- package/api/resources/tasks/resources/commons/index.js +17 -0
- package/api/resources/tasks/resources/commons/types/TaskCategory.d.ts +45 -0
- package/api/resources/tasks/resources/commons/types/TaskCategory.js +47 -0
- package/api/resources/tasks/resources/commons/types/TaskStatus.d.ts +13 -0
- package/api/resources/tasks/resources/commons/types/TaskStatus.js +15 -0
- package/api/resources/tasks/resources/commons/types/TaskType.d.ts +18 -0
- package/api/resources/tasks/resources/commons/types/TaskType.js +20 -0
- package/api/resources/tasks/resources/commons/types/index.d.ts +3 -0
- package/api/resources/tasks/resources/commons/types/index.js +19 -0
- package/api/resources/tasks/resources/index.d.ts +3 -0
- package/api/resources/tasks/resources/index.js +32 -0
- package/api/resources/tasks/resources/v3/client/Client.d.ts +42 -0
- package/api/resources/tasks/resources/v3/client/Client.js +306 -0
- package/api/resources/tasks/resources/v3/client/create.d.ts +22 -0
- package/api/resources/tasks/resources/v3/client/create.js +47 -0
- package/api/resources/tasks/resources/v3/client/get.d.ts +34 -0
- package/api/resources/tasks/resources/v3/client/get.js +69 -0
- package/api/resources/tasks/resources/v3/client/getActions.d.ts +22 -0
- package/api/resources/tasks/resources/v3/client/getActions.js +47 -0
- package/api/resources/tasks/resources/v3/client/getMulti.d.ts +31 -0
- package/api/resources/tasks/resources/v3/client/getMulti.js +58 -0
- package/api/resources/tasks/resources/v3/client/index.d.ts +6 -0
- package/api/resources/tasks/resources/v3/client/index.js +35 -0
- package/api/resources/tasks/resources/v3/client/requests/GetAllTasksRequest.d.ts +49 -0
- package/api/resources/tasks/resources/v3/client/requests/GetAllTasksRequest.js +5 -0
- package/api/resources/tasks/resources/v3/client/requests/index.d.ts +1 -0
- package/api/resources/tasks/resources/v3/client/requests/index.js +2 -0
- package/api/resources/tasks/resources/v3/client/update.d.ts +40 -0
- package/api/resources/tasks/resources/v3/client/update.js +80 -0
- package/api/resources/tasks/resources/v3/index.d.ts +2 -0
- package/api/resources/tasks/resources/v3/index.js +18 -0
- package/api/resources/tasks/resources/v3/types/Task.d.ts +26 -0
- package/api/resources/tasks/resources/v3/types/Task.js +5 -0
- package/api/resources/tasks/resources/v3/types/TaskAction.d.ts +8 -0
- package/api/resources/tasks/resources/v3/types/TaskAction.js +5 -0
- package/api/resources/tasks/resources/v3/types/TaskActionExecutionMethod.d.ts +10 -0
- package/api/resources/tasks/resources/v3/types/TaskActionExecutionMethod.js +5 -0
- package/api/resources/tasks/resources/v3/types/TaskActions.d.ts +7 -0
- package/api/resources/tasks/resources/v3/types/TaskActions.js +5 -0
- package/api/resources/tasks/resources/v3/types/TaskAssignment.d.ts +8 -0
- package/api/resources/tasks/resources/v3/types/TaskAssignment.js +5 -0
- package/api/resources/tasks/resources/v3/types/TaskCreateV3.d.ts +13 -0
- package/api/resources/tasks/resources/v3/types/TaskCreateV3.js +5 -0
- package/api/resources/tasks/resources/v3/types/TaskNote.d.ts +11 -0
- package/api/resources/tasks/resources/v3/types/TaskNote.js +5 -0
- package/api/resources/tasks/resources/v3/types/TaskPage.d.ts +7 -0
- package/api/resources/tasks/resources/v3/types/TaskPage.js +5 -0
- package/api/resources/tasks/resources/v3/types/TaskSortOptions.d.ts +28 -0
- package/api/resources/tasks/resources/v3/types/TaskSortOptions.js +30 -0
- package/api/resources/tasks/resources/v3/types/TaskUpdateV3.d.ts +9 -0
- package/api/resources/tasks/resources/v3/types/TaskUpdateV3.js +5 -0
- package/api/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.d.ts +7 -0
- package/api/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.js +5 -0
- package/api/resources/tasks/resources/v3/types/index.d.ts +11 -0
- package/api/resources/tasks/resources/v3/types/index.js +27 -0
- package/api/resources/writeOffs/resources/v1/client/Client.js +3 -3
- package/dist/Client.d.ts +3 -0
- package/dist/Client.js +7 -2
- package/dist/api/resources/auth/resources/v2/client/Client.js +1 -1
- package/dist/api/resources/billingNotes/resources/v2/client/Client.js +1 -1
- package/dist/api/resources/commons/types/TaskAssignmentId.d.ts +8 -0
- package/dist/api/resources/commons/types/TaskAssignmentId.js +10 -0
- package/dist/api/resources/commons/types/TaskId.d.ts +8 -0
- package/dist/api/resources/commons/types/TaskId.js +10 -0
- package/dist/api/resources/commons/types/TaskNoteId.d.ts +8 -0
- package/dist/api/resources/commons/types/TaskNoteId.js +10 -0
- package/dist/api/resources/commons/types/UnprocessableEntityErrorMessage.d.ts +6 -0
- package/dist/api/resources/commons/types/UnprocessableEntityErrorMessage.js +5 -0
- package/dist/api/resources/commons/types/UserId.d.ts +8 -0
- package/dist/api/resources/commons/types/UserId.js +10 -0
- package/dist/api/resources/commons/types/index.d.ts +5 -0
- package/dist/api/resources/commons/types/index.js +5 -0
- package/dist/api/resources/eligibility/resources/v2/client/Client.js +1 -1
- package/dist/api/resources/encounters/resources/v4/client/Client.js +4 -4
- 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/guarantor/resources/v1/client/Client.js +3 -3
- package/dist/api/resources/index.d.ts +1 -0
- package/dist/api/resources/index.js +2 -1
- package/dist/api/resources/insuranceAdjudications/resources/v1/client/Client.js +3 -3
- package/dist/api/resources/insuranceRefunds/resources/v1/client/Client.js +3 -3
- package/dist/api/resources/insuranceRefunds/resources/v1/types/InsuranceRefund.d.ts +1 -0
- package/dist/api/resources/insuranceRefunds/resources/v1/types/InsuranceRefundCreate.d.ts +1 -0
- 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 +3 -3
- package/dist/api/resources/patientRefunds/resources/v1/client/Client.js +3 -3
- package/dist/api/resources/payers/resources/v3/client/Client.js +2 -2
- package/dist/api/resources/payers/resources/v3/types/PayerId.d.ts +8 -0
- package/dist/api/resources/payers/resources/v3/types/PayerId.js +10 -0
- package/dist/api/resources/payers/resources/v3/types/index.d.ts +1 -0
- package/dist/api/resources/payers/resources/v3/types/index.js +1 -0
- package/dist/api/resources/tasks/client/Client.d.ts +18 -0
- package/dist/api/resources/tasks/client/Client.js +18 -0
- package/dist/api/resources/tasks/client/index.d.ts +1 -0
- package/dist/api/resources/tasks/client/index.js +2 -0
- package/dist/api/resources/tasks/index.d.ts +2 -0
- package/dist/api/resources/tasks/index.js +18 -0
- package/dist/api/resources/tasks/resources/commons/index.d.ts +1 -0
- package/dist/api/resources/tasks/resources/commons/index.js +17 -0
- package/dist/api/resources/tasks/resources/commons/types/TaskCategory.d.ts +45 -0
- package/dist/api/resources/tasks/resources/commons/types/TaskCategory.js +47 -0
- package/dist/api/resources/tasks/resources/commons/types/TaskStatus.d.ts +13 -0
- package/dist/api/resources/tasks/resources/commons/types/TaskStatus.js +15 -0
- package/dist/api/resources/tasks/resources/commons/types/TaskType.d.ts +18 -0
- package/dist/api/resources/tasks/resources/commons/types/TaskType.js +20 -0
- package/dist/api/resources/tasks/resources/commons/types/index.d.ts +3 -0
- package/dist/api/resources/tasks/resources/commons/types/index.js +19 -0
- package/dist/api/resources/tasks/resources/index.d.ts +3 -0
- package/dist/api/resources/tasks/resources/index.js +32 -0
- package/dist/api/resources/tasks/resources/v3/client/Client.d.ts +42 -0
- package/dist/api/resources/tasks/resources/v3/client/Client.js +306 -0
- package/dist/api/resources/tasks/resources/v3/client/create.d.ts +22 -0
- package/dist/api/resources/tasks/resources/v3/client/create.js +47 -0
- package/dist/api/resources/tasks/resources/v3/client/get.d.ts +34 -0
- package/dist/api/resources/tasks/resources/v3/client/get.js +69 -0
- package/dist/api/resources/tasks/resources/v3/client/getActions.d.ts +22 -0
- package/dist/api/resources/tasks/resources/v3/client/getActions.js +47 -0
- package/dist/api/resources/tasks/resources/v3/client/getMulti.d.ts +31 -0
- package/dist/api/resources/tasks/resources/v3/client/getMulti.js +58 -0
- package/dist/api/resources/tasks/resources/v3/client/index.d.ts +6 -0
- package/dist/api/resources/tasks/resources/v3/client/index.js +35 -0
- package/dist/api/resources/tasks/resources/v3/client/requests/GetAllTasksRequest.d.ts +49 -0
- package/dist/api/resources/tasks/resources/v3/client/requests/GetAllTasksRequest.js +5 -0
- package/dist/api/resources/tasks/resources/v3/client/requests/index.d.ts +1 -0
- package/dist/api/resources/tasks/resources/v3/client/requests/index.js +2 -0
- package/dist/api/resources/tasks/resources/v3/client/update.d.ts +40 -0
- package/dist/api/resources/tasks/resources/v3/client/update.js +80 -0
- package/dist/api/resources/tasks/resources/v3/index.d.ts +2 -0
- package/dist/api/resources/tasks/resources/v3/index.js +18 -0
- package/dist/api/resources/tasks/resources/v3/types/Task.d.ts +26 -0
- package/dist/api/resources/tasks/resources/v3/types/Task.js +5 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskAction.d.ts +8 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskAction.js +5 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskActionExecutionMethod.d.ts +10 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskActionExecutionMethod.js +5 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskActions.d.ts +7 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskActions.js +5 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskAssignment.d.ts +8 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskAssignment.js +5 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskCreateV3.d.ts +13 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskCreateV3.js +5 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskNote.d.ts +11 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskNote.js +5 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskPage.d.ts +7 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskPage.js +5 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskSortOptions.d.ts +28 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskSortOptions.js +30 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskUpdateV3.d.ts +9 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskUpdateV3.js +5 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.d.ts +7 -0
- package/dist/api/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.js +5 -0
- package/dist/api/resources/tasks/resources/v3/types/index.d.ts +11 -0
- package/dist/api/resources/tasks/resources/v3/types/index.js +27 -0
- package/dist/api/resources/writeOffs/resources/v1/client/Client.js +3 -3
- package/dist/serialization/resources/commons/types/TaskAssignmentId.d.ts +10 -0
- package/dist/serialization/resources/commons/types/TaskAssignmentId.js +35 -0
- package/dist/serialization/resources/commons/types/TaskId.d.ts +10 -0
- package/dist/serialization/resources/commons/types/TaskId.js +37 -0
- package/dist/serialization/resources/commons/types/TaskNoteId.d.ts +10 -0
- package/dist/serialization/resources/commons/types/TaskNoteId.js +35 -0
- package/dist/serialization/resources/commons/types/UnprocessableEntityErrorMessage.d.ts +12 -0
- package/dist/serialization/resources/commons/types/UnprocessableEntityErrorMessage.js +33 -0
- package/dist/serialization/resources/commons/types/UserId.d.ts +10 -0
- package/dist/serialization/resources/commons/types/UserId.js +37 -0
- package/dist/serialization/resources/commons/types/index.d.ts +5 -0
- package/dist/serialization/resources/commons/types/index.js +5 -0
- package/dist/serialization/resources/index.d.ts +1 -0
- package/dist/serialization/resources/index.js +2 -1
- package/dist/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefund.d.ts +1 -0
- package/dist/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefund.js +1 -0
- package/dist/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefundCreate.d.ts +1 -0
- package/dist/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefundCreate.js +1 -0
- package/dist/serialization/resources/payers/resources/v3/types/PayerId.d.ts +10 -0
- package/dist/serialization/resources/payers/resources/v3/types/PayerId.js +35 -0
- package/dist/serialization/resources/payers/resources/v3/types/index.d.ts +1 -0
- package/dist/serialization/resources/payers/resources/v3/types/index.js +1 -0
- package/dist/serialization/resources/tasks/index.d.ts +1 -0
- package/dist/serialization/resources/tasks/index.js +17 -0
- package/dist/serialization/resources/tasks/resources/commons/index.d.ts +1 -0
- package/dist/serialization/resources/tasks/resources/commons/index.js +17 -0
- package/dist/serialization/resources/tasks/resources/commons/types/TaskCategory.d.ts +10 -0
- package/dist/serialization/resources/tasks/resources/commons/types/TaskCategory.js +71 -0
- package/dist/serialization/resources/tasks/resources/commons/types/TaskStatus.d.ts +10 -0
- package/dist/serialization/resources/tasks/resources/commons/types/TaskStatus.js +39 -0
- package/dist/serialization/resources/tasks/resources/commons/types/TaskType.d.ts +10 -0
- package/dist/serialization/resources/tasks/resources/commons/types/TaskType.js +44 -0
- package/dist/serialization/resources/tasks/resources/commons/types/index.d.ts +3 -0
- package/dist/serialization/resources/tasks/resources/commons/types/index.js +19 -0
- package/dist/serialization/resources/tasks/resources/index.d.ts +3 -0
- package/dist/serialization/resources/tasks/resources/index.js +32 -0
- package/dist/serialization/resources/tasks/resources/v3/client/get.d.ts +18 -0
- package/dist/serialization/resources/tasks/resources/v3/client/get.js +51 -0
- package/dist/serialization/resources/tasks/resources/v3/client/getMulti.d.ts +14 -0
- package/dist/serialization/resources/tasks/resources/v3/client/getMulti.js +46 -0
- package/dist/serialization/resources/tasks/resources/v3/client/index.d.ts +3 -0
- package/dist/serialization/resources/tasks/resources/v3/client/index.js +29 -0
- package/dist/serialization/resources/tasks/resources/v3/client/update.d.ts +22 -0
- package/dist/serialization/resources/tasks/resources/v3/client/update.js +56 -0
- package/dist/serialization/resources/tasks/resources/v3/index.d.ts +2 -0
- package/dist/serialization/resources/tasks/resources/v3/index.js +18 -0
- package/dist/serialization/resources/tasks/resources/v3/types/Task.d.ts +29 -0
- package/dist/serialization/resources/tasks/resources/v3/types/Task.js +50 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskAction.d.ts +13 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskAction.js +34 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskActionExecutionMethod.d.ts +13 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskActionExecutionMethod.js +38 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskActions.d.ts +12 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskActions.js +33 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskAssignment.d.ts +13 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskAssignment.js +34 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskCreateV3.d.ts +18 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskCreateV3.js +39 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskNote.d.ts +16 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskNote.js +37 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskPage.d.ts +12 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskPage.js +35 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskSortOptions.d.ts +10 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskSortOptions.js +54 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskUpdateV3.d.ts +14 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskUpdateV3.js +35 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.d.ts +12 -0
- package/dist/serialization/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.js +33 -0
- package/dist/serialization/resources/tasks/resources/v3/types/index.d.ts +11 -0
- package/dist/serialization/resources/tasks/resources/v3/types/index.js +27 -0
- package/package.json +1 -1
- package/serialization/resources/commons/types/TaskAssignmentId.d.ts +10 -0
- package/serialization/resources/commons/types/TaskAssignmentId.js +35 -0
- package/serialization/resources/commons/types/TaskId.d.ts +10 -0
- package/serialization/resources/commons/types/TaskId.js +37 -0
- package/serialization/resources/commons/types/TaskNoteId.d.ts +10 -0
- package/serialization/resources/commons/types/TaskNoteId.js +35 -0
- package/serialization/resources/commons/types/UnprocessableEntityErrorMessage.d.ts +12 -0
- package/serialization/resources/commons/types/UnprocessableEntityErrorMessage.js +33 -0
- package/serialization/resources/commons/types/UserId.d.ts +10 -0
- package/serialization/resources/commons/types/UserId.js +37 -0
- package/serialization/resources/commons/types/index.d.ts +5 -0
- package/serialization/resources/commons/types/index.js +5 -0
- package/serialization/resources/index.d.ts +1 -0
- package/serialization/resources/index.js +2 -1
- package/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefund.d.ts +1 -0
- package/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefund.js +1 -0
- package/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefundCreate.d.ts +1 -0
- package/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefundCreate.js +1 -0
- package/serialization/resources/payers/resources/v3/types/PayerId.d.ts +10 -0
- package/serialization/resources/payers/resources/v3/types/PayerId.js +35 -0
- package/serialization/resources/payers/resources/v3/types/index.d.ts +1 -0
- package/serialization/resources/payers/resources/v3/types/index.js +1 -0
- package/serialization/resources/tasks/index.d.ts +1 -0
- package/serialization/resources/tasks/index.js +17 -0
- package/serialization/resources/tasks/resources/commons/index.d.ts +1 -0
- package/serialization/resources/tasks/resources/commons/index.js +17 -0
- package/serialization/resources/tasks/resources/commons/types/TaskCategory.d.ts +10 -0
- package/serialization/resources/tasks/resources/commons/types/TaskCategory.js +71 -0
- package/serialization/resources/tasks/resources/commons/types/TaskStatus.d.ts +10 -0
- package/serialization/resources/tasks/resources/commons/types/TaskStatus.js +39 -0
- package/serialization/resources/tasks/resources/commons/types/TaskType.d.ts +10 -0
- package/serialization/resources/tasks/resources/commons/types/TaskType.js +44 -0
- package/serialization/resources/tasks/resources/commons/types/index.d.ts +3 -0
- package/serialization/resources/tasks/resources/commons/types/index.js +19 -0
- package/serialization/resources/tasks/resources/index.d.ts +3 -0
- package/serialization/resources/tasks/resources/index.js +32 -0
- package/serialization/resources/tasks/resources/v3/client/get.d.ts +18 -0
- package/serialization/resources/tasks/resources/v3/client/get.js +51 -0
- package/serialization/resources/tasks/resources/v3/client/getMulti.d.ts +14 -0
- package/serialization/resources/tasks/resources/v3/client/getMulti.js +46 -0
- package/serialization/resources/tasks/resources/v3/client/index.d.ts +3 -0
- package/serialization/resources/tasks/resources/v3/client/index.js +29 -0
- package/serialization/resources/tasks/resources/v3/client/update.d.ts +22 -0
- package/serialization/resources/tasks/resources/v3/client/update.js +56 -0
- package/serialization/resources/tasks/resources/v3/index.d.ts +2 -0
- package/serialization/resources/tasks/resources/v3/index.js +18 -0
- package/serialization/resources/tasks/resources/v3/types/Task.d.ts +29 -0
- package/serialization/resources/tasks/resources/v3/types/Task.js +50 -0
- package/serialization/resources/tasks/resources/v3/types/TaskAction.d.ts +13 -0
- package/serialization/resources/tasks/resources/v3/types/TaskAction.js +34 -0
- package/serialization/resources/tasks/resources/v3/types/TaskActionExecutionMethod.d.ts +13 -0
- package/serialization/resources/tasks/resources/v3/types/TaskActionExecutionMethod.js +38 -0
- package/serialization/resources/tasks/resources/v3/types/TaskActions.d.ts +12 -0
- package/serialization/resources/tasks/resources/v3/types/TaskActions.js +33 -0
- package/serialization/resources/tasks/resources/v3/types/TaskAssignment.d.ts +13 -0
- package/serialization/resources/tasks/resources/v3/types/TaskAssignment.js +34 -0
- package/serialization/resources/tasks/resources/v3/types/TaskCreateV3.d.ts +18 -0
- package/serialization/resources/tasks/resources/v3/types/TaskCreateV3.js +39 -0
- package/serialization/resources/tasks/resources/v3/types/TaskNote.d.ts +16 -0
- package/serialization/resources/tasks/resources/v3/types/TaskNote.js +37 -0
- package/serialization/resources/tasks/resources/v3/types/TaskPage.d.ts +12 -0
- package/serialization/resources/tasks/resources/v3/types/TaskPage.js +35 -0
- package/serialization/resources/tasks/resources/v3/types/TaskSortOptions.d.ts +10 -0
- package/serialization/resources/tasks/resources/v3/types/TaskSortOptions.js +54 -0
- package/serialization/resources/tasks/resources/v3/types/TaskUpdateV3.d.ts +14 -0
- package/serialization/resources/tasks/resources/v3/types/TaskUpdateV3.js +35 -0
- package/serialization/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.d.ts +12 -0
- package/serialization/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.js +33 -0
- package/serialization/resources/tasks/resources/v3/types/index.d.ts +11 -0
- package/serialization/resources/tasks/resources/v3/types/index.js +27 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as CandidApi from "../../../../..";
|
|
5
|
+
export interface TaskCreateV3 {
|
|
6
|
+
encounterId: CandidApi.EncounterId;
|
|
7
|
+
taskType: CandidApi.tasks.TaskType;
|
|
8
|
+
description: string;
|
|
9
|
+
blocksClaimSubmission?: boolean;
|
|
10
|
+
assigneeUserId?: CandidApi.UserId;
|
|
11
|
+
category?: CandidApi.tasks.TaskCategory;
|
|
12
|
+
workQueueId: CandidApi.WorkQueueId;
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as CandidApi from "../../../../..";
|
|
5
|
+
export interface TaskNote {
|
|
6
|
+
taskNoteId: CandidApi.TaskNoteId;
|
|
7
|
+
text: string;
|
|
8
|
+
createdAt: Date;
|
|
9
|
+
authorName: string;
|
|
10
|
+
authorOrganizationName: string;
|
|
11
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
export declare type TaskSortOptions = "updated_at:asc" | "updated_at:desc" | "patient_name:asc" | "patient_name:desc" | "patient_external_id:asc" | "patient_external_id:desc" | "payer_name:asc" | "payer_name:desc" | "payer_id:asc" | "payer_id:desc" | "status:asc" | "status:desc" | "task_type:asc" | "task_type:desc" | "category:asc" | "category:desc" | "agg_updated_at:asc" | "agg_updated_at:desc" | "date_of_service:asc" | "date_of_service:desc" | "blocks_claim_submission:asc" | "blocks_claim_submission:desc";
|
|
5
|
+
export declare const TaskSortOptions: {
|
|
6
|
+
readonly UpdatedAtAsc: "updated_at:asc";
|
|
7
|
+
readonly UpdatedAtDesc: "updated_at:desc";
|
|
8
|
+
readonly PatientNameAsc: "patient_name:asc";
|
|
9
|
+
readonly PatientNameDesc: "patient_name:desc";
|
|
10
|
+
readonly PatientExternalIdAsc: "patient_external_id:asc";
|
|
11
|
+
readonly PatientExternalIdDesc: "patient_external_id:desc";
|
|
12
|
+
readonly PayerNameAsc: "payer_name:asc";
|
|
13
|
+
readonly PayerNameDesc: "payer_name:desc";
|
|
14
|
+
readonly PayerIdAsc: "payer_id:asc";
|
|
15
|
+
readonly PayerIdDesc: "payer_id:desc";
|
|
16
|
+
readonly StatusAsc: "status:asc";
|
|
17
|
+
readonly StatusDesc: "status:desc";
|
|
18
|
+
readonly TaskTypeAsc: "task_type:asc";
|
|
19
|
+
readonly TaskTypeDesc: "task_type:desc";
|
|
20
|
+
readonly CategoryAsc: "category:asc";
|
|
21
|
+
readonly CategoryDesc: "category:desc";
|
|
22
|
+
readonly AggUpdatedAtAsc: "agg_updated_at:asc";
|
|
23
|
+
readonly AggUpdatedAtDesc: "agg_updated_at:desc";
|
|
24
|
+
readonly DateOfServiceAsc: "date_of_service:asc";
|
|
25
|
+
readonly DateOfServiceDesc: "date_of_service:desc";
|
|
26
|
+
readonly BlocksClaimSubmissionAsc: "blocks_claim_submission:asc";
|
|
27
|
+
readonly BlocksClaimSubmissionDesc: "blocks_claim_submission:desc";
|
|
28
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.TaskSortOptions = void 0;
|
|
7
|
+
exports.TaskSortOptions = {
|
|
8
|
+
UpdatedAtAsc: "updated_at:asc",
|
|
9
|
+
UpdatedAtDesc: "updated_at:desc",
|
|
10
|
+
PatientNameAsc: "patient_name:asc",
|
|
11
|
+
PatientNameDesc: "patient_name:desc",
|
|
12
|
+
PatientExternalIdAsc: "patient_external_id:asc",
|
|
13
|
+
PatientExternalIdDesc: "patient_external_id:desc",
|
|
14
|
+
PayerNameAsc: "payer_name:asc",
|
|
15
|
+
PayerNameDesc: "payer_name:desc",
|
|
16
|
+
PayerIdAsc: "payer_id:asc",
|
|
17
|
+
PayerIdDesc: "payer_id:desc",
|
|
18
|
+
StatusAsc: "status:asc",
|
|
19
|
+
StatusDesc: "status:desc",
|
|
20
|
+
TaskTypeAsc: "task_type:asc",
|
|
21
|
+
TaskTypeDesc: "task_type:desc",
|
|
22
|
+
CategoryAsc: "category:asc",
|
|
23
|
+
CategoryDesc: "category:desc",
|
|
24
|
+
AggUpdatedAtAsc: "agg_updated_at:asc",
|
|
25
|
+
AggUpdatedAtDesc: "agg_updated_at:desc",
|
|
26
|
+
DateOfServiceAsc: "date_of_service:asc",
|
|
27
|
+
DateOfServiceDesc: "date_of_service:desc",
|
|
28
|
+
BlocksClaimSubmissionAsc: "blocks_claim_submission:asc",
|
|
29
|
+
BlocksClaimSubmissionDesc: "blocks_claim_submission:desc",
|
|
30
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as CandidApi from "../../../../..";
|
|
5
|
+
export interface TaskUpdateV3 {
|
|
6
|
+
status?: CandidApi.tasks.TaskStatus;
|
|
7
|
+
assigneeUserId?: CandidApi.UserId;
|
|
8
|
+
blocksClaimSubmission?: boolean;
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from "./Task";
|
|
2
|
+
export * from "./TaskNote";
|
|
3
|
+
export * from "./TaskAssignment";
|
|
4
|
+
export * from "./TaskSortOptions";
|
|
5
|
+
export * from "./TaskActionExecutionMethod";
|
|
6
|
+
export * from "./TaskActions";
|
|
7
|
+
export * from "./TaskAction";
|
|
8
|
+
export * from "./TaskCreateV3";
|
|
9
|
+
export * from "./TaskUpdateV3";
|
|
10
|
+
export * from "./TaskPage";
|
|
11
|
+
export * from "./TaskUpdatedToDeprecatedStatusErrorType";
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./Task"), exports);
|
|
18
|
+
__exportStar(require("./TaskNote"), exports);
|
|
19
|
+
__exportStar(require("./TaskAssignment"), exports);
|
|
20
|
+
__exportStar(require("./TaskSortOptions"), exports);
|
|
21
|
+
__exportStar(require("./TaskActionExecutionMethod"), exports);
|
|
22
|
+
__exportStar(require("./TaskActions"), exports);
|
|
23
|
+
__exportStar(require("./TaskAction"), exports);
|
|
24
|
+
__exportStar(require("./TaskCreateV3"), exports);
|
|
25
|
+
__exportStar(require("./TaskUpdateV3"), exports);
|
|
26
|
+
__exportStar(require("./TaskPage"), exports);
|
|
27
|
+
__exportStar(require("./TaskUpdatedToDeprecatedStatusErrorType"), exports);
|
|
@@ -53,7 +53,7 @@ class V1 {
|
|
|
53
53
|
Authorization: await this._getAuthorizationHeader(),
|
|
54
54
|
"X-Fern-Language": "JavaScript",
|
|
55
55
|
"X-Fern-SDK-Name": "candidhealth",
|
|
56
|
-
"X-Fern-SDK-Version": "0.
|
|
56
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
57
57
|
},
|
|
58
58
|
contentType: "application/json",
|
|
59
59
|
timeoutMs: 60000,
|
|
@@ -89,7 +89,7 @@ class V1 {
|
|
|
89
89
|
Authorization: await this._getAuthorizationHeader(),
|
|
90
90
|
"X-Fern-Language": "JavaScript",
|
|
91
91
|
"X-Fern-SDK-Name": "candidhealth",
|
|
92
|
-
"X-Fern-SDK-Version": "0.
|
|
92
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
93
93
|
},
|
|
94
94
|
contentType: "application/json",
|
|
95
95
|
body: await serializers.writeOffs.v1.CreateWriteOffsRequest.jsonOrThrow(request, {
|
|
@@ -126,7 +126,7 @@ class V1 {
|
|
|
126
126
|
Authorization: await this._getAuthorizationHeader(),
|
|
127
127
|
"X-Fern-Language": "JavaScript",
|
|
128
128
|
"X-Fern-SDK-Name": "candidhealth",
|
|
129
|
-
"X-Fern-SDK-Version": "0.
|
|
129
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
130
130
|
},
|
|
131
131
|
contentType: "application/json",
|
|
132
132
|
timeoutMs: 60000,
|
package/dist/Client.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ import { OrganizationProviders } from "./api/resources/organizationProviders/cli
|
|
|
17
17
|
import { PatientPayments } from "./api/resources/patientPayments/client/Client";
|
|
18
18
|
import { PatientRefunds } from "./api/resources/patientRefunds/client/Client";
|
|
19
19
|
import { Payers } from "./api/resources/payers/client/Client";
|
|
20
|
+
import { Tasks } from "./api/resources/tasks/client/Client";
|
|
20
21
|
import { WriteOffs } from "./api/resources/writeOffs/client/Client";
|
|
21
22
|
export declare namespace CandidApiClient {
|
|
22
23
|
interface Options {
|
|
@@ -55,6 +56,8 @@ export declare class CandidApiClient {
|
|
|
55
56
|
get patientRefunds(): PatientRefunds;
|
|
56
57
|
protected _payers: Payers | undefined;
|
|
57
58
|
get payers(): Payers;
|
|
59
|
+
protected _tasks: Tasks | undefined;
|
|
60
|
+
get tasks(): Tasks;
|
|
58
61
|
protected _writeOffs: WriteOffs | undefined;
|
|
59
62
|
get writeOffs(): WriteOffs;
|
|
60
63
|
}
|
package/dist/Client.js
CHANGED
|
@@ -18,7 +18,8 @@ const Client_11 = require("./api/resources/organizationProviders/client/Client")
|
|
|
18
18
|
const Client_12 = require("./api/resources/patientPayments/client/Client");
|
|
19
19
|
const Client_13 = require("./api/resources/patientRefunds/client/Client");
|
|
20
20
|
const Client_14 = require("./api/resources/payers/client/Client");
|
|
21
|
-
const Client_15 = require("./api/resources/
|
|
21
|
+
const Client_15 = require("./api/resources/tasks/client/Client");
|
|
22
|
+
const Client_16 = require("./api/resources/writeOffs/client/Client");
|
|
22
23
|
class CandidApiClient {
|
|
23
24
|
options;
|
|
24
25
|
constructor(options) {
|
|
@@ -80,9 +81,13 @@ class CandidApiClient {
|
|
|
80
81
|
get payers() {
|
|
81
82
|
return (this._payers ??= new Client_14.Payers(this.options));
|
|
82
83
|
}
|
|
84
|
+
_tasks;
|
|
85
|
+
get tasks() {
|
|
86
|
+
return (this._tasks ??= new Client_15.Tasks(this.options));
|
|
87
|
+
}
|
|
83
88
|
_writeOffs;
|
|
84
89
|
get writeOffs() {
|
|
85
|
-
return (this._writeOffs ??= new
|
|
90
|
+
return (this._writeOffs ??= new Client_16.WriteOffs(this.options));
|
|
86
91
|
}
|
|
87
92
|
}
|
|
88
93
|
exports.CandidApiClient = CandidApiClient;
|
|
@@ -62,7 +62,7 @@ class V2 {
|
|
|
62
62
|
Authorization: await this._getAuthorizationHeader(),
|
|
63
63
|
"X-Fern-Language": "JavaScript",
|
|
64
64
|
"X-Fern-SDK-Name": "candidhealth",
|
|
65
|
-
"X-Fern-SDK-Version": "0.
|
|
65
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
66
66
|
},
|
|
67
67
|
contentType: "application/json",
|
|
68
68
|
body: await serializers.auth.v2.AuthGetTokenRequest.jsonOrThrow(request, {
|
|
@@ -48,7 +48,7 @@ class V2 {
|
|
|
48
48
|
Authorization: await this._getAuthorizationHeader(),
|
|
49
49
|
"X-Fern-Language": "JavaScript",
|
|
50
50
|
"X-Fern-SDK-Name": "candidhealth",
|
|
51
|
-
"X-Fern-SDK-Version": "0.
|
|
51
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
52
52
|
},
|
|
53
53
|
contentType: "application/json",
|
|
54
54
|
body: await serializers.billingNotes.v2.StandaloneBillingNoteCreate.jsonOrThrow(request, {
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as CandidApi from "../../..";
|
|
5
|
+
export declare type TaskAssignmentId = string & {
|
|
6
|
+
TaskAssignmentId: void;
|
|
7
|
+
};
|
|
8
|
+
export declare function TaskAssignmentId(value: string): CandidApi.TaskAssignmentId;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.TaskAssignmentId = void 0;
|
|
7
|
+
function TaskAssignmentId(value) {
|
|
8
|
+
return value;
|
|
9
|
+
}
|
|
10
|
+
exports.TaskAssignmentId = TaskAssignmentId;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.TaskNoteId = void 0;
|
|
7
|
+
function TaskNoteId(value) {
|
|
8
|
+
return value;
|
|
9
|
+
}
|
|
10
|
+
exports.TaskNoteId = TaskNoteId;
|
|
@@ -6,6 +6,10 @@ export * from "./PatientExternalId";
|
|
|
6
6
|
export * from "./EncounterExternalId";
|
|
7
7
|
export * from "./Npi";
|
|
8
8
|
export * from "./WorkQueueId";
|
|
9
|
+
export * from "./UserId";
|
|
10
|
+
export * from "./TaskId";
|
|
11
|
+
export * from "./TaskAssignmentId";
|
|
12
|
+
export * from "./TaskNoteId";
|
|
9
13
|
export * from "./ProviderId";
|
|
10
14
|
export * from "./InvoiceId";
|
|
11
15
|
export * from "./LinkUrl";
|
|
@@ -31,6 +35,7 @@ export * from "./EmrPayerCrosswalk";
|
|
|
31
35
|
export * from "./ErrorMessage";
|
|
32
36
|
export * from "./EntityNotFoundErrorMessage";
|
|
33
37
|
export * from "./UnauthorizedErrorMessage";
|
|
38
|
+
export * from "./UnprocessableEntityErrorMessage";
|
|
34
39
|
export * from "./HttpServiceUnavailableErrorMessage";
|
|
35
40
|
export * from "./RequestValidationError";
|
|
36
41
|
export * from "./UpdatesDisabledDueToExternalSystemIntegrationErrorMessage";
|
|
@@ -22,6 +22,10 @@ __exportStar(require("./PatientExternalId"), exports);
|
|
|
22
22
|
__exportStar(require("./EncounterExternalId"), exports);
|
|
23
23
|
__exportStar(require("./Npi"), exports);
|
|
24
24
|
__exportStar(require("./WorkQueueId"), exports);
|
|
25
|
+
__exportStar(require("./UserId"), exports);
|
|
26
|
+
__exportStar(require("./TaskId"), exports);
|
|
27
|
+
__exportStar(require("./TaskAssignmentId"), exports);
|
|
28
|
+
__exportStar(require("./TaskNoteId"), exports);
|
|
25
29
|
__exportStar(require("./ProviderId"), exports);
|
|
26
30
|
__exportStar(require("./InvoiceId"), exports);
|
|
27
31
|
__exportStar(require("./LinkUrl"), exports);
|
|
@@ -47,6 +51,7 @@ __exportStar(require("./EmrPayerCrosswalk"), exports);
|
|
|
47
51
|
__exportStar(require("./ErrorMessage"), exports);
|
|
48
52
|
__exportStar(require("./EntityNotFoundErrorMessage"), exports);
|
|
49
53
|
__exportStar(require("./UnauthorizedErrorMessage"), exports);
|
|
54
|
+
__exportStar(require("./UnprocessableEntityErrorMessage"), exports);
|
|
50
55
|
__exportStar(require("./HttpServiceUnavailableErrorMessage"), exports);
|
|
51
56
|
__exportStar(require("./RequestValidationError"), exports);
|
|
52
57
|
__exportStar(require("./UpdatesDisabledDueToExternalSystemIntegrationErrorMessage"), exports);
|
|
@@ -65,7 +65,7 @@ class V2 {
|
|
|
65
65
|
Authorization: await this._getAuthorizationHeader(),
|
|
66
66
|
"X-Fern-Language": "JavaScript",
|
|
67
67
|
"X-Fern-SDK-Name": "candidhealth",
|
|
68
|
-
"X-Fern-SDK-Version": "0.
|
|
68
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
69
69
|
},
|
|
70
70
|
contentType: "application/json",
|
|
71
71
|
body: request,
|
|
@@ -103,7 +103,7 @@ class V4 {
|
|
|
103
103
|
Authorization: await this._getAuthorizationHeader(),
|
|
104
104
|
"X-Fern-Language": "JavaScript",
|
|
105
105
|
"X-Fern-SDK-Name": "candidhealth",
|
|
106
|
-
"X-Fern-SDK-Version": "0.
|
|
106
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
107
107
|
},
|
|
108
108
|
contentType: "application/json",
|
|
109
109
|
queryParameters: _queryParams,
|
|
@@ -133,7 +133,7 @@ class V4 {
|
|
|
133
133
|
Authorization: await this._getAuthorizationHeader(),
|
|
134
134
|
"X-Fern-Language": "JavaScript",
|
|
135
135
|
"X-Fern-SDK-Name": "candidhealth",
|
|
136
|
-
"X-Fern-SDK-Version": "0.
|
|
136
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
137
137
|
},
|
|
138
138
|
contentType: "application/json",
|
|
139
139
|
timeoutMs: 60000,
|
|
@@ -162,7 +162,7 @@ class V4 {
|
|
|
162
162
|
Authorization: await this._getAuthorizationHeader(),
|
|
163
163
|
"X-Fern-Language": "JavaScript",
|
|
164
164
|
"X-Fern-SDK-Name": "candidhealth",
|
|
165
|
-
"X-Fern-SDK-Version": "0.
|
|
165
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
166
166
|
},
|
|
167
167
|
contentType: "application/json",
|
|
168
168
|
body: await serializers.encounters.v4.EncounterCreate.jsonOrThrow(request, {
|
|
@@ -212,7 +212,7 @@ class V4 {
|
|
|
212
212
|
Authorization: await this._getAuthorizationHeader(),
|
|
213
213
|
"X-Fern-Language": "JavaScript",
|
|
214
214
|
"X-Fern-SDK-Name": "candidhealth",
|
|
215
|
-
"X-Fern-SDK-Version": "0.
|
|
215
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
216
216
|
},
|
|
217
217
|
contentType: "application/json",
|
|
218
218
|
body: await serializers.encounters.v4.EncounterUpdate.jsonOrThrow(request, {
|
|
@@ -53,7 +53,7 @@ class V1 {
|
|
|
53
53
|
Authorization: await this._getAuthorizationHeader(),
|
|
54
54
|
"X-Fern-Language": "JavaScript",
|
|
55
55
|
"X-Fern-SDK-Name": "candidhealth",
|
|
56
|
-
"X-Fern-SDK-Version": "0.
|
|
56
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
57
57
|
},
|
|
58
58
|
contentType: "application/json",
|
|
59
59
|
body: await serializers.expectedNetworkStatus.v1.ExpectedNetworkStatusRequest.jsonOrThrow(request, {
|
|
@@ -55,7 +55,7 @@ class V2 {
|
|
|
55
55
|
Authorization: await this._getAuthorizationHeader(),
|
|
56
56
|
"X-Fern-Language": "JavaScript",
|
|
57
57
|
"X-Fern-SDK-Name": "candidhealth",
|
|
58
|
-
"X-Fern-SDK-Version": "0.
|
|
58
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
59
59
|
},
|
|
60
60
|
contentType: "application/json",
|
|
61
61
|
body: await serializers.expectedNetworkStatus.v2.ExpectedNetworkStatusRequestV2.jsonOrThrow(request, {
|
|
@@ -111,7 +111,7 @@ class V2 {
|
|
|
111
111
|
Authorization: await this._getAuthorizationHeader(),
|
|
112
112
|
"X-Fern-Language": "JavaScript",
|
|
113
113
|
"X-Fern-SDK-Name": "candidhealth",
|
|
114
|
-
"X-Fern-SDK-Version": "0.
|
|
114
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
115
115
|
},
|
|
116
116
|
contentType: "application/json",
|
|
117
117
|
body: await serializers.expectedNetworkStatus.v2.ComputeAllInNetworkProvidersRequest.jsonOrThrow(request, {
|
|
@@ -68,7 +68,7 @@ class V3 {
|
|
|
68
68
|
Authorization: await this._getAuthorizationHeader(),
|
|
69
69
|
"X-Fern-Language": "JavaScript",
|
|
70
70
|
"X-Fern-SDK-Name": "candidhealth",
|
|
71
|
-
"X-Fern-SDK-Version": "0.
|
|
71
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
72
72
|
},
|
|
73
73
|
contentType: "application/json",
|
|
74
74
|
queryParameters: _queryParams,
|
|
@@ -53,7 +53,7 @@ class V1 {
|
|
|
53
53
|
Authorization: await this._getAuthorizationHeader(),
|
|
54
54
|
"X-Fern-Language": "JavaScript",
|
|
55
55
|
"X-Fern-SDK-Name": "candidhealth",
|
|
56
|
-
"X-Fern-SDK-Version": "0.
|
|
56
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
57
57
|
},
|
|
58
58
|
contentType: "application/json",
|
|
59
59
|
body: await serializers.guarantor.v1.GuarantorCreate.jsonOrThrow(request, {
|
|
@@ -104,7 +104,7 @@ class V1 {
|
|
|
104
104
|
Authorization: await this._getAuthorizationHeader(),
|
|
105
105
|
"X-Fern-Language": "JavaScript",
|
|
106
106
|
"X-Fern-SDK-Name": "candidhealth",
|
|
107
|
-
"X-Fern-SDK-Version": "0.
|
|
107
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
108
108
|
},
|
|
109
109
|
contentType: "application/json",
|
|
110
110
|
timeoutMs: 60000,
|
|
@@ -138,7 +138,7 @@ class V1 {
|
|
|
138
138
|
Authorization: await this._getAuthorizationHeader(),
|
|
139
139
|
"X-Fern-Language": "JavaScript",
|
|
140
140
|
"X-Fern-SDK-Name": "candidhealth",
|
|
141
|
-
"X-Fern-SDK-Version": "0.
|
|
141
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
142
142
|
},
|
|
143
143
|
contentType: "application/json",
|
|
144
144
|
body: await serializers.guarantor.v1.GuarantorUpdate.jsonOrThrow(request, {
|
|
@@ -14,6 +14,7 @@ export * as patientPayments from "./patientPayments";
|
|
|
14
14
|
export * as patientRefunds from "./patientRefunds";
|
|
15
15
|
export * as payers from "./payers";
|
|
16
16
|
export * as serviceLines from "./serviceLines";
|
|
17
|
+
export * as tasks from "./tasks";
|
|
17
18
|
export * as writeOffs from "./writeOffs";
|
|
18
19
|
export * as x12 from "./x12";
|
|
19
20
|
export * as claims from "./claims";
|
|
@@ -26,7 +26,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
26
26
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.eligibility = exports.tags = exports.serviceFacility = exports.invoices = exports.insuranceCard = exports.individual = exports.identifiers = exports.financials = exports.era = exports.diagnoses = exports.contracts = exports.commons = exports.claims = exports.x12 = exports.writeOffs = exports.serviceLines = exports.payers = exports.patientRefunds = exports.patientPayments = exports.organizationProviders = exports.organizationServiceFacilities = exports.insuranceRefunds = exports.insuranceAdjudications = exports.guarantor = exports.exports = exports.expectedNetworkStatus = exports.encounters = exports.encounterProviders = exports.claimSubmission = exports.billingNotes = exports.auth = void 0;
|
|
29
|
+
exports.eligibility = exports.tags = exports.serviceFacility = exports.invoices = exports.insuranceCard = exports.individual = exports.identifiers = exports.financials = exports.era = exports.diagnoses = exports.contracts = exports.commons = exports.claims = exports.x12 = exports.writeOffs = exports.tasks = exports.serviceLines = exports.payers = exports.patientRefunds = exports.patientPayments = exports.organizationProviders = exports.organizationServiceFacilities = exports.insuranceRefunds = exports.insuranceAdjudications = exports.guarantor = exports.exports = exports.expectedNetworkStatus = exports.encounters = exports.encounterProviders = exports.claimSubmission = exports.billingNotes = exports.auth = void 0;
|
|
30
30
|
exports.auth = __importStar(require("./auth"));
|
|
31
31
|
exports.billingNotes = __importStar(require("./billingNotes"));
|
|
32
32
|
exports.claimSubmission = __importStar(require("./claimSubmission"));
|
|
@@ -43,6 +43,7 @@ exports.patientPayments = __importStar(require("./patientPayments"));
|
|
|
43
43
|
exports.patientRefunds = __importStar(require("./patientRefunds"));
|
|
44
44
|
exports.payers = __importStar(require("./payers"));
|
|
45
45
|
exports.serviceLines = __importStar(require("./serviceLines"));
|
|
46
|
+
exports.tasks = __importStar(require("./tasks"));
|
|
46
47
|
exports.writeOffs = __importStar(require("./writeOffs"));
|
|
47
48
|
exports.x12 = __importStar(require("./x12"));
|
|
48
49
|
exports.claims = __importStar(require("./claims"));
|
|
@@ -53,7 +53,7 @@ class V1 {
|
|
|
53
53
|
Authorization: await this._getAuthorizationHeader(),
|
|
54
54
|
"X-Fern-Language": "JavaScript",
|
|
55
55
|
"X-Fern-SDK-Name": "candidhealth",
|
|
56
|
-
"X-Fern-SDK-Version": "0.
|
|
56
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
57
57
|
},
|
|
58
58
|
contentType: "application/json",
|
|
59
59
|
timeoutMs: 60000,
|
|
@@ -87,7 +87,7 @@ class V1 {
|
|
|
87
87
|
Authorization: await this._getAuthorizationHeader(),
|
|
88
88
|
"X-Fern-Language": "JavaScript",
|
|
89
89
|
"X-Fern-SDK-Name": "candidhealth",
|
|
90
|
-
"X-Fern-SDK-Version": "0.
|
|
90
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
91
91
|
},
|
|
92
92
|
contentType: "application/json",
|
|
93
93
|
body: await serializers.insuranceAdjudications.v1.InsuranceAdjudicationCreate.jsonOrThrow(request, {
|
|
@@ -124,7 +124,7 @@ class V1 {
|
|
|
124
124
|
Authorization: await this._getAuthorizationHeader(),
|
|
125
125
|
"X-Fern-Language": "JavaScript",
|
|
126
126
|
"X-Fern-SDK-Name": "candidhealth",
|
|
127
|
-
"X-Fern-SDK-Version": "0.
|
|
127
|
+
"X-Fern-SDK-Version": "0.10.0",
|
|
128
128
|
},
|
|
129
129
|
contentType: "application/json",
|
|
130
130
|
timeoutMs: 60000,
|