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,35 @@
|
|
|
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 __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
19
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
20
|
+
};
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.update = exports.create = exports.get = exports.getMulti = exports.getActions = void 0;
|
|
30
|
+
__exportStar(require("./requests"), exports);
|
|
31
|
+
exports.getActions = __importStar(require("./getActions"));
|
|
32
|
+
exports.getMulti = __importStar(require("./getMulti"));
|
|
33
|
+
exports.get = __importStar(require("./get"));
|
|
34
|
+
exports.create = __importStar(require("./create"));
|
|
35
|
+
exports.update = __importStar(require("./update"));
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as CandidApi from "../../../../../..";
|
|
5
|
+
export interface GetAllTasksRequest {
|
|
6
|
+
/**
|
|
7
|
+
* Defaults to 100
|
|
8
|
+
*/
|
|
9
|
+
limit?: number;
|
|
10
|
+
pageToken?: CandidApi.PageToken;
|
|
11
|
+
status?: CandidApi.tasks.TaskStatus;
|
|
12
|
+
taskType?: CandidApi.tasks.TaskType;
|
|
13
|
+
/**
|
|
14
|
+
* Only return tasks with categories that match one in this comma-separated list.
|
|
15
|
+
*/
|
|
16
|
+
categories?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Only return tasks updated on or after this date-time
|
|
19
|
+
*/
|
|
20
|
+
updatedSince?: Date;
|
|
21
|
+
/**
|
|
22
|
+
* Only return tasks associated with this encounter
|
|
23
|
+
*/
|
|
24
|
+
encounterId?: CandidApi.EncounterId;
|
|
25
|
+
/**
|
|
26
|
+
* Query tasks by encounter_id, claim_id, task_id, or external_id
|
|
27
|
+
*/
|
|
28
|
+
searchTerm?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Only return tasks assigned to this user
|
|
31
|
+
*/
|
|
32
|
+
assignedToId?: CandidApi.UserId;
|
|
33
|
+
/**
|
|
34
|
+
* The minimum date of service for the linked encounter
|
|
35
|
+
*/
|
|
36
|
+
dateOfServiceMin?: string;
|
|
37
|
+
/**
|
|
38
|
+
* The maximum date of service for the linked encounter
|
|
39
|
+
*/
|
|
40
|
+
dateOfServiceMax?: string;
|
|
41
|
+
/**
|
|
42
|
+
* The NPI of the billing provider associated with the task's claim
|
|
43
|
+
*/
|
|
44
|
+
billingProviderNpi?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Defaults to updated_at:desc
|
|
47
|
+
*/
|
|
48
|
+
sort?: CandidApi.tasks.v3.TaskSortOptions;
|
|
49
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { GetAllTasksRequest } from "./GetAllTasksRequest";
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as CandidApi from "../../../../..";
|
|
5
|
+
import * as core from "../../../../../../core";
|
|
6
|
+
export declare type Error = CandidApi.tasks.v3.update.Error.EntityNotFoundError | CandidApi.tasks.v3.update.Error.UnauthorizedError | CandidApi.tasks.v3.update.Error.TaskUpdatedToDeprecatedStatusError | CandidApi.tasks.v3.update.Error._Unknown;
|
|
7
|
+
export declare namespace Error {
|
|
8
|
+
interface EntityNotFoundError extends _Utils {
|
|
9
|
+
errorName: "EntityNotFoundError";
|
|
10
|
+
content: CandidApi.EntityNotFoundErrorMessage;
|
|
11
|
+
}
|
|
12
|
+
interface UnauthorizedError extends _Utils {
|
|
13
|
+
errorName: "UnauthorizedError";
|
|
14
|
+
content: CandidApi.UnauthorizedErrorMessage;
|
|
15
|
+
}
|
|
16
|
+
interface TaskUpdatedToDeprecatedStatusError extends _Utils {
|
|
17
|
+
errorName: "TaskUpdatedToDeprecatedStatusError";
|
|
18
|
+
content: CandidApi.tasks.v3.TaskUpdatedToDeprecatedStatusErrorType;
|
|
19
|
+
}
|
|
20
|
+
interface _Unknown extends _Utils {
|
|
21
|
+
errorName: void;
|
|
22
|
+
content: core.Fetcher.Error;
|
|
23
|
+
}
|
|
24
|
+
interface _Utils {
|
|
25
|
+
_visit: <_Result>(visitor: CandidApi.tasks.v3.update.Error._Visitor<_Result>) => _Result;
|
|
26
|
+
}
|
|
27
|
+
interface _Visitor<_Result> {
|
|
28
|
+
entityNotFoundError: (value: CandidApi.EntityNotFoundErrorMessage) => _Result;
|
|
29
|
+
unauthorizedError: (value: CandidApi.UnauthorizedErrorMessage) => _Result;
|
|
30
|
+
taskUpdatedToDeprecatedStatusError: (value: CandidApi.tasks.v3.TaskUpdatedToDeprecatedStatusErrorType) => _Result;
|
|
31
|
+
_other: (value: core.Fetcher.Error) => _Result;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
export declare const Error: {
|
|
35
|
+
readonly entityNotFoundError: (value: CandidApi.EntityNotFoundErrorMessage) => CandidApi.tasks.v3.update.Error.EntityNotFoundError;
|
|
36
|
+
readonly unauthorizedError: (value: CandidApi.UnauthorizedErrorMessage) => CandidApi.tasks.v3.update.Error.UnauthorizedError;
|
|
37
|
+
readonly taskUpdatedToDeprecatedStatusError: (value: CandidApi.tasks.v3.TaskUpdatedToDeprecatedStatusErrorType) => CandidApi.tasks.v3.update.Error.TaskUpdatedToDeprecatedStatusError;
|
|
38
|
+
readonly _unknown: (fetcherError: core.Fetcher.Error) => CandidApi.tasks.v3.update.Error._Unknown;
|
|
39
|
+
readonly _visit: <_Result>(value: CandidApi.tasks.v3.update.Error, visitor: CandidApi.tasks.v3.update.Error._Visitor<_Result>) => _Result;
|
|
40
|
+
};
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.Error = void 0;
|
|
30
|
+
const CandidApi = __importStar(require("../../../../.."));
|
|
31
|
+
exports.Error = {
|
|
32
|
+
entityNotFoundError: (value) => {
|
|
33
|
+
return {
|
|
34
|
+
content: value,
|
|
35
|
+
errorName: "EntityNotFoundError",
|
|
36
|
+
_visit: function (visitor) {
|
|
37
|
+
return CandidApi.tasks.v3.update.Error._visit(this, visitor);
|
|
38
|
+
},
|
|
39
|
+
};
|
|
40
|
+
},
|
|
41
|
+
unauthorizedError: (value) => {
|
|
42
|
+
return {
|
|
43
|
+
content: value,
|
|
44
|
+
errorName: "UnauthorizedError",
|
|
45
|
+
_visit: function (visitor) {
|
|
46
|
+
return CandidApi.tasks.v3.update.Error._visit(this, visitor);
|
|
47
|
+
},
|
|
48
|
+
};
|
|
49
|
+
},
|
|
50
|
+
taskUpdatedToDeprecatedStatusError: (value) => {
|
|
51
|
+
return {
|
|
52
|
+
content: value,
|
|
53
|
+
errorName: "TaskUpdatedToDeprecatedStatusError",
|
|
54
|
+
_visit: function (visitor) {
|
|
55
|
+
return CandidApi.tasks.v3.update.Error._visit(this, visitor);
|
|
56
|
+
},
|
|
57
|
+
};
|
|
58
|
+
},
|
|
59
|
+
_unknown: (fetcherError) => {
|
|
60
|
+
return {
|
|
61
|
+
errorName: undefined,
|
|
62
|
+
content: fetcherError,
|
|
63
|
+
_visit: function (visitor) {
|
|
64
|
+
return CandidApi.tasks.v3.update.Error._visit(this, visitor);
|
|
65
|
+
},
|
|
66
|
+
};
|
|
67
|
+
},
|
|
68
|
+
_visit: (value, visitor) => {
|
|
69
|
+
switch (value.errorName) {
|
|
70
|
+
case "EntityNotFoundError":
|
|
71
|
+
return visitor.entityNotFoundError(value.content);
|
|
72
|
+
case "UnauthorizedError":
|
|
73
|
+
return visitor.unauthorizedError(value.content);
|
|
74
|
+
case "TaskUpdatedToDeprecatedStatusError":
|
|
75
|
+
return visitor.taskUpdatedToDeprecatedStatusError(value.content);
|
|
76
|
+
default:
|
|
77
|
+
return visitor._other(value);
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
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("./types"), exports);
|
|
18
|
+
__exportStar(require("./client"), exports);
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as CandidApi from "../../../../..";
|
|
5
|
+
export interface Task {
|
|
6
|
+
taskId: CandidApi.TaskId;
|
|
7
|
+
encounterId: CandidApi.EncounterId;
|
|
8
|
+
taskType: CandidApi.tasks.TaskType;
|
|
9
|
+
description: string;
|
|
10
|
+
blocksClaimSubmission: boolean;
|
|
11
|
+
externalId: string;
|
|
12
|
+
patientName: string;
|
|
13
|
+
patientExternalId: string;
|
|
14
|
+
payerName?: string;
|
|
15
|
+
payerId?: string;
|
|
16
|
+
status: CandidApi.tasks.TaskStatus;
|
|
17
|
+
notes: CandidApi.tasks.v3.TaskNote[];
|
|
18
|
+
createdAt: Date;
|
|
19
|
+
/** The time of most recent update to the task only */
|
|
20
|
+
updatedAt: Date;
|
|
21
|
+
/** The time of most recent update to the task or any of its notes */
|
|
22
|
+
aggUpdatedAt: Date;
|
|
23
|
+
dateOfService: string;
|
|
24
|
+
assignments: CandidApi.tasks.v3.TaskAssignment[];
|
|
25
|
+
category?: CandidApi.tasks.TaskCategory;
|
|
26
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as CandidApi from "../../../../..";
|
|
5
|
+
export declare type TaskActionExecutionMethod = CandidApi.tasks.v3.TaskActionExecutionMethod.CloseTask;
|
|
6
|
+
export declare namespace TaskActionExecutionMethod {
|
|
7
|
+
interface CloseTask {
|
|
8
|
+
type: "close_task";
|
|
9
|
+
}
|
|
10
|
+
}
|
|
@@ -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,
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../..";
|
|
5
|
+
import * as CandidApi from "../../../../api";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
export declare const TaskAssignmentId: core.serialization.Schema<serializers.TaskAssignmentId.Raw, CandidApi.TaskAssignmentId>;
|
|
8
|
+
export declare namespace TaskAssignmentId {
|
|
9
|
+
type Raw = string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.TaskAssignmentId = void 0;
|
|
30
|
+
const CandidApi = __importStar(require("../../../../api"));
|
|
31
|
+
const core = __importStar(require("../../../../core"));
|
|
32
|
+
exports.TaskAssignmentId = core.serialization.string().transform({
|
|
33
|
+
transform: CandidApi.TaskAssignmentId,
|
|
34
|
+
untransform: (value) => value,
|
|
35
|
+
});
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../..";
|
|
5
|
+
import * as CandidApi from "../../../../api";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
export declare const TaskId: core.serialization.Schema<serializers.TaskId.Raw, CandidApi.TaskId>;
|
|
8
|
+
export declare namespace TaskId {
|
|
9
|
+
type Raw = string;
|
|
10
|
+
}
|